@v-miniapp/ui-react 1.0.59 → 1.0.71

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.
Files changed (491) hide show
  1. package/dist/_virtual/_cloneBuffer.js +4 -0
  2. package/dist/_virtual/_commonjsHelpers.js +8 -0
  3. package/dist/_virtual/_nodeUtil.js +4 -0
  4. package/dist/_virtual/cloneDeepWith.js +7 -0
  5. package/dist/_virtual/isBuffer.js +4 -0
  6. package/dist/_virtual/isObject.js +7 -0
  7. package/dist/_virtual/isSameOrAfter.js +7 -0
  8. package/dist/_virtual/isSameOrAfter2.js +4 -0
  9. package/dist/_virtual/isSameOrBefore.js +7 -0
  10. package/dist/_virtual/isSameOrBefore2.js +4 -0
  11. package/dist/_virtual/merge.js +7 -0
  12. package/dist/_virtual/omit.js +7 -0
  13. package/dist/_virtual/pick.js +7 -0
  14. package/dist/_virtual/throttle.js +7 -0
  15. package/dist/assets/icons/loader.svg.js +5 -0
  16. package/dist/assets/icons/placeholder.svg.js +5 -0
  17. package/dist/assets/images/broken-image.svg.js +5 -0
  18. package/dist/assets/images/default-error.png.js +4 -0
  19. package/dist/assets/images/image.svg.js +5 -0
  20. package/dist/components/ai-app/ai-app.d.ts +7 -0
  21. package/dist/components/ai-app/ai-app.js +20 -0
  22. package/dist/components/ai-app/index.d.ts +1 -0
  23. package/dist/components/alert/alert.js +76 -0
  24. package/dist/components/app/app.d.ts +1 -6
  25. package/dist/components/app/app.js +78 -0
  26. package/dist/components/app/app.store.d.ts +6 -0
  27. package/dist/components/app/app.store.js +8 -0
  28. package/dist/components/app/bottom-tab-bar-layout/hook.js +36 -0
  29. package/dist/components/app/bottom-tab-bar-layout/index.js +38 -0
  30. package/dist/components/app/bottom-tab-bar-layout/store.js +54 -0
  31. package/dist/components/app/data-theme.js +29 -0
  32. package/dist/components/app/navigation-bar-layout/hook.js +39 -0
  33. package/dist/components/app/navigation-bar-layout/index.js +46 -0
  34. package/dist/components/app/navigation-bar-layout/store.js +60 -0
  35. package/dist/components/app/page-layout/hook.js +62 -0
  36. package/dist/components/app/page-layout/index.js +21 -0
  37. package/dist/components/app/page-layout/store.js +52 -0
  38. package/dist/components/avatar/avatar.js +79 -0
  39. package/dist/components/badge/badge.js +40 -0
  40. package/dist/components/bottom-tab-bar/bottom-tab-bar.js +90 -0
  41. package/dist/components/button/button.const.js +7 -0
  42. package/dist/components/button/button.js +62 -0
  43. package/dist/components/calendar/calendar-range-sheet.js +66 -0
  44. package/dist/components/calendar/calendar-single-sheet.js +64 -0
  45. package/dist/components/calendar/calendar.js +16 -0
  46. package/dist/components/calendar/default-render.js +16 -0
  47. package/dist/components/calendar/range-picker.js +301 -0
  48. package/dist/components/calendar/single-picker.js +186 -0
  49. package/dist/components/calendar/utils.js +25 -0
  50. package/dist/components/carousel/carousel.js +47 -0
  51. package/dist/components/carousel/use-carousel.js +54 -0
  52. package/dist/components/checkbox/check-icon.js +23 -0
  53. package/dist/components/checkbox/checkbox.js +131 -0
  54. package/dist/components/checkbox/indeterminate-icon.js +20 -0
  55. package/dist/components/chip/chip.js +80 -0
  56. package/dist/components/date-field/date-field-range.js +153 -0
  57. package/dist/components/date-field/date-field.js +100 -0
  58. package/dist/components/date-field/input.js +53 -0
  59. package/dist/components/date-picker/date-picker-base.js +214 -0
  60. package/dist/components/date-picker/date-picker-item.js +69 -0
  61. package/dist/components/date-picker/date-picker-sheet.js +54 -0
  62. package/dist/components/date-picker/date-picker.constant.js +11 -0
  63. package/dist/components/date-picker/date-picker.js +76 -0
  64. package/dist/components/date-picker/date-picker.utils.js +58 -0
  65. package/dist/components/dialog/dialog.js +115 -0
  66. package/dist/components/dropdown/dropdown-base.js +22 -0
  67. package/dist/components/dropdown/dropdown.js +148 -0
  68. package/dist/components/error/error-boundary.js +28 -0
  69. package/dist/components/error/error.js +25 -0
  70. package/dist/components/icon/icon-mapping.js +260 -0
  71. package/dist/components/icon/icon.js +54 -0
  72. package/dist/components/image/image.js +70 -0
  73. package/dist/components/index.d.ts +1 -0
  74. package/dist/components/input-wrapper/input-wrapper.js +153 -0
  75. package/dist/components/label/label.js +58 -0
  76. package/dist/components/layout/page-loading.js +39 -0
  77. package/dist/components/layout/page.js +103 -0
  78. package/dist/components/list-item/list-item.js +36 -0
  79. package/dist/components/navigation-bar/navigation-bar.d.ts +1 -4
  80. package/dist/components/navigation-bar/navigation-bar.js +106 -0
  81. package/dist/components/number-field/number-field.js +162 -0
  82. package/dist/components/option-item/option-item.js +56 -0
  83. package/dist/components/pagination/pagination.js +20 -0
  84. package/dist/components/pull-to-refresh/pull-to-refresh.js +120 -0
  85. package/dist/components/radio/radio.js +72 -0
  86. package/dist/components/rating/rating.js +62 -0
  87. package/dist/components/rating/star.js +22 -0
  88. package/dist/components/search-field/search-field.js +40 -0
  89. package/dist/components/section/section-content.js +10 -0
  90. package/dist/components/section/section-title.js +32 -0
  91. package/dist/components/section/section.js +21 -0
  92. package/dist/components/seo/seo.js +18 -0
  93. package/dist/components/sheet/sheet-body.js +25 -0
  94. package/dist/components/sheet/sheet-footer.js +11 -0
  95. package/dist/components/sheet/sheet-header.js +52 -0
  96. package/dist/components/sheet/sheet.js +72 -0
  97. package/dist/components/skeleton/skeleton.js +50 -0
  98. package/dist/components/switch/switch.js +68 -0
  99. package/dist/components/tab-bar/tab-bar.js +130 -0
  100. package/dist/components/tab-bar/tab.js +55 -0
  101. package/dist/components/text-area/text-area.js +75 -0
  102. package/dist/components/text-field/text-field.js +63 -0
  103. package/dist/components/toast/toast-provider.js +45 -0
  104. package/dist/components/toast/toast.js +66 -0
  105. package/dist/components/toast/toast.store.js +35 -0
  106. package/dist/components/tooltip/tooltip.js +43 -0
  107. package/dist/components/typography/typography.js +28 -0
  108. package/dist/components/uploader/helper.js +21 -0
  109. package/dist/components/uploader/uploader.js +93 -0
  110. package/dist/components/visibility-sensor/visibility-sensor.js +17 -0
  111. package/dist/docs/ui-react/icon-list-grid.d.ts +1 -0
  112. package/dist/external/index.js +13357 -13497
  113. package/dist/external/styles.css +1 -1
  114. package/dist/hooks/use-custom-icon-event.js +16 -0
  115. package/dist/hooks/use-settings-changed.js +16 -0
  116. package/dist/index.d.ts +1 -0
  117. package/dist/index.js +139 -7488
  118. package/dist/locales/en.json.js +30 -0
  119. package/dist/locales/index.d.ts +2 -0
  120. package/dist/locales/index.js +10 -0
  121. package/dist/locales/vi.json.js +30 -0
  122. package/dist/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/plugin/isSameOrAfter.js +18 -0
  123. package/dist/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/plugin/isSameOrBefore.js +18 -0
  124. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_DataView.js +12 -0
  125. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Hash.js +22 -0
  126. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_ListCache.js +22 -0
  127. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Map.js +12 -0
  128. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_MapCache.js +22 -0
  129. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Promise.js +12 -0
  130. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Set.js +12 -0
  131. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Stack.js +20 -0
  132. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Symbol.js +11 -0
  133. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Uint8Array.js +11 -0
  134. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_WeakMap.js +12 -0
  135. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_apply.js +22 -0
  136. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayEach.js +14 -0
  137. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayFilter.js +16 -0
  138. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayLikeKeys.js +26 -0
  139. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayMap.js +14 -0
  140. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayPush.js +14 -0
  141. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assignMergeValue.js +15 -0
  142. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assignValue.js +16 -0
  143. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assocIndexOf.js +17 -0
  144. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssign.js +15 -0
  145. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssignIn.js +15 -0
  146. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssignValue.js +19 -0
  147. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseClone.js +70 -0
  148. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseCreate.js +23 -0
  149. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseFlatten.js +20 -0
  150. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseFor.js +11 -0
  151. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGet.js +18 -0
  152. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGetAllKeys.js +16 -0
  153. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGetTag.js +16 -0
  154. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseHasIn.js +12 -0
  155. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsArguments.js +15 -0
  156. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsMap.js +15 -0
  157. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsNative.js +22 -0
  158. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsSet.js +15 -0
  159. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsTypedArray.js +17 -0
  160. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseKeys.js +20 -0
  161. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseKeysIn.js +21 -0
  162. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseMerge.js +27 -0
  163. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseMergeDeep.js +38 -0
  164. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_basePick.js +17 -0
  165. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_basePickBy.js +20 -0
  166. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseRest.js +16 -0
  167. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSet.js +31 -0
  168. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSetToString.js +20 -0
  169. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSlice.js +16 -0
  170. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseTimes.js +14 -0
  171. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseToString.js +24 -0
  172. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseTrim.js +14 -0
  173. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseUnary.js +14 -0
  174. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseUnset.js +34 -0
  175. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_castPath.js +17 -0
  176. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneArrayBuffer.js +15 -0
  177. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneBuffer.js +19 -0
  178. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneDataView.js +15 -0
  179. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneRegExp.js +14 -0
  180. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneSymbol.js +14 -0
  181. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneTypedArray.js +15 -0
  182. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copyArray.js +15 -0
  183. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copyObject.js +21 -0
  184. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copySymbols.js +15 -0
  185. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copySymbolsIn.js +15 -0
  186. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_coreJsData.js +11 -0
  187. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_createAssigner.js +22 -0
  188. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_createBaseFor.js +19 -0
  189. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_customOmitClone.js +14 -0
  190. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_defineProperty.js +17 -0
  191. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_flatRest.js +16 -0
  192. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_freeGlobal.js +11 -0
  193. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getAllKeys.js +16 -0
  194. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getAllKeysIn.js +16 -0
  195. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getMapData.js +15 -0
  196. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getNative.js +16 -0
  197. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getPrototype.js +11 -0
  198. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getRawTag.js +21 -0
  199. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getSymbols.js +16 -0
  200. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getSymbolsIn.js +18 -0
  201. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getTag.js +33 -0
  202. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getValue.js +12 -0
  203. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hasPath.js +26 -0
  204. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashClear.js +14 -0
  205. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashDelete.js +13 -0
  206. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashGet.js +19 -0
  207. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashHas.js +15 -0
  208. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashSet.js +15 -0
  209. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneArray.js +14 -0
  210. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneByTag.js +48 -0
  211. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneObject.js +16 -0
  212. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isFlattenable.js +16 -0
  213. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isIndex.js +14 -0
  214. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isIterateeCall.js +20 -0
  215. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isKey.js +18 -0
  216. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isKeyable.js +13 -0
  217. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isMasked.js +17 -0
  218. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isPrototype.js +14 -0
  219. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheClear.js +12 -0
  220. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheDelete.js +18 -0
  221. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheGet.js +15 -0
  222. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheHas.js +14 -0
  223. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheSet.js +15 -0
  224. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheClear.js +20 -0
  225. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheDelete.js +15 -0
  226. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheGet.js +14 -0
  227. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheHas.js +14 -0
  228. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheSet.js +15 -0
  229. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_memoizeCapped.js +17 -0
  230. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeCreate.js +11 -0
  231. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeKeys.js +11 -0
  232. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeKeysIn.js +16 -0
  233. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nodeUtil.js +19 -0
  234. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_objectToString.js +13 -0
  235. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_overArg.js +14 -0
  236. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_overRest.js +21 -0
  237. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_parent.js +15 -0
  238. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_root.js +11 -0
  239. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_safeGet.js +13 -0
  240. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_setToString.js +12 -0
  241. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_shortOut.js +22 -0
  242. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackClear.js +14 -0
  243. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackDelete.js +13 -0
  244. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackGet.js +12 -0
  245. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackHas.js +12 -0
  246. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackSet.js +23 -0
  247. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stringToPath.js +16 -0
  248. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_toKey.js +17 -0
  249. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_toSource.js +23 -0
  250. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_trimmedEndIndex.js +15 -0
  251. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/cloneDeepWith.js +14 -0
  252. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/constant.js +14 -0
  253. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/debounce.js +60 -0
  254. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/eq.js +12 -0
  255. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/flatten.js +15 -0
  256. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/hasIn.js +15 -0
  257. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/identity.js +12 -0
  258. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArguments.js +16 -0
  259. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArray.js +10 -0
  260. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArrayLike.js +15 -0
  261. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArrayLikeObject.js +15 -0
  262. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isBuffer.js +14 -0
  263. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isFunction.js +18 -0
  264. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isLength.js +13 -0
  265. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isMap.js +13 -0
  266. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isObject.js +13 -0
  267. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isObjectLike.js +12 -0
  268. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isPlainObject.js +22 -0
  269. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isSet.js +13 -0
  270. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isSymbol.js +15 -0
  271. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isTypedArray.js +13 -0
  272. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/keys.js +16 -0
  273. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/keysIn.js +16 -0
  274. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/last.js +13 -0
  275. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/memoize.js +23 -0
  276. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/merge.js +14 -0
  277. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/now.js +13 -0
  278. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/omit.js +29 -0
  279. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/pick.js +14 -0
  280. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/stubArray.js +12 -0
  281. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/stubFalse.js +12 -0
  282. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/throttle.js +22 -0
  283. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toNumber.js +28 -0
  284. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toPlainObject.js +15 -0
  285. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toString.js +14 -0
  286. package/dist/styles.css +1 -1
  287. package/dist/utils/bound.js +7 -0
  288. package/dist/utils/can-use-dom.js +4 -0
  289. package/dist/utils/classname.js +6 -0
  290. package/dist/utils/colors.gen.js +371 -0
  291. package/dist/utils/colors.js +8 -0
  292. package/dist/utils/convert-px.js +14 -0
  293. package/dist/utils/date.d.ts +2 -1
  294. package/dist/utils/date.js +9 -0
  295. package/dist/utils/deep-clone.js +10 -0
  296. package/dist/utils/dev-log.js +7 -0
  297. package/dist/utils/get-scroll-parent.js +20 -0
  298. package/dist/utils/is-dev.js +4 -0
  299. package/dist/utils/rubberband.js +11 -0
  300. package/dist/utils/sleep.js +4 -0
  301. package/dist/utils/supports-passive.js +15 -0
  302. package/dist/utils/to-css-length.js +6 -0
  303. package/dist/vsf/choose-image.js +14 -0
  304. package/dist-storybook/assets/AIApp-C4keJkW8.js +37 -0
  305. package/dist-storybook/assets/{App-Dp1UG-xp.js → App-BkiRuUOF.js} +1 -1
  306. package/dist-storybook/assets/Color-6BZIO3FS-EdXZe4iv.js +1 -0
  307. package/dist-storybook/assets/{DEEPLINK-cjgFMuRJ.js → DEEPLINK-CvpIbZVm.js} +1 -1
  308. package/dist-storybook/assets/DocsRenderer-LL677BLK-Ch7ovClC.js +2 -0
  309. package/dist-storybook/assets/{EVENTS-BY66PjI7.js → EVENTS-Bnl2ehlm.js} +1 -1
  310. package/dist-storybook/assets/{GETTING_STARTED-BiQMvjvo.js → GETTING_STARTED-BYcN9hg3.js} +1 -1
  311. package/dist-storybook/assets/{GETTING_STARTED-580o-9Mx.js → GETTING_STARTED-BmHWFQQE.js} +1 -1
  312. package/dist-storybook/assets/GETTING_STARTED-C1AOB25Z.js +45 -0
  313. package/dist-storybook/assets/{GETTING_STARTED-CIVMqKZW.js → GETTING_STARTED-CBY9dL2_.js} +1 -1
  314. package/dist-storybook/assets/ICON-BaZgXbtw.js +6 -0
  315. package/dist-storybook/assets/ICON-CT1pTB1A.js +6 -0
  316. package/dist-storybook/assets/{INFINITE_SCROLL-BbeR5HeP.js → INFINITE_SCROLL-BJeWhgO7.js} +1 -1
  317. package/dist-storybook/assets/{LocalesProvider-CMlmwAyY.js → LocalesProvider-CQEwtoq3.js} +1 -1
  318. package/dist-storybook/assets/{MIGRATE_DARKMODE_TO_THEME-CBDyZyg2.js → MIGRATE_DARKMODE_TO_THEME-DCxXgvQC.js} +1 -1
  319. package/dist-storybook/assets/{MIGRATION_GUIDE-FZyRWI-B.js → MIGRATION_GUIDE-BN_V-xNj.js} +1 -1
  320. package/dist-storybook/assets/OVERVIEW-AI-CLWBzviY.js +35 -0
  321. package/dist-storybook/assets/{OVERVIEW-C9_6gX5Q.js → OVERVIEW-Byly3lQV.js} +1 -1
  322. package/dist-storybook/assets/{Router-B5U8bubH.js → Router-CO6rjSXr.js} +1 -1
  323. package/dist-storybook/assets/{TAILWIND_INTEGRATION-BJdy5DAv.js → TAILWIND_INTEGRATION-CpN4_fSu.js} +1 -1
  324. package/dist-storybook/assets/{THEME-CRbvH7KT.js → THEME-B9Y39f9D.js} +1 -1
  325. package/dist-storybook/assets/WithTooltip-65CFNBJE-D6J_7FjK.js +9 -0
  326. package/dist-storybook/assets/{alert.stories-D0X5wUHk.js → alert.stories-CUItfPLn.js} +12 -12
  327. package/dist-storybook/assets/app.store-BJVKVv1J.js +1 -0
  328. package/dist-storybook/assets/avatar.stories-8_vV7Bb0.js +136 -0
  329. package/dist-storybook/assets/{axe-BHGdSCoA.js → axe-4EaTvypG.js} +13 -13
  330. package/dist-storybook/assets/badge-Gh2kTOE3.js +1 -0
  331. package/dist-storybook/assets/{badge.stories-BEFNaUA1.js → badge.stories-BXGAtgaV.js} +3 -3
  332. package/dist-storybook/assets/blocks-CB7UwFa4.js +758 -0
  333. package/dist-storybook/assets/bottom-tab-bar.stories-OrY-k1sb.js +280 -0
  334. package/dist-storybook/assets/button-BLW8SOpg.js +1 -0
  335. package/dist-storybook/assets/{button.stories-DgYDJ6x7.js → button.stories--0kpp_af.js} +3 -3
  336. package/dist-storybook/assets/calendar-ySr-9cXG.js +1 -0
  337. package/dist-storybook/assets/{calendar.stories-IVvRAjWN.js → calendar.stories-4MQj1nsX.js} +1 -1
  338. package/dist-storybook/assets/carousel.stories-CMtljvBR.js +253 -0
  339. package/dist-storybook/assets/checkbox.stories-xYjsVg2X.js +201 -0
  340. package/dist-storybook/assets/{chip.stories-D7E6fdiV.js → chip.stories-DYEfUGq3.js} +12 -12
  341. package/dist-storybook/assets/classname-Bl5epEs-.js +1 -0
  342. package/dist-storybook/assets/client-CN8vOzuD.js +9 -0
  343. package/dist-storybook/assets/{date-B3PFMb6s.js → date-DWIyMGld.js} +1 -1
  344. package/dist-storybook/assets/date-field.stories-5Tlzdpvr.js +129 -0
  345. package/dist-storybook/assets/date-picker-DeB43YU4.js +1 -0
  346. package/dist-storybook/assets/{date-picker.stories-CIFgk4q_.js → date-picker.stories-Shn-MmVG.js} +1 -1
  347. package/dist-storybook/assets/dialog.stories-DeNKN0oJ.js +212 -0
  348. package/dist-storybook/assets/dropdown.stories-Bqmu2_KM.js +449 -0
  349. package/dist-storybook/assets/{embla-carousel-react.esm-5D5fs7OQ.js → embla-carousel-react.esm-DOEAp-w3.js} +1 -1
  350. package/dist-storybook/assets/{en-Cs9O0XWn.js → en-IjeCvZ5U.js} +1 -1
  351. package/dist-storybook/assets/formatter-EIJCOSYU-DZLV30KU.js +1 -0
  352. package/dist-storybook/assets/icon-Cc9W858e.js +1 -0
  353. package/dist-storybook/assets/icon-list-grid-CSnpdoAW.js +1 -0
  354. package/dist-storybook/assets/{icon.stories-DWwbUUY-.js → icon.stories-DE484rTd.js} +3 -3
  355. package/dist-storybook/assets/iframe-BBKyXin_.css +1 -0
  356. package/dist-storybook/assets/iframe-Crg_lbde.js +1119 -0
  357. package/dist-storybook/assets/image-CB4oeTy-.js +9 -0
  358. package/dist-storybook/assets/{image.stories-BhZU057W.js → image.stories-BlYIb_Qu.js} +1 -1
  359. package/dist-storybook/assets/index-B24pfkXD.js +1 -0
  360. package/dist-storybook/assets/{index-cMNObl2z.js → index-CdnALcTP.js} +1 -1
  361. package/dist-storybook/assets/{index-EGt7xBnA.js → index-hDlmuyu2.js} +1 -1
  362. package/dist-storybook/assets/input-wrapper-Gd3QJKqj.js +1 -0
  363. package/dist-storybook/assets/label-zfqCJTGJ.js +22 -0
  364. package/dist-storybook/assets/{label.stories-CXJjdYf_.js → label.stories-C-MVt-cu.js} +3 -3
  365. package/dist-storybook/assets/matchers-5TDFFDYO-HJu_DfWo.js +14 -0
  366. package/dist-storybook/assets/navigation-bar.stories-CZ-y3eDE.js +136 -0
  367. package/dist-storybook/assets/number-field.stories-BA0FySSU.js +167 -0
  368. package/dist-storybook/assets/omit-CRXr8Lio.js +1 -0
  369. package/dist-storybook/assets/option-item-DFWc14Up.js +1 -0
  370. package/dist-storybook/assets/{option-item.stories-BvXoc8WX.js → option-item.stories-DqA-ydWX.js} +3 -3
  371. package/dist-storybook/assets/pagination-CjgiVNvu.js +1 -0
  372. package/dist-storybook/assets/{pagination.stories-_5qj2nTS.js → pagination.stories-BsKHvdF4.js} +4 -4
  373. package/dist-storybook/assets/{radio.stories-BNR-wwuw.js → radio.stories-CBmxZRxo.js} +10 -10
  374. package/dist-storybook/assets/{rating.stories-CI0LG0Qq.js → rating.stories-CcdFtcNH.js} +9 -9
  375. package/dist-storybook/assets/react-18-D2tl8ksm.js +1 -0
  376. package/dist-storybook/assets/{react-I9jCW2VV.js → react-DO0-owxu.js} +1 -1
  377. package/dist-storybook/assets/search-field-zl4ROLfn.js +1 -0
  378. package/dist-storybook/assets/{search-field.stories-CKXC6-Za.js → search-field.stories-DoclnxtC.js} +1 -1
  379. package/dist-storybook/assets/{section.stories-9vd48AgB.js → section.stories-Bqz_QgYp.js} +8 -8
  380. package/dist-storybook/assets/sheet-body-2dWL2AE5.js +1 -0
  381. package/dist-storybook/assets/sheet-footer-DuPhbVOb.js +1 -0
  382. package/dist-storybook/assets/{sheet.stories-C3gLIQsn.js → sheet.stories-CoXnt4LG.js} +4 -4
  383. package/dist-storybook/assets/skeleton-BVLpHxKT.js +1 -0
  384. package/dist-storybook/assets/{skeleton.stories-C0y1o1Y_.js → skeleton.stories-B-OfMZId.js} +3 -3
  385. package/dist-storybook/assets/{store-Ce3Ikv5g.js → store-BwIebEt6.js} +5 -5
  386. package/dist-storybook/assets/{switch.stories-BdWFln-M.js → switch.stories-D4PQjgbo.js} +9 -9
  387. package/dist-storybook/assets/syntaxhighlighter-ED5Y7EFY-BxRQp_WE.js +6 -0
  388. package/dist-storybook/assets/tab-bar.stories-BrcQMypS.js +164 -0
  389. package/dist-storybook/assets/{text-area.stories-DCt3RB3A.js → text-area.stories-Bpaw2_4A.js} +10 -10
  390. package/dist-storybook/assets/text-field-CqJG0bIl.js +1 -0
  391. package/dist-storybook/assets/{text-field.stories-Bqv7f948.js → text-field.stories-PQoP3DbL.js} +1 -1
  392. package/dist-storybook/assets/toast.stories-DmPy9T3m.js +209 -0
  393. package/dist-storybook/assets/{tooltip.stories-DDdsuU3U.js → tooltip.stories-Be_kIaDc.js} +8 -8
  394. package/dist-storybook/assets/typography-CMIMyivt.js +1 -0
  395. package/dist-storybook/assets/{typography.stories-BzCxaZQU.js → typography.stories-DSt5W_AG.js} +3 -3
  396. package/dist-storybook/assets/uploader.stories-C5CmeXEk.js +65 -0
  397. package/dist-storybook/assets/{use-app-pause-ClsUnndr.js → use-app-pause-_ycnhKwZ.js} +3 -3
  398. package/dist-storybook/assets/{use-app-resume-D_EcIvMd.js → use-app-resume-CWb2s-wo.js} +1 -1
  399. package/dist-storybook/assets/{use-bottom-tab-bar-BC1cz2uE.js → use-bottom-tab-bar--DRl-8c4.js} +1 -1
  400. package/dist-storybook/assets/{use-custom-icon-event-cUk4Md0Y.js → use-custom-icon-event-BXcRPkLg.js} +1 -1
  401. package/dist-storybook/assets/{use-did-hide-BmABiaUE.js → use-did-hide-LBcrwoUo.js} +1 -1
  402. package/dist-storybook/assets/{use-did-show-CQuySkkT.js → use-did-show-BXLstTgt.js} +1 -1
  403. package/dist-storybook/assets/{use-histories-CBm09Lno.js → use-histories-Cz7ncXaj.js} +1 -1
  404. package/dist-storybook/assets/{use-history-7yguNz6O.js → use-history-B_w6SPwr.js} +1 -1
  405. package/dist-storybook/assets/{use-language-DPyWMce2.js → use-language-D84C9QNT.js} +1 -1
  406. package/dist-storybook/assets/{use-load-more-KlDJZhj2.js → use-load-more-Bb9YFkAE.js} +1 -1
  407. package/dist-storybook/assets/{use-location-C7kE1yla.js → use-location-DnxJ5FvJ.js} +1 -1
  408. package/dist-storybook/assets/{use-navigate-BpIyvtwc.js → use-navigate-OLqoL3vR.js} +3 -3
  409. package/dist-storybook/assets/{use-navigation-bar-guzwhM_u.js → use-navigation-bar-D5BX6S-r.js} +15 -15
  410. package/dist-storybook/assets/{use-navigation-type-DOndDqQH.js → use-navigation-type-Cq7T35ur.js} +1 -1
  411. package/dist-storybook/assets/{use-page-layout-dO6ylI1b.js → use-page-layout-BrFRWwC6.js} +1 -1
  412. package/dist-storybook/assets/{use-page-scroll-CCG2d2Gb.js → use-page-scroll-BZ8XiPza.js} +1 -1
  413. package/dist-storybook/assets/{use-pull-to-refresh-lhumDu1H.js → use-pull-to-refresh-BEjtxiFn.js} +1 -1
  414. package/dist-storybook/assets/{use-settings-changed-Bt58DJ-c.js → use-settings-changed-UaQRSWAg.js} +1 -1
  415. package/dist-storybook/assets/{use-translate-Jhz6jTXo.js → use-translate-BO8E9Sde.js} +1 -1
  416. package/dist-storybook/iframe.html +58 -40
  417. package/dist-storybook/index.html +8 -16
  418. package/dist-storybook/index.json +1 -1
  419. package/dist-storybook/project.json +1 -1
  420. package/dist-storybook/sb-addons/a11y-2/manager-bundle.js +55 -3
  421. package/dist-storybook/sb-addons/docs-1/manager-bundle.js +1 -149
  422. package/dist-storybook/sb-addons/storybook-build-3/manager-bundle.js +19 -1
  423. package/dist-storybook/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +93 -436
  424. package/dist-storybook/sb-manager/globals-runtime.js +73307 -65142
  425. package/dist-storybook/sb-manager/globals.js +6 -16
  426. package/dist-storybook/sb-manager/manager-stores.js +23 -0
  427. package/dist-storybook/sb-manager/runtime.js +17679 -10455
  428. package/dist-storybook/stories-data.json +91 -27
  429. package/dist-storybook/vite-inject-mocker-entry.js +2 -2
  430. package/package.json +5 -5
  431. package/dist-storybook/assets/Color-AVL7NMMY-XA8cFKdV.js +0 -1
  432. package/dist-storybook/assets/DocsRenderer-PQXLIZUC-D10-0Yfb.js +0 -2
  433. package/dist-storybook/assets/_baseClone-DQVxEhny.js +0 -1
  434. package/dist-storybook/assets/alert-CKwsuaPI.js +0 -1
  435. package/dist-storybook/assets/app-CTv8lFU3.js +0 -1
  436. package/dist-storybook/assets/avatar-rWcYGe6j.js +0 -1
  437. package/dist-storybook/assets/avatar.stories-8lrbhMma.js +0 -136
  438. package/dist-storybook/assets/badge-VcjGVEum.js +0 -1
  439. package/dist-storybook/assets/blocks-DKR3P4qW.js +0 -1243
  440. package/dist-storybook/assets/bottom-tab-bar-B6IAoRwz.js +0 -115
  441. package/dist-storybook/assets/bottom-tab-bar.stories-DXzLlO5o.js +0 -186
  442. package/dist-storybook/assets/button-DJH3RlJl.js +0 -1
  443. package/dist-storybook/assets/calendar-C4Xe_TW2.js +0 -1
  444. package/dist-storybook/assets/carousel-DJlgMyS5.js +0 -37
  445. package/dist-storybook/assets/carousel.stories-3rA3nxdL.js +0 -217
  446. package/dist-storybook/assets/checkbox-JOxcmyCZ.js +0 -1
  447. package/dist-storybook/assets/checkbox.stories-ge3pgfBb.js +0 -201
  448. package/dist-storybook/assets/chip-Crt60rph.js +0 -1
  449. package/dist-storybook/assets/date-field-range-B-sv9nbW.js +0 -1
  450. package/dist-storybook/assets/date-field.stories-B9G2heHt.js +0 -129
  451. package/dist-storybook/assets/date-picker-BPzKPdhO.js +0 -1
  452. package/dist-storybook/assets/dialog-BAfGQzk5.js +0 -1
  453. package/dist-storybook/assets/dialog.stories-vDMKz9Tw.js +0 -212
  454. package/dist-storybook/assets/dropdown-Dtomaqpw.js +0 -247
  455. package/dist-storybook/assets/dropdown.stories-Cj0HM0VI.js +0 -200
  456. package/dist-storybook/assets/icon-CdiFzFyf.js +0 -1
  457. package/dist-storybook/assets/iframe-BHaCv4dM.css +0 -1
  458. package/dist-storybook/assets/iframe-DfPay7Zl.js +0 -1071
  459. package/dist-storybook/assets/image-CMKb-R3x.js +0 -9
  460. package/dist-storybook/assets/index-BWpuenI4.js +0 -1
  461. package/dist-storybook/assets/index-DqZh6B0b.js +0 -1
  462. package/dist-storybook/assets/input-wrapper-CgaUwbbE.js +0 -1
  463. package/dist-storybook/assets/label-D44azUgi.js +0 -27
  464. package/dist-storybook/assets/matchers-7Z3WT2CE-Dw4MQV_s.js +0 -14
  465. package/dist-storybook/assets/navigation-bar-DK3TxcTu.js +0 -79
  466. package/dist-storybook/assets/navigation-bar.stories-CB3Kg-sH.js +0 -73
  467. package/dist-storybook/assets/number-field-Bz7su9S1.js +0 -1
  468. package/dist-storybook/assets/number-field.stories-DSxPSzLv.js +0 -167
  469. package/dist-storybook/assets/omit-BWHsnDSR.js +0 -1
  470. package/dist-storybook/assets/option-item-CpeNcb5w.js +0 -1
  471. package/dist-storybook/assets/pagination-Cp-DHO4Q.js +0 -1
  472. package/dist-storybook/assets/proxy-B4G9nIBd.js +0 -1
  473. package/dist-storybook/assets/radio-D0aV0RIg.js +0 -1
  474. package/dist-storybook/assets/rating-D2e8RTGl.js +0 -1
  475. package/dist-storybook/assets/react-18-C7pDmBBf.js +0 -9
  476. package/dist-storybook/assets/search-field-DINESW8Y.js +0 -1
  477. package/dist-storybook/assets/section-content-D49PabBW.js +0 -1
  478. package/dist-storybook/assets/sheet-footer-nEdxsYan.js +0 -1
  479. package/dist-storybook/assets/skeleton-B12XbNAJ.js +0 -1
  480. package/dist-storybook/assets/switch-D0Z9tWin.js +0 -1
  481. package/dist-storybook/assets/tab-bar-kExoGg5P.js +0 -31
  482. package/dist-storybook/assets/tab-bar.stories-BgDXX0of.js +0 -136
  483. package/dist-storybook/assets/text-area-GKy5HL12.js +0 -1
  484. package/dist-storybook/assets/text-field-CGWNqitB.js +0 -1
  485. package/dist-storybook/assets/toast-provider-DKSrfhJD.js +0 -9
  486. package/dist-storybook/assets/toast.stories-CcFzS6QI.js +0 -201
  487. package/dist-storybook/assets/tooltip-B9rDI6z9.js +0 -1
  488. package/dist-storybook/assets/typography-CB8hPDyK.js +0 -1
  489. package/dist-storybook/assets/uploader.stories-izVumFqZ.js +0 -65
  490. package/dist-storybook/assets/visibility-sensor-Jf-Nmil6.js +0 -1
  491. package/dist-storybook/sb-manager/globals-module-info.js +0 -799
@@ -1,20 +1,20 @@
1
- import{g as VR}from"./iframe-DfPay7Zl.js";var Ai={exports:{}};var HR=Ai.exports,Mp;function GR(){return Mp||(Mp=1,(function(Fi){(function is(E){var $t=E,N=E.document,x=x||{};x.version="4.11.0",M(Fi)==="object"&&Fi.exports&&typeof is.toString=="function"&&(x.source="("+is.toString()+')(typeof window === "object" ? window : this);',Fi.exports=x),typeof E.getComputedStyle=="function"&&(E.axe=x);var Pp=["precision","format","inGamut"],Ip=["space"],Np=["algorithm"],Bp=["method"],Lp=["maxDeltaE","deltaEMethod","steps","maxSteps"],qp=["variant"],jp=["matches"],$p=["chromium"],zp=["noImplicit"],Vp=["noPresentational"],Hp=["node"],Gp=["relatedNodes"],Up=["node"],Wp=["node"],Yp=["environmentData"],Kp=["environmentData"],Xp=["environmentData"],Zp=["environmentData"],Jp=["environmentData"];function Qp(F){return ds(F)||us(F)||Wa(F)||cs()}function Ci(F){var S=typeof Map=="function"?new Map:void 0;return Ci=function(G){if(G===null||!em(G))return G;if(typeof G!="function")throw new TypeError("Super expression must either be null or a function");if(S!==void 0){if(S.has(G))return S.get(G);S.set(G,_e)}function _e(){return os(G,arguments,Zr(this).constructor)}return _e.prototype=Object.create(G.prototype,{constructor:{value:_e,enumerable:!1,writable:!0,configurable:!0}}),Jr(_e,G)},Ci(F)}function em(F){try{return Function.toString.call(F).indexOf("[native code]")!==-1}catch{return typeof F=="function"}}function Xr(F,S,L){return(S=ps(S))in F?Object.defineProperty(F,S,{value:L,enumerable:!0,configurable:!0,writable:!0}):F[S]=L,F}function os(F,S,L){if(Ri())return Reflect.construct.apply(null,arguments);var G=[null];G.push.apply(G,S);var _e=new(F.bind.apply(F,G));return L&&Jr(_e,L.prototype),_e}function qe(F,S){if(F==null)return{};var L,G,_e=tm(F,S);if(Object.getOwnPropertySymbols){var Ie=Object.getOwnPropertySymbols(F);for(G=0;G<Ie.length;G++)L=Ie[G],S.indexOf(L)===-1&&{}.propertyIsEnumerable.call(F,L)&&(_e[L]=F[L])}return _e}function tm(F,S){if(F==null)return{};var L={};for(var G in F)if({}.hasOwnProperty.call(F,G)){if(S.indexOf(G)!==-1)continue;L[G]=F[G]}return L}function Ga(F,S,L){return S=Zr(S),rm(F,Ri()?Reflect.construct(S,L||[],Zr(F).constructor):S.apply(F,L))}function rm(F,S){if(S&&(M(S)=="object"||typeof S=="function"))return S;if(S!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return am(F)}function am(F){if(F===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return F}function Ri(){try{var F=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch{}return(Ri=function(){return!!F})()}function Zr(F){return Zr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(S){return S.__proto__||Object.getPrototypeOf(S)},Zr(F)}function Ua(F,S){if(typeof S!="function"&&S!==null)throw new TypeError("Super expression must either be null or a function");F.prototype=Object.create(S&&S.prototype,{constructor:{value:F,writable:!0,configurable:!0}}),Object.defineProperty(F,"prototype",{writable:!1}),S&&Jr(F,S)}function Jr(F,S){return Jr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(L,G){return L.__proto__=G,L},Jr(F,S)}function de(){return de=Object.assign?Object.assign.bind():function(F){for(var S=1;S<arguments.length;S++){var L=arguments[S];for(var G in L)({}).hasOwnProperty.call(L,G)&&(F[G]=L[G])}return F},de.apply(null,arguments)}function re(F){return im(F)||us(F)||Wa(F)||nm()}function nm(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
2
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function us(F){if(typeof Symbol<"u"&&F[Symbol.iterator]!=null||F["@@iterator"]!=null)return Array.from(F)}function im(F){if(Array.isArray(F))return Ti(F)}function Zt(F,S,L){ls(F,S),S.set(F,L)}function ss(F,S){ls(F,S),S.add(F)}function ls(F,S){if(S.has(F))throw new TypeError("Cannot initialize the same private elements twice on an object")}function Dt(F,S){return F.get(Rr(F,S))}function rt(F,S,L){return F.set(Rr(F,S),L),L}function Rr(F,S,L){if(typeof F=="function"?F===S:F.has(S))return arguments.length<3?S:L;throw new TypeError("Private element is not present on this object")}function H(F,S){return ds(F)||om(F,S)||Wa(F,S)||cs()}function cs(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
3
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function om(F,S){var L=F==null?null:typeof Symbol<"u"&&F[Symbol.iterator]||F["@@iterator"];if(L!=null){var G,_e,Ie,Ke,ft=[],Ve=!0,tt=!1;try{if(Ie=(L=L.call(F)).next,S===0){if(Object(L)!==L)return;Ve=!1}else for(;!(Ve=(G=Ie.call(L)).done)&&(ft.push(G.value),ft.length!==S);Ve=!0);}catch(Qr){tt=!0,_e=Qr}finally{try{if(!Ve&&L.return!=null&&(Ke=L.return(),Object(Ke)!==Ke))return}finally{if(tt)throw _e}}return ft}}function ds(F){if(Array.isArray(F))return F}function wt(F,S){if(!(F instanceof S))throw new TypeError("Cannot call a class as a function")}function fs(F,S){for(var L=0;L<S.length;L++){var G=S[L];G.enumerable=G.enumerable||!1,G.configurable=!0,"value"in G&&(G.writable=!0),Object.defineProperty(F,ps(G.key),G)}}function _t(F,S,L){return S&&fs(F.prototype,S),L&&fs(F,L),Object.defineProperty(F,"prototype",{writable:!1}),F}function ps(F){var S=um(F,"string");return M(S)=="symbol"?S:S+""}function um(F,S){if(M(F)!="object"||!F)return F;var L=F[Symbol.toPrimitive];if(L!==void 0){var G=L.call(F,S);if(M(G)!="object")return G;throw new TypeError("@@toPrimitive must return a primitive value.")}return(S==="string"?String:Number)(F)}function xe(F,S){var L=typeof Symbol<"u"&&F[Symbol.iterator]||F["@@iterator"];if(!L){if(Array.isArray(F)||(L=Wa(F))||S){L&&(F=L);var G=0,_e=function(){};return{s:_e,n:function(){return G>=F.length?{done:!0}:{done:!1,value:F[G++]}},e:function(tt){throw tt},f:_e}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
4
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var Ie,Ke=!0,ft=!1;return{s:function(){L=L.call(F)},n:function(){var tt=L.next();return Ke=tt.done,tt},e:function(tt){ft=!0,Ie=tt},f:function(){try{Ke||L.return==null||L.return()}finally{if(ft)throw Ie}}}}function Wa(F,S){if(F){if(typeof F=="string")return Ti(F,S);var L={}.toString.call(F).slice(8,-1);return L==="Object"&&F.constructor&&(L=F.constructor.name),L==="Map"||L==="Set"?Array.from(F):L==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(L)?Ti(F,S):void 0}}function Ti(F,S){(S==null||S>F.length)&&(S=F.length);for(var L=0,G=Array(S);L<S;L++)G[L]=F[L];return G}function M(F){"@babel/helpers - typeof";return M=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(S){return typeof S}:function(S){return S&&typeof Symbol=="function"&&S.constructor===Symbol&&S!==Symbol.prototype?"symbol":typeof S},M(F)}(function(F,S,L,G,_e,Ie,Ke,ft,Ve,tt,Qr){var sm=Object.create,ea=Object.defineProperty,lm=Object.getPrototypeOf,cm=Object.prototype.hasOwnProperty,dm=Object.getOwnPropertyNames,fm=Object.getOwnPropertyDescriptor,pm=function(t,r,a){return r in t?ea(t,r,{enumerable:!0,configurable:!0,writable:!0,value:a}):t[r]=a},mm=function(t){return ea(t,"__esModule",{value:!0})},y=function(t,r){return function(){return r||t((r={exports:{}}).exports,r),r.exports}},xt=function(t,r){for(var a in r)ea(t,a,{get:r[a],enumerable:!0})},hm=function(t,r,a){if(r&&M(r)==="object"||typeof r=="function"){var n=xe(dm(r)),i;try{var o=function(){var s=i.value;!cm.call(t,s)&&s!=="default"&&ea(t,s,{get:function(){return r[s]},enumerable:!(a=fm(r,s))||a.enumerable})};for(n.s();!(i=n.n()).done;)o()}catch(u){n.e(u)}finally{n.f()}}return t},kt=function(t){return hm(mm(ea(t!=null?sm(lm(t)):{},"default",t&&t.__esModule&&"default"in t?{get:function(){return t.default},enumerable:!0}:{value:t,enumerable:!0})),t)},ms=function(t,r,a){return pm(t,M(r)!=="symbol"?r+"":r,a),a},vm=y(function(e,t){(function(r,a){M(e)==="object"&&typeof t<"u"?t.exports=a():r.ES6Promise=a()})(e,function(){function r(R){var I=M(R);return R!==null&&(I==="object"||I==="function")}function a(R){return typeof R=="function"}var n=void 0;Array.isArray?n=Array.isArray:n=function(I){return Object.prototype.toString.call(I)==="[object Array]"};var i=n,o=0,u=void 0,s=void 0,l=function(I,j){C[o]=I,C[o+1]=j,o+=2,o===2&&(s?s(T):$())};function c(R){s=R}function d(R){l=R}var f=typeof E<"u"?E:void 0,p=f||{},m=p.MutationObserver||p.WebKitMutationObserver,h=typeof self>"u"&&typeof process<"u"&&{}.toString.call(process)==="[object process]",v=typeof Uint8ClampedArray<"u"&&typeof importScripts<"u"&&typeof MessageChannel<"u";function g(){return function(){return process.nextTick(T)}}function b(){return typeof u<"u"?function(){u(T)}:_()}function w(){var R=0,I=new m(T),j=N.createTextNode("");return I.observe(j,{characterData:!0}),function(){j.data=R=++R%2}}function D(){var R=new MessageChannel;return R.port1.onmessage=T,function(){return R.port2.postMessage(0)}}function _(){var R=setTimeout;return function(){return R(T,1)}}var C=new Array(1e3);function T(){for(var R=0;R<o;R+=2){var I=C[R],j=C[R+1];I(j),C[R]=void 0,C[R+1]=void 0}o=0}function O(){try{var R=Function("return this")().require("vertx");return u=R.runOnLoop||R.runOnContext,b()}catch{return _()}}var $=void 0;h?$=g():m?$=w():v?$=D():f===void 0?$=O():$=_();function k(R,I){var j=this,X=new this.constructor(V);X[z]===void 0&&Fe(X);var oe=j._state;if(oe){var fe=arguments[oe-1];l(function(){return Ae(oe,X,fe,j._result)})}else me(j,X,R,I);return X}function P(R){var I=this;if(R&&M(R)==="object"&&R.constructor===I)return R;var j=new I(V);return W(j,R),j}var z=Math.random().toString(36).substring(2);function V(){}var Q=void 0,ie=1,K=2;function te(){return new TypeError("You cannot resolve a promise with itself")}function q(){return new TypeError("A promises callback cannot return that same promise.")}function J(R,I,j,X){try{R.call(I,j,X)}catch(oe){return oe}}function A(R,I,j){l(function(X){var oe=!1,fe=J(j,I,function(ze){oe||(oe=!0,I!==ze?W(X,ze):Y(X,ze))},function(ze){oe||(oe=!0,Z(X,ze))},"Settle: "+(X._label||" unknown promise"));!oe&&fe&&(oe=!0,Z(X,fe))},R)}function U(R,I){I._state===ie?Y(R,I._result):I._state===K?Z(R,I._result):me(I,void 0,function(j){return W(R,j)},function(j){return Z(R,j)})}function B(R,I,j){I.constructor===R.constructor&&j===k&&I.constructor.resolve===P?U(R,I):j===void 0?Y(R,I):a(j)?A(R,I,j):Y(R,I)}function W(R,I){if(R===I)Z(R,te());else if(r(I)){var j=void 0;try{j=I.then}catch(X){Z(R,X);return}B(R,I,j)}else Y(R,I)}function ne(R){R._onerror&&R._onerror(R._result),De(R)}function Y(R,I){R._state===Q&&(R._result=I,R._state=ie,R._subscribers.length!==0&&l(De,R))}function Z(R,I){R._state===Q&&(R._state=K,R._result=I,l(ne,R))}function me(R,I,j,X){var oe=R._subscribers,fe=oe.length;R._onerror=null,oe[fe]=I,oe[fe+ie]=j,oe[fe+K]=X,fe===0&&R._state&&l(De,R)}function De(R){var I=R._subscribers,j=R._state;if(I.length!==0){for(var X=void 0,oe=void 0,fe=R._result,ze=0;ze<I.length;ze+=3)X=I[ze],oe=I[ze+j],X?Ae(j,X,oe,fe):oe(fe);R._subscribers.length=0}}function Ae(R,I,j,X){var oe=a(j),fe=void 0,ze=void 0,Kr=!0;if(oe){try{fe=j(X)}catch(Ei){Kr=!1,ze=Ei}if(I===fe){Z(I,q());return}}else fe=X;I._state!==Q||(oe&&Kr?W(I,fe):Kr===!1?Z(I,ze):R===ie?Y(I,fe):R===K&&Z(I,fe))}function Me(R,I){try{I(function(X){W(R,X)},function(X){Z(R,X)})}catch(j){Z(R,j)}}var je=0;function Le(){return je++}function Fe(R){R[z]=je++,R._state=void 0,R._result=void 0,R._subscribers=[]}function Yr(){return new Error("Array Methods must be provided an Array")}var Ye=(function(){function R(I,j){this._instanceConstructor=I,this.promise=new I(V),this.promise[z]||Fe(this.promise),i(j)?(this.length=j.length,this._remaining=j.length,this._result=new Array(this.length),this.length===0?Y(this.promise,this._result):(this.length=this.length||0,this._enumerate(j),this._remaining===0&&Y(this.promise,this._result))):Z(this.promise,Yr())}return R.prototype._enumerate=function(j){for(var X=0;this._state===Q&&X<j.length;X++)this._eachEntry(j[X],X)},R.prototype._eachEntry=function(j,X){var oe=this._instanceConstructor,fe=oe.resolve;if(fe===P){var ze=void 0,Kr=void 0,Ei=!1;try{ze=j.then}catch(ns){Ei=!0,Kr=ns}if(ze===k&&j._state!==Q)this._settledAt(j._state,X,j._result);else if(typeof ze!="function")this._remaining--,this._result[X]=j;else if(oe===ke){var as=new oe(V);Ei?Z(as,Kr):B(as,j,ze),this._willSettleAt(as,X)}else this._willSettleAt(new oe(function(ns){return ns(j)}),X)}else this._willSettleAt(fe(j),X)},R.prototype._settledAt=function(j,X,oe){var fe=this.promise;fe._state===Q&&(this._remaining--,j===K?Z(fe,oe):this._result[X]=oe),this._remaining===0&&Y(fe,this._result)},R.prototype._willSettleAt=function(j,X){var oe=this;me(j,void 0,function(fe){return oe._settledAt(ie,X,fe)},function(fe){return oe._settledAt(K,X,fe)})},R})();function Ce(R){return new Ye(this,R).promise}function $e(R){var I=this;return i(R)?new I(function(j,X){for(var oe=R.length,fe=0;fe<oe;fe++)I.resolve(R[fe]).then(j,X)}):new I(function(j,X){return X(new TypeError("You must pass an array to race."))})}function Pe(R){var I=this,j=new I(V);return Z(j,R),j}function Qe(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}function et(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}var ke=(function(){function R(I){this[z]=Le(),this._result=this._state=void 0,this._subscribers=[],V!==I&&(typeof I!="function"&&Qe(),this instanceof R?Me(this,I):et())}return R.prototype.catch=function(j){return this.then(null,j)},R.prototype.finally=function(j){var X=this,oe=X.constructor;return a(j)?X.then(function(fe){return oe.resolve(j()).then(function(){return fe})},function(fe){return oe.resolve(j()).then(function(){throw fe})}):X.then(j,j)},R})();ke.prototype.then=k,ke.all=Ce,ke.race=$e,ke.resolve=P,ke.reject=Pe,ke._setScheduler=c,ke._setAsap=d,ke._asap=l;function we(){var R=void 0;if(typeof $t<"u")R=$t;else if(typeof self<"u")R=self;else try{R=Function("return this")()}catch{throw new Error("polyfill failed because global object is unavailable in this environment")}var I=R.Promise;if(I){var j=null;try{j=Object.prototype.toString.call(I.resolve())}catch{}if(j==="[object Promise]"&&!I.cast)return}R.Promise=ke}return ke.polyfill=we,ke.Promise=ke,ke})}),gm=y(function(e){var t=1e5,r=(function(){var A=Object.prototype.toString,U=Object.prototype.hasOwnProperty;return{Class:function(W){return A.call(W).replace(/^\[object *|\]$/g,"")},HasProperty:function(W,ne){return ne in W},HasOwnProperty:function(W,ne){return U.call(W,ne)},IsCallable:function(W){return typeof W=="function"},ToInt32:function(W){return W>>0},ToUint32:function(W){return W>>>0}}})(),a=Math.LN2,n=Math.abs,i=Math.floor,o=Math.log,u=Math.min,s=Math.pow,l=Math.round;function c(A,U,B){return A<U?U:A>B?B:A}var d=Object.getOwnPropertyNames||function(A){if(A!==Object(A))throw new TypeError("Object.getOwnPropertyNames called on non-object");var U=[],B;for(B in A)r.HasOwnProperty(A,B)&&U.push(B);return U},f;Object.defineProperty&&(function(){try{return Object.defineProperty({},"x",{}),!0}catch{return!1}})()?f=Object.defineProperty:f=function(U,B,W){if(!U===Object(U))throw new TypeError("Object.defineProperty called on non-object");return r.HasProperty(W,"get")&&Object.prototype.__defineGetter__&&Object.prototype.__defineGetter__.call(U,B,W.get),r.HasProperty(W,"set")&&Object.prototype.__defineSetter__&&Object.prototype.__defineSetter__.call(U,B,W.set),r.HasProperty(W,"value")&&(U[B]=W.value),U};function p(A){if(d&&f){var U=d(A),B;for(B=0;B<U.length;B+=1)f(A,U[B],{value:A[U[B]],writable:!1,enumerable:!1,configurable:!1})}}function m(A){if(!f)return;if(A.length>t)throw new RangeError("Array too large for polyfill");function U(W){f(A,W,{get:function(){return A._getter(W)},set:function(Y){A._setter(W,Y)},enumerable:!0,configurable:!1})}var B;for(B=0;B<A.length;B+=1)U(B)}function h(A,U){var B=32-U;return A<<B>>B}function v(A,U){var B=32-U;return A<<B>>>B}function g(A){return[A&255]}function b(A){return h(A[0],8)}function w(A){return[A&255]}function D(A){return v(A[0],8)}function _(A){return A=l(Number(A)),[A<0?0:A>255?255:A&255]}function C(A){return[A>>8&255,A&255]}function T(A){return h(A[0]<<8|A[1],16)}function O(A){return[A>>8&255,A&255]}function $(A){return v(A[0]<<8|A[1],16)}function k(A){return[A>>24&255,A>>16&255,A>>8&255,A&255]}function P(A){return h(A[0]<<24|A[1]<<16|A[2]<<8|A[3],32)}function z(A){return[A>>24&255,A>>16&255,A>>8&255,A&255]}function V(A){return v(A[0]<<24|A[1]<<16|A[2]<<8|A[3],32)}function Q(A,U,B){var W=(1<<U-1)-1,ne,Y,Z,me,De,Ae,Me;function je(Le){var Fe=i(Le),Yr=Le-Fe;return Yr<.5?Fe:Yr>.5||Fe%2?Fe+1:Fe}for(A!==A?(Y=(1<<U)-1,Z=s(2,B-1),ne=0):A===1/0||A===-1/0?(Y=(1<<U)-1,Z=0,ne=A<0?1:0):A===0?(Y=0,Z=0,ne=1/A===-1/0?1:0):(ne=A<0,A=n(A),A>=s(2,1-W)?(Y=u(i(o(A)/a),1023),Z=je(A/s(2,Y)*s(2,B)),Z/s(2,B)>=2&&(Y=Y+1,Z=1),Y>W?(Y=(1<<U)-1,Z=0):(Y=Y+W,Z=Z-s(2,B))):(Y=0,Z=je(A/s(2,1-W-B)))),De=[],me=B;me;me-=1)De.push(Z%2?1:0),Z=i(Z/2);for(me=U;me;me-=1)De.push(Y%2?1:0),Y=i(Y/2);for(De.push(ne?1:0),De.reverse(),Ae=De.join(""),Me=[];Ae.length;)Me.push(parseInt(Ae.substring(0,8),2)),Ae=Ae.substring(8);return Me}function ie(A,U,B){var W=[],ne,Y,Z,me,De,Ae,Me,je;for(ne=A.length;ne;ne-=1)for(Z=A[ne-1],Y=8;Y;Y-=1)W.push(Z%2?1:0),Z=Z>>1;return W.reverse(),me=W.join(""),De=(1<<U-1)-1,Ae=parseInt(me.substring(0,1),2)?-1:1,Me=parseInt(me.substring(1,1+U),2),je=parseInt(me.substring(1+U),2),Me===(1<<U)-1?je===0?Ae*(1/0):NaN:Me>0?Ae*s(2,Me-De)*(1+je/s(2,B)):je!==0?Ae*s(2,-(De-1))*(je/s(2,B)):Ae<0?-0:0}function K(A){return ie(A,11,52)}function te(A){return Q(A,11,52)}function q(A){return ie(A,8,23)}function J(A){return Q(A,8,23)}(function(){function A(Le){if(Le=r.ToInt32(Le),Le<0)throw new RangeError("ArrayBuffer size is not a small enough positive integer");this.byteLength=Le,this._bytes=[],this._bytes.length=Le;var Fe;for(Fe=0;Fe<this.byteLength;Fe+=1)this._bytes[Fe]=0;p(this)}e.ArrayBuffer=e.ArrayBuffer||A;function U(){}function B(Le,Fe,Yr){var Ye;return Ye=function($e,Pe,Qe){var et,ke,we,R;if(!arguments.length||typeof arguments[0]=="number"){if(this.length=r.ToInt32(arguments[0]),Qe<0)throw new RangeError("ArrayBufferView size is not a small enough positive integer");this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new A(this.byteLength),this.byteOffset=0}else if(M(arguments[0])==="object"&&arguments[0].constructor===Ye)for(et=arguments[0],this.length=et.length,this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new A(this.byteLength),this.byteOffset=0,we=0;we<this.length;we+=1)this._setter(we,et._getter(we));else if(M(arguments[0])==="object"&&!(arguments[0]instanceof A||r.Class(arguments[0])==="ArrayBuffer"))for(ke=arguments[0],this.length=r.ToUint32(ke.length),this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new A(this.byteLength),this.byteOffset=0,we=0;we<this.length;we+=1)R=ke[we],this._setter(we,Number(R));else if(M(arguments[0])==="object"&&(arguments[0]instanceof A||r.Class(arguments[0])==="ArrayBuffer")){if(this.buffer=$e,this.byteOffset=r.ToUint32(Pe),this.byteOffset>this.buffer.byteLength)throw new RangeError("byteOffset out of range");if(this.byteOffset%this.BYTES_PER_ELEMENT)throw new RangeError("ArrayBuffer length minus the byteOffset is not a multiple of the element size.");if(arguments.length<3){if(this.byteLength=this.buffer.byteLength-this.byteOffset,this.byteLength%this.BYTES_PER_ELEMENT)throw new RangeError("length of buffer minus byteOffset not a multiple of the element size");this.length=this.byteLength/this.BYTES_PER_ELEMENT}else this.length=r.ToUint32(Qe),this.byteLength=this.length*this.BYTES_PER_ELEMENT;if(this.byteOffset+this.byteLength>this.buffer.byteLength)throw new RangeError("byteOffset and length reference an area beyond the end of the buffer")}else throw new TypeError("Unexpected argument type(s)");this.constructor=Ye,p(this),m(this)},Ye.prototype=new U,Ye.prototype.BYTES_PER_ELEMENT=Le,Ye.prototype._pack=Fe,Ye.prototype._unpack=Yr,Ye.BYTES_PER_ELEMENT=Le,Ye.prototype._getter=function(Ce){if(arguments.length<1)throw new SyntaxError("Not enough arguments");if(Ce=r.ToUint32(Ce),!(Ce>=this.length)){for(var $e=[],Pe=0,Qe=this.byteOffset+Ce*this.BYTES_PER_ELEMENT;Pe<this.BYTES_PER_ELEMENT;Pe+=1,Qe+=1)$e.push(this.buffer._bytes[Qe]);return this._unpack($e)}},Ye.prototype.get=Ye.prototype._getter,Ye.prototype._setter=function(Ce,$e){if(arguments.length<2)throw new SyntaxError("Not enough arguments");if(Ce=r.ToUint32(Ce),Ce<this.length){var Pe=this._pack($e),Qe,et;for(Qe=0,et=this.byteOffset+Ce*this.BYTES_PER_ELEMENT;Qe<this.BYTES_PER_ELEMENT;Qe+=1,et+=1)this.buffer._bytes[et]=Pe[Qe]}},Ye.prototype.set=function(Ce,$e){if(arguments.length<1)throw new SyntaxError("Not enough arguments");var Pe,Qe,et,ke,we,R,I,j,X,oe;if(M(arguments[0])==="object"&&arguments[0].constructor===this.constructor){if(Pe=arguments[0],et=r.ToUint32(arguments[1]),et+Pe.length>this.length)throw new RangeError("Offset plus length of array is out of range");if(j=this.byteOffset+et*this.BYTES_PER_ELEMENT,X=Pe.length*this.BYTES_PER_ELEMENT,Pe.buffer===this.buffer){for(oe=[],we=0,R=Pe.byteOffset;we<X;we+=1,R+=1)oe[we]=Pe.buffer._bytes[R];for(we=0,I=j;we<X;we+=1,I+=1)this.buffer._bytes[I]=oe[we]}else for(we=0,R=Pe.byteOffset,I=j;we<X;we+=1,R+=1,I+=1)this.buffer._bytes[I]=Pe.buffer._bytes[R]}else if(M(arguments[0])==="object"&&typeof arguments[0].length<"u"){if(Qe=arguments[0],ke=r.ToUint32(Qe.length),et=r.ToUint32(arguments[1]),et+ke>this.length)throw new RangeError("Offset plus length of array is out of range");for(we=0;we<ke;we+=1)R=Qe[we],this._setter(et+we,Number(R))}else throw new TypeError("Unexpected argument type(s)")},Ye.prototype.subarray=function(Ce,$e){Ce=r.ToInt32(Ce),$e=r.ToInt32($e),arguments.length<1&&(Ce=0),arguments.length<2&&($e=this.length),Ce<0&&(Ce=this.length+Ce),$e<0&&($e=this.length+$e),Ce=c(Ce,0,this.length),$e=c($e,0,this.length);var Pe=$e-Ce;return Pe<0&&(Pe=0),new this.constructor(this.buffer,this.byteOffset+Ce*this.BYTES_PER_ELEMENT,Pe)},Ye}var W=B(1,g,b),ne=B(1,w,D),Y=B(1,_,D),Z=B(2,C,T),me=B(2,O,$),De=B(4,k,P),Ae=B(4,z,V),Me=B(4,J,q),je=B(8,te,K);e.Int8Array=e.Int8Array||W,e.Uint8Array=e.Uint8Array||ne,e.Uint8ClampedArray=e.Uint8ClampedArray||Y,e.Int16Array=e.Int16Array||Z,e.Uint16Array=e.Uint16Array||me,e.Int32Array=e.Int32Array||De,e.Uint32Array=e.Uint32Array||Ae,e.Float32Array=e.Float32Array||Me,e.Float64Array=e.Float64Array||je})(),(function(){function A(Y,Z){return r.IsCallable(Y.get)?Y.get(Z):Y[Z]}var U=(function(){var Y=new e.Uint16Array([4660]),Z=new e.Uint8Array(Y.buffer);return A(Z,0)===18})();function B(Y,Z,me){if(arguments.length===0)Y=new e.ArrayBuffer(0);else if(!(Y instanceof e.ArrayBuffer||r.Class(Y)==="ArrayBuffer"))throw new TypeError("TypeError");if(this.buffer=Y||new e.ArrayBuffer(0),this.byteOffset=r.ToUint32(Z),this.byteOffset>this.buffer.byteLength)throw new RangeError("byteOffset out of range");if(arguments.length<3?this.byteLength=this.buffer.byteLength-this.byteOffset:this.byteLength=r.ToUint32(me),this.byteOffset+this.byteLength>this.buffer.byteLength)throw new RangeError("byteOffset and length reference an area beyond the end of the buffer");p(this)}function W(Y){return function(Z,me){if(Z=r.ToUint32(Z),Z+Y.BYTES_PER_ELEMENT>this.byteLength)throw new RangeError("Array index out of range");Z+=this.byteOffset;var De=new e.Uint8Array(this.buffer,Z,Y.BYTES_PER_ELEMENT),Ae=[],Me;for(Me=0;Me<Y.BYTES_PER_ELEMENT;Me+=1)Ae.push(A(De,Me));return!!me==!!U&&Ae.reverse(),A(new Y(new e.Uint8Array(Ae).buffer),0)}}B.prototype.getUint8=W(e.Uint8Array),B.prototype.getInt8=W(e.Int8Array),B.prototype.getUint16=W(e.Uint16Array),B.prototype.getInt16=W(e.Int16Array),B.prototype.getUint32=W(e.Uint32Array),B.prototype.getInt32=W(e.Int32Array),B.prototype.getFloat32=W(e.Float32Array),B.prototype.getFloat64=W(e.Float64Array);function ne(Y){return function(Z,me,De){if(Z=r.ToUint32(Z),Z+Y.BYTES_PER_ELEMENT>this.byteLength)throw new RangeError("Array index out of range");var Ae=new Y([me]),Me=new e.Uint8Array(Ae.buffer),je=[],Le,Fe;for(Le=0;Le<Y.BYTES_PER_ELEMENT;Le+=1)je.push(A(Me,Le));!!De==!!U&&je.reverse(),Fe=new e.Uint8Array(this.buffer,Z,Y.BYTES_PER_ELEMENT),Fe.set(je)}}B.prototype.setUint8=ne(e.Uint8Array),B.prototype.setInt8=ne(e.Int8Array),B.prototype.setUint16=ne(e.Uint16Array),B.prototype.setInt16=ne(e.Int16Array),B.prototype.setUint32=ne(e.Uint32Array),B.prototype.setInt32=ne(e.Int32Array),B.prototype.setFloat32=ne(e.Float32Array),B.prototype.setFloat64=ne(e.Float64Array),e.DataView=e.DataView||B})()}),bm=y(function(e){(function(t){if(t.WeakMap)return;var r=Object.prototype.hasOwnProperty,a=Object.defineProperty&&(function(){try{return Object.defineProperty({},"x",{value:1}).x===1}catch{}})(),n=function(u,s,l){a?Object.defineProperty(u,s,{configurable:!0,writable:!0,value:l}):u[s]=l};t.WeakMap=(function(){function o(){if(this===void 0)throw new TypeError("Constructor WeakMap requires 'new'");if(n(this,"_id",s("_WeakMap")),arguments.length>0)throw new TypeError("WeakMap iterable is not supported")}n(o.prototype,"delete",function(c){if(u(this,"delete"),!i(c))return!1;var d=c[this._id];return d&&d[0]===c?(delete c[this._id],!0):!1}),n(o.prototype,"get",function(c){if(u(this,"get"),!!i(c)){var d=c[this._id];if(d&&d[0]===c)return d[1]}}),n(o.prototype,"has",function(c){if(u(this,"has"),!i(c))return!1;var d=c[this._id];return!!(d&&d[0]===c)}),n(o.prototype,"set",function(c,d){if(u(this,"set"),!i(c))throw new TypeError("Invalid value used as weak map key");var f=c[this._id];return f&&f[0]===c?(f[1]=d,this):(n(c,this._id,[c,d]),this)});function u(c,d){if(!i(c)||!r.call(c,"_id"))throw new TypeError(d+" method called on incompatible receiver "+M(c))}function s(c){return c+"_"+l()+"."+l()}function l(){return Math.random().toString().substring(2)}return n(o,"_polyfill",!0),o})();function i(o){return Object(o)===o}})(typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof E<"u"?E:typeof $t<"u"?$t:e)}),Et=y(function(e,t){var r=function(n){return n&&n.Math===Math&&n};t.exports=r((typeof globalThis>"u"?"undefined":M(globalThis))=="object"&&globalThis)||r((typeof E>"u"?"undefined":M(E))=="object"&&E)||r((typeof self>"u"?"undefined":M(self))=="object"&&self)||r((typeof $t>"u"?"undefined":M($t))=="object"&&$t)||r(M(e)=="object"&&e)||(function(){return this})()||Function("return this")()}),At=y(function(e,t){t.exports=function(r){try{return!!r()}catch{return!0}}}),Ya=y(function(e,t){var r=At();t.exports=!r(function(){var a=(function(){}).bind();return typeof a!="function"||a.hasOwnProperty("prototype")})}),ym=y(function(e,t){var r=Ya(),a=Function.prototype,n=a.apply,i=a.call;t.exports=(typeof Reflect>"u"?"undefined":M(Reflect))=="object"&&Reflect.apply||(r?i.bind(n):function(){return i.apply(n,arguments)})}),pt=y(function(e,t){var r=Ya(),a=Function.prototype,n=a.call,i=r&&a.bind.bind(n,n);t.exports=r?i:function(o){return function(){return n.apply(o,arguments)}}}),Si=y(function(e,t){var r=pt(),a=r({}.toString),n=r("".slice);t.exports=function(i){return n(a(i),8,-1)}}),hs=y(function(e,t){var r=Si(),a=pt();t.exports=function(n){if(r(n)==="Function")return a(n)}}),at=y(function(e,t){var r=(typeof N>"u"?"undefined":M(N))=="object"&&N.all;t.exports=typeof r>"u"&&r!==void 0?function(a){return typeof a=="function"||a===r}:function(a){return typeof a=="function"}}),zt=y(function(e,t){var r=At();t.exports=!r(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})}),fr=y(function(e,t){var r=Ya(),a=Function.prototype.call;t.exports=r?a.bind(a):function(){return a.apply(a,arguments)}}),vs=y(function(e){var t={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,a=r&&!t.call({1:2},1);e.f=a?function(i){var o=r(this,i);return!!o&&o.enumerable}:t}),Ka=y(function(e,t){t.exports=function(r,a){return{enumerable:!(r&1),configurable:!(r&2),writable:!(r&4),value:a}}}),Dm=y(function(e,t){var r=pt(),a=At(),n=Si(),i=Object,o=r("".split);t.exports=a(function(){return!i("z").propertyIsEnumerable(0)})?function(u){return n(u)==="String"?o(u,""):i(u)}:i}),ki=y(function(e,t){t.exports=function(r){return r==null}}),Xa=y(function(e,t){var r=ki(),a=TypeError;t.exports=function(n){if(r(n))throw new a("Can't call method on "+n);return n}}),ta=y(function(e,t){var r=Dm(),a=Xa();t.exports=function(n){return r(a(n))}}),Jt=y(function(e,t){var r=at();t.exports=function(a){return M(a)=="object"?a!==null:r(a)}}),ra=y(function(e,t){t.exports={}}),Oi=y(function(e,t){var r=ra(),a=Et(),n=at(),i=function(u){return n(u)?u:void 0};t.exports=function(o,u){return arguments.length<2?i(r[o])||i(a[o]):r[o]&&r[o][u]||a[o]&&a[o][u]}}),wm=y(function(e,t){var r=pt();t.exports=r({}.isPrototypeOf)}),_m=y(function(e,t){var r=Et(),a=r.navigator,n=a&&a.userAgent;t.exports=n?String(n):""}),xm=y(function(e,t){var r=Et(),a=_m(),n=r.process,i=r.Deno,o=n&&n.versions||i&&i.version,u=o&&o.v8,s,l;u&&(s=u.split("."),l=s[0]>0&&s[0]<4?1:+(s[0]+s[1])),!l&&a&&(s=a.match(/Edge\/(\d+)/),(!s||s[1]>=74)&&(s=a.match(/Chrome\/(\d+)/),s&&(l=+s[1]))),t.exports=l}),gs=y(function(e,t){var r=xm(),a=At(),n=Et(),i=n.String;t.exports=!!Object.getOwnPropertySymbols&&!a(function(){var o=Symbol("symbol detection");return!i(o)||!(Object(o)instanceof Symbol)||!Symbol.sham&&r&&r<41})}),bs=y(function(e,t){var r=gs();t.exports=r&&!Symbol.sham&&M(Symbol.iterator)=="symbol"}),ys=y(function(e,t){var r=Oi(),a=at(),n=wm(),i=bs(),o=Object;t.exports=i?function(u){return M(u)=="symbol"}:function(u){var s=r("Symbol");return a(s)&&n(s.prototype,o(u))}}),Ds=y(function(e,t){var r=String;t.exports=function(a){try{return r(a)}catch{return"Object"}}}),Za=y(function(e,t){var r=at(),a=Ds(),n=TypeError;t.exports=function(i){if(r(i))return i;throw new n(a(i)+" is not a function")}}),Mi=y(function(e,t){var r=Za(),a=ki();t.exports=function(n,i){var o=n[i];return a(o)?void 0:r(o)}}),Em=y(function(e,t){var r=fr(),a=at(),n=Jt(),i=TypeError;t.exports=function(o,u){var s,l;if(u==="string"&&a(s=o.toString)&&!n(l=r(s,o))||a(s=o.valueOf)&&!n(l=r(s,o))||u!=="string"&&a(s=o.toString)&&!n(l=r(s,o)))return l;throw new i("Can't convert object to primitive value")}}),Pi=y(function(e,t){t.exports=!0}),Am=y(function(e,t){var r=Et(),a=Object.defineProperty;t.exports=function(n,i){try{a(r,n,{value:i,configurable:!0,writable:!0})}catch{r[n]=i}return i}}),Ja=y(function(e,t){var r=Pi(),a=Et(),n=Am(),i="__core-js_shared__",o=t.exports=a[i]||n(i,{});(o.versions||(o.versions=[])).push({version:"3.44.0",mode:r?"pure":"global",copyright:"© 2014-2025 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.44.0/LICENSE",source:"https://github.com/zloirock/core-js"})}),ws=y(function(e,t){var r=Ja();t.exports=function(a,n){return r[a]||(r[a]=n||{})}}),Ii=y(function(e,t){var r=Xa(),a=Object;t.exports=function(n){return a(r(n))}}),Vt=y(function(e,t){var r=pt(),a=Ii(),n=r({}.hasOwnProperty);t.exports=Object.hasOwn||function(o,u){return n(a(o),u)}}),_s=y(function(e,t){var r=pt(),a=0,n=Math.random(),i=r(1.1.toString);t.exports=function(o){return"Symbol("+(o===void 0?"":o)+")_"+i(++a+n,36)}}),Ht=y(function(e,t){var r=Et(),a=ws(),n=Vt(),i=_s(),o=gs(),u=bs(),s=r.Symbol,l=a("wks"),c=u?s.for||s:s&&s.withoutSetter||i;t.exports=function(d){return n(l,d)||(l[d]=o&&n(s,d)?s[d]:c("Symbol."+d)),l[d]}}),Fm=y(function(e,t){var r=fr(),a=Jt(),n=ys(),i=Mi(),o=Em(),u=Ht(),s=TypeError,l=u("toPrimitive");t.exports=function(c,d){if(!a(c)||n(c))return c;var f=i(c,l),p;if(f){if(d===void 0&&(d="default"),p=r(f,c,d),!a(p)||n(p))return p;throw new s("Can't convert object to primitive value")}return d===void 0&&(d="number"),o(c,d)}}),xs=y(function(e,t){var r=Fm(),a=ys();t.exports=function(n){var i=r(n,"string");return a(i)?i:i+""}}),Es=y(function(e,t){var r=Et(),a=Jt(),n=r.document,i=a(n)&&a(n.createElement);t.exports=function(o){return i?n.createElement(o):{}}}),As=y(function(e,t){var r=zt(),a=At(),n=Es();t.exports=!r&&!a(function(){return Object.defineProperty(n("div"),"a",{get:function(){return 7}}).a!==7})}),Cm=y(function(e){var t=zt(),r=fr(),a=vs(),n=Ka(),i=ta(),o=xs(),u=Vt(),s=As(),l=Object.getOwnPropertyDescriptor;e.f=t?l:function(d,f){if(d=i(d),f=o(f),s)try{return l(d,f)}catch{}if(u(d,f))return n(!r(a.f,d,f),d[f])}}),Rm=y(function(e,t){var r=At(),a=at(),n=/#|\.prototype\./,i=function(d,f){var p=u[o(d)];return p===l?!0:p===s?!1:a(f)?r(f):!!f},o=i.normalize=function(c){return String(c).replace(n,".").toLowerCase()},u=i.data={},s=i.NATIVE="N",l=i.POLYFILL="P";t.exports=i}),Fs=y(function(e,t){var r=hs(),a=Za(),n=Ya(),i=r(r.bind);t.exports=function(o,u){return a(o),u===void 0?o:n?i(o,u):function(){return o.apply(u,arguments)}}}),Cs=y(function(e,t){var r=zt(),a=At();t.exports=r&&a(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})}),Tr=y(function(e,t){var r=Jt(),a=String,n=TypeError;t.exports=function(i){if(r(i))return i;throw new n(a(i)+" is not an object")}}),Qa=y(function(e){var t=zt(),r=As(),a=Cs(),n=Tr(),i=xs(),o=TypeError,u=Object.defineProperty,s=Object.getOwnPropertyDescriptor,l="enumerable",c="configurable",d="writable";e.f=t?a?function(p,m,h){if(n(p),m=i(m),n(h),typeof p=="function"&&m==="prototype"&&"value"in h&&d in h&&!h[d]){var v=s(p,m);v&&v[d]&&(p[m]=h.value,h={configurable:c in h?h[c]:v[c],enumerable:l in h?h[l]:v[l],writable:!1})}return u(p,m,h)}:u:function(p,m,h){if(n(p),m=i(m),n(h),r)try{return u(p,m,h)}catch{}if("get"in h||"set"in h)throw new o("Accessors not supported");return"value"in h&&(p[m]=h.value),p}}),aa=y(function(e,t){var r=zt(),a=Qa(),n=Ka();t.exports=r?function(i,o,u){return a.f(i,o,n(1,u))}:function(i,o,u){return i[o]=u,i}}),en=y(function(e,t){var r=Et(),a=ym(),n=hs(),i=at(),o=Cm().f,u=Rm(),s=ra(),l=Fs(),c=aa(),d=Vt();Ja();var f=function(m){var h=function(g,b,w){if(this instanceof h){switch(arguments.length){case 0:return new m;case 1:return new m(g);case 2:return new m(g,b)}return new m(g,b,w)}return a(m,this,arguments)};return h.prototype=m.prototype,h};t.exports=function(p,m){var h=p.target,v=p.global,g=p.stat,b=p.proto,w=v?r:g?r[h]:r[h]&&r[h].prototype,D=v?s:s[h]||c(s,h,{})[h],_=D.prototype,C,T,O,$,k,P,z,V,Q;for($ in m)C=u(v?$:h+(g?".":"#")+$,p.forced),T=!C&&w&&d(w,$),P=D[$],T&&(p.dontCallGetSet?(Q=o(w,$),z=Q&&Q.value):z=w[$]),k=T&&z?z:m[$],!(!C&&!b&&M(P)==M(k))&&(p.bind&&T?V=l(k,r):p.wrap&&T?V=f(k):b&&i(k)?V=n(k):V=k,(p.sham||k&&k.sham||P&&P.sham)&&c(V,"sham",!0),c(D,$,V),b&&(O=h+"Prototype",d(s,O)||c(s,O,{}),c(s[O],$,k),p.real&&_&&(C||!_[$])&&c(_,$,k)))}}),Tm=y(function(){var e=en(),t=Vt();e({target:"Object",stat:!0},{hasOwn:t})}),Sm=y(function(e,t){Tm();var r=ra();t.exports=r.Object.hasOwn}),km=y(function(e,t){var r=Sm();t.exports=r}),Om=y(function(e,t){var r=km();t.exports=r}),Ni=y(function(e,t){var r=ws(),a=_s(),n=r("keys");t.exports=function(i){return n[i]||(n[i]=a(i))}}),Mm=y(function(e,t){var r=At();t.exports=!r(function(){function a(){}return a.prototype.constructor=null,Object.getPrototypeOf(new a)!==a.prototype})}),Bi=y(function(e,t){var r=Vt(),a=at(),n=Ii(),i=Ni(),o=Mm(),u=i("IE_PROTO"),s=Object,l=s.prototype;t.exports=o?s.getPrototypeOf:function(c){var d=n(c);if(r(d,u))return d[u];var f=d.constructor;return a(f)&&d instanceof f?f.prototype:d instanceof s?l:null}}),Pm=y(function(e,t){var r=Math.ceil,a=Math.floor;t.exports=Math.trunc||function(i){var o=+i;return(o>0?a:r)(o)}}),Li=y(function(e,t){var r=Pm();t.exports=function(a){var n=+a;return n!==n||n===0?0:r(n)}}),Im=y(function(e,t){var r=Li(),a=Math.max,n=Math.min;t.exports=function(i,o){var u=r(i);return u<0?a(u+o,0):n(u,o)}}),Nm=y(function(e,t){var r=Li(),a=Math.min;t.exports=function(n){var i=r(n);return i>0?a(i,9007199254740991):0}}),Rs=y(function(e,t){var r=Nm();t.exports=function(a){return r(a.length)}}),Bm=y(function(e,t){var r=ta(),a=Im(),n=Rs(),i=function(u){return function(s,l,c){var d=r(s),f=n(d);if(f===0)return!u&&-1;var p=a(c,f),m;if(u&&l!==l){for(;f>p;)if(m=d[p++],m!==m)return!0}else for(;f>p;p++)if((u||p in d)&&d[p]===l)return u||p||0;return!u&&-1}};t.exports={includes:i(!0),indexOf:i(!1)}}),qi=y(function(e,t){t.exports={}}),Lm=y(function(e,t){var r=pt(),a=Vt(),n=ta(),i=Bm().indexOf,o=qi(),u=r([].push);t.exports=function(s,l){var c=n(s),d=0,f=[],p;for(p in c)!a(o,p)&&a(c,p)&&u(f,p);for(;l.length>d;)a(c,p=l[d++])&&(~i(f,p)||u(f,p));return f}}),Ts=y(function(e,t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]}),Ss=y(function(e,t){var r=Lm(),a=Ts();t.exports=Object.keys||function(i){return r(i,a)}}),qm=y(function(e,t){var r=zt(),a=At(),n=pt(),i=Bi(),o=Ss(),u=ta(),s=vs().f,l=n(s),c=n([].push),d=r&&a(function(){var p=Object.create(null);return p[2]=2,!l(p,2)}),f=function(m){return function(h){for(var v=u(h),g=o(v),b=d&&i(v)===null,w=g.length,D=0,_=[],C;w>D;)C=g[D++],(!r||(b?C in v:l(v,C)))&&c(_,m?[C,v[C]]:v[C]);return _}};t.exports={entries:f(!0),values:f(!1)}}),jm=y(function(){var e=en(),t=qm().values;e({target:"Object",stat:!0},{values:function(a){return t(a)}})}),$m=y(function(e,t){jm();var r=ra();t.exports=r.Object.values}),zm=y(function(e,t){var r=$m();t.exports=r}),Vm=y(function(e,t){var r=zm();t.exports=r}),ji=y(function(e,t){var r=Ht(),a=r("toStringTag"),n={};n[a]="z",t.exports=String(n)==="[object z]"}),tn=y(function(e,t){var r=ji(),a=at(),n=Si(),i=Ht(),o=i("toStringTag"),u=Object,s=n((function(){return arguments})())==="Arguments",l=function(d,f){try{return d[f]}catch{}};t.exports=r?n:function(c){var d,f,p;return c===void 0?"Undefined":c===null?"Null":typeof(f=l(d=u(c),o))=="string"?f:s?n(d):(p=n(d))==="Object"&&a(d.callee)?"Arguments":p}}),ks=y(function(e,t){var r=tn(),a=String;t.exports=function(n){if(r(n)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return a(n)}}),Hm=y(function(e,t){var r=pt(),a=Li(),n=ks(),i=Xa(),o=r("".charAt),u=r("".charCodeAt),s=r("".slice),l=function(d){return function(f,p){var m=n(i(f)),h=a(p),v=m.length,g,b;return h<0||h>=v?d?"":void 0:(g=u(m,h),g<55296||g>56319||h+1===v||(b=u(m,h+1))<56320||b>57343?d?o(m,h):g:d?s(m,h,h+2):(g-55296<<10)+(b-56320)+65536)}};t.exports={codeAt:l(!1),charAt:l(!0)}}),Gm=y(function(e,t){var r=Et(),a=at(),n=r.WeakMap;t.exports=a(n)&&/native code/.test(String(n))}),Um=y(function(e,t){var r=Gm(),a=Et(),n=Jt(),i=aa(),o=Vt(),u=Ja(),s=Ni(),l=qi(),c="Object already initialized",d=a.TypeError,f=a.WeakMap,p,m,h,v=function(_){return h(_)?m(_):p(_,{})},g=function(_){return function(C){var T;if(!n(C)||(T=m(C)).type!==_)throw new d("Incompatible receiver, "+_+" required");return T}};r||u.state?(b=u.state||(u.state=new f),b.get=b.get,b.has=b.has,b.set=b.set,p=function(_,C){if(b.has(_))throw new d(c);return C.facade=_,b.set(_,C),C},m=function(_){return b.get(_)||{}},h=function(_){return b.has(_)}):(w=s("state"),l[w]=!0,p=function(_,C){if(o(_,w))throw new d(c);return C.facade=_,i(_,w,C),C},m=function(_){return o(_,w)?_[w]:{}},h=function(_){return o(_,w)});var b,w;t.exports={set:p,get:m,has:h,enforce:v,getterFor:g}}),Wm=y(function(e,t){var r=zt(),a=Vt(),n=Function.prototype,i=r&&Object.getOwnPropertyDescriptor,o=a(n,"name"),u=o&&(function(){}).name==="something",s=o&&(!r||r&&i(n,"name").configurable);t.exports={EXISTS:o,PROPER:u,CONFIGURABLE:s}}),Ym=y(function(e){var t=zt(),r=Cs(),a=Qa(),n=Tr(),i=ta(),o=Ss();e.f=t&&!r?Object.defineProperties:function(s,l){n(s);for(var c=i(l),d=o(l),f=d.length,p=0,m;f>p;)a.f(s,m=d[p++],c[m]);return s}}),Km=y(function(e,t){var r=Oi();t.exports=r("document","documentElement")}),Os=y(function(e,t){var r=Tr(),a=Ym(),n=Ts(),i=qi(),o=Km(),u=Es(),s=Ni(),l=">",c="<",d="prototype",f="script",p=s("IE_PROTO"),m=function(){},h=function(_){return c+f+l+_+c+"/"+f+l},v=function(_){_.write(h("")),_.close();var C=_.parentWindow.Object;return _=null,C},g=function(){var _=u("iframe"),C="java"+f+":",T;return _.style.display="none",o.appendChild(_),_.src=String(C),T=_.contentWindow.document,T.open(),T.write(h("document.F=Object")),T.close(),T.F},b,w=function(){try{b=new ActiveXObject("htmlfile")}catch{}w=typeof N<"u"?N.domain&&b?v(b):g():v(b);for(var _=n.length;_--;)delete w[d][n[_]];return w()};i[p]=!0,t.exports=Object.create||function(_,C){var T;return _!==null?(m[d]=r(_),T=new m,m[d]=null,T[p]=_):T=w(),C===void 0?T:a.f(T,C)}}),Ms=y(function(e,t){var r=aa();t.exports=function(a,n,i,o){return o&&o.enumerable?a[n]=i:r(a,n,i),a}}),Ps=y(function(e,t){var r=At(),a=at(),n=Jt(),i=Os(),o=Bi(),u=Ms(),s=Ht(),l=Pi(),c=s("iterator"),d=!1,f,p,m;[].keys&&(m=[].keys(),"next"in m?(p=o(o(m)),p!==Object.prototype&&(f=p)):d=!0);var h=!n(f)||r(function(){var v={};return f[c].call(v)!==v});h?f={}:l&&(f=i(f)),a(f[c])||u(f,c,function(){return this}),t.exports={IteratorPrototype:f,BUGGY_SAFARI_ITERATORS:d}}),Xm=y(function(e,t){var r=ji(),a=tn();t.exports=r?{}.toString:function(){return"[object "+a(this)+"]"}}),Is=y(function(e,t){var r=ji(),a=Qa().f,n=aa(),i=Vt(),o=Xm(),u=Ht(),s=u("toStringTag");t.exports=function(l,c,d,f){var p=d?l:l&&l.prototype;p&&(i(p,s)||a(p,s,{configurable:!0,value:c}),f&&!r&&n(p,"toString",o))}}),rn=y(function(e,t){t.exports={}}),Zm=y(function(e,t){var r=Ps().IteratorPrototype,a=Os(),n=Ka(),i=Is(),o=rn(),u=function(){return this};t.exports=function(s,l,c,d){var f=l+" Iterator";return s.prototype=a(r,{next:n(+!d,c)}),i(s,f,!1,!0),o[f]=u,s}}),Jm=y(function(e,t){var r=pt(),a=Za();t.exports=function(n,i,o){try{return r(a(Object.getOwnPropertyDescriptor(n,i)[o]))}catch{}}}),Qm=y(function(e,t){var r=Jt();t.exports=function(a){return r(a)||a===null}}),eh=y(function(e,t){var r=Qm(),a=String,n=TypeError;t.exports=function(i){if(r(i))return i;throw new n("Can't set "+a(i)+" as a prototype")}}),th=y(function(e,t){var r=Jm(),a=Jt(),n=Xa(),i=eh();t.exports=Object.setPrototypeOf||("__proto__"in{}?(function(){var o=!1,u={},s;try{s=r(Object.prototype,"__proto__","set"),s(u,[]),o=u instanceof Array}catch{}return function(c,d){return n(c),i(d),a(c)&&(o?s(c,d):c.__proto__=d),c}})():void 0)}),rh=y(function(e,t){var r=en(),a=fr(),n=Pi(),i=Wm(),o=at(),u=Zm(),s=Bi(),l=th(),c=Is(),d=aa(),f=Ms(),p=Ht(),m=rn(),h=Ps(),v=i.PROPER,g=i.CONFIGURABLE,b=h.IteratorPrototype,w=h.BUGGY_SAFARI_ITERATORS,D=p("iterator"),_="keys",C="values",T="entries",O=function(){return this};t.exports=function($,k,P,z,V,Q,ie){u(P,k,z);var K=function(me){if(me===V&&U)return U;if(!w&&me&&me in J)return J[me];switch(me){case _:return function(){return new P(this,me)};case C:return function(){return new P(this,me)};case T:return function(){return new P(this,me)}}return function(){return new P(this)}},te=k+" Iterator",q=!1,J=$.prototype,A=J[D]||J["@@iterator"]||V&&J[V],U=!w&&A||K(V),B=k==="Array"&&J.entries||A,W,ne,Y;if(B&&(W=s(B.call(new $)),W!==Object.prototype&&W.next&&(!n&&s(W)!==b&&(l?l(W,b):o(W[D])||f(W,D,O)),c(W,te,!0,!0),n&&(m[te]=O))),v&&V===C&&A&&A.name!==C&&(!n&&g?d(J,"name",C):(q=!0,U=function(){return a(A,this)})),V)if(ne={values:K(C),keys:Q?U:K(_),entries:K(T)},ie)for(Y in ne)(w||q||!(Y in J))&&f(J,Y,ne[Y]);else r({target:k,proto:!0,forced:w||q},ne);return(!n||ie)&&J[D]!==U&&f(J,D,U,{name:V}),m[k]=U,ne}}),ah=y(function(e,t){t.exports=function(r,a){return{value:r,done:a}}}),nh=y(function(){var e=Hm().charAt,t=ks(),r=Um(),a=rh(),n=ah(),i="String Iterator",o=r.set,u=r.getterFor(i);a(String,"String",function(s){o(this,{type:i,string:t(s),index:0})},function(){var l=u(this),c=l.string,d=l.index,f;return d>=c.length?n(void 0,!0):(f=e(c,d),l.index+=f.length,n(f,!1))})}),ih=y(function(e,t){var r=fr(),a=Tr(),n=Mi();t.exports=function(i,o,u){var s,l;a(i);try{if(s=n(i,"return"),!s){if(o==="throw")throw u;return u}s=r(s,i)}catch(c){l=!0,s=c}if(o==="throw")throw u;if(l)throw s;return a(s),u}}),oh=y(function(e,t){var r=Tr(),a=ih();t.exports=function(n,i,o,u){try{return u?i(r(o)[0],o[1]):i(o)}catch(s){a(n,"throw",s)}}}),uh=y(function(e,t){var r=Ht(),a=rn(),n=r("iterator"),i=Array.prototype;t.exports=function(o){return o!==void 0&&(a.Array===o||i[n]===o)}}),sh=y(function(e,t){var r=pt(),a=at(),n=Ja(),i=r(Function.toString);a(n.inspectSource)||(n.inspectSource=function(o){return i(o)}),t.exports=n.inspectSource}),lh=y(function(e,t){var r=pt(),a=At(),n=at(),i=tn(),o=Oi(),u=sh(),s=function(){},l=o("Reflect","construct"),c=/^\s*(?:class|function)\b/,d=r(c.exec),f=!c.test(s),p=function(v){if(!n(v))return!1;try{return l(s,[],v),!0}catch{return!1}},m=function(v){if(!n(v))return!1;switch(i(v)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return f||!!d(c,u(v))}catch{return!0}};m.sham=!0,t.exports=!l||a(function(){var h;return p(p.call)||!p(Object)||!p(function(){h=!0})||h})?m:p}),ch=y(function(e,t){var r=zt(),a=Qa(),n=Ka();t.exports=function(i,o,u){r?a.f(i,o,n(0,u)):i[o]=u}}),Ns=y(function(e,t){var r=tn(),a=Mi(),n=ki(),i=rn(),o=Ht(),u=o("iterator");t.exports=function(s){if(!n(s))return a(s,u)||a(s,"@@iterator")||i[r(s)]}}),dh=y(function(e,t){var r=fr(),a=Za(),n=Tr(),i=Ds(),o=Ns(),u=TypeError;t.exports=function(s,l){var c=arguments.length<2?o(s):l;if(a(c))return n(r(c,s));throw new u(i(s)+" is not iterable")}}),fh=y(function(e,t){var r=Fs(),a=fr(),n=Ii(),i=oh(),o=uh(),u=lh(),s=Rs(),l=ch(),c=dh(),d=Ns(),f=Array;t.exports=function(m){var h=n(m),v=u(this),g=arguments.length,b=g>1?arguments[1]:void 0,w=b!==void 0;w&&(b=r(b,g>2?arguments[2]:void 0));var D=d(h),_=0,C,T,O,$,k,P;if(D&&!(this===f&&o(D)))for(T=v?new this:[],$=c(h,D),k=$.next;!(O=a(k,$)).done;_++)P=w?i($,b,[O.value,_],!0):O.value,l(T,_,P);else for(C=s(h),T=v?new this(C):f(C);C>_;_++)P=w?b(h[_],_):h[_],l(T,_,P);return T.length=_,T}}),ph=y(function(e,t){var r=Ht(),a=r("iterator"),n=!1;try{i=0,o={next:function(){return{done:!!i++}},return:function(){n=!0}},o[a]=function(){return this},Array.from(o,function(){throw 2})}catch{}var i,o;t.exports=function(u,s){try{if(!s&&!n)return!1}catch{return!1}var l=!1;try{var c={};c[a]=function(){return{next:function(){return{done:l=!0}}}},u(c)}catch{}return l}}),mh=y(function(){var e=en(),t=fh(),r=ph(),a=!r(function(n){Array.from(n)});e({target:"Array",stat:!0,forced:a},{from:t})}),hh=y(function(e,t){nh(),mh();var r=ra();t.exports=r.Array.from}),vh=y(function(e,t){var r=hh();t.exports=r}),Bs=y(function(e,t){var r=vh();t.exports=r}),Ls=y(function(e){Object.defineProperty(e,"__esModule",{value:!0});function t(o){return o>="a"&&o<="z"||o>="A"&&o<="Z"||o==="-"||o==="_"}e.isIdentStart=t;function r(o){return o>="a"&&o<="z"||o>="A"&&o<="Z"||o>="0"&&o<="9"||o==="-"||o==="_"}e.isIdent=r;function a(o){return o>="a"&&o<="f"||o>="A"&&o<="F"||o>="0"&&o<="9"}e.isHex=a;function n(o){for(var u=o.length,s="",l=0;l<u;){var c=o.charAt(l);if(e.identSpecialChars[c])s+="\\"+c;else if(c==="_"||c==="-"||c>="A"&&c<="Z"||c>="a"&&c<="z"||l!==0&&c>="0"&&c<="9")s+=c;else{var d=c.charCodeAt(0);if((d&63488)===55296){var f=o.charCodeAt(l++);if((d&64512)!==55296||(f&64512)!==56320)throw Error("UCS-2(decode): illegal sequence");d=((d&1023)<<10)+(f&1023)+65536}s+="\\"+d.toString(16)+" "}l++}return s}e.escapeIdentifier=n;function i(o){for(var u=o.length,s="",l=0,c;l<u;){var d=o.charAt(l);d==='"'?d='\\"':d==="\\"?d="\\\\":(c=e.strReplacementsRev[d])!==void 0&&(d=c),s+=d,l++}return'"'+s+'"'}e.escapeStr=i,e.identSpecialChars={"!":!0,'"':!0,"#":!0,$:!0,"%":!0,"&":!0,"'":!0,"(":!0,")":!0,"*":!0,"+":!0,",":!0,".":!0,"/":!0,";":!0,"<":!0,"=":!0,">":!0,"?":!0,"@":!0,"[":!0,"\\":!0,"]":!0,"^":!0,"`":!0,"{":!0,"|":!0,"}":!0,"~":!0},e.strReplacementsRev={"\n":"\\n","\r":"\\r"," ":"\\t","\f":"\\f","\v":"\\v"},e.singleQuoteEscapeChars={n:`
1
+ import{g as HR}from"./iframe-Crg_lbde.js";function GR(fr,Zr){for(var E=0;E<Zr.length;E++){const tt=Zr[E];if(typeof tt!="string"&&!Array.isArray(tt)){for(const M in tt)if(M!=="default"&&!(M in fr)){const x=Object.getOwnPropertyDescriptor(tt,M);x&&Object.defineProperty(fr,M,x.get?x:{enumerable:!0,get:()=>tt[M]})}}}return Object.freeze(Object.defineProperty(fr,Symbol.toStringTag,{value:"Module"}))}var Ci={exports:{}};var UR=Ci.exports,Mp;function WR(){return Mp||(Mp=1,(function(fr){(function Zr(E){var tt=E,M=E.document,x=x||{};x.version="4.11.0",P(fr)==="object"&&fr.exports&&typeof Zr.toString=="function"&&(x.source="("+Zr.toString()+')(typeof window === "object" ? window : this);',fr.exports=x),typeof E.getComputedStyle=="function"&&(E.axe=x);var Ip=["precision","format","inGamut"],Np=["space"],Bp=["algorithm"],Lp=["method"],qp=["maxDeltaE","deltaEMethod","steps","maxSteps"],jp=["variant"],$p=["matches"],zp=["chromium"],Vp=["noImplicit"],Hp=["noPresentational"],Gp=["node"],Up=["relatedNodes"],Wp=["node"],Yp=["node"],Kp=["environmentData"],Xp=["environmentData"],Zp=["environmentData"],Jp=["environmentData"],Qp=["environmentData"];function em(F){return ds(F)||us(F)||Ka(F)||cs()}function Ri(F){var S=typeof Map=="function"?new Map:void 0;return Ri=function(G){if(G===null||!tm(G))return G;if(typeof G!="function")throw new TypeError("Super expression must either be null or a function");if(S!==void 0){if(S.has(G))return S.get(G);S.set(G,_e)}function _e(){return os(G,arguments,Qr(this).constructor)}return _e.prototype=Object.create(G.prototype,{constructor:{value:_e,enumerable:!1,writable:!0,configurable:!0}}),ea(_e,G)},Ri(F)}function tm(F){try{return Function.toString.call(F).indexOf("[native code]")!==-1}catch{return typeof F=="function"}}function Jr(F,S,L){return(S=ps(S))in F?Object.defineProperty(F,S,{value:L,enumerable:!0,configurable:!0,writable:!0}):F[S]=L,F}function os(F,S,L){if(Ti())return Reflect.construct.apply(null,arguments);var G=[null];G.push.apply(G,S);var _e=new(F.bind.apply(F,G));return L&&ea(_e,L.prototype),_e}function qe(F,S){if(F==null)return{};var L,G,_e=rm(F,S);if(Object.getOwnPropertySymbols){var Ie=Object.getOwnPropertySymbols(F);for(G=0;G<Ie.length;G++)L=Ie[G],S.indexOf(L)===-1&&{}.propertyIsEnumerable.call(F,L)&&(_e[L]=F[L])}return _e}function rm(F,S){if(F==null)return{};var L={};for(var G in F)if({}.hasOwnProperty.call(F,G)){if(S.indexOf(G)!==-1)continue;L[G]=F[G]}return L}function Wa(F,S,L){return S=Qr(S),am(F,Ti()?Reflect.construct(S,L||[],Qr(F).constructor):S.apply(F,L))}function am(F,S){if(S&&(P(S)=="object"||typeof S=="function"))return S;if(S!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return nm(F)}function nm(F){if(F===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return F}function Ti(){try{var F=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch{}return(Ti=function(){return!!F})()}function Qr(F){return Qr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(S){return S.__proto__||Object.getPrototypeOf(S)},Qr(F)}function Ya(F,S){if(typeof S!="function"&&S!==null)throw new TypeError("Super expression must either be null or a function");F.prototype=Object.create(S&&S.prototype,{constructor:{value:F,writable:!0,configurable:!0}}),Object.defineProperty(F,"prototype",{writable:!1}),S&&ea(F,S)}function ea(F,S){return ea=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(L,G){return L.__proto__=G,L},ea(F,S)}function de(){return de=Object.assign?Object.assign.bind():function(F){for(var S=1;S<arguments.length;S++){var L=arguments[S];for(var G in L)({}).hasOwnProperty.call(L,G)&&(F[G]=L[G])}return F},de.apply(null,arguments)}function re(F){return om(F)||us(F)||Ka(F)||im()}function im(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
2
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function us(F){if(typeof Symbol<"u"&&F[Symbol.iterator]!=null||F["@@iterator"]!=null)return Array.from(F)}function om(F){if(Array.isArray(F))return Si(F)}function Zt(F,S,L){ls(F,S),S.set(F,L)}function ss(F,S){ls(F,S),S.add(F)}function ls(F,S){if(S.has(F))throw new TypeError("Cannot initialize the same private elements twice on an object")}function wt(F,S){return F.get(Tr(F,S))}function at(F,S,L){return F.set(Tr(F,S),L),L}function Tr(F,S,L){if(typeof F=="function"?F===S:F.has(S))return arguments.length<3?S:L;throw new TypeError("Private element is not present on this object")}function H(F,S){return ds(F)||um(F,S)||Ka(F,S)||cs()}function cs(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
3
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function um(F,S){var L=F==null?null:typeof Symbol<"u"&&F[Symbol.iterator]||F["@@iterator"];if(L!=null){var G,_e,Ie,Ke,pt=[],Ve=!0,rt=!1;try{if(Ie=(L=L.call(F)).next,S===0){if(Object(L)!==L)return;Ve=!1}else for(;!(Ve=(G=Ie.call(L)).done)&&(pt.push(G.value),pt.length!==S);Ve=!0);}catch(ta){rt=!0,_e=ta}finally{try{if(!Ve&&L.return!=null&&(Ke=L.return(),Object(Ke)!==Ke))return}finally{if(rt)throw _e}}return pt}}function ds(F){if(Array.isArray(F))return F}function _t(F,S){if(!(F instanceof S))throw new TypeError("Cannot call a class as a function")}function fs(F,S){for(var L=0;L<S.length;L++){var G=S[L];G.enumerable=G.enumerable||!1,G.configurable=!0,"value"in G&&(G.writable=!0),Object.defineProperty(F,ps(G.key),G)}}function xt(F,S,L){return S&&fs(F.prototype,S),L&&fs(F,L),Object.defineProperty(F,"prototype",{writable:!1}),F}function ps(F){var S=sm(F,"string");return P(S)=="symbol"?S:S+""}function sm(F,S){if(P(F)!="object"||!F)return F;var L=F[Symbol.toPrimitive];if(L!==void 0){var G=L.call(F,S);if(P(G)!="object")return G;throw new TypeError("@@toPrimitive must return a primitive value.")}return(S==="string"?String:Number)(F)}function xe(F,S){var L=typeof Symbol<"u"&&F[Symbol.iterator]||F["@@iterator"];if(!L){if(Array.isArray(F)||(L=Ka(F))||S){L&&(F=L);var G=0,_e=function(){};return{s:_e,n:function(){return G>=F.length?{done:!0}:{done:!1,value:F[G++]}},e:function(rt){throw rt},f:_e}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
4
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var Ie,Ke=!0,pt=!1;return{s:function(){L=L.call(F)},n:function(){var rt=L.next();return Ke=rt.done,rt},e:function(rt){pt=!0,Ie=rt},f:function(){try{Ke||L.return==null||L.return()}finally{if(pt)throw Ie}}}}function Ka(F,S){if(F){if(typeof F=="string")return Si(F,S);var L={}.toString.call(F).slice(8,-1);return L==="Object"&&F.constructor&&(L=F.constructor.name),L==="Map"||L==="Set"?Array.from(F):L==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(L)?Si(F,S):void 0}}function Si(F,S){(S==null||S>F.length)&&(S=F.length);for(var L=0,G=Array(S);L<S;L++)G[L]=F[L];return G}function P(F){"@babel/helpers - typeof";return P=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(S){return typeof S}:function(S){return S&&typeof Symbol=="function"&&S.constructor===Symbol&&S!==Symbol.prototype?"symbol":typeof S},P(F)}(function(F,S,L,G,_e,Ie,Ke,pt,Ve,rt,ta){var lm=Object.create,ra=Object.defineProperty,cm=Object.getPrototypeOf,dm=Object.prototype.hasOwnProperty,fm=Object.getOwnPropertyNames,pm=Object.getOwnPropertyDescriptor,mm=function(t,r,a){return r in t?ra(t,r,{enumerable:!0,configurable:!0,writable:!0,value:a}):t[r]=a},hm=function(t){return ra(t,"__esModule",{value:!0})},y=function(t,r){return function(){return r||t((r={exports:{}}).exports,r),r.exports}},Et=function(t,r){for(var a in r)ra(t,a,{get:r[a],enumerable:!0})},vm=function(t,r,a){if(r&&P(r)==="object"||typeof r=="function"){var n=xe(fm(r)),i;try{var o=function(){var s=i.value;!dm.call(t,s)&&s!=="default"&&ra(t,s,{get:function(){return r[s]},enumerable:!(a=pm(r,s))||a.enumerable})};for(n.s();!(i=n.n()).done;)o()}catch(u){n.e(u)}finally{n.f()}}return t},Ot=function(t){return vm(hm(ra(t!=null?lm(cm(t)):{},"default",t&&t.__esModule&&"default"in t?{get:function(){return t.default},enumerable:!0}:{value:t,enumerable:!0})),t)},ms=function(t,r,a){return mm(t,P(r)!=="symbol"?r+"":r,a),a},gm=y(function(e,t){(function(r,a){P(e)==="object"&&typeof t<"u"?t.exports=a():r.ES6Promise=a()})(e,function(){function r(R){var N=P(R);return R!==null&&(N==="object"||N==="function")}function a(R){return typeof R=="function"}var n=void 0;Array.isArray?n=Array.isArray:n=function(N){return Object.prototype.toString.call(N)==="[object Array]"};var i=n,o=0,u=void 0,s=void 0,l=function(N,j){C[o]=N,C[o+1]=j,o+=2,o===2&&(s?s(T):$())};function c(R){s=R}function d(R){l=R}var f=typeof E<"u"?E:void 0,p=f||{},m=p.MutationObserver||p.WebKitMutationObserver,h=typeof self>"u"&&typeof process<"u"&&{}.toString.call(process)==="[object process]",v=typeof Uint8ClampedArray<"u"&&typeof importScripts<"u"&&typeof MessageChannel<"u";function g(){return function(){return process.nextTick(T)}}function b(){return typeof u<"u"?function(){u(T)}:_()}function w(){var R=0,N=new m(T),j=M.createTextNode("");return N.observe(j,{characterData:!0}),function(){j.data=R=++R%2}}function D(){var R=new MessageChannel;return R.port1.onmessage=T,function(){return R.port2.postMessage(0)}}function _(){var R=setTimeout;return function(){return R(T,1)}}var C=new Array(1e3);function T(){for(var R=0;R<o;R+=2){var N=C[R],j=C[R+1];N(j),C[R]=void 0,C[R+1]=void 0}o=0}function O(){try{var R=Function("return this")().require("vertx");return u=R.runOnLoop||R.runOnContext,b()}catch{return _()}}var $=void 0;h?$=g():m?$=w():v?$=D():f===void 0?$=O():$=_();function k(R,N){var j=this,X=new this.constructor(V);X[z]===void 0&&Fe(X);var oe=j._state;if(oe){var fe=arguments[oe-1];l(function(){return Ae(oe,X,fe,j._result)})}else me(j,X,R,N);return X}function I(R){var N=this;if(R&&P(R)==="object"&&R.constructor===N)return R;var j=new N(V);return W(j,R),j}var z=Math.random().toString(36).substring(2);function V(){}var Q=void 0,ie=1,K=2;function te(){return new TypeError("You cannot resolve a promise with itself")}function q(){return new TypeError("A promises callback cannot return that same promise.")}function J(R,N,j,X){try{R.call(N,j,X)}catch(oe){return oe}}function A(R,N,j){l(function(X){var oe=!1,fe=J(j,N,function(ze){oe||(oe=!0,N!==ze?W(X,ze):Y(X,ze))},function(ze){oe||(oe=!0,Z(X,ze))},"Settle: "+(X._label||" unknown promise"));!oe&&fe&&(oe=!0,Z(X,fe))},R)}function U(R,N){N._state===ie?Y(R,N._result):N._state===K?Z(R,N._result):me(N,void 0,function(j){return W(R,j)},function(j){return Z(R,j)})}function B(R,N,j){N.constructor===R.constructor&&j===k&&N.constructor.resolve===I?U(R,N):j===void 0?Y(R,N):a(j)?A(R,N,j):Y(R,N)}function W(R,N){if(R===N)Z(R,te());else if(r(N)){var j=void 0;try{j=N.then}catch(X){Z(R,X);return}B(R,N,j)}else Y(R,N)}function ne(R){R._onerror&&R._onerror(R._result),De(R)}function Y(R,N){R._state===Q&&(R._result=N,R._state=ie,R._subscribers.length!==0&&l(De,R))}function Z(R,N){R._state===Q&&(R._state=K,R._result=N,l(ne,R))}function me(R,N,j,X){var oe=R._subscribers,fe=oe.length;R._onerror=null,oe[fe]=N,oe[fe+ie]=j,oe[fe+K]=X,fe===0&&R._state&&l(De,R)}function De(R){var N=R._subscribers,j=R._state;if(N.length!==0){for(var X=void 0,oe=void 0,fe=R._result,ze=0;ze<N.length;ze+=3)X=N[ze],oe=N[ze+j],X?Ae(j,X,oe,fe):oe(fe);R._subscribers.length=0}}function Ae(R,N,j,X){var oe=a(j),fe=void 0,ze=void 0,Xr=!0;if(oe){try{fe=j(X)}catch(Fi){Xr=!1,ze=Fi}if(N===fe){Z(N,q());return}}else fe=X;N._state!==Q||(oe&&Xr?W(N,fe):Xr===!1?Z(N,ze):R===ie?Y(N,fe):R===K&&Z(N,fe))}function Me(R,N){try{N(function(X){W(R,X)},function(X){Z(R,X)})}catch(j){Z(R,j)}}var je=0;function Le(){return je++}function Fe(R){R[z]=je++,R._state=void 0,R._result=void 0,R._subscribers=[]}function Kr(){return new Error("Array Methods must be provided an Array")}var Ye=(function(){function R(N,j){this._instanceConstructor=N,this.promise=new N(V),this.promise[z]||Fe(this.promise),i(j)?(this.length=j.length,this._remaining=j.length,this._result=new Array(this.length),this.length===0?Y(this.promise,this._result):(this.length=this.length||0,this._enumerate(j),this._remaining===0&&Y(this.promise,this._result))):Z(this.promise,Kr())}return R.prototype._enumerate=function(j){for(var X=0;this._state===Q&&X<j.length;X++)this._eachEntry(j[X],X)},R.prototype._eachEntry=function(j,X){var oe=this._instanceConstructor,fe=oe.resolve;if(fe===I){var ze=void 0,Xr=void 0,Fi=!1;try{ze=j.then}catch(is){Fi=!0,Xr=is}if(ze===k&&j._state!==Q)this._settledAt(j._state,X,j._result);else if(typeof ze!="function")this._remaining--,this._result[X]=j;else if(oe===ke){var ns=new oe(V);Fi?Z(ns,Xr):B(ns,j,ze),this._willSettleAt(ns,X)}else this._willSettleAt(new oe(function(is){return is(j)}),X)}else this._willSettleAt(fe(j),X)},R.prototype._settledAt=function(j,X,oe){var fe=this.promise;fe._state===Q&&(this._remaining--,j===K?Z(fe,oe):this._result[X]=oe),this._remaining===0&&Y(fe,this._result)},R.prototype._willSettleAt=function(j,X){var oe=this;me(j,void 0,function(fe){return oe._settledAt(ie,X,fe)},function(fe){return oe._settledAt(K,X,fe)})},R})();function Ce(R){return new Ye(this,R).promise}function $e(R){var N=this;return i(R)?new N(function(j,X){for(var oe=R.length,fe=0;fe<oe;fe++)N.resolve(R[fe]).then(j,X)}):new N(function(j,X){return X(new TypeError("You must pass an array to race."))})}function Pe(R){var N=this,j=new N(V);return Z(j,R),j}function Qe(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}function et(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}var ke=(function(){function R(N){this[z]=Le(),this._result=this._state=void 0,this._subscribers=[],V!==N&&(typeof N!="function"&&Qe(),this instanceof R?Me(this,N):et())}return R.prototype.catch=function(j){return this.then(null,j)},R.prototype.finally=function(j){var X=this,oe=X.constructor;return a(j)?X.then(function(fe){return oe.resolve(j()).then(function(){return fe})},function(fe){return oe.resolve(j()).then(function(){throw fe})}):X.then(j,j)},R})();ke.prototype.then=k,ke.all=Ce,ke.race=$e,ke.resolve=I,ke.reject=Pe,ke._setScheduler=c,ke._setAsap=d,ke._asap=l;function we(){var R=void 0;if(typeof tt<"u")R=tt;else if(typeof self<"u")R=self;else try{R=Function("return this")()}catch{throw new Error("polyfill failed because global object is unavailable in this environment")}var N=R.Promise;if(N){var j=null;try{j=Object.prototype.toString.call(N.resolve())}catch{}if(j==="[object Promise]"&&!N.cast)return}R.Promise=ke}return ke.polyfill=we,ke.Promise=ke,ke})}),bm=y(function(e){var t=1e5,r=(function(){var A=Object.prototype.toString,U=Object.prototype.hasOwnProperty;return{Class:function(W){return A.call(W).replace(/^\[object *|\]$/g,"")},HasProperty:function(W,ne){return ne in W},HasOwnProperty:function(W,ne){return U.call(W,ne)},IsCallable:function(W){return typeof W=="function"},ToInt32:function(W){return W>>0},ToUint32:function(W){return W>>>0}}})(),a=Math.LN2,n=Math.abs,i=Math.floor,o=Math.log,u=Math.min,s=Math.pow,l=Math.round;function c(A,U,B){return A<U?U:A>B?B:A}var d=Object.getOwnPropertyNames||function(A){if(A!==Object(A))throw new TypeError("Object.getOwnPropertyNames called on non-object");var U=[],B;for(B in A)r.HasOwnProperty(A,B)&&U.push(B);return U},f;Object.defineProperty&&(function(){try{return Object.defineProperty({},"x",{}),!0}catch{return!1}})()?f=Object.defineProperty:f=function(U,B,W){if(!U===Object(U))throw new TypeError("Object.defineProperty called on non-object");return r.HasProperty(W,"get")&&Object.prototype.__defineGetter__&&Object.prototype.__defineGetter__.call(U,B,W.get),r.HasProperty(W,"set")&&Object.prototype.__defineSetter__&&Object.prototype.__defineSetter__.call(U,B,W.set),r.HasProperty(W,"value")&&(U[B]=W.value),U};function p(A){if(d&&f){var U=d(A),B;for(B=0;B<U.length;B+=1)f(A,U[B],{value:A[U[B]],writable:!1,enumerable:!1,configurable:!1})}}function m(A){if(!f)return;if(A.length>t)throw new RangeError("Array too large for polyfill");function U(W){f(A,W,{get:function(){return A._getter(W)},set:function(Y){A._setter(W,Y)},enumerable:!0,configurable:!1})}var B;for(B=0;B<A.length;B+=1)U(B)}function h(A,U){var B=32-U;return A<<B>>B}function v(A,U){var B=32-U;return A<<B>>>B}function g(A){return[A&255]}function b(A){return h(A[0],8)}function w(A){return[A&255]}function D(A){return v(A[0],8)}function _(A){return A=l(Number(A)),[A<0?0:A>255?255:A&255]}function C(A){return[A>>8&255,A&255]}function T(A){return h(A[0]<<8|A[1],16)}function O(A){return[A>>8&255,A&255]}function $(A){return v(A[0]<<8|A[1],16)}function k(A){return[A>>24&255,A>>16&255,A>>8&255,A&255]}function I(A){return h(A[0]<<24|A[1]<<16|A[2]<<8|A[3],32)}function z(A){return[A>>24&255,A>>16&255,A>>8&255,A&255]}function V(A){return v(A[0]<<24|A[1]<<16|A[2]<<8|A[3],32)}function Q(A,U,B){var W=(1<<U-1)-1,ne,Y,Z,me,De,Ae,Me;function je(Le){var Fe=i(Le),Kr=Le-Fe;return Kr<.5?Fe:Kr>.5||Fe%2?Fe+1:Fe}for(A!==A?(Y=(1<<U)-1,Z=s(2,B-1),ne=0):A===1/0||A===-1/0?(Y=(1<<U)-1,Z=0,ne=A<0?1:0):A===0?(Y=0,Z=0,ne=1/A===-1/0?1:0):(ne=A<0,A=n(A),A>=s(2,1-W)?(Y=u(i(o(A)/a),1023),Z=je(A/s(2,Y)*s(2,B)),Z/s(2,B)>=2&&(Y=Y+1,Z=1),Y>W?(Y=(1<<U)-1,Z=0):(Y=Y+W,Z=Z-s(2,B))):(Y=0,Z=je(A/s(2,1-W-B)))),De=[],me=B;me;me-=1)De.push(Z%2?1:0),Z=i(Z/2);for(me=U;me;me-=1)De.push(Y%2?1:0),Y=i(Y/2);for(De.push(ne?1:0),De.reverse(),Ae=De.join(""),Me=[];Ae.length;)Me.push(parseInt(Ae.substring(0,8),2)),Ae=Ae.substring(8);return Me}function ie(A,U,B){var W=[],ne,Y,Z,me,De,Ae,Me,je;for(ne=A.length;ne;ne-=1)for(Z=A[ne-1],Y=8;Y;Y-=1)W.push(Z%2?1:0),Z=Z>>1;return W.reverse(),me=W.join(""),De=(1<<U-1)-1,Ae=parseInt(me.substring(0,1),2)?-1:1,Me=parseInt(me.substring(1,1+U),2),je=parseInt(me.substring(1+U),2),Me===(1<<U)-1?je===0?Ae*(1/0):NaN:Me>0?Ae*s(2,Me-De)*(1+je/s(2,B)):je!==0?Ae*s(2,-(De-1))*(je/s(2,B)):Ae<0?-0:0}function K(A){return ie(A,11,52)}function te(A){return Q(A,11,52)}function q(A){return ie(A,8,23)}function J(A){return Q(A,8,23)}(function(){function A(Le){if(Le=r.ToInt32(Le),Le<0)throw new RangeError("ArrayBuffer size is not a small enough positive integer");this.byteLength=Le,this._bytes=[],this._bytes.length=Le;var Fe;for(Fe=0;Fe<this.byteLength;Fe+=1)this._bytes[Fe]=0;p(this)}e.ArrayBuffer=e.ArrayBuffer||A;function U(){}function B(Le,Fe,Kr){var Ye;return Ye=function($e,Pe,Qe){var et,ke,we,R;if(!arguments.length||typeof arguments[0]=="number"){if(this.length=r.ToInt32(arguments[0]),Qe<0)throw new RangeError("ArrayBufferView size is not a small enough positive integer");this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new A(this.byteLength),this.byteOffset=0}else if(P(arguments[0])==="object"&&arguments[0].constructor===Ye)for(et=arguments[0],this.length=et.length,this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new A(this.byteLength),this.byteOffset=0,we=0;we<this.length;we+=1)this._setter(we,et._getter(we));else if(P(arguments[0])==="object"&&!(arguments[0]instanceof A||r.Class(arguments[0])==="ArrayBuffer"))for(ke=arguments[0],this.length=r.ToUint32(ke.length),this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new A(this.byteLength),this.byteOffset=0,we=0;we<this.length;we+=1)R=ke[we],this._setter(we,Number(R));else if(P(arguments[0])==="object"&&(arguments[0]instanceof A||r.Class(arguments[0])==="ArrayBuffer")){if(this.buffer=$e,this.byteOffset=r.ToUint32(Pe),this.byteOffset>this.buffer.byteLength)throw new RangeError("byteOffset out of range");if(this.byteOffset%this.BYTES_PER_ELEMENT)throw new RangeError("ArrayBuffer length minus the byteOffset is not a multiple of the element size.");if(arguments.length<3){if(this.byteLength=this.buffer.byteLength-this.byteOffset,this.byteLength%this.BYTES_PER_ELEMENT)throw new RangeError("length of buffer minus byteOffset not a multiple of the element size");this.length=this.byteLength/this.BYTES_PER_ELEMENT}else this.length=r.ToUint32(Qe),this.byteLength=this.length*this.BYTES_PER_ELEMENT;if(this.byteOffset+this.byteLength>this.buffer.byteLength)throw new RangeError("byteOffset and length reference an area beyond the end of the buffer")}else throw new TypeError("Unexpected argument type(s)");this.constructor=Ye,p(this),m(this)},Ye.prototype=new U,Ye.prototype.BYTES_PER_ELEMENT=Le,Ye.prototype._pack=Fe,Ye.prototype._unpack=Kr,Ye.BYTES_PER_ELEMENT=Le,Ye.prototype._getter=function(Ce){if(arguments.length<1)throw new SyntaxError("Not enough arguments");if(Ce=r.ToUint32(Ce),!(Ce>=this.length)){for(var $e=[],Pe=0,Qe=this.byteOffset+Ce*this.BYTES_PER_ELEMENT;Pe<this.BYTES_PER_ELEMENT;Pe+=1,Qe+=1)$e.push(this.buffer._bytes[Qe]);return this._unpack($e)}},Ye.prototype.get=Ye.prototype._getter,Ye.prototype._setter=function(Ce,$e){if(arguments.length<2)throw new SyntaxError("Not enough arguments");if(Ce=r.ToUint32(Ce),Ce<this.length){var Pe=this._pack($e),Qe,et;for(Qe=0,et=this.byteOffset+Ce*this.BYTES_PER_ELEMENT;Qe<this.BYTES_PER_ELEMENT;Qe+=1,et+=1)this.buffer._bytes[et]=Pe[Qe]}},Ye.prototype.set=function(Ce,$e){if(arguments.length<1)throw new SyntaxError("Not enough arguments");var Pe,Qe,et,ke,we,R,N,j,X,oe;if(P(arguments[0])==="object"&&arguments[0].constructor===this.constructor){if(Pe=arguments[0],et=r.ToUint32(arguments[1]),et+Pe.length>this.length)throw new RangeError("Offset plus length of array is out of range");if(j=this.byteOffset+et*this.BYTES_PER_ELEMENT,X=Pe.length*this.BYTES_PER_ELEMENT,Pe.buffer===this.buffer){for(oe=[],we=0,R=Pe.byteOffset;we<X;we+=1,R+=1)oe[we]=Pe.buffer._bytes[R];for(we=0,N=j;we<X;we+=1,N+=1)this.buffer._bytes[N]=oe[we]}else for(we=0,R=Pe.byteOffset,N=j;we<X;we+=1,R+=1,N+=1)this.buffer._bytes[N]=Pe.buffer._bytes[R]}else if(P(arguments[0])==="object"&&typeof arguments[0].length<"u"){if(Qe=arguments[0],ke=r.ToUint32(Qe.length),et=r.ToUint32(arguments[1]),et+ke>this.length)throw new RangeError("Offset plus length of array is out of range");for(we=0;we<ke;we+=1)R=Qe[we],this._setter(et+we,Number(R))}else throw new TypeError("Unexpected argument type(s)")},Ye.prototype.subarray=function(Ce,$e){Ce=r.ToInt32(Ce),$e=r.ToInt32($e),arguments.length<1&&(Ce=0),arguments.length<2&&($e=this.length),Ce<0&&(Ce=this.length+Ce),$e<0&&($e=this.length+$e),Ce=c(Ce,0,this.length),$e=c($e,0,this.length);var Pe=$e-Ce;return Pe<0&&(Pe=0),new this.constructor(this.buffer,this.byteOffset+Ce*this.BYTES_PER_ELEMENT,Pe)},Ye}var W=B(1,g,b),ne=B(1,w,D),Y=B(1,_,D),Z=B(2,C,T),me=B(2,O,$),De=B(4,k,I),Ae=B(4,z,V),Me=B(4,J,q),je=B(8,te,K);e.Int8Array=e.Int8Array||W,e.Uint8Array=e.Uint8Array||ne,e.Uint8ClampedArray=e.Uint8ClampedArray||Y,e.Int16Array=e.Int16Array||Z,e.Uint16Array=e.Uint16Array||me,e.Int32Array=e.Int32Array||De,e.Uint32Array=e.Uint32Array||Ae,e.Float32Array=e.Float32Array||Me,e.Float64Array=e.Float64Array||je})(),(function(){function A(Y,Z){return r.IsCallable(Y.get)?Y.get(Z):Y[Z]}var U=(function(){var Y=new e.Uint16Array([4660]),Z=new e.Uint8Array(Y.buffer);return A(Z,0)===18})();function B(Y,Z,me){if(arguments.length===0)Y=new e.ArrayBuffer(0);else if(!(Y instanceof e.ArrayBuffer||r.Class(Y)==="ArrayBuffer"))throw new TypeError("TypeError");if(this.buffer=Y||new e.ArrayBuffer(0),this.byteOffset=r.ToUint32(Z),this.byteOffset>this.buffer.byteLength)throw new RangeError("byteOffset out of range");if(arguments.length<3?this.byteLength=this.buffer.byteLength-this.byteOffset:this.byteLength=r.ToUint32(me),this.byteOffset+this.byteLength>this.buffer.byteLength)throw new RangeError("byteOffset and length reference an area beyond the end of the buffer");p(this)}function W(Y){return function(Z,me){if(Z=r.ToUint32(Z),Z+Y.BYTES_PER_ELEMENT>this.byteLength)throw new RangeError("Array index out of range");Z+=this.byteOffset;var De=new e.Uint8Array(this.buffer,Z,Y.BYTES_PER_ELEMENT),Ae=[],Me;for(Me=0;Me<Y.BYTES_PER_ELEMENT;Me+=1)Ae.push(A(De,Me));return!!me==!!U&&Ae.reverse(),A(new Y(new e.Uint8Array(Ae).buffer),0)}}B.prototype.getUint8=W(e.Uint8Array),B.prototype.getInt8=W(e.Int8Array),B.prototype.getUint16=W(e.Uint16Array),B.prototype.getInt16=W(e.Int16Array),B.prototype.getUint32=W(e.Uint32Array),B.prototype.getInt32=W(e.Int32Array),B.prototype.getFloat32=W(e.Float32Array),B.prototype.getFloat64=W(e.Float64Array);function ne(Y){return function(Z,me,De){if(Z=r.ToUint32(Z),Z+Y.BYTES_PER_ELEMENT>this.byteLength)throw new RangeError("Array index out of range");var Ae=new Y([me]),Me=new e.Uint8Array(Ae.buffer),je=[],Le,Fe;for(Le=0;Le<Y.BYTES_PER_ELEMENT;Le+=1)je.push(A(Me,Le));!!De==!!U&&je.reverse(),Fe=new e.Uint8Array(this.buffer,Z,Y.BYTES_PER_ELEMENT),Fe.set(je)}}B.prototype.setUint8=ne(e.Uint8Array),B.prototype.setInt8=ne(e.Int8Array),B.prototype.setUint16=ne(e.Uint16Array),B.prototype.setInt16=ne(e.Int16Array),B.prototype.setUint32=ne(e.Uint32Array),B.prototype.setInt32=ne(e.Int32Array),B.prototype.setFloat32=ne(e.Float32Array),B.prototype.setFloat64=ne(e.Float64Array),e.DataView=e.DataView||B})()}),ym=y(function(e){(function(t){if(t.WeakMap)return;var r=Object.prototype.hasOwnProperty,a=Object.defineProperty&&(function(){try{return Object.defineProperty({},"x",{value:1}).x===1}catch{}})(),n=function(u,s,l){a?Object.defineProperty(u,s,{configurable:!0,writable:!0,value:l}):u[s]=l};t.WeakMap=(function(){function o(){if(this===void 0)throw new TypeError("Constructor WeakMap requires 'new'");if(n(this,"_id",s("_WeakMap")),arguments.length>0)throw new TypeError("WeakMap iterable is not supported")}n(o.prototype,"delete",function(c){if(u(this,"delete"),!i(c))return!1;var d=c[this._id];return d&&d[0]===c?(delete c[this._id],!0):!1}),n(o.prototype,"get",function(c){if(u(this,"get"),!!i(c)){var d=c[this._id];if(d&&d[0]===c)return d[1]}}),n(o.prototype,"has",function(c){if(u(this,"has"),!i(c))return!1;var d=c[this._id];return!!(d&&d[0]===c)}),n(o.prototype,"set",function(c,d){if(u(this,"set"),!i(c))throw new TypeError("Invalid value used as weak map key");var f=c[this._id];return f&&f[0]===c?(f[1]=d,this):(n(c,this._id,[c,d]),this)});function u(c,d){if(!i(c)||!r.call(c,"_id"))throw new TypeError(d+" method called on incompatible receiver "+P(c))}function s(c){return c+"_"+l()+"."+l()}function l(){return Math.random().toString().substring(2)}return n(o,"_polyfill",!0),o})();function i(o){return Object(o)===o}})(typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof E<"u"?E:typeof tt<"u"?tt:e)}),At=y(function(e,t){var r=function(n){return n&&n.Math===Math&&n};t.exports=r((typeof globalThis>"u"?"undefined":P(globalThis))=="object"&&globalThis)||r((typeof E>"u"?"undefined":P(E))=="object"&&E)||r((typeof self>"u"?"undefined":P(self))=="object"&&self)||r((typeof tt>"u"?"undefined":P(tt))=="object"&&tt)||r(P(e)=="object"&&e)||(function(){return this})()||Function("return this")()}),Ft=y(function(e,t){t.exports=function(r){try{return!!r()}catch{return!0}}}),Xa=y(function(e,t){var r=Ft();t.exports=!r(function(){var a=(function(){}).bind();return typeof a!="function"||a.hasOwnProperty("prototype")})}),Dm=y(function(e,t){var r=Xa(),a=Function.prototype,n=a.apply,i=a.call;t.exports=(typeof Reflect>"u"?"undefined":P(Reflect))=="object"&&Reflect.apply||(r?i.bind(n):function(){return i.apply(n,arguments)})}),mt=y(function(e,t){var r=Xa(),a=Function.prototype,n=a.call,i=r&&a.bind.bind(n,n);t.exports=r?i:function(o){return function(){return n.apply(o,arguments)}}}),ki=y(function(e,t){var r=mt(),a=r({}.toString),n=r("".slice);t.exports=function(i){return n(a(i),8,-1)}}),hs=y(function(e,t){var r=ki(),a=mt();t.exports=function(n){if(r(n)==="Function")return a(n)}}),nt=y(function(e,t){var r=(typeof M>"u"?"undefined":P(M))=="object"&&M.all;t.exports=typeof r>"u"&&r!==void 0?function(a){return typeof a=="function"||a===r}:function(a){return typeof a=="function"}}),zt=y(function(e,t){var r=Ft();t.exports=!r(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})}),pr=y(function(e,t){var r=Xa(),a=Function.prototype.call;t.exports=r?a.bind(a):function(){return a.apply(a,arguments)}}),vs=y(function(e){var t={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,a=r&&!t.call({1:2},1);e.f=a?function(i){var o=r(this,i);return!!o&&o.enumerable}:t}),Za=y(function(e,t){t.exports=function(r,a){return{enumerable:!(r&1),configurable:!(r&2),writable:!(r&4),value:a}}}),wm=y(function(e,t){var r=mt(),a=Ft(),n=ki(),i=Object,o=r("".split);t.exports=a(function(){return!i("z").propertyIsEnumerable(0)})?function(u){return n(u)==="String"?o(u,""):i(u)}:i}),Oi=y(function(e,t){t.exports=function(r){return r==null}}),Ja=y(function(e,t){var r=Oi(),a=TypeError;t.exports=function(n){if(r(n))throw new a("Can't call method on "+n);return n}}),aa=y(function(e,t){var r=wm(),a=Ja();t.exports=function(n){return r(a(n))}}),Jt=y(function(e,t){var r=nt();t.exports=function(a){return P(a)=="object"?a!==null:r(a)}}),na=y(function(e,t){t.exports={}}),Mi=y(function(e,t){var r=na(),a=At(),n=nt(),i=function(u){return n(u)?u:void 0};t.exports=function(o,u){return arguments.length<2?i(r[o])||i(a[o]):r[o]&&r[o][u]||a[o]&&a[o][u]}}),_m=y(function(e,t){var r=mt();t.exports=r({}.isPrototypeOf)}),xm=y(function(e,t){var r=At(),a=r.navigator,n=a&&a.userAgent;t.exports=n?String(n):""}),Em=y(function(e,t){var r=At(),a=xm(),n=r.process,i=r.Deno,o=n&&n.versions||i&&i.version,u=o&&o.v8,s,l;u&&(s=u.split("."),l=s[0]>0&&s[0]<4?1:+(s[0]+s[1])),!l&&a&&(s=a.match(/Edge\/(\d+)/),(!s||s[1]>=74)&&(s=a.match(/Chrome\/(\d+)/),s&&(l=+s[1]))),t.exports=l}),gs=y(function(e,t){var r=Em(),a=Ft(),n=At(),i=n.String;t.exports=!!Object.getOwnPropertySymbols&&!a(function(){var o=Symbol("symbol detection");return!i(o)||!(Object(o)instanceof Symbol)||!Symbol.sham&&r&&r<41})}),bs=y(function(e,t){var r=gs();t.exports=r&&!Symbol.sham&&P(Symbol.iterator)=="symbol"}),ys=y(function(e,t){var r=Mi(),a=nt(),n=_m(),i=bs(),o=Object;t.exports=i?function(u){return P(u)=="symbol"}:function(u){var s=r("Symbol");return a(s)&&n(s.prototype,o(u))}}),Ds=y(function(e,t){var r=String;t.exports=function(a){try{return r(a)}catch{return"Object"}}}),Qa=y(function(e,t){var r=nt(),a=Ds(),n=TypeError;t.exports=function(i){if(r(i))return i;throw new n(a(i)+" is not a function")}}),Pi=y(function(e,t){var r=Qa(),a=Oi();t.exports=function(n,i){var o=n[i];return a(o)?void 0:r(o)}}),Am=y(function(e,t){var r=pr(),a=nt(),n=Jt(),i=TypeError;t.exports=function(o,u){var s,l;if(u==="string"&&a(s=o.toString)&&!n(l=r(s,o))||a(s=o.valueOf)&&!n(l=r(s,o))||u!=="string"&&a(s=o.toString)&&!n(l=r(s,o)))return l;throw new i("Can't convert object to primitive value")}}),Ii=y(function(e,t){t.exports=!0}),Fm=y(function(e,t){var r=At(),a=Object.defineProperty;t.exports=function(n,i){try{a(r,n,{value:i,configurable:!0,writable:!0})}catch{r[n]=i}return i}}),en=y(function(e,t){var r=Ii(),a=At(),n=Fm(),i="__core-js_shared__",o=t.exports=a[i]||n(i,{});(o.versions||(o.versions=[])).push({version:"3.44.0",mode:r?"pure":"global",copyright:"© 2014-2025 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.44.0/LICENSE",source:"https://github.com/zloirock/core-js"})}),ws=y(function(e,t){var r=en();t.exports=function(a,n){return r[a]||(r[a]=n||{})}}),Ni=y(function(e,t){var r=Ja(),a=Object;t.exports=function(n){return a(r(n))}}),Vt=y(function(e,t){var r=mt(),a=Ni(),n=r({}.hasOwnProperty);t.exports=Object.hasOwn||function(o,u){return n(a(o),u)}}),_s=y(function(e,t){var r=mt(),a=0,n=Math.random(),i=r(1.1.toString);t.exports=function(o){return"Symbol("+(o===void 0?"":o)+")_"+i(++a+n,36)}}),Ht=y(function(e,t){var r=At(),a=ws(),n=Vt(),i=_s(),o=gs(),u=bs(),s=r.Symbol,l=a("wks"),c=u?s.for||s:s&&s.withoutSetter||i;t.exports=function(d){return n(l,d)||(l[d]=o&&n(s,d)?s[d]:c("Symbol."+d)),l[d]}}),Cm=y(function(e,t){var r=pr(),a=Jt(),n=ys(),i=Pi(),o=Am(),u=Ht(),s=TypeError,l=u("toPrimitive");t.exports=function(c,d){if(!a(c)||n(c))return c;var f=i(c,l),p;if(f){if(d===void 0&&(d="default"),p=r(f,c,d),!a(p)||n(p))return p;throw new s("Can't convert object to primitive value")}return d===void 0&&(d="number"),o(c,d)}}),xs=y(function(e,t){var r=Cm(),a=ys();t.exports=function(n){var i=r(n,"string");return a(i)?i:i+""}}),Es=y(function(e,t){var r=At(),a=Jt(),n=r.document,i=a(n)&&a(n.createElement);t.exports=function(o){return i?n.createElement(o):{}}}),As=y(function(e,t){var r=zt(),a=Ft(),n=Es();t.exports=!r&&!a(function(){return Object.defineProperty(n("div"),"a",{get:function(){return 7}}).a!==7})}),Rm=y(function(e){var t=zt(),r=pr(),a=vs(),n=Za(),i=aa(),o=xs(),u=Vt(),s=As(),l=Object.getOwnPropertyDescriptor;e.f=t?l:function(d,f){if(d=i(d),f=o(f),s)try{return l(d,f)}catch{}if(u(d,f))return n(!r(a.f,d,f),d[f])}}),Tm=y(function(e,t){var r=Ft(),a=nt(),n=/#|\.prototype\./,i=function(d,f){var p=u[o(d)];return p===l?!0:p===s?!1:a(f)?r(f):!!f},o=i.normalize=function(c){return String(c).replace(n,".").toLowerCase()},u=i.data={},s=i.NATIVE="N",l=i.POLYFILL="P";t.exports=i}),Fs=y(function(e,t){var r=hs(),a=Qa(),n=Xa(),i=r(r.bind);t.exports=function(o,u){return a(o),u===void 0?o:n?i(o,u):function(){return o.apply(u,arguments)}}}),Cs=y(function(e,t){var r=zt(),a=Ft();t.exports=r&&a(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})}),Sr=y(function(e,t){var r=Jt(),a=String,n=TypeError;t.exports=function(i){if(r(i))return i;throw new n(a(i)+" is not an object")}}),tn=y(function(e){var t=zt(),r=As(),a=Cs(),n=Sr(),i=xs(),o=TypeError,u=Object.defineProperty,s=Object.getOwnPropertyDescriptor,l="enumerable",c="configurable",d="writable";e.f=t?a?function(p,m,h){if(n(p),m=i(m),n(h),typeof p=="function"&&m==="prototype"&&"value"in h&&d in h&&!h[d]){var v=s(p,m);v&&v[d]&&(p[m]=h.value,h={configurable:c in h?h[c]:v[c],enumerable:l in h?h[l]:v[l],writable:!1})}return u(p,m,h)}:u:function(p,m,h){if(n(p),m=i(m),n(h),r)try{return u(p,m,h)}catch{}if("get"in h||"set"in h)throw new o("Accessors not supported");return"value"in h&&(p[m]=h.value),p}}),ia=y(function(e,t){var r=zt(),a=tn(),n=Za();t.exports=r?function(i,o,u){return a.f(i,o,n(1,u))}:function(i,o,u){return i[o]=u,i}}),rn=y(function(e,t){var r=At(),a=Dm(),n=hs(),i=nt(),o=Rm().f,u=Tm(),s=na(),l=Fs(),c=ia(),d=Vt();en();var f=function(m){var h=function(g,b,w){if(this instanceof h){switch(arguments.length){case 0:return new m;case 1:return new m(g);case 2:return new m(g,b)}return new m(g,b,w)}return a(m,this,arguments)};return h.prototype=m.prototype,h};t.exports=function(p,m){var h=p.target,v=p.global,g=p.stat,b=p.proto,w=v?r:g?r[h]:r[h]&&r[h].prototype,D=v?s:s[h]||c(s,h,{})[h],_=D.prototype,C,T,O,$,k,I,z,V,Q;for($ in m)C=u(v?$:h+(g?".":"#")+$,p.forced),T=!C&&w&&d(w,$),I=D[$],T&&(p.dontCallGetSet?(Q=o(w,$),z=Q&&Q.value):z=w[$]),k=T&&z?z:m[$],!(!C&&!b&&P(I)==P(k))&&(p.bind&&T?V=l(k,r):p.wrap&&T?V=f(k):b&&i(k)?V=n(k):V=k,(p.sham||k&&k.sham||I&&I.sham)&&c(V,"sham",!0),c(D,$,V),b&&(O=h+"Prototype",d(s,O)||c(s,O,{}),c(s[O],$,k),p.real&&_&&(C||!_[$])&&c(_,$,k)))}}),Sm=y(function(){var e=rn(),t=Vt();e({target:"Object",stat:!0},{hasOwn:t})}),km=y(function(e,t){Sm();var r=na();t.exports=r.Object.hasOwn}),Om=y(function(e,t){var r=km();t.exports=r}),Mm=y(function(e,t){var r=Om();t.exports=r}),Bi=y(function(e,t){var r=ws(),a=_s(),n=r("keys");t.exports=function(i){return n[i]||(n[i]=a(i))}}),Pm=y(function(e,t){var r=Ft();t.exports=!r(function(){function a(){}return a.prototype.constructor=null,Object.getPrototypeOf(new a)!==a.prototype})}),Li=y(function(e,t){var r=Vt(),a=nt(),n=Ni(),i=Bi(),o=Pm(),u=i("IE_PROTO"),s=Object,l=s.prototype;t.exports=o?s.getPrototypeOf:function(c){var d=n(c);if(r(d,u))return d[u];var f=d.constructor;return a(f)&&d instanceof f?f.prototype:d instanceof s?l:null}}),Im=y(function(e,t){var r=Math.ceil,a=Math.floor;t.exports=Math.trunc||function(i){var o=+i;return(o>0?a:r)(o)}}),qi=y(function(e,t){var r=Im();t.exports=function(a){var n=+a;return n!==n||n===0?0:r(n)}}),Nm=y(function(e,t){var r=qi(),a=Math.max,n=Math.min;t.exports=function(i,o){var u=r(i);return u<0?a(u+o,0):n(u,o)}}),Bm=y(function(e,t){var r=qi(),a=Math.min;t.exports=function(n){var i=r(n);return i>0?a(i,9007199254740991):0}}),Rs=y(function(e,t){var r=Bm();t.exports=function(a){return r(a.length)}}),Lm=y(function(e,t){var r=aa(),a=Nm(),n=Rs(),i=function(u){return function(s,l,c){var d=r(s),f=n(d);if(f===0)return!u&&-1;var p=a(c,f),m;if(u&&l!==l){for(;f>p;)if(m=d[p++],m!==m)return!0}else for(;f>p;p++)if((u||p in d)&&d[p]===l)return u||p||0;return!u&&-1}};t.exports={includes:i(!0),indexOf:i(!1)}}),ji=y(function(e,t){t.exports={}}),qm=y(function(e,t){var r=mt(),a=Vt(),n=aa(),i=Lm().indexOf,o=ji(),u=r([].push);t.exports=function(s,l){var c=n(s),d=0,f=[],p;for(p in c)!a(o,p)&&a(c,p)&&u(f,p);for(;l.length>d;)a(c,p=l[d++])&&(~i(f,p)||u(f,p));return f}}),Ts=y(function(e,t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]}),Ss=y(function(e,t){var r=qm(),a=Ts();t.exports=Object.keys||function(i){return r(i,a)}}),jm=y(function(e,t){var r=zt(),a=Ft(),n=mt(),i=Li(),o=Ss(),u=aa(),s=vs().f,l=n(s),c=n([].push),d=r&&a(function(){var p=Object.create(null);return p[2]=2,!l(p,2)}),f=function(m){return function(h){for(var v=u(h),g=o(v),b=d&&i(v)===null,w=g.length,D=0,_=[],C;w>D;)C=g[D++],(!r||(b?C in v:l(v,C)))&&c(_,m?[C,v[C]]:v[C]);return _}};t.exports={entries:f(!0),values:f(!1)}}),$m=y(function(){var e=rn(),t=jm().values;e({target:"Object",stat:!0},{values:function(a){return t(a)}})}),zm=y(function(e,t){$m();var r=na();t.exports=r.Object.values}),Vm=y(function(e,t){var r=zm();t.exports=r}),Hm=y(function(e,t){var r=Vm();t.exports=r}),$i=y(function(e,t){var r=Ht(),a=r("toStringTag"),n={};n[a]="z",t.exports=String(n)==="[object z]"}),an=y(function(e,t){var r=$i(),a=nt(),n=ki(),i=Ht(),o=i("toStringTag"),u=Object,s=n((function(){return arguments})())==="Arguments",l=function(d,f){try{return d[f]}catch{}};t.exports=r?n:function(c){var d,f,p;return c===void 0?"Undefined":c===null?"Null":typeof(f=l(d=u(c),o))=="string"?f:s?n(d):(p=n(d))==="Object"&&a(d.callee)?"Arguments":p}}),ks=y(function(e,t){var r=an(),a=String;t.exports=function(n){if(r(n)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return a(n)}}),Gm=y(function(e,t){var r=mt(),a=qi(),n=ks(),i=Ja(),o=r("".charAt),u=r("".charCodeAt),s=r("".slice),l=function(d){return function(f,p){var m=n(i(f)),h=a(p),v=m.length,g,b;return h<0||h>=v?d?"":void 0:(g=u(m,h),g<55296||g>56319||h+1===v||(b=u(m,h+1))<56320||b>57343?d?o(m,h):g:d?s(m,h,h+2):(g-55296<<10)+(b-56320)+65536)}};t.exports={codeAt:l(!1),charAt:l(!0)}}),Um=y(function(e,t){var r=At(),a=nt(),n=r.WeakMap;t.exports=a(n)&&/native code/.test(String(n))}),Wm=y(function(e,t){var r=Um(),a=At(),n=Jt(),i=ia(),o=Vt(),u=en(),s=Bi(),l=ji(),c="Object already initialized",d=a.TypeError,f=a.WeakMap,p,m,h,v=function(_){return h(_)?m(_):p(_,{})},g=function(_){return function(C){var T;if(!n(C)||(T=m(C)).type!==_)throw new d("Incompatible receiver, "+_+" required");return T}};r||u.state?(b=u.state||(u.state=new f),b.get=b.get,b.has=b.has,b.set=b.set,p=function(_,C){if(b.has(_))throw new d(c);return C.facade=_,b.set(_,C),C},m=function(_){return b.get(_)||{}},h=function(_){return b.has(_)}):(w=s("state"),l[w]=!0,p=function(_,C){if(o(_,w))throw new d(c);return C.facade=_,i(_,w,C),C},m=function(_){return o(_,w)?_[w]:{}},h=function(_){return o(_,w)});var b,w;t.exports={set:p,get:m,has:h,enforce:v,getterFor:g}}),Ym=y(function(e,t){var r=zt(),a=Vt(),n=Function.prototype,i=r&&Object.getOwnPropertyDescriptor,o=a(n,"name"),u=o&&(function(){}).name==="something",s=o&&(!r||r&&i(n,"name").configurable);t.exports={EXISTS:o,PROPER:u,CONFIGURABLE:s}}),Km=y(function(e){var t=zt(),r=Cs(),a=tn(),n=Sr(),i=aa(),o=Ss();e.f=t&&!r?Object.defineProperties:function(s,l){n(s);for(var c=i(l),d=o(l),f=d.length,p=0,m;f>p;)a.f(s,m=d[p++],c[m]);return s}}),Xm=y(function(e,t){var r=Mi();t.exports=r("document","documentElement")}),Os=y(function(e,t){var r=Sr(),a=Km(),n=Ts(),i=ji(),o=Xm(),u=Es(),s=Bi(),l=">",c="<",d="prototype",f="script",p=s("IE_PROTO"),m=function(){},h=function(_){return c+f+l+_+c+"/"+f+l},v=function(_){_.write(h("")),_.close();var C=_.parentWindow.Object;return _=null,C},g=function(){var _=u("iframe"),C="java"+f+":",T;return _.style.display="none",o.appendChild(_),_.src=String(C),T=_.contentWindow.document,T.open(),T.write(h("document.F=Object")),T.close(),T.F},b,w=function(){try{b=new ActiveXObject("htmlfile")}catch{}w=typeof M<"u"?M.domain&&b?v(b):g():v(b);for(var _=n.length;_--;)delete w[d][n[_]];return w()};i[p]=!0,t.exports=Object.create||function(_,C){var T;return _!==null?(m[d]=r(_),T=new m,m[d]=null,T[p]=_):T=w(),C===void 0?T:a.f(T,C)}}),Ms=y(function(e,t){var r=ia();t.exports=function(a,n,i,o){return o&&o.enumerable?a[n]=i:r(a,n,i),a}}),Ps=y(function(e,t){var r=Ft(),a=nt(),n=Jt(),i=Os(),o=Li(),u=Ms(),s=Ht(),l=Ii(),c=s("iterator"),d=!1,f,p,m;[].keys&&(m=[].keys(),"next"in m?(p=o(o(m)),p!==Object.prototype&&(f=p)):d=!0);var h=!n(f)||r(function(){var v={};return f[c].call(v)!==v});h?f={}:l&&(f=i(f)),a(f[c])||u(f,c,function(){return this}),t.exports={IteratorPrototype:f,BUGGY_SAFARI_ITERATORS:d}}),Zm=y(function(e,t){var r=$i(),a=an();t.exports=r?{}.toString:function(){return"[object "+a(this)+"]"}}),Is=y(function(e,t){var r=$i(),a=tn().f,n=ia(),i=Vt(),o=Zm(),u=Ht(),s=u("toStringTag");t.exports=function(l,c,d,f){var p=d?l:l&&l.prototype;p&&(i(p,s)||a(p,s,{configurable:!0,value:c}),f&&!r&&n(p,"toString",o))}}),nn=y(function(e,t){t.exports={}}),Jm=y(function(e,t){var r=Ps().IteratorPrototype,a=Os(),n=Za(),i=Is(),o=nn(),u=function(){return this};t.exports=function(s,l,c,d){var f=l+" Iterator";return s.prototype=a(r,{next:n(+!d,c)}),i(s,f,!1,!0),o[f]=u,s}}),Qm=y(function(e,t){var r=mt(),a=Qa();t.exports=function(n,i,o){try{return r(a(Object.getOwnPropertyDescriptor(n,i)[o]))}catch{}}}),eh=y(function(e,t){var r=Jt();t.exports=function(a){return r(a)||a===null}}),th=y(function(e,t){var r=eh(),a=String,n=TypeError;t.exports=function(i){if(r(i))return i;throw new n("Can't set "+a(i)+" as a prototype")}}),rh=y(function(e,t){var r=Qm(),a=Jt(),n=Ja(),i=th();t.exports=Object.setPrototypeOf||("__proto__"in{}?(function(){var o=!1,u={},s;try{s=r(Object.prototype,"__proto__","set"),s(u,[]),o=u instanceof Array}catch{}return function(c,d){return n(c),i(d),a(c)&&(o?s(c,d):c.__proto__=d),c}})():void 0)}),ah=y(function(e,t){var r=rn(),a=pr(),n=Ii(),i=Ym(),o=nt(),u=Jm(),s=Li(),l=rh(),c=Is(),d=ia(),f=Ms(),p=Ht(),m=nn(),h=Ps(),v=i.PROPER,g=i.CONFIGURABLE,b=h.IteratorPrototype,w=h.BUGGY_SAFARI_ITERATORS,D=p("iterator"),_="keys",C="values",T="entries",O=function(){return this};t.exports=function($,k,I,z,V,Q,ie){u(I,k,z);var K=function(me){if(me===V&&U)return U;if(!w&&me&&me in J)return J[me];switch(me){case _:return function(){return new I(this,me)};case C:return function(){return new I(this,me)};case T:return function(){return new I(this,me)}}return function(){return new I(this)}},te=k+" Iterator",q=!1,J=$.prototype,A=J[D]||J["@@iterator"]||V&&J[V],U=!w&&A||K(V),B=k==="Array"&&J.entries||A,W,ne,Y;if(B&&(W=s(B.call(new $)),W!==Object.prototype&&W.next&&(!n&&s(W)!==b&&(l?l(W,b):o(W[D])||f(W,D,O)),c(W,te,!0,!0),n&&(m[te]=O))),v&&V===C&&A&&A.name!==C&&(!n&&g?d(J,"name",C):(q=!0,U=function(){return a(A,this)})),V)if(ne={values:K(C),keys:Q?U:K(_),entries:K(T)},ie)for(Y in ne)(w||q||!(Y in J))&&f(J,Y,ne[Y]);else r({target:k,proto:!0,forced:w||q},ne);return(!n||ie)&&J[D]!==U&&f(J,D,U,{name:V}),m[k]=U,ne}}),nh=y(function(e,t){t.exports=function(r,a){return{value:r,done:a}}}),ih=y(function(){var e=Gm().charAt,t=ks(),r=Wm(),a=ah(),n=nh(),i="String Iterator",o=r.set,u=r.getterFor(i);a(String,"String",function(s){o(this,{type:i,string:t(s),index:0})},function(){var l=u(this),c=l.string,d=l.index,f;return d>=c.length?n(void 0,!0):(f=e(c,d),l.index+=f.length,n(f,!1))})}),oh=y(function(e,t){var r=pr(),a=Sr(),n=Pi();t.exports=function(i,o,u){var s,l;a(i);try{if(s=n(i,"return"),!s){if(o==="throw")throw u;return u}s=r(s,i)}catch(c){l=!0,s=c}if(o==="throw")throw u;if(l)throw s;return a(s),u}}),uh=y(function(e,t){var r=Sr(),a=oh();t.exports=function(n,i,o,u){try{return u?i(r(o)[0],o[1]):i(o)}catch(s){a(n,"throw",s)}}}),sh=y(function(e,t){var r=Ht(),a=nn(),n=r("iterator"),i=Array.prototype;t.exports=function(o){return o!==void 0&&(a.Array===o||i[n]===o)}}),lh=y(function(e,t){var r=mt(),a=nt(),n=en(),i=r(Function.toString);a(n.inspectSource)||(n.inspectSource=function(o){return i(o)}),t.exports=n.inspectSource}),ch=y(function(e,t){var r=mt(),a=Ft(),n=nt(),i=an(),o=Mi(),u=lh(),s=function(){},l=o("Reflect","construct"),c=/^\s*(?:class|function)\b/,d=r(c.exec),f=!c.test(s),p=function(v){if(!n(v))return!1;try{return l(s,[],v),!0}catch{return!1}},m=function(v){if(!n(v))return!1;switch(i(v)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return f||!!d(c,u(v))}catch{return!0}};m.sham=!0,t.exports=!l||a(function(){var h;return p(p.call)||!p(Object)||!p(function(){h=!0})||h})?m:p}),dh=y(function(e,t){var r=zt(),a=tn(),n=Za();t.exports=function(i,o,u){r?a.f(i,o,n(0,u)):i[o]=u}}),Ns=y(function(e,t){var r=an(),a=Pi(),n=Oi(),i=nn(),o=Ht(),u=o("iterator");t.exports=function(s){if(!n(s))return a(s,u)||a(s,"@@iterator")||i[r(s)]}}),fh=y(function(e,t){var r=pr(),a=Qa(),n=Sr(),i=Ds(),o=Ns(),u=TypeError;t.exports=function(s,l){var c=arguments.length<2?o(s):l;if(a(c))return n(r(c,s));throw new u(i(s)+" is not iterable")}}),ph=y(function(e,t){var r=Fs(),a=pr(),n=Ni(),i=uh(),o=sh(),u=ch(),s=Rs(),l=dh(),c=fh(),d=Ns(),f=Array;t.exports=function(m){var h=n(m),v=u(this),g=arguments.length,b=g>1?arguments[1]:void 0,w=b!==void 0;w&&(b=r(b,g>2?arguments[2]:void 0));var D=d(h),_=0,C,T,O,$,k,I;if(D&&!(this===f&&o(D)))for(T=v?new this:[],$=c(h,D),k=$.next;!(O=a(k,$)).done;_++)I=w?i($,b,[O.value,_],!0):O.value,l(T,_,I);else for(C=s(h),T=v?new this(C):f(C);C>_;_++)I=w?b(h[_],_):h[_],l(T,_,I);return T.length=_,T}}),mh=y(function(e,t){var r=Ht(),a=r("iterator"),n=!1;try{i=0,o={next:function(){return{done:!!i++}},return:function(){n=!0}},o[a]=function(){return this},Array.from(o,function(){throw 2})}catch{}var i,o;t.exports=function(u,s){try{if(!s&&!n)return!1}catch{return!1}var l=!1;try{var c={};c[a]=function(){return{next:function(){return{done:l=!0}}}},u(c)}catch{}return l}}),hh=y(function(){var e=rn(),t=ph(),r=mh(),a=!r(function(n){Array.from(n)});e({target:"Array",stat:!0,forced:a},{from:t})}),vh=y(function(e,t){ih(),hh();var r=na();t.exports=r.Array.from}),gh=y(function(e,t){var r=vh();t.exports=r}),Bs=y(function(e,t){var r=gh();t.exports=r}),Ls=y(function(e){Object.defineProperty(e,"__esModule",{value:!0});function t(o){return o>="a"&&o<="z"||o>="A"&&o<="Z"||o==="-"||o==="_"}e.isIdentStart=t;function r(o){return o>="a"&&o<="z"||o>="A"&&o<="Z"||o>="0"&&o<="9"||o==="-"||o==="_"}e.isIdent=r;function a(o){return o>="a"&&o<="f"||o>="A"&&o<="F"||o>="0"&&o<="9"}e.isHex=a;function n(o){for(var u=o.length,s="",l=0;l<u;){var c=o.charAt(l);if(e.identSpecialChars[c])s+="\\"+c;else if(c==="_"||c==="-"||c>="A"&&c<="Z"||c>="a"&&c<="z"||l!==0&&c>="0"&&c<="9")s+=c;else{var d=c.charCodeAt(0);if((d&63488)===55296){var f=o.charCodeAt(l++);if((d&64512)!==55296||(f&64512)!==56320)throw Error("UCS-2(decode): illegal sequence");d=((d&1023)<<10)+(f&1023)+65536}s+="\\"+d.toString(16)+" "}l++}return s}e.escapeIdentifier=n;function i(o){for(var u=o.length,s="",l=0,c;l<u;){var d=o.charAt(l);d==='"'?d='\\"':d==="\\"?d="\\\\":(c=e.strReplacementsRev[d])!==void 0&&(d=c),s+=d,l++}return'"'+s+'"'}e.escapeStr=i,e.identSpecialChars={"!":!0,'"':!0,"#":!0,$:!0,"%":!0,"&":!0,"'":!0,"(":!0,")":!0,"*":!0,"+":!0,",":!0,".":!0,"/":!0,";":!0,"<":!0,"=":!0,">":!0,"?":!0,"@":!0,"[":!0,"\\":!0,"]":!0,"^":!0,"`":!0,"{":!0,"|":!0,"}":!0,"~":!0},e.strReplacementsRev={"\n":"\\n","\r":"\\r"," ":"\\t","\f":"\\f","\v":"\\v"},e.singleQuoteEscapeChars={n:`
5
5
  `,r:"\r",t:" ",f:"\f","\\":"\\","'":"'"},e.doubleQuotesEscapeChars={n:`
6
- `,r:"\r",t:" ",f:"\f","\\":"\\",'"':'"'}}),gh=y(function(e){Object.defineProperty(e,"__esModule",{value:!0});var t=Ls();function r(a,n,i,o,u,s){var l=a.length,c="";function d(b,w){var D="";for(n++,c=a.charAt(n);n<l;){if(c===b)return n++,D;if(c==="\\"){n++,c=a.charAt(n);var _=void 0;if(c===b)D+=b;else if((_=w[c])!==void 0)D+=_;else if(t.isHex(c)){var C=c;for(n++,c=a.charAt(n);t.isHex(c);)C+=c,n++,c=a.charAt(n);c===" "&&(n++,c=a.charAt(n)),D+=String.fromCharCode(parseInt(C,16));continue}else D+=c}else D+=c;n++,c=a.charAt(n)}return D}function f(){var b="";for(c=a.charAt(n);n<l;){if(t.isIdent(c))b+=c;else if(c==="\\"){if(n++,n>=l)throw Error("Expected symbol but end of file reached.");if(c=a.charAt(n),t.identSpecialChars[c])b+=c;else if(t.isHex(c)){var w=c;for(n++,c=a.charAt(n);t.isHex(c);)w+=c,n++,c=a.charAt(n);c===" "&&(n++,c=a.charAt(n)),b+=String.fromCharCode(parseInt(w,16));continue}else b+=c}else return b;n++,c=a.charAt(n)}return b}function p(){c=a.charAt(n);for(var b=!1;c===" "||c===" "||c===`
7
- `||c==="\r"||c==="\f";)b=!0,n++,c=a.charAt(n);return b}function m(){var b=h();if(n<l)throw Error('Rule expected but "'+a.charAt(n)+'" found.');return b}function h(){var b=v();if(!b)return null;var w=b;for(c=a.charAt(n);c===",";){if(n++,p(),w.type!=="selectors"&&(w={type:"selectors",selectors:[b]}),b=v(),!b)throw Error('Rule expected after ",".');w.selectors.push(b)}return w}function v(){p();var b={type:"ruleSet"},w=g();if(!w)return null;for(var D=b;w&&(w.type="rule",D.rule=w,D=w,p(),c=a.charAt(n),!(n>=l||c===","||c===")"));)if(u[c]){var _=c;if(n++,p(),w=g(),!w)throw Error('Rule expected after "'+_+'".');w.nestingOperator=_}else w=g(),w&&(w.nestingOperator=null);return b}function g(){for(var b=null;n<l;)if(c=a.charAt(n),c==="*")n++,(b=b||{}).tagName="*";else if(t.isIdentStart(c)||c==="\\")(b=b||{}).tagName=f();else if(c===".")n++,b=b||{},(b.classNames=b.classNames||[]).push(f());else if(c==="#")n++,(b=b||{}).id=f();else if(c==="["){n++,p();var w={name:f()};if(p(),c==="]")n++;else{var D="";if(o[c]&&(D=c,n++,c=a.charAt(n)),n>=l)throw Error('Expected "=" but end of file reached.');if(c!=="=")throw Error('Expected "=" but "'+c+'" found.');w.operator=D+"=",n++,p();var _="";if(w.valueType="string",c==='"')_=d('"',t.doubleQuotesEscapeChars);else if(c==="'")_=d("'",t.singleQuoteEscapeChars);else if(s&&c==="$")n++,_=f(),w.valueType="substitute";else{for(;n<l&&c!=="]";)_+=c,n++,c=a.charAt(n);_=_.trim()}if(p(),n>=l)throw Error('Expected "]" but end of file reached.');if(c!=="]")throw Error('Expected "]" but "'+c+'" found.');n++,w.value=_}b=b||{},(b.attrs=b.attrs||[]).push(w)}else if(c===":"){n++;var C=f(),T={name:C};if(c==="("){n++;var O="";if(p(),i[C]==="selector")T.valueType="selector",O=h();else{if(T.valueType=i[C]||"string",c==='"')O=d('"',t.doubleQuotesEscapeChars);else if(c==="'")O=d("'",t.singleQuoteEscapeChars);else if(s&&c==="$")n++,O=f(),T.valueType="substitute";else{for(;n<l&&c!==")";)O+=c,n++,c=a.charAt(n);O=O.trim()}p()}if(n>=l)throw Error('Expected ")" but end of file reached.');if(c!==")")throw Error('Expected ")" but "'+c+'" found.');n++,T.value=O}b=b||{},(b.pseudos=b.pseudos||[]).push(T)}else break;return b}return m()}e.parseCssSelector=r}),bh=y(function(e){Object.defineProperty(e,"__esModule",{value:!0});var t=Ls();function r(a){var n="";switch(a.type){case"ruleSet":for(var i=a.rule,o=[];i;)i.nestingOperator&&o.push(i.nestingOperator),o.push(r(i)),i=i.rule;n=o.join(" ");break;case"selectors":n=a.selectors.map(r).join(", ");break;case"rule":a.tagName&&(a.tagName==="*"?n="*":n=t.escapeIdentifier(a.tagName)),a.id&&(n+="#"+t.escapeIdentifier(a.id)),a.classNames&&(n+=a.classNames.map(function(u){return"."+t.escapeIdentifier(u)}).join("")),a.attrs&&(n+=a.attrs.map(function(u){return"operator"in u?u.valueType==="substitute"?"["+t.escapeIdentifier(u.name)+u.operator+"$"+u.value+"]":"["+t.escapeIdentifier(u.name)+u.operator+t.escapeStr(u.value)+"]":"["+t.escapeIdentifier(u.name)+"]"}).join("")),a.pseudos&&(n+=a.pseudos.map(function(u){return u.valueType?u.valueType==="selector"?":"+t.escapeIdentifier(u.name)+"("+r(u.value)+")":u.valueType==="substitute"?":"+t.escapeIdentifier(u.name)+"($"+u.value+")":u.valueType==="numeric"?":"+t.escapeIdentifier(u.name)+"("+u.value+")":":"+t.escapeIdentifier(u.name)+"("+t.escapeIdentifier(u.value)+")":":"+t.escapeIdentifier(u.name)}).join(""));break;default:throw Error('Unknown entity type: "'+a.type+'".')}return n}e.renderEntity=r}),yh=y(function(e){Object.defineProperty(e,"__esModule",{value:!0});var t=gh(),r=bh(),a=(function(){function n(){this.pseudos={},this.attrEqualityMods={},this.ruleNestingOperators={},this.substitutesEnabled=!1}return n.prototype.registerSelectorPseudos=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];this.pseudos[l]="selector"}return this},n.prototype.unregisterSelectorPseudos=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];delete this.pseudos[l]}return this},n.prototype.registerNumericPseudos=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];this.pseudos[l]="numeric"}return this},n.prototype.unregisterNumericPseudos=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];delete this.pseudos[l]}return this},n.prototype.registerNestingOperators=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];this.ruleNestingOperators[l]=!0}return this},n.prototype.unregisterNestingOperators=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];delete this.ruleNestingOperators[l]}return this},n.prototype.registerAttrEqualityMods=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];this.attrEqualityMods[l]=!0}return this},n.prototype.unregisterAttrEqualityMods=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];delete this.attrEqualityMods[l]}return this},n.prototype.enableSubstitutes=function(){return this.substitutesEnabled=!0,this},n.prototype.disableSubstitutes=function(){return this.substitutesEnabled=!1,this},n.prototype.parse=function(i){return t.parseCssSelector(i,0,this.pseudos,this.attrEqualityMods,this.ruleNestingOperators,this.substitutesEnabled)},n.prototype.render=function(i){return r.renderEntity(i).trim()},n})();e.CssSelectorParser=a}),Dh=y(function(e,t){(function(){var r={name:"doT",version:"1.1.1",templateSettings:{evaluate:/\{\{([\s\S]+?(\}?)+)\}\}/g,interpolate:/\{\{=([\s\S]+?)\}\}/g,encode:/\{\{!([\s\S]+?)\}\}/g,use:/\{\{#([\s\S]+?)\}\}/g,useParams:/(^|[^\w$])def(?:\.|\[[\'\"])([\w$\.]+)(?:[\'\"]\])?\s*\:\s*([\w$\.]+|\"[^\"]+\"|\'[^\']+\'|\{[^\}]+\})/g,define:/\{\{##\s*([\w\.$]+)\s*(\:|=)([\s\S]+?)#\}\}/g,defineParams:/^\s*([\w$]+):([\s\S]+)/,conditional:/\{\{\?(\?)?\s*([\s\S]*?)\s*\}\}/g,iterate:/\{\{~\s*(?:\}\}|([\s\S]+?)\s*\:\s*([\w$]+)\s*(?:\:\s*([\w$]+))?\s*\}\})/g,varname:"it",strip:!0,append:!0,selfcontained:!1,doNotSkipEncoded:!1},template:void 0,compile:void 0,log:!0};(function(){if((typeof globalThis>"u"?"undefined":M(globalThis))!=="object")try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),__magic__.globalThis=__magic__,delete Object.prototype.__magic__}catch{E.globalThis=(function(){if(typeof self<"u")return self;if(typeof E<"u")return E;if(typeof $t<"u")return $t;if(typeof this<"u")return this;throw new Error("Unable to locate global `this`")})()}})(),r.encodeHTMLSource=function(u){var s={"&":"&#38;","<":"&#60;",">":"&#62;",'"':"&#34;","'":"&#39;","/":"&#47;"},l=u?/[&<>"'\/]/g:/&(?!#?\w+;)|<|>|"|'|\//g;return function(c){return c?c.toString().replace(l,function(d){return s[d]||d}):""}},typeof t<"u"&&t.exports?t.exports=r:globalThis.doT=r;var a={append:{start:"'+(",end:")+'",startencode:"'+encodeHTML("},split:{start:"';out+=(",end:");out+='",startencode:"';out+=encodeHTML("}},n=/$^/;function i(u,s,l){return(typeof s=="string"?s:s.toString()).replace(u.define||n,function(c,d,f,p){return d.indexOf("def.")===0&&(d=d.substring(4)),d in l||(f===":"?(u.defineParams&&p.replace(u.defineParams,function(m,h,v){l[d]={arg:h,text:v}}),d in l||(l[d]=p)):new Function("def","def['"+d+"']="+p)(l)),""}).replace(u.use||n,function(c,d){u.useParams&&(d=d.replace(u.useParams,function(p,m,h,v){if(l[h]&&l[h].arg&&v){var g=(h+":"+v).replace(/'|\\/g,"_");return l.__exp=l.__exp||{},l.__exp[g]=l[h].text.replace(new RegExp("(^|[^\\w$])"+l[h].arg+"([^\\w$])","g"),"$1"+v+"$2"),m+"def.__exp['"+g+"']"}}));var f=new Function("def","return "+d)(l);return f&&i(u,f,l)})}function o(u){return u.replace(/\\('|\\)/g,"$1").replace(/[\r\t\n]/g," ")}r.template=function(u,s,l){s=s||r.templateSettings;var c=s.append?a.append:a.split,d,f=0,p,m=s.use||s.define?i(s,u,l||{}):u;m=("var out='"+(s.strip?m.replace(/(^|\r|\n)\t* +| +\t*(\r|\n|$)/g," ").replace(/\r|\n|\t|\/\*[\s\S]*?\*\//g,""):m).replace(/'|\\/g,"\\$&").replace(s.interpolate||n,function(h,v){return c.start+o(v)+c.end}).replace(s.encode||n,function(h,v){return d=!0,c.startencode+o(v)+c.end}).replace(s.conditional||n,function(h,v,g){return v?g?"';}else if("+o(g)+"){out+='":"';}else{out+='":g?"';if("+o(g)+"){out+='":"';}out+='"}).replace(s.iterate||n,function(h,v,g,b){return v?(f+=1,p=b||"i"+f,v=o(v),"';var arr"+f+"="+v+";if(arr"+f+"){var "+g+","+p+"=-1,l"+f+"=arr"+f+".length-1;while("+p+"<l"+f+"){"+g+"=arr"+f+"["+p+"+=1];out+='"):"';} } out+='"}).replace(s.evaluate||n,function(h,v){return"';"+o(v)+"out+='"})+"';return out;").replace(/\n/g,"\\n").replace(/\t/g,"\\t").replace(/\r/g,"\\r").replace(/(\s|;|\}|^|\{)out\+='';/g,"$1").replace(/\+''/g,""),d&&(!s.selfcontained&&globalThis&&!globalThis._encodeHTML&&(globalThis._encodeHTML=r.encodeHTMLSource(s.doNotSkipEncoded)),m="var encodeHTML = typeof _encodeHTML !== 'undefined' ? _encodeHTML : ("+r.encodeHTMLSource.toString()+"("+(s.doNotSkipEncoded||"")+"));"+m);try{return new Function(s.varname,m)}catch(h){throw typeof console<"u"&&console.log("Could not create a template function: "+m),h}},r.compile=function(u,s){return r.template(u,null,s)}})()}),wh=y(function(e,t){t.exports=function(){}}),pr=y(function(e,t){var r=wh()();t.exports=function(a){return a!==r&&a!==null}}),qs=y(function(e,t){var r=pr(),a=Array.prototype.forEach,n=Object.create,i=function(u,s){var l;for(l in u)s[l]=u[l]};t.exports=function(o){var u=n(null);return a.call(arguments,function(s){r(s)&&i(Object(s),u)}),u}}),_h=y(function(e,t){t.exports=function(){var r=Math.sign;return typeof r!="function"?!1:r(10)===1&&r(-20)===-1}}),xh=y(function(e,t){t.exports=function(r){return r=Number(r),isNaN(r)||r===0?r:r>0?1:-1}}),Eh=y(function(e,t){t.exports=_h()()?Math.sign:xh()}),Ah=y(function(e,t){var r=Eh(),a=Math.abs,n=Math.floor;t.exports=function(i){return isNaN(i)?0:(i=Number(i),i===0||!isFinite(i)?i:r(i)*n(a(i)))}}),mr=y(function(e,t){var r=Ah(),a=Math.max;t.exports=function(n){return a(0,r(n))}}),js=y(function(e,t){var r=mr();t.exports=function(a,n,i){var o;return isNaN(a)?(o=n,o>=0?i&&o?o-1:o:1):a===!1?!1:r(a)}}),Qt=y(function(e,t){t.exports=function(r){if(typeof r!="function")throw new TypeError(r+" is not a function");return r}}),Sr=y(function(e,t){var r=pr();t.exports=function(a){if(!r(a))throw new TypeError("Cannot use null or undefined");return a}}),Fh=y(function(e,t){var r=Qt(),a=Sr(),n=Function.prototype.bind,i=Function.prototype.call,o=Object.keys,u=Object.prototype.propertyIsEnumerable;t.exports=function(s,l){return function(c,d){var f,p=arguments[2],m=arguments[3];return c=Object(a(c)),r(d),f=o(c),m&&f.sort(typeof m=="function"?n.call(m,c):void 0),typeof s!="function"&&(s=f[s]),i.call(s,f,function(h,v){return u.call(c,h)?i.call(d,p,c[h],h,c,v):l})}}}),an=y(function(e,t){t.exports=Fh()("forEach")}),hr=y(function(){}),Ch=y(function(e,t){t.exports=function(){var r=Object.assign,a;return typeof r!="function"?!1:(a={foo:"raz"},r(a,{bar:"dwa"},{trzy:"trzy"}),a.foo+a.bar+a.trzy==="razdwatrzy")}}),Rh=y(function(e,t){t.exports=function(){try{return Object.keys("primitive"),!0}catch{return!1}}}),Th=y(function(e,t){var r=pr(),a=Object.keys;t.exports=function(n){return a(r(n)?Object(n):n)}}),Sh=y(function(e,t){t.exports=Rh()()?Object.keys:Th()}),kh=y(function(e,t){var r=Sh(),a=Sr(),n=Math.max;t.exports=function(i,o){var u,s,l=n(arguments.length,2),c;for(i=Object(a(i)),c=function(f){try{i[f]=o[f]}catch(p){u||(u=p)}},s=1;s<l;++s)o=arguments[s],r(o).forEach(c);if(u!==void 0)throw u;return i}}),$s=y(function(e,t){t.exports=Ch()()?Object.assign:kh()}),Oh=y(function(e,t){var r=pr(),a={function:!0,object:!0};t.exports=function(n){return r(n)&&a[M(n)]||!1}}),Mh=y(function(e,t){var r=$s(),a=Oh(),n=pr(),i=Error.captureStackTrace;t.exports=function(o){var u=new Error(o),s=arguments[1],l=arguments[2];return n(l)||a(s)&&(l=s,s=null),n(l)&&r(u,l),n(s)&&(u.code=s),i&&i(u,t.exports),u}}),zs=y(function(e,t){var r=Sr(),a=Object.defineProperty,n=Object.getOwnPropertyDescriptor,i=Object.getOwnPropertyNames,o=Object.getOwnPropertySymbols;t.exports=function(u,s){var l,c=Object(r(s));if(u=Object(r(u)),i(c).forEach(function(d){try{a(u,d,n(s,d))}catch(f){l=f}}),typeof o=="function"&&o(c).forEach(function(d){try{a(u,d,n(s,d))}catch(f){l=f}}),l!==void 0)throw l;return u}}),Vs=y(function(e,t){var r=mr(),a=function(l,c){return c},n,i,o,u;try{Object.defineProperty(a,"length",{configurable:!0,writable:!1,enumerable:!1,value:1})}catch{}a.length===1?(n={configurable:!0,writable:!1,enumerable:!1},i=Object.defineProperty,t.exports=function(s,l){return l=r(l),s.length===l?s:(n.value=l,i(s,"length",n))}):(u=zs(),o=(function(){var s=[];return function(l){var c,d=0;if(s[l])return s[l];for(c=[];l--;)c.push("a"+(++d).toString(36));return new Function("fn","return function ("+c.join(", ")+") { return fn.apply(this, arguments); };")}})(),t.exports=function(s,l){var c;if(l=r(l),s.length===l)return s;c=o(l)(s);try{u(c,s)}catch{}return c})}),Hs=y(function(e,t){var r=void 0;t.exports=function(a){return a!==r&&a!==null}}),Ph=y(function(e,t){var r=Hs(),a={object:!0,function:!0,undefined:!0};t.exports=function(n){return r(n)?hasOwnProperty.call(a,M(n)):!1}}),Ih=y(function(e,t){var r=Ph();t.exports=function(a){if(!r(a))return!1;try{return a.constructor?a.constructor.prototype===a:!1}catch{return!1}}}),Nh=y(function(e,t){var r=Ih();t.exports=function(a){if(typeof a!="function"||!hasOwnProperty.call(a,"length"))return!1;try{if(typeof a.length!="number"||typeof a.call!="function"||typeof a.apply!="function")return!1}catch{return!1}return!r(a)}}),Bh=y(function(e,t){var r=Nh(),a=/^\s*class[\s{/}]/,n=Function.prototype.toString;t.exports=function(i){return!(!r(i)||a.test(n.call(i)))}}),Lh=y(function(e,t){var r="razdwatrzy";t.exports=function(){return typeof r.contains!="function"?!1:r.contains("dwa")===!0&&r.contains("foo")===!1}}),qh=y(function(e,t){var r=String.prototype.indexOf;t.exports=function(a){return r.call(this,a,arguments[1])>-1}}),jh=y(function(e,t){t.exports=Lh()()?String.prototype.contains:qh()}),vr=y(function(e,t){var r=Hs(),a=Bh(),n=$s(),i=qs(),o=jh(),u=t.exports=function(s,l){var c,d,f,p,m;return arguments.length<2||typeof s!="string"?(p=l,l=s,s=null):p=arguments[2],r(s)?(c=o.call(s,"c"),d=o.call(s,"e"),f=o.call(s,"w")):(c=f=!0,d=!1),m={value:l,configurable:c,enumerable:d,writable:f},p?n(i(p),m):m};u.gs=function(s,l,c){var d,f,p,m;return typeof s!="string"?(p=c,c=l,l=s,s=null):p=arguments[3],r(l)?a(l)?r(c)?a(c)||(p=c,c=void 0):c=void 0:(p=l,l=c=void 0):l=void 0,r(s)?(d=o.call(s,"c"),f=o.call(s,"e")):(d=!0,f=!1),m={get:l,set:c,configurable:d,enumerable:f},p?n(i(p),m):m}}),$h=y(function(e,t){var r=vr(),a=Qt(),n=Function.prototype.apply,i=Function.prototype.call,o=Object.create,u=Object.defineProperty,s=Object.defineProperties,l=Object.prototype.hasOwnProperty,c={configurable:!0,enumerable:!1,writable:!0},d,f,p,m,h,v,g;d=function(w,D){var _;return a(D),l.call(this,"__ee__")?_=this.__ee__:(_=c.value=o(null),u(this,"__ee__",c),c.value=null),_[w]?M(_[w])==="object"?_[w].push(D):_[w]=[_[w],D]:_[w]=D,this},f=function(w,D){var _,C;return a(D),C=this,d.call(this,w,_=function(){p.call(C,w,_),n.call(D,this,arguments)}),_.__eeOnceListener__=D,this},p=function(w,D){var _,C,T,O;if(a(D),!l.call(this,"__ee__"))return this;if(_=this.__ee__,!_[w])return this;if(C=_[w],M(C)==="object")for(O=0;T=C[O];++O)(T===D||T.__eeOnceListener__===D)&&(C.length===2?_[w]=C[O?0:1]:C.splice(O,1));else(C===D||C.__eeOnceListener__===D)&&delete _[w];return this},m=function(w){var D,_,C,T,O;if(l.call(this,"__ee__")&&(T=this.__ee__[w],!!T))if(M(T)==="object"){for(_=arguments.length,O=new Array(_-1),D=1;D<_;++D)O[D-1]=arguments[D];for(T=T.slice(),D=0;C=T[D];++D)n.call(C,this,O)}else switch(arguments.length){case 1:i.call(T,this);break;case 2:i.call(T,this,arguments[1]);break;case 3:i.call(T,this,arguments[1],arguments[2]);break;default:for(_=arguments.length,O=new Array(_-1),D=1;D<_;++D)O[D-1]=arguments[D];n.call(T,this,O)}},h={on:d,once:f,off:p,emit:m},v={on:r(d),once:r(f),off:r(p),emit:r(m)},g=s({},v),t.exports=e=function(w){return w==null?o(g):s(Object(w),v)},e.methods=h}),zh=y(function(e,t){t.exports=function(){var r=Array.from,a,n;return typeof r!="function"?!1:(a=["raz","dwa"],n=r(a),!!(n&&n!==a&&n[1]==="dwa"))}}),Vh=y(function(e,t){t.exports=function(){return(typeof globalThis>"u"?"undefined":M(globalThis))!=="object"||!globalThis?!1:globalThis.Array===Array}}),Hh=y(function(e,t){var r=function(){if((typeof self>"u"?"undefined":M(self))==="object"&&self)return self;if((typeof E>"u"?"undefined":M(E))==="object"&&E)return E;throw new Error("Unable to resolve global `this`")};t.exports=(function(){if(this)return this;try{Object.defineProperty(Object.prototype,"__global__",{get:function(){return this},configurable:!0})}catch{return r()}try{return __global__||r()}finally{delete Object.prototype.__global__}})()}),nn=y(function(e,t){t.exports=Vh()()?globalThis:Hh()}),Gh=y(function(e,t){var r=nn(),a={object:!0,symbol:!0};t.exports=function(){var n=r.Symbol,i;if(typeof n!="function")return!1;i=n("test symbol");try{String(i)}catch{return!1}return!(!a[M(n.iterator)]||!a[M(n.toPrimitive)]||!a[M(n.toStringTag)])}}),Uh=y(function(e,t){t.exports=function(r){return r?M(r)==="symbol"?!0:!r.constructor||r.constructor.name!=="Symbol"?!1:r[r.constructor.toStringTag]==="Symbol":!1}}),Gs=y(function(e,t){var r=Uh();t.exports=function(a){if(!r(a))throw new TypeError(a+" is not a symbol");return a}}),Wh=y(function(e,t){var r=vr(),a=Object.create,n=Object.defineProperty,i=Object.prototype,o=a(null);t.exports=function(u){for(var s=0,l,c;o[u+(s||"")];)++s;return u+=s||"",o[u]=!0,l="@@"+u,n(i,l,r.gs(null,function(d){c||(c=!0,n(this,l,r(d)),c=!1)})),l}}),Yh=y(function(e,t){var r=vr(),a=nn().Symbol;t.exports=function(n){return Object.defineProperties(n,{hasInstance:r("",a&&a.hasInstance||n("hasInstance")),isConcatSpreadable:r("",a&&a.isConcatSpreadable||n("isConcatSpreadable")),iterator:r("",a&&a.iterator||n("iterator")),match:r("",a&&a.match||n("match")),replace:r("",a&&a.replace||n("replace")),search:r("",a&&a.search||n("search")),species:r("",a&&a.species||n("species")),split:r("",a&&a.split||n("split")),toPrimitive:r("",a&&a.toPrimitive||n("toPrimitive")),toStringTag:r("",a&&a.toStringTag||n("toStringTag")),unscopables:r("",a&&a.unscopables||n("unscopables"))})}}),Kh=y(function(e,t){var r=vr(),a=Gs(),n=Object.create(null);t.exports=function(i){return Object.defineProperties(i,{for:r(function(o){return n[o]?n[o]:n[o]=i(String(o))}),keyFor:r(function(o){var u;a(o);for(u in n)if(n[u]===o)return u})})}}),Xh=y(function(e,t){var r=vr(),a=Gs(),n=nn().Symbol,i=Wh(),o=Yh(),u=Kh(),s=Object.create,l=Object.defineProperties,c=Object.defineProperty,d,f,p;if(typeof n=="function")try{String(n()),p=!0}catch{}else n=null;f=function(h){if(this instanceof f)throw new TypeError("Symbol is not a constructor");return d(h)},t.exports=d=function m(h){var v;if(this instanceof m)throw new TypeError("Symbol is not a constructor");return p?n(h):(v=s(f.prototype),h=h===void 0?"":String(h),l(v,{__description__:r("",h),__name__:r("",i(h))}))},o(d),u(d),l(f.prototype,{constructor:r(d),toString:r("",function(){return this.__name__})}),l(d.prototype,{toString:r(function(){return"Symbol ("+a(this).__description__+")"}),valueOf:r(function(){return a(this)})}),c(d.prototype,d.toPrimitive,r("",function(){var m=a(this);return M(m)==="symbol"?m:m.toString()})),c(d.prototype,d.toStringTag,r("c","Symbol")),c(f.prototype,d.toStringTag,r("c",d.prototype[d.toStringTag])),c(f.prototype,d.toPrimitive,r("c",d.prototype[d.toPrimitive]))}),Zh=y(function(e,t){t.exports=Gh()()?nn().Symbol:Xh()}),Jh=y(function(e,t){var r=Object.prototype.toString,a=r.call((function(){return arguments})());t.exports=function(n){return r.call(n)===a}}),Qh=y(function(e,t){var r=Object.prototype.toString,a=RegExp.prototype.test.bind(/^[object [A-Za-z0-9]*Function]$/);t.exports=function(n){return typeof n=="function"&&a(r.call(n))}}),ev=y(function(e,t){var r=Object.prototype.toString,a=r.call("");t.exports=function(n){return typeof n=="string"||n&&M(n)==="object"&&(n instanceof String||r.call(n)===a)||!1}}),tv=y(function(e,t){var r=Zh().iterator,a=Jh(),n=Qh(),i=mr(),o=Qt(),u=Sr(),s=pr(),l=ev(),c=Array.isArray,d=Function.prototype.call,f={configurable:!0,enumerable:!0,writable:!0,value:null},p=Object.defineProperty;t.exports=function(m){var h=arguments[1],v=arguments[2],g,b,w,D,_,C,T,O,$,k;if(m=Object(u(m)),s(h)&&o(h),!this||this===Array||!n(this)){if(!h){if(a(m))return _=m.length,_!==1?Array.apply(null,m):(D=new Array(1),D[0]=m[0],D);if(c(m)){for(D=new Array(_=m.length),b=0;b<_;++b)D[b]=m[b];return D}}D=[]}else g=this;if(!c(m)){if(($=m[r])!==void 0){for(T=o($).call(m),g&&(D=new g),O=T.next(),b=0;!O.done;)k=h?d.call(h,v,O.value,b):O.value,g?(f.value=k,p(D,b,f)):D[b]=k,O=T.next(),++b;_=b}else if(l(m)){for(_=m.length,g&&(D=new g),b=0,w=0;b<_;++b)k=m[b],b+1<_&&(C=k.charCodeAt(0),C>=55296&&C<=56319&&(k+=m[++b])),k=h?d.call(h,v,k,w):k,g?(f.value=k,p(D,w,f)):D[w]=k,++w;_=w}}if(_===void 0)for(_=i(m.length),g&&(D=new g(_)),b=0;b<_;++b)k=h?d.call(h,v,m[b],b):m[b],g?(f.value=k,p(D,b,f)):D[b]=k;return g&&(f.value=null,D.length=_),D}}),$i=y(function(e,t){t.exports=zh()()?Array.from:tv()}),rv=y(function(e,t){var r=$i(),a=Array.isArray;t.exports=function(n){return a(n)?n:r(n)}}),av=y(function(e,t){var r=rv(),a=pr(),n=Qt(),i=Array.prototype.slice,o;o=function(s){return this.map(function(l,c){return l?l(s[c]):s[c]}).concat(i.call(s,this.length))},t.exports=function(u){return u=r(u),u.forEach(function(s){a(s)&&n(s)}),o.bind(u)}}),nv=y(function(e,t){var r=Qt();t.exports=function(a){var n;return typeof a=="function"?{set:a,get:a}:(n={get:r(a.get)},a.set!==void 0?(n.set=r(a.set),a.delete&&(n.delete=r(a.delete)),a.clear&&(n.clear=r(a.clear)),n):(n.set=n.get,n))}}),iv=y(function(e,t){var r=Mh(),a=Vs(),n=vr(),i=$h().methods,o=av(),u=nv(),s=Function.prototype.apply,l=Function.prototype.call,c=Object.create,d=Object.defineProperties,f=i.on,p=i.emit;t.exports=function(m,h,v){var g=c(null),b,w,D,_,C,T,O,$,k,P,z,V,Q,ie,K;return h!==!1?w=h:isNaN(m.length)?w=1:w=m.length,v.normalizer&&(P=u(v.normalizer),D=P.get,_=P.set,C=P.delete,T=P.clear),v.resolvers!=null&&(K=o(v.resolvers)),D?ie=a(function(te){var q,J,A=arguments;if(K&&(A=K(A)),q=D(A),q!==null&&hasOwnProperty.call(g,q))return z&&b.emit("get",q,A,this),g[q];if(A.length===1?J=l.call(m,this,A[0]):J=s.call(m,this,A),q===null){if(q=D(A),q!==null)throw r("Circular invocation","CIRCULAR_INVOCATION");q=_(A)}else if(hasOwnProperty.call(g,q))throw r("Circular invocation","CIRCULAR_INVOCATION");return g[q]=J,V&&b.emit("set",q,null,J),J},w):h===0?ie=function(){var q;if(hasOwnProperty.call(g,"data"))return z&&b.emit("get","data",arguments,this),g.data;if(arguments.length?q=s.call(m,this,arguments):q=l.call(m,this),hasOwnProperty.call(g,"data"))throw r("Circular invocation","CIRCULAR_INVOCATION");return g.data=q,V&&b.emit("set","data",null,q),q}:ie=function(q){var J,A=arguments,U;if(K&&(A=K(arguments)),U=String(A[0]),hasOwnProperty.call(g,U))return z&&b.emit("get",U,A,this),g[U];if(A.length===1?J=l.call(m,this,A[0]):J=s.call(m,this,A),hasOwnProperty.call(g,U))throw r("Circular invocation","CIRCULAR_INVOCATION");return g[U]=J,V&&b.emit("set",U,null,J),J},b={original:m,memoized:ie,profileName:v.profileName,get:function(q){return K&&(q=K(q)),D?D(q):String(q[0])},has:function(q){return hasOwnProperty.call(g,q)},delete:function(q){var J;hasOwnProperty.call(g,q)&&(C&&C(q),J=g[q],delete g[q],Q&&b.emit("delete",q,J))},clear:function(){var q=g;T&&T(),g=c(null),b.emit("clear",q)},on:function(q,J){return q==="get"?z=!0:q==="set"?V=!0:q==="delete"&&(Q=!0),f.call(this,q,J)},emit:p,updateEnv:function(){m=b.original}},D?O=a(function(te){var q,J=arguments;K&&(J=K(J)),q=D(J),q!==null&&b.delete(q)},w):h===0?O=function(){return b.delete("data")}:O=function(q){return K&&(q=K(arguments)[0]),b.delete(q)},$=a(function(){var te,q=arguments;return h===0?g.data:(K&&(q=K(q)),D?te=D(q):te=String(q[0]),g[te])}),k=a(function(){var te,q=arguments;return h===0?b.has("data"):(K&&(q=K(q)),D?te=D(q):te=String(q[0]),te===null?!1:b.has(te))}),d(ie,{__memoized__:n(!0),delete:n(O),clear:n(b.clear),_get:n($),_has:n(k)}),b}}),ov=y(function(e,t){var r=Qt(),a=an(),n=hr(),i=iv(),o=js();t.exports=function u(s){var l,c,d;if(r(s),l=Object(arguments[1]),l.async&&l.promise)throw new Error("Options 'async' and 'promise' cannot be used together");return hasOwnProperty.call(s,"__memoized__")&&!l.force?s:(c=o(l.length,s.length,l.async&&n.async),d=i(s,c,l),a(n,function(f,p){l[p]&&f(l[p],d,l)}),u.__profiler__&&u.__profiler__(d),d.updateEnv(),d.memoized)}}),uv=y(function(e,t){t.exports=function(r){var a,n,i=r.length;if(!i)return"";for(a=String(r[n=0]);--i;)a+=""+r[++n];return a}}),sv=y(function(e,t){t.exports=function(r){return r?function(a){for(var n=String(a[0]),i=0,o=r;--o;)n+=""+a[++i];return n}:function(){return""}}}),lv=y(function(e,t){t.exports=function(){var r=Number.isNaN;return typeof r!="function"?!1:!r({})&&r(NaN)&&!r(34)}}),cv=y(function(e,t){t.exports=function(r){return r!==r}}),dv=y(function(e,t){t.exports=lv()()?Number.isNaN:cv()}),zi=y(function(e,t){var r=dv(),a=mr(),n=Sr(),i=Array.prototype.indexOf,o=Object.prototype.hasOwnProperty,u=Math.abs,s=Math.floor;t.exports=function(l){var c,d,f,p;if(!r(l))return i.apply(this,arguments);for(d=a(n(this).length),f=arguments[1],isNaN(f)?f=0:f>=0?f=s(f):f=a(this.length)-s(u(f)),c=f;c<d;++c)if(o.call(this,c)&&(p=this[c],r(p)))return c;return-1}}),fv=y(function(e,t){var r=zi(),a=Object.create;t.exports=function(){var n=0,i=[],o=a(null);return{get:function(s){var l=0,c=i,d,f=s.length;if(f===0)return c[f]||null;if(c=c[f]){for(;l<f-1;){if(d=r.call(c[0],s[l]),d===-1)return null;c=c[1][d],++l}return d=r.call(c[0],s[l]),d===-1?null:c[1][d]||null}return null},set:function(s){var l=0,c=i,d,f=s.length;if(f===0)c[f]=++n;else{for(c[f]||(c[f]=[[],[]]),c=c[f];l<f-1;)d=r.call(c[0],s[l]),d===-1&&(d=c[0].push(s[l])-1,c[1].push([[],[]])),c=c[1][d],++l;d=r.call(c[0],s[l]),d===-1&&(d=c[0].push(s[l])-1),c[1][d]=++n}return o[n]=s,n},delete:function(s){var l=0,c=i,d,f=o[s],p=f.length,m=[];if(p===0)delete c[p];else if(c=c[p]){for(;l<p-1;){if(d=r.call(c[0],f[l]),d===-1)return;m.push(c,d),c=c[1][d],++l}if(d=r.call(c[0],f[l]),d===-1)return;for(s=c[1][d],c[0].splice(d,1),c[1].splice(d,1);!c[0].length&&m.length;)d=m.pop(),c=m.pop(),c[0].splice(d,1),c[1].splice(d,1)}delete o[s]},clear:function(){i=[],o=a(null)}}}}),pv=y(function(e,t){var r=zi();t.exports=function(){var a=0,n=[],i=[];return{get:function(u){var s=r.call(n,u[0]);return s===-1?null:i[s]},set:function(u){return n.push(u[0]),i.push(++a),a},delete:function(u){var s=r.call(i,u);s!==-1&&(n.splice(s,1),i.splice(s,1))},clear:function(){n=[],i=[]}}}}),mv=y(function(e,t){var r=zi(),a=Object.create;t.exports=function(n){var i=0,o=[[],[]],u=a(null);return{get:function(l){for(var c=0,d=o,f;c<n-1;){if(f=r.call(d[0],l[c]),f===-1)return null;d=d[1][f],++c}return f=r.call(d[0],l[c]),f===-1?null:d[1][f]||null},set:function(l){for(var c=0,d=o,f;c<n-1;)f=r.call(d[0],l[c]),f===-1&&(f=d[0].push(l[c])-1,d[1].push([[],[]])),d=d[1][f],++c;return f=r.call(d[0],l[c]),f===-1&&(f=d[0].push(l[c])-1),d[1][f]=++i,u[i]=l,i},delete:function(l){for(var c=0,d=o,f,p=[],m=u[l];c<n-1;){if(f=r.call(d[0],m[c]),f===-1)return;p.push(d,f),d=d[1][f],++c}if(f=r.call(d[0],m[c]),f!==-1){for(l=d[1][f],d[0].splice(f,1),d[1].splice(f,1);!d[0].length&&p.length;)f=p.pop(),d=p.pop(),d[0].splice(f,1),d[1].splice(f,1);delete u[l]}},clear:function(){o=[[],[]],u=a(null)}}}}),Us=y(function(e,t){var r=Qt(),a=an(),n=Function.prototype.call;t.exports=function(i,o){var u={},s=arguments[2];return r(o),a(i,function(l,c,d,f){u[c]=n.call(o,s,l,c,d,f)}),u}}),Vi=y(function(e,t){var r=function(i){if(typeof i!="function")throw new TypeError(i+" is not a function");return i},a=function(i){var o=N.createTextNode(""),u,s,l=0;return new i(function(){var c;if(u)s&&(u=s.concat(u));else{if(!s)return;u=s}if(s=u,u=null,typeof s=="function"){c=s,s=null,c();return}for(o.data=l=++l%2;s;)c=s.shift(),s.length||(s=null),c()}).observe(o,{characterData:!0}),function(c){if(r(c),u){typeof u=="function"?u=[u,c]:u.push(c);return}u=c,o.data=l=++l%2}};t.exports=(function(){if((typeof process>"u"?"undefined":M(process))==="object"&&process&&typeof process.nextTick=="function")return process.nextTick;if(typeof queueMicrotask=="function")return function(n){queueMicrotask(r(n))};if((typeof N>"u"?"undefined":M(N))==="object"&&N){if(typeof MutationObserver=="function")return a(MutationObserver);if(typeof WebKitMutationObserver=="function")return a(WebKitMutationObserver)}return typeof setImmediate=="function"?function(n){setImmediate(r(n))}:typeof setTimeout=="function"||(typeof setTimeout>"u"?"undefined":M(setTimeout))==="object"?function(n){setTimeout(r(n),0)}:null})()}),hv=y(function(){var e=$i(),t=Us(),r=zs(),a=Vs(),n=Vi(),i=Array.prototype.slice,o=Function.prototype.apply,u=Object.create;hr().async=function(s,l){var c=u(null),d=u(null),f=l.memoized,p=l.original,m,h,v;l.memoized=a(function(g){var b=arguments,w=b[b.length-1];return typeof w=="function"&&(m=w,b=i.call(b,0,-1)),f.apply(h=this,v=b)},f);try{r(l.memoized,f)}catch{}l.on("get",function(g){var b,w,D;if(m){if(c[g]){typeof c[g]=="function"?c[g]=[c[g],m]:c[g].push(m),m=null;return}b=m,w=h,D=v,m=h=v=null,n(function(){var _;hasOwnProperty.call(d,g)?(_=d[g],l.emit("getasync",g,D,w),o.call(b,_.context,_.args)):(m=b,h=w,v=D,f.apply(w,D))})}}),l.original=function(){var g,b,w,D;return m?(g=e(arguments),b=function _(C){var T,O,$=_.id;if($==null){n(o.bind(_,this,arguments));return}if(delete _.id,T=c[$],delete c[$],!!T)return O=e(arguments),l.has($)&&(C?l.delete($):(d[$]={context:this,args:O},l.emit("setasync",$,typeof T=="function"?1:T.length))),typeof T=="function"?D=o.call(T,this,O):T.forEach(function(k){D=o.call(k,this,O)},this),D},w=m,m=h=v=null,g.push(b),D=o.call(p,this,g),b.cb=w,m=b,D):o.call(p,this,arguments)},l.on("set",function(g){if(!m){l.delete(g);return}c[g]?typeof c[g]=="function"?c[g]=[c[g],m.cb]:c[g].push(m.cb):c[g]=m.cb,delete m.cb,m.id=g,m=null}),l.on("delete",function(g){var b;hasOwnProperty.call(c,g)||d[g]&&(b=d[g],delete d[g],l.emit("deleteasync",g,i.call(b.args,1)))}),l.on("clear",function(){var g=d;d=u(null),l.emit("clearasync",t(g,function(b){return i.call(b.args,1)}))})}}),vv=y(function(e,t){var r=Array.prototype.forEach,a=Object.create;t.exports=function(n){var i=a(null);return r.call(arguments,function(o){i[o]=!0}),i}}),Ws=y(function(e,t){t.exports=function(r){return typeof r=="function"}}),gv=y(function(e,t){var r=Ws();t.exports=function(a){try{return a&&r(a.toString)?a.toString():String(a)}catch{throw new TypeError("Passed argument cannot be stringifed")}}}),bv=y(function(e,t){var r=Sr(),a=gv();t.exports=function(n){return a(r(n))}}),yv=y(function(e,t){var r=Ws();t.exports=function(a){try{return a&&r(a.toString)?a.toString():String(a)}catch{return"<Non-coercible to string value>"}}}),Dv=y(function(e,t){var r=yv(),a=/[\n\r\u2028\u2029]/g;t.exports=function(n){var i=r(n);return i.length>100&&(i=i.slice(0,99)+"…"),i=i.replace(a,function(o){return JSON.stringify(o).slice(1,-1)}),i}}),Ys=y(function(e,t){t.exports=r,t.exports.default=r;function r(a){return!!a&&(M(a)==="object"||typeof a=="function")&&typeof a.then=="function"}}),wv=y(function(){var e=Us(),t=vv(),r=bv(),a=Dv(),n=Ys(),i=Vi(),o=Object.create,u=t("then","then:finally","done","done:finally");hr().promise=function(s,l){var c=o(null),d=o(null),f=o(null);if(s===!0)s=null;else if(s=r(s),!u[s])throw new TypeError("'"+a(s)+"' is not valid promise mode");l.on("set",function(p,m,h){var v=!1;if(!n(h)){d[p]=h,l.emit("setasync",p,1);return}c[p]=1,f[p]=h;var g=function(C){var T=c[p];if(v)throw new Error(`Memoizee error: Detected unordered then|done & finally resolution, which in turn makes proper detection of success/failure impossible (when in 'done:finally' mode)
8
- Consider to rely on 'then' or 'done' mode instead.`);T&&(delete c[p],d[p]=C,l.emit("setasync",p,T))},b=function(){v=!0,c[p]&&(delete c[p],delete f[p],l.delete(p))},w=s;if(w||(w="then"),w==="then"){var D=function(){i(b)};h=h.then(function(_){i(g.bind(this,_))},D),typeof h.finally=="function"&&h.finally(D)}else if(w==="done"){if(typeof h.done!="function")throw new Error("Memoizee error: Retrieved promise does not implement 'done' in 'done' mode");h.done(g,b)}else if(w==="done:finally"){if(typeof h.done!="function")throw new Error("Memoizee error: Retrieved promise does not implement 'done' in 'done:finally' mode");if(typeof h.finally!="function")throw new Error("Memoizee error: Retrieved promise does not implement 'finally' in 'done:finally' mode");h.done(g),h.finally(b)}}),l.on("get",function(p,m,h){var v;if(c[p]){++c[p];return}v=f[p];var g=function(){l.emit("getasync",p,m,h)};n(v)?typeof v.done=="function"?v.done(g):v.then(function(){i(g)}):g()}),l.on("delete",function(p){if(delete f[p],c[p]){delete c[p];return}if(hasOwnProperty.call(d,p)){var m=d[p];delete d[p],l.emit("deleteasync",p,[m])}}),l.on("clear",function(){var p=d;d=o(null),c=o(null),f=o(null),l.emit("clearasync",e(p,function(m){return[m]}))})}}),_v=y(function(){var e=Qt(),t=an(),r=hr(),a=Function.prototype.apply;r.dispose=function(n,i,o){var u;if(e(n),o.async&&r.async||o.promise&&r.promise){i.on("deleteasync",u=function(l,c){a.call(n,null,c)}),i.on("clearasync",function(s){t(s,function(l,c){u(c,l)})});return}i.on("delete",u=function(l,c){n(c)}),i.on("clear",function(s){t(s,function(l,c){u(c,l)})})}}),xv=y(function(e,t){t.exports=2147483647}),Ev=y(function(e,t){var r=mr(),a=xv();t.exports=function(n){if(n=r(n),n>a)throw new TypeError(n+" exceeds maximum possible timeout");return n}}),Av=y(function(){var e=$i(),t=an(),r=Vi(),a=Ys(),n=Ev(),i=hr(),o=Function.prototype,u=Math.max,s=Math.min,l=Object.create;i.maxAge=function(c,d,f){var p,m,h,v;c=n(c),c&&(p=l(null),m=f.async&&i.async||f.promise&&i.promise?"async":"",d.on("set"+m,function(g){p[g]=setTimeout(function(){d.delete(g)},c),typeof p[g].unref=="function"&&p[g].unref(),v&&(v[g]&&v[g]!=="nextTick"&&clearTimeout(v[g]),v[g]=setTimeout(function(){delete v[g]},h),typeof v[g].unref=="function"&&v[g].unref())}),d.on("delete"+m,function(g){clearTimeout(p[g]),delete p[g],v&&(v[g]!=="nextTick"&&clearTimeout(v[g]),delete v[g])}),f.preFetch&&(f.preFetch===!0||isNaN(f.preFetch)?h=.333:h=u(s(Number(f.preFetch),1),0),h&&(v={},h=(1-h)*c,d.on("get"+m,function(g,b,w){v[g]||(v[g]="nextTick",r(function(){var D;v[g]==="nextTick"&&(delete v[g],d.delete(g),f.async&&(b=e(b),b.push(o)),D=d.memoized.apply(w,b),f.promise&&a(D)&&(typeof D.done=="function"?D.done(o,o):D.then(o,o)))}))}))),d.on("clear"+m,function(){t(p,function(g){clearTimeout(g)}),p={},v&&(t(v,function(g){g!=="nextTick"&&clearTimeout(g)}),v={})}))}}),Fv=y(function(e,t){var r=mr(),a=Object.create,n=Object.prototype.hasOwnProperty;t.exports=function(i){var o=0,u=1,s=a(null),l=a(null),c=0,d;return i=r(i),{hit:function(p){var m=l[p],h=++c;if(s[h]=p,l[p]=h,!m)return++o,o<=i?void 0:(p=s[u],d(p),p);if(delete s[m],u===m)for(;!n.call(s,++u););},delete:d=function(p){var m=l[p];if(m&&(delete s[m],delete l[p],--o,u===m)){if(!o){c=0,u=1;return}for(;!n.call(s,++u););}},clear:function(){o=0,u=1,s=a(null),l=a(null),c=0}}}}),Cv=y(function(){var e=mr(),t=Fv(),r=hr();r.max=function(a,n,i){var o,u,s;a=e(a),a&&(u=t(a),o=i.async&&r.async||i.promise&&r.promise?"async":"",n.on("set"+o,s=function(c){c=u.hit(c),c!==void 0&&n.delete(c)}),n.on("get"+o,s),n.on("delete"+o,u.delete),n.on("clear"+o,u.clear))}}),Rv=y(function(){var e=vr(),t=hr(),r=Object.create,a=Object.defineProperties;t.refCounter=function(n,i,o){var u,s;u=r(null),s=o.async&&t.async||o.promise&&t.promise?"async":"",i.on("set"+s,function(l,c){u[l]=c||1}),i.on("get"+s,function(l){++u[l]}),i.on("delete"+s,function(l){delete u[l]}),i.on("clear"+s,function(){u={}}),a(i.memoized,{deleteRef:e(function(){var l=i.get(arguments);return l===null||!u[l]?null:--u[l]?!1:(i.delete(l),!0)}),getRefCount:e(function(){var l=i.get(arguments);return l===null||!u[l]?0:u[l]})})}}),Tv=y(function(e,t){var r=qs(),a=js(),n=ov();t.exports=function(i){var o=r(arguments[1]),u;return o.normalizer||(u=o.length=a(o.length,i.length,o.async),u!==0&&(o.primitive?u===!1?o.normalizer=uv():u>1&&(o.normalizer=sv()(u)):u===!1?o.normalizer=fv()():u===1?o.normalizer=pv()():o.normalizer=mv()(u))),o.async&&hv(),o.promise&&wv(),o.dispose&&_v(),o.maxAge&&Av(),o.max&&Cv(),o.refCounter&&Rv(),n(i,o)}}),Sv=[{name:"NA",value:"inapplicable",priority:0,group:"inapplicable"},{name:"PASS",value:"passed",priority:1,group:"passes"},{name:"CANTTELL",value:"cantTell",priority:2,group:"incomplete"},{name:"FAIL",value:"failed",priority:3,group:"violations"}],Ft={helpUrlBase:"https://dequeuniversity.com/rules/",gridSize:200,selectorSimilarFilterLimit:700,results:[],resultGroups:[],resultGroupMap:{},impact:Object.freeze(["minor","moderate","serious","critical"]),preload:Object.freeze({assets:["cssom","media"],timeout:1e4}),allOrigins:"<unsafe_all_origins>",sameOrigin:"<same_origin>",serializableErrorProps:Object.freeze(["message","stack","name","code","ruleId","method"])};Sv.forEach(function(e){var t=e.name,r=e.value,a=e.priority,n=e.group;Ft[t]=r,Ft[t+"_PRIO"]=a,Ft[t+"_GROUP"]=n,Ft.results[a]=r,Ft.resultGroups[a]=n,Ft.resultGroupMap[r]=n}),Object.freeze(Ft.results),Object.freeze(Ft.resultGroups),Object.freeze(Ft.resultGroupMap),Object.freeze(Ft);var se=Ft;function kv(){(typeof console>"u"?"undefined":M(console))==="object"&&console.log&&Function.prototype.apply.call(console.log,console,arguments)}var gr=kv,Ov=/[\t\r\n\f]/g,Mv=(function(){function e(){wt(this,e),this.parent=void 0}return _t(e,[{key:"props",get:function(){throw new Error('VirtualNode class must have a "props" object consisting of "nodeType" and "nodeName" properties')}},{key:"attrNames",get:function(){throw new Error('VirtualNode class must have an "attrNames" property')}},{key:"attr",value:function(){throw new Error('VirtualNode class must have an "attr" function')}},{key:"hasAttr",value:function(){throw new Error('VirtualNode class must have a "hasAttr" function')}},{key:"hasClass",value:function(r){var a=this.attr("class");if(!a)return!1;var n=" "+r+" ";return(" "+a+" ").replace(Ov," ").indexOf(n)>=0}}])})(),He=Mv,Hi={};xt(Hi,{DqElement:function(){return bt},RuleError:function(){return di},aggregate:function(){return on},aggregateChecks:function(){return Zs},aggregateNodeResults:function(){return Js},aggregateResult:function(){return Qs},areStylesSet:function(){return jv},assert:function(){return he},checkHelper:function(){return ru},clone:function(){return Wt},closest:function(){return lt},collectResultsFromFrames:function(){return E1},contains:function(){return Yt},convertSelector:function(){return Yn},cssParser:function(){return n1},deepMerge:function(){return vu},escapeSelector:function(){return Oe},extendMetaData:function(){return gu},filterHtmlAttrs:function(){return rf},finalizeRuleResult:function(){return na},findBy:function(){return Ia},getAllChecks:function(){return Qn},getAncestry:function(){return Rn},getBaseLang:function(){return Cr},getCheckMessage:function(){return aw},getCheckOption:function(){return ii},getEnvironmentData:function(){return lr},getFlattenedTree:function(){return Du},getFrameContexts:function(){return Dw},getFriendlyUriEnd:function(){return rl},getNodeAttributes:function(){return ua},getNodeFromTree:function(){return ce},getPreloadConfig:function(){return J1},getRootNode:function(){return ga},getRule:function(){return N1},getScroll:function(){return Kt},getScrollState:function(){return xw},getSelector:function(){return go},getSelectorData:function(){return Cn},getShadowSelector:function(){return mo},getStandards:function(){return Ew},getStyleSheetFactory:function(){return q1},getXpath:function(){return yc},injectStyle:function(){return Cw},isArrayLike:function(){return Au},isContextObject:function(){return Fu},isContextProp:function(){return ui},isContextSpec:function(){return j1},isHidden:function(){return Rw},isHtmlElement:function(){return Ru},isLabelledFramesSelector:function(){return Cu},isLabelledShadowDomSelector:function(){return si},isNodeInContext:function(){return Tu},isShadowRoot:function(){return ti},isValidLang:function(){return pi},isXHTML:function(){return Fn},matchAncestry:function(){return Su},matches:function(){return nu},matchesExpression:function(){return jr},matchesSelector:function(){return kr},memoize:function(){return Re},mergeResults:function(){return ei},nodeLookup:function(){return ye},nodeSerializer:function(){return yt},nodeSorter:function(){return ku},objectHasOwn:function(){return Bt},parseCrossOriginStylesheet:function(){return Mu},parseSameOriginStylesheet:function(){return V1},parseStylesheet:function(){return Ou},parseTabindex:function(){return Lt},performanceTimer:function(){return ge},pollyfillElementsFromPoint:function(){return H1},preload:function(){return X1},preloadCssom:function(){return U1},preloadMedia:function(){return K1},processMessage:function(){return Eu},publishMetaData:function(){return li},querySelectorAll:function(){return dt},querySelectorAllFilter:function(){return qt},queue:function(){return Nt},respondable:function(){return St},ruleShouldRun:function(){return tf},select:function(){return Pu},sendCommandToFrame:function(){return D1},serializeError:function(){return ci},setScrollState:function(){return u_},shadowSelect:function(){return s_},shadowSelectAll:function(){return Iu},shouldPreload:function(){return Z1},toArray:function(){return tl},tokenList:function(){return Ze},uniqueArray:function(){return Ba},uuid:function(){return _D},validInputTypes:function(){return fi},validLangs:function(){return sf}});function Pv(e,t,r){t=t.slice(),r&&t.push(r);var a=t.map(function(n){return e.indexOf(n)}).sort();return e[a.pop()]}var on=Pv,Iv=se.CANTTELL_PRIO,Nv=se.FAIL_PRIO,un=[];un[se.PASS_PRIO]=!0,un[se.CANTTELL_PRIO]=null,un[se.FAIL_PRIO]=!1;var Ks=["any","all","none"];function Xs(e,t){return Ks.reduce(function(r,a){return r[a]=(e[a]||[]).map(function(n){return t(n,a)}),r},{})}function Bv(e){var t=Object.assign({},e);Xs(t,function(n,i){var o=typeof n.result>"u"?-1:un.indexOf(n.result);n.priority=o!==-1?o:se.CANTTELL_PRIO,i==="none"&&(n.priority===se.PASS_PRIO?n.priority=se.FAIL_PRIO:n.priority===se.FAIL_PRIO&&(n.priority=se.PASS_PRIO))});var r={all:t.all.reduce(function(n,i){return Math.max(n,i.priority)},0),none:t.none.reduce(function(n,i){return Math.max(n,i.priority)},0),any:t.any.reduce(function(n,i){return Math.min(n,i.priority)},4)%4};t.priority=Math.max(r.all,r.none,r.any);var a=[];return Ks.forEach(function(n){t[n]=t[n].filter(function(i){return i.priority===t.priority&&i.priority===r[n]}),t[n].forEach(function(i){return a.push(i.impact)})}),[Iv,Nv].includes(t.priority)?t.impact=on(se.impact,a):t.impact=null,Xs(t,function(n){delete n.result,delete n.priority}),t.result=se.results[t.priority],delete t.priority,t}var Zs=Bv;function na(e){var t=x._audit.rules.find(function(r){var a=r.id;return a===e.id});return t&&t.impact&&e.nodes.forEach(function(r){["any","all","none"].forEach(function(a){(r[a]||[]).forEach(function(n){n.impact=t.impact})})}),Object.assign(e,Js(e.nodes)),delete e.nodes,e}function Lv(e){var t={};if(e=e.map(function(i){if(i.any&&i.all&&i.none)return Zs(i);if(Array.isArray(i.node))return na(i);throw new TypeError("Invalid Result type")}),e&&e.length){var r=e.map(function(i){return i.result});t.result=on(se.results,r,t.result)}else t.result="inapplicable";se.resultGroups.forEach(function(i){return t[i]=[]}),e.forEach(function(i){var o=se.resultGroupMap[i.result];t[o].push(i)});var a=se.FAIL_GROUP;if(t[a].length===0&&(a=se.CANTTELL_GROUP),t[a].length>0){var n=t[a].map(function(i){return i.impact});t.impact=on(se.impact,n)||null}else t.impact=null;return t}var Js=Lv;function Gi(e,t,r){var a=Object.assign({},t);a.nodes=(a[r]||[]).concat(),se.resultGroups.forEach(function(n){delete a[n]}),e[r].push(a)}function qv(e){var t={};return se.resultGroups.forEach(function(r){return t[r]=[]}),e.forEach(function(r){r.error?Gi(t,r,se.CANTTELL_GROUP):r.result===se.NA?Gi(t,r,se.NA_GROUP):se.resultGroups.forEach(function(a){Array.isArray(r[a])&&r[a].length>0&&Gi(t,r,a)})}),t}var Qs=qv;function el(e,t,r){var a=E.getComputedStyle(e,null);if(!a)return!1;for(var n=0;n<t.length;++n){var i=t[n];if(a.getPropertyValue(i.property)===i.value)return!0}return!e.parentNode||e.nodeName.toUpperCase()===r.toUpperCase()?!1:el(e.parentNode,t,r)}var jv=el;function $v(e,t){if(!e)throw new Error(t)}var he=$v;function zv(e){return Array.prototype.slice.call(e)}var tl=zv;function Vv(e){for(var t=String(e),r=t.length,a=-1,n,i="",o=t.charCodeAt(0);++a<r;){if(n=t.charCodeAt(a),n==0){i+="�";continue}if(n>=1&&n<=31||n==127||a==0&&n>=48&&n<=57||a==1&&n>=48&&n<=57&&o==45){i+="\\"+n.toString(16)+" ";continue}if(a==0&&r==1&&n==45){i+="\\"+t.charAt(a);continue}if(n>=128||n==45||n==95||n>=48&&n<=57||n>=65&&n<=90||n>=97&&n<=122){i+=t.charAt(a);continue}i+="\\"+t.charAt(a)}return i}var Oe=Vv;function Hv(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";return e.length!==0&&(e.match(/[0-9]/g)||"").length>=e.length/2}function ia(e,t){return[e.substring(0,t),e.substring(t)]}function oa(e){return e.replace(/\s+$/,"")}function Gv(e){var t=e,r="",a="",n="",i="",o="",u="";if(e.includes("#")){var s=ia(e,e.indexOf("#")),l=H(s,2);e=l[0],u=l[1]}if(e.includes("?")){var c=ia(e,e.indexOf("?")),d=H(c,2);e=d[0],o=d[1]}if(e.includes("://")){var f=e.split("://"),p=H(f,2);r=p[0],e=p[1];var m=ia(e,e.indexOf("/")),h=H(m,2);a=h[0],e=h[1]}else if(e.substr(0,2)==="//"){e=e.substr(2);var v=ia(e,e.indexOf("/")),g=H(v,2);a=g[0],e=g[1]}if(a.substr(0,4)==="www."&&(a=a.substr(4)),a&&a.includes(":")){var b=ia(a,a.indexOf(":")),w=H(b,2);a=w[0],n=w[1]}return i=e,{original:t,protocol:r,domain:a,port:n,path:i,query:o,hash:u}}function Uv(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(!(e.length<=1||e.substr(0,5)==="data:"||e.substr(0,11)==="javascript:"||e.includes("?"))){var r=t.currentDomain,a=t.maxLength,n=a===void 0?25:a,i=Gv(e),o=i.path,u=i.domain,s=i.hash,l=o.substr(o.substr(0,o.length-2).lastIndexOf("/")+1);if(s)return l&&(l+s).length<=n?oa(l+s):l.length<2&&s.length>2&&s.length<=n?oa(s):void 0;if(u&&u.length<n&&o.length<=1||o==="/"+l&&u&&r&&u!==r&&(u+o).length<=n)return oa(u+o);var c=l.lastIndexOf(".");if((c===-1||c>1)&&(c!==-1||l.length>2)&&l.length<=n&&!l.match(/index(\.[a-zA-Z]{2-4})?/)&&!Hv(l))return oa(l)}}var rl=Uv;function Wv(e){return e.attributes instanceof E.NamedNodeMap?e.attributes:e.cloneNode(!1).attributes}var ua=Wv,Yv=(function(){var e;function t(r){var a=["matches","matchesSelector","mozMatchesSelector","webkitMatchesSelector","msMatchesSelector"],n=a.length,i,o;for(i=0;i<n;i++)if(o=a[i],r[o])return o}return function(r,a){return(!e||!r[e])&&(e=t(r)),r[e]?r[e](a):!1}})(),kr=Yv,al={};xt(al,{ArrayFrom:function(){return pc.default},Colorjs:function(){return Ee},CssSelectorParser:function(){return nl.CssSelectorParser},doT:function(){return er.default},emojiRegexText:function(){return Ui},memoize:function(){return il.default}});var Kv=kt(vm()),Xv=kt(gm());kt(bm());var Zv=kt(Om()),Jv=kt(Vm()),Qv=kt(Bs());"hasOwn"in Object||(Object.hasOwn=Zv.default),"values"in Object||(Object.values=Jv.default),"Promise"in E||Kv.default.polyfill(),"Uint32Array"in E||(E.Uint32Array=Xv.Uint32Array),E.Uint32Array&&("some"in E.Uint32Array.prototype||Object.defineProperty(E.Uint32Array.prototype,"some",{value:Array.prototype.some}),"reduce"in E.Uint32Array.prototype||Object.defineProperty(E.Uint32Array.prototype,"reduce",{value:Array.prototype.reduce})),typeof Object.assign!="function"&&(function(){Object.assign=function(e){if(e==null)throw new TypeError("Cannot convert undefined or null to object");for(var t=Object(e),r=1;r<arguments.length;r++){var a=arguments[r];if(a!=null)for(var n in a)a.hasOwnProperty(n)&&(t[n]=a[n])}return t}})(),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(t){if(this===null)throw new TypeError("Array.prototype.find called on null or undefined");if(typeof t!="function")throw new TypeError("predicate must be a function");for(var r=Object(this),a=r.length>>>0,n=arguments[1],i,o=0;o<a;o++)if(i=r[o],t.call(n,i,o,r))return i}}),Array.prototype.findIndex||Object.defineProperty(Array.prototype,"findIndex",{value:function(t,r){if(this===null)throw new TypeError("Array.prototype.find called on null or undefined");if(typeof t!="function")throw new TypeError("predicate must be a function");for(var a=Object(this),n=a.length>>>0,i,o=0;o<n;o++)if(i=a[o],t.call(r,i,o,a))return o;return-1}}),Array.prototype.includes||Object.defineProperty(Array.prototype,"includes",{value:function(t){var r=Object(this),a=parseInt(r.length,10)||0;if(a===0)return!1;var n=parseInt(arguments[1],10)||0,i;n>=0?i=n:(i=a+n,i<0&&(i=0));for(var o;i<a;){if(o=r[i],t===o||t!==t&&o!==o)return!0;i++}return!1}}),Array.prototype.some||Object.defineProperty(Array.prototype,"some",{value:function(t){if(this==null)throw new TypeError("Array.prototype.some called on null or undefined");if(typeof t!="function")throw new TypeError;for(var r=Object(this),a=r.length>>>0,n=arguments.length>=2?arguments[1]:void 0,i=0;i<a;i++)if(i in r&&t.call(n,r[i],i,r))return!0;return!1}}),Array.from||(Array.from=Qv.default),String.prototype.includes||(String.prototype.includes=function(e,t){return typeof t!="number"&&(t=0),t+e.length>this.length?!1:this.indexOf(e,t)!==-1}),Array.prototype.flat||Object.defineProperty(Array.prototype,"flat",{configurable:!0,value:function e(){var t=isNaN(arguments[0])?1:Number(arguments[0]);return t?Array.prototype.reduce.call(this,function(r,a){return Array.isArray(a)?r.push.apply(r,e.call(a,t-1)):r.push(a),r},[]):Array.prototype.slice.call(this)},writable:!0}),E.Node&&!("isConnected"in E.Node.prototype)&&Object.defineProperty(E.Node.prototype,"isConnected",{get:function(){return!this.ownerDocument||!(this.ownerDocument.compareDocumentPosition(this)&this.DOCUMENT_POSITION_DISCONNECTED)}});var nl=kt(yh()),er=kt(Dh()),Ui=function(){return/[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E-\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED8\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])))?))?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3C-\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE8A\uDE8E-\uDEC2\uDEC6\uDEC8\uDECD-\uDEDC\uDEDF-\uDEEA\uDEEF]|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g},il=kt(Tv());function Ne(e,t){var r=e.length;Array.isArray(e[0])||(e=[e]),Array.isArray(t[0])||(t=t.map(function(o){return[o]}));var a=t[0].length,n=t[0].map(function(o,u){return t.map(function(s){return s[u]})}),i=e.map(function(o){return n.map(function(u){var s=0;if(!Array.isArray(o)){var l=xe(u),c;try{for(l.s();!(c=l.n()).done;){var d=c.value;s+=o*d}}catch(p){l.e(p)}finally{l.f()}return s}for(var f=0;f<o.length;f++)s+=o[f]*(u[f]||0);return s})});return r===1&&(i=i[0]),a===1?i.map(function(o){return o[0]}):i}function sa(e){return tr(e)==="string"}function tr(e){var t=Object.prototype.toString.call(e);return(t.match(/^\[object\s+(.*?)\]$/)[1]||"").toLowerCase()}function sn(e,t){e=+e,t=+t;var r=(Math.floor(e)+"").length;if(t>r)return+e.toFixed(t-r);var a=Math.pow(10,r-t);return Math.round(e/a)*a}function ol(e){if(e){e=e.trim();var t=/^([a-z]+)\((.+?)\)$/i,r=/^-?[\d.]+$/,a=e.match(t);if(a){var n=[];return a[2].replace(/\/?\s*([-\w.]+(?:%|deg)?)/g,function(i,o){/%$/.test(o)?(o=new Number(o.slice(0,-1)/100),o.type="<percentage>"):/deg$/.test(o)?(o=new Number(+o.slice(0,-3)),o.type="<angle>",o.unit="deg"):r.test(o)&&(o=new Number(o),o.type="<number>"),i.startsWith("/")&&(o=o instanceof Number?o:new Number(o),o.alpha=!0),n.push(o)}),{name:a[1].toLowerCase(),rawName:a[1],rawArgs:a[2],args:n}}}}function ul(e){return e[e.length-1]}function ln(e,t,r){return isNaN(e)?t:isNaN(t)?e:e+(t-e)*r}function sl(e,t,r){return(r-e)/(t-e)}function Wi(e,t,r){return ln(t[0],t[1],sl(e[0],e[1],r))}function ll(e){return e.map(function(t){return t.split("|").map(function(r){r=r.trim();var a=r.match(/^(<[a-z]+>)\[(-?[.\d]+),\s*(-?[.\d]+)\]?$/);if(a){var n=new String(a[1]);return n.range=[+a[2],+a[3]],n}return r})})}var eg=Object.freeze({__proto__:null,isString:sa,type:tr,toPrecision:sn,parseFunction:ol,last:ul,interpolate:ln,interpolateInv:sl,mapRange:Wi,parseCoordGrammar:ll,multiplyMatrices:Ne}),tg=(function(){function e(){wt(this,e)}return _t(e,[{key:"add",value:function(r,a,n){if(typeof arguments[0]!="string"){for(var r in arguments[0])this.add(r,arguments[0][r],arguments[1]);return}(Array.isArray(r)?r:[r]).forEach(function(i){this[i]=this[i]||[],a&&this[i][n?"unshift":"push"](a)},this)}},{key:"run",value:function(r,a){this[r]=this[r]||[],this[r].forEach(function(n){n.call(a&&a.context?a.context:a,a)})}}])})(),rr=new tg,Ot={gamut_mapping:"lch.c",precision:5,deltaE:"76"},Ct={D50:[.3457/.3585,1,(1-.3457-.3585)/.3585],D65:[.3127/.329,1,(1-.3127-.329)/.329]};function Yi(e){return Array.isArray(e)?e:Ct[e]}function cn(e,t,r){var a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{};if(e=Yi(e),t=Yi(t),!e||!t)throw new TypeError("Missing white point to convert ".concat(e?"":"from").concat(!e&&!t?"/":"").concat(t?"":"to"));if(e===t)return r;var n={W1:e,W2:t,XYZ:r,options:a};if(rr.run("chromatic-adaptation-start",n),n.M||(n.W1===Ct.D65&&n.W2===Ct.D50?n.M=[[1.0479298208405488,.022946793341019088,-.05019222954313557],[.029627815688159344,.990434484573249,-.01707382502938514],[-.009243058152591178,.015055144896577895,.7518742899580008]]:n.W1===Ct.D50&&n.W2===Ct.D65&&(n.M=[[.9554734527042182,-.023098536874261423,.0632593086610217],[-.028369706963208136,1.0099954580058226,.021041398966943008],[.012314001688319899,-.020507696433477912,1.3303659366080753]])),rr.run("chromatic-adaptation-end",n),n.M)return Ne(n.M,n.XYZ);throw new TypeError("Only Bradford CAT with white points D50 and D65 supported for now.")}var rg=75e-6,Rt=(F=new WeakSet,S=new WeakMap,(function(){function e(t){var r,a,n,i,o,u,s;wt(this,e),ss(this,F),Zt(this,S,void 0),this.id=t.id,this.name=t.name,this.base=t.base?Rt.get(t.base):null,this.aliases=t.aliases,this.base&&(this.fromBase=t.fromBase,this.toBase=t.toBase);var l=(r=t.coords)!==null&&r!==void 0?r:this.base.coords;this.coords=l;var c=(a=(n=t.white)!==null&&n!==void 0?n:this.base.white)!==null&&a!==void 0?a:"D65";this.white=Yi(c),this.formats=(i=t.formats)!==null&&i!==void 0?i:{};for(var d in this.formats){var f=this.formats[d];f.type||(f.type="function"),f.name||(f.name=d)}t.cssId&&!((o=this.formats.functions)!==null&&o!==void 0&&o.color)?(this.formats.color={id:t.cssId},Object.defineProperty(this,"cssId",{value:t.cssId})):(u=this.formats)!==null&&u!==void 0&&u.color&&!((s=this.formats)!==null&&s!==void 0&&s.color.id)&&(this.formats.color.id=this.id),this.referred=t.referred,rt(S,this,Rr(F,this,ag).call(this).reverse()),rr.run("colorspace-init-end",this)}return _t(e,[{key:"inGamut",value:function(r){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=a.epsilon,i=n===void 0?rg:n;if(this.isPolar)return r=this.toBase(r),this.base.inGamut(r,{epsilon:i});var o=Object.values(this.coords);return r.every(function(u,s){var l=o[s];if(l.type!=="angle"&&l.range){if(Number.isNaN(u))return!0;var c=H(l.range,2),d=c[0],f=c[1];return(d===void 0||u>=d-i)&&(f===void 0||u<=f+i)}return!0})}},{key:"cssId",get:function(){var r;return((r=this.formats.functions)===null||r===void 0||(r=r.color)===null||r===void 0?void 0:r.id)||this.id}},{key:"isPolar",get:function(){for(var r in this.coords)if(this.coords[r].type==="angle")return!0;return!1}},{key:"getFormat",value:function(r){if(M(r)==="object")return r=Rr(F,this,cl).call(this,r),r;var a;return r==="default"?a=Object.values(this.formats)[0]:a=this.formats[r],a?(a=Rr(F,this,cl).call(this,a),a):null}},{key:"to",value:function(r,a){if(arguments.length===1){var n=[r.space,r.coords];r=n[0],a=n[1]}if(r=Rt.get(r),this===r)return a;a=a.map(function(f){return Number.isNaN(f)?0:f});for(var i=Dt(S,this),o=Dt(S,r),u,s,l=0;l<i.length&&i[l]===o[l];l++)u=i[l],s=l;if(!u)throw new Error("Cannot convert between color spaces ".concat(this," and ").concat(r,": no connection space was found"));for(var c=i.length-1;c>s;c--)a=i[c].toBase(a);for(var d=s+1;d<o.length;d++)a=o[d].fromBase(a);return a}},{key:"from",value:function(r,a){if(arguments.length===1){var n=[r.space,r.coords];r=n[0],a=n[1]}return r=Rt.get(r),r.to(this,a)}},{key:"toString",value:function(){return"".concat(this.name," (").concat(this.id,")")}},{key:"getMinCoords",value:function(){var r=[];for(var a in this.coords){var n,i=this.coords[a],o=i.range||i.refRange;r.push((n=o?.min)!==null&&n!==void 0?n:0)}return r}}],[{key:"all",get:function(){return re(new Set(Object.values(Rt.registry)))}},{key:"register",value:function(r,a){if(arguments.length===1&&(a=arguments[0],r=a.id),a=this.get(a),this.registry[r]&&this.registry[r]!==a)throw new Error("Duplicate color space registration: '".concat(r,"'"));if(this.registry[r]=a,arguments.length===1&&a.aliases){var n=xe(a.aliases),i;try{for(n.s();!(i=n.n()).done;){var o=i.value;this.register(o,a)}}catch(u){n.e(u)}finally{n.f()}}return a}},{key:"get",value:function(r){if(!r||r instanceof Rt)return r;var a=tr(r);if(a==="string"){var n=Rt.registry[r.toLowerCase()];if(!n)throw new TypeError('No color space found with id = "'.concat(r,'"'));return n}for(var i=arguments.length,o=new Array(i>1?i-1:0),u=1;u<i;u++)o[u-1]=arguments[u];if(o.length)return Rt.get.apply(Rt,o);throw new TypeError("".concat(r," is not a valid color space"))}},{key:"resolveCoord",value:function(r,a){var n=tr(r),i,o;if(n==="string")if(r.includes(".")){var u=r.split("."),s=H(u,2);i=s[0],o=s[1]}else i=void 0,o=r;else if(Array.isArray(r)){var l=H(r,2);i=l[0],o=l[1]}else i=r.space,o=r.coordId;if(i=Rt.get(i),i||(i=a),!i)throw new TypeError("Cannot resolve coordinate reference ".concat(r,": No color space specified and relative references are not allowed here"));if(n=tr(o),n==="number"||n==="string"&&o>=0){var c=Object.entries(i.coords)[o];if(c)return de({space:i,id:c[0],index:o},c[1])}i=Rt.get(i);var d=o.toLowerCase(),f=0;for(var p in i.coords){var m,h=i.coords[p];if(p.toLowerCase()===d||((m=h.name)===null||m===void 0?void 0:m.toLowerCase())===d)return de({space:i,id:p,index:f},h);f++}throw new TypeError('No "'.concat(o,'" coordinate found in ').concat(i.name,". Its coordinates are: ").concat(Object.keys(i.coords).join(", ")))}}])})());function cl(e){if(e.coords&&!e.coordGrammar){e.type||(e.type="function"),e.name||(e.name="color"),e.coordGrammar=ll(e.coords);var t=Object.entries(this.coords).map(function(r,a){var n=H(r,2);n[0];var i=n[1],o=e.coordGrammar[a][0],u=i.range||i.refRange,s=o.range,l="";return o=="<percentage>"?(s=[0,100],l="%"):o=="<angle>"&&(l="deg"),{fromRange:u,toRange:s,suffix:l}});e.serializeCoords=function(r,a){return r.map(function(n,i){var o=t[i],u=o.fromRange,s=o.toRange,l=o.suffix;return u&&s&&(n=Wi(u,s,n)),n=sn(n,a),l&&(n+=l),n})}}return e}function ag(){for(var e=[this],t=this;t=t.base;)e.push(t);return e}var ee=Rt;ms(ee,"registry",{}),ms(ee,"DEFAULT_FORMAT",{type:"functions",name:"color"});var mt=new ee({id:"xyz-d65",name:"XYZ D65",coords:{x:{name:"X"},y:{name:"Y"},z:{name:"Z"}},white:"D65",formats:{color:{ids:["xyz-d65","xyz"]}},aliases:["xyz"]}),nt=(function(e){function t(r){var a,n;if(wt(this,t),r.coords||(r.coords={r:{range:[0,1],name:"Red"},g:{range:[0,1],name:"Green"},b:{range:[0,1],name:"Blue"}}),r.base||(r.base=mt),r.toXYZ_M&&r.fromXYZ_M){var i,o;(i=r.toBase)!==null&&i!==void 0||(r.toBase=function(u){var s=Ne(r.toXYZ_M,u);return n.white!==n.base.white&&(s=cn(n.white,n.base.white,s)),s}),(o=r.fromBase)!==null&&o!==void 0||(r.fromBase=function(u){return u=cn(n.base.white,n.white,u),Ne(r.fromXYZ_M,u)})}return(a=r.referred)!==null&&a!==void 0||(r.referred="display"),n=Ga(this,t,[r])}return Ua(t,e),_t(t)})(ee);function dl(e){var t,r={str:(t=String(e))===null||t===void 0?void 0:t.trim()};if(rr.run("parse-start",r),r.color)return r.color;if(r.parsed=ol(r.str),r.parsed){var a=r.parsed.name;if(a==="color"){var n=r.parsed.args.shift(),i=r.parsed.rawArgs.indexOf("/")>0?r.parsed.args.pop():1,o=xe(ee.all),u;try{var s=function(){var $=u.value,k=$.getFormat("color");if(k){var P;if(n===k.id||(P=k.ids)!==null&&P!==void 0&&P.includes(n)){var z=Object.keys($.coords).length,V=Array(z).fill(0);return V.forEach(function(Q,ie){return V[ie]=r.parsed.args[ie]||0}),{v:{spaceId:$.id,coords:V,alpha:i}}}}},l;for(o.s();!(u=o.n()).done;)if(l=s(),l)return l.v}catch(O){o.e(O)}finally{o.f()}var c="";if(n in ee.registry){var d,f=(d=ee.registry[n].formats)===null||d===void 0||(d=d.functions)===null||d===void 0||(d=d.color)===null||d===void 0?void 0:d.id;f&&(c="Did you mean color(".concat(f,")?"))}throw new TypeError("Cannot parse color(".concat(n,"). ")+(c||"Missing a plugin?"))}else{var p=xe(ee.all),m;try{var h=function(){var $=m.value,k=$.getFormat(a);if(k&&k.type==="function"){var P=1;(k.lastAlpha||ul(r.parsed.args).alpha)&&(P=r.parsed.args.pop());var z=r.parsed.args;return k.coordGrammar&&Object.entries($.coords).forEach(function(V,Q){var ie,K=H(V,2),te=K[0],q=K[1],J=k.coordGrammar[Q],A=(ie=z[Q])===null||ie===void 0?void 0:ie.type;if(J=J.find(function(ne){return ne==A}),!J){var U=q.name||te;throw new TypeError("".concat(A," not allowed for ").concat(U," in ").concat(a,"()"))}var B=J.range;A==="<percentage>"&&(B||(B=[0,1]));var W=q.range||q.refRange;B&&W&&(z[Q]=Wi(B,W,z[Q]))}),{v:{spaceId:$.id,coords:z,alpha:P}}}},v;for(p.s();!(m=p.n()).done;)if(v=h(),v)return v.v}catch(O){p.e(O)}finally{p.f()}}}else{var g=xe(ee.all),b;try{for(g.s();!(b=g.n()).done;){var w=b.value;for(var D in w.formats){var _=w.formats[D];if(_.type==="custom"&&!(_.test&&!_.test(r.str))){var C=_.parse(r.str);if(C){var T;return(T=C.alpha)!==null&&T!==void 0||(C.alpha=1),C}}}}}catch(O){g.e(O)}finally{g.f()}}throw new TypeError("Could not parse ".concat(e," as a color. Missing a plugin?"))}function be(e){if(!e)throw new TypeError("Empty color reference");sa(e)&&(e=dl(e));var t=e.space||e.spaceId;return t instanceof ee||(e.space=ee.get(t)),e.alpha===void 0&&(e.alpha=1),e}function la(e,t){return t=ee.get(t),t.from(e)}function ht(e,t){var r=ee.resolveCoord(t,e.space),a=r.space,n=r.index,i=la(e,a);return i[n]}function fl(e,t,r){return t=ee.get(t),e.coords=t.to(e.space,r),e}function ar(e,t,r){if(e=be(e),arguments.length===2&&tr(arguments[1])==="object"){var a=arguments[1];for(var n in a)ar(e,n,a[n])}else{typeof r=="function"&&(r=r(ht(e,t)));var i=ee.resolveCoord(t,e.space),o=i.space,u=i.index,s=la(e,o);s[u]=r,fl(e,o,s)}return e}var Ki=new ee({id:"xyz-d50",name:"XYZ D50",white:"D50",base:mt,fromBase:function(t){return cn(mt.white,"D50",t)},toBase:function(t){return cn("D50",mt.white,t)},formats:{color:{}}}),ng=216/24389,pl=24/116,dn=24389/27,Xi=Ct.D50,ot=new ee({id:"lab",name:"Lab",coords:{l:{refRange:[0,100],name:"L"},a:{refRange:[-125,125]},b:{refRange:[-125,125]}},white:Xi,base:Ki,fromBase:function(t){var r=t.map(function(n,i){return n/Xi[i]}),a=r.map(function(n){return n>ng?Math.cbrt(n):(dn*n+16)/116});return[116*a[1]-16,500*(a[0]-a[1]),200*(a[1]-a[2])]},toBase:function(t){var r=[];r[1]=(t[0]+16)/116,r[0]=t[1]/500+r[1],r[2]=r[1]-t[2]/200;var a=[r[0]>pl?Math.pow(r[0],3):(116*r[0]-16)/dn,t[0]>8?Math.pow((t[0]+16)/116,3):t[0]/dn,r[2]>pl?Math.pow(r[2],3):(116*r[2]-16)/dn];return a.map(function(n,i){return n*Xi[i]})},formats:{lab:{coords:["<number> | <percentage>","<number>","<number>"]}}});function fn(e){return(e%360+360)%360}function ig(e,t){if(e==="raw")return t;var r=t.map(fn),a=H(r,2),n=a[0],i=a[1],o=i-n;return e==="increasing"?o<0&&(i+=360):e==="decreasing"?o>0&&(n+=360):e==="longer"?-180<o&&o<180&&(o>0?i+=360:n+=360):e==="shorter"&&(o>180?n+=360:o<-180&&(i+=360)),[n,i]}var ca=new ee({id:"lch",name:"LCH",coords:{l:{refRange:[0,100],name:"Lightness"},c:{refRange:[0,150],name:"Chroma"},h:{refRange:[0,360],type:"angle",name:"Hue"}},base:ot,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o,u=.02;return Math.abs(n)<u&&Math.abs(i)<u?o=NaN:o=Math.atan2(i,n)*180/Math.PI,[a,Math.sqrt(Math.pow(n,2)+Math.pow(i,2)),fn(o)]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];return n<0&&(n=0),isNaN(i)&&(i=0),[a,n*Math.cos(i*Math.PI/180),n*Math.sin(i*Math.PI/180)]},formats:{lch:{coords:["<number> | <percentage>","<number>","<number> | <angle>"]}}}),ml=Math.pow(25,7),pn=Math.PI,hl=180/pn,Or=pn/180;function Zi(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},a=r.kL,n=a===void 0?1:a,i=r.kC,o=i===void 0?1:i,u=r.kH,s=u===void 0?1:u,l=ot.from(e),c=H(l,3),d=c[0],f=c[1],p=c[2],m=ca.from(ot,[d,f,p])[1],h=ot.from(t),v=H(h,3),g=v[0],b=v[1],w=v[2],D=ca.from(ot,[g,b,w])[1];m<0&&(m=0),D<0&&(D=0);var _=(m+D)/2,C=Math.pow(_,7),T=.5*(1-Math.sqrt(C/(C+ml))),O=(1+T)*f,$=(1+T)*b,k=Math.sqrt(Math.pow(O,2)+Math.pow(p,2)),P=Math.sqrt(Math.pow($,2)+Math.pow(w,2)),z=O===0&&p===0?0:Math.atan2(p,O),V=$===0&&w===0?0:Math.atan2(w,$);z<0&&(z+=2*pn),V<0&&(V+=2*pn),z*=hl,V*=hl;var Q=g-d,ie=P-k,K=V-z,te=z+V,q=Math.abs(K),J;k*P===0?J=0:q<=180?J=K:K>180?J=K-360:K<-180?J=K+360:console.log("the unthinkable has happened");var A=2*Math.sqrt(P*k)*Math.sin(J*Or/2),U=(d+g)/2,B=(k+P)/2,W=Math.pow(B,7),ne;k*P===0?ne=te:q<=180?ne=te/2:te<360?ne=(te+360)/2:ne=(te-360)/2;var Y=Math.pow(U-50,2),Z=1+.015*Y/Math.sqrt(20+Y),me=1+.045*B,De=1;De-=.17*Math.cos((ne-30)*Or),De+=.24*Math.cos(2*ne*Or),De+=.32*Math.cos((3*ne+6)*Or),De-=.2*Math.cos((4*ne-63)*Or);var Ae=1+.015*B*De,Me=30*Math.exp(-1*Math.pow((ne-275)/25,2)),je=2*Math.sqrt(W/(W+ml)),Le=-1*Math.sin(2*Me*Or)*je,Fe=Math.pow(Q/(n*Z),2);return Fe+=Math.pow(ie/(o*me),2),Fe+=Math.pow(A/(s*Ae),2),Fe+=Le*(ie/(o*me))*(A/(s*Ae)),Math.sqrt(Fe)}var og=75e-6;function da(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e.space,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},a=r.epsilon,n=a===void 0?og:a;e=be(e),t=ee.get(t);var i=e.coords;return t!==e.space&&(i=t.from(e)),t.inGamut(i,{epsilon:n})}function fa(e){return{space:e.space,coords:e.coords.slice(),alpha:e.alpha}}function nr(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.method,a=r===void 0?Ot.gamut_mapping:r,n=t.space,i=n===void 0?e.space:n;if(sa(arguments[1])&&(i=arguments[1]),i=ee.get(i),da(e,i,{epsilon:0}))return e;var o=vt(e,i);if(a!=="clip"&&!da(e,i)){var u=nr(fa(o),{method:"clip",space:i});if(Zi(e,u)>2){for(var s=ee.resolveCoord(a),l=s.space,c=s.id,d=vt(o,l),f=s.range||s.refRange,p=f[0],m=.01,h=p,v=ht(d,c);v-h>m;){var g=fa(d);g=nr(g,{space:i,method:"clip"});var b=Zi(d,g);b-2<m?h=ht(d,c):v=ht(d,c),ar(d,c,(h+v)/2)}o=vt(d,i)}else o=u}if(a==="clip"||!da(o,i,{epsilon:0})){var w=Object.values(i.coords).map(function(D){return D.range||[]});o.coords=o.coords.map(function(D,_){var C=H(w[_],2),T=C[0],O=C[1];return T!==void 0&&(D=Math.max(T,D)),O!==void 0&&(D=Math.min(D,O)),D})}return i!==e.space&&(o=vt(o,e.space)),e.coords=o.coords,e}nr.returns="color";function vt(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},a=r.inGamut;e=be(e),t=ee.get(t);var n=t.from(e),i={space:t,coords:n,alpha:e.alpha};return a&&(i=nr(i)),i}vt.returns="color";function mn(e){var t,r,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=a.precision,i=n===void 0?Ot.precision:n,o=a.format,u=o===void 0?"default":o,s=a.inGamut,l=s===void 0?!0:s,c=qe(a,Pp),d;e=be(e);var f=u;u=(t=(r=e.space.getFormat(u))!==null&&r!==void 0?r:e.space.getFormat("default"))!==null&&t!==void 0?t:ee.DEFAULT_FORMAT,l||(l=u.toGamut);var p=e.coords;if(p=p.map(function(D){return D||0}),l&&!da(e)&&(p=nr(fa(e),l===!0?void 0:l).coords),u.type==="custom")if(c.precision=i,u.serialize)d=u.serialize(p,e.alpha,c);else throw new TypeError("format ".concat(f," can only be used to parse colors, not for serialization"));else{var m=u.name||"color";u.serializeCoords?p=u.serializeCoords(p,i):i!==null&&(p=p.map(function(D){return sn(D,i)}));var h=re(p);if(m==="color"){var v,g=u.id||((v=u.ids)===null||v===void 0?void 0:v[0])||e.space.id;h.unshift(g)}var b=e.alpha;i!==null&&(b=sn(b,i));var w=e.alpha<1&&!u.noAlpha?"".concat(u.commas?",":" /"," ").concat(b):"";d="".concat(m,"(").concat(h.join(u.commas?", ":" ")).concat(w,")")}return d}var ug=[[.6369580483012914,.14461690358620832,.1688809751641721],[.2627002120112671,.6779980715188708,.05930171646986196],[0,.028072693049087428,1.060985057710791]],sg=[[1.716651187971268,-.355670783776392,-.25336628137366],[-.666684351832489,1.616481236634939,.0157685458139111],[.017639857445311,-.042770613257809,.942103121235474]],hn=new nt({id:"rec2020-linear",name:"Linear REC.2020",white:"D65",toXYZ_M:ug,fromXYZ_M:sg,formats:{color:{}}}),vn=1.09929682680944,vl=.018053968510807,gl=new nt({id:"rec2020",name:"REC.2020",base:hn,toBase:function(t){return t.map(function(r){return r<vl*4.5?r/4.5:Math.pow((r+vn-1)/vn,1/.45)})},fromBase:function(t){return t.map(function(r){return r>=vl?vn*Math.pow(r,.45)-(vn-1):4.5*r})},formats:{color:{}}}),lg=[[.4865709486482162,.26566769316909306,.1982172852343625],[.2289745640697488,.6917385218365064,.079286914093745],[0,.04511338185890264,1.043944368900976]],cg=[[2.493496911941425,-.9313836179191239,-.40271078445071684],[-.8294889695615747,1.7626640603183463,.023624685841943577],[.03584583024378447,-.07617238926804182,.9568845240076872]],bl=new nt({id:"p3-linear",name:"Linear P3",white:"D65",toXYZ_M:lg,fromXYZ_M:cg}),dg=[[.41239079926595934,.357584339383878,.1804807884018343],[.21263900587151027,.715168678767756,.07219231536073371],[.01933081871559182,.11919477979462598,.9505321522496607]],fg=[[3.2409699419045226,-1.537383177570094,-.4986107602930034],[-.9692436362808796,1.8759675015077202,.04155505740717559],[.05563007969699366,-.20397695888897652,1.0569715142428786]],yl=new nt({id:"srgb-linear",name:"Linear sRGB",white:"D65",toXYZ_M:dg,fromXYZ_M:fg,formats:{color:{}}}),Dl={aliceblue:[240/255,248/255,1],antiquewhite:[250/255,235/255,215/255],aqua:[0,1,1],aquamarine:[127/255,1,212/255],azure:[240/255,1,1],beige:[245/255,245/255,220/255],bisque:[1,228/255,196/255],black:[0,0,0],blanchedalmond:[1,235/255,205/255],blue:[0,0,1],blueviolet:[138/255,43/255,226/255],brown:[165/255,42/255,42/255],burlywood:[222/255,184/255,135/255],cadetblue:[95/255,158/255,160/255],chartreuse:[127/255,1,0],chocolate:[210/255,105/255,30/255],coral:[1,127/255,80/255],cornflowerblue:[100/255,149/255,237/255],cornsilk:[1,248/255,220/255],crimson:[220/255,20/255,60/255],cyan:[0,1,1],darkblue:[0,0,139/255],darkcyan:[0,139/255,139/255],darkgoldenrod:[184/255,134/255,11/255],darkgray:[169/255,169/255,169/255],darkgreen:[0,100/255,0],darkgrey:[169/255,169/255,169/255],darkkhaki:[189/255,183/255,107/255],darkmagenta:[139/255,0,139/255],darkolivegreen:[85/255,107/255,47/255],darkorange:[1,140/255,0],darkorchid:[153/255,50/255,204/255],darkred:[139/255,0,0],darksalmon:[233/255,150/255,122/255],darkseagreen:[143/255,188/255,143/255],darkslateblue:[72/255,61/255,139/255],darkslategray:[47/255,79/255,79/255],darkslategrey:[47/255,79/255,79/255],darkturquoise:[0,206/255,209/255],darkviolet:[148/255,0,211/255],deeppink:[1,20/255,147/255],deepskyblue:[0,191/255,1],dimgray:[105/255,105/255,105/255],dimgrey:[105/255,105/255,105/255],dodgerblue:[30/255,144/255,1],firebrick:[178/255,34/255,34/255],floralwhite:[1,250/255,240/255],forestgreen:[34/255,139/255,34/255],fuchsia:[1,0,1],gainsboro:[220/255,220/255,220/255],ghostwhite:[248/255,248/255,1],gold:[1,215/255,0],goldenrod:[218/255,165/255,32/255],gray:[128/255,128/255,128/255],green:[0,128/255,0],greenyellow:[173/255,1,47/255],grey:[128/255,128/255,128/255],honeydew:[240/255,1,240/255],hotpink:[1,105/255,180/255],indianred:[205/255,92/255,92/255],indigo:[75/255,0,130/255],ivory:[1,1,240/255],khaki:[240/255,230/255,140/255],lavender:[230/255,230/255,250/255],lavenderblush:[1,240/255,245/255],lawngreen:[124/255,252/255,0],lemonchiffon:[1,250/255,205/255],lightblue:[173/255,216/255,230/255],lightcoral:[240/255,128/255,128/255],lightcyan:[224/255,1,1],lightgoldenrodyellow:[250/255,250/255,210/255],lightgray:[211/255,211/255,211/255],lightgreen:[144/255,238/255,144/255],lightgrey:[211/255,211/255,211/255],lightpink:[1,182/255,193/255],lightsalmon:[1,160/255,122/255],lightseagreen:[32/255,178/255,170/255],lightskyblue:[135/255,206/255,250/255],lightslategray:[119/255,136/255,153/255],lightslategrey:[119/255,136/255,153/255],lightsteelblue:[176/255,196/255,222/255],lightyellow:[1,1,224/255],lime:[0,1,0],limegreen:[50/255,205/255,50/255],linen:[250/255,240/255,230/255],magenta:[1,0,1],maroon:[128/255,0,0],mediumaquamarine:[102/255,205/255,170/255],mediumblue:[0,0,205/255],mediumorchid:[186/255,85/255,211/255],mediumpurple:[147/255,112/255,219/255],mediumseagreen:[60/255,179/255,113/255],mediumslateblue:[123/255,104/255,238/255],mediumspringgreen:[0,250/255,154/255],mediumturquoise:[72/255,209/255,204/255],mediumvioletred:[199/255,21/255,133/255],midnightblue:[25/255,25/255,112/255],mintcream:[245/255,1,250/255],mistyrose:[1,228/255,225/255],moccasin:[1,228/255,181/255],navajowhite:[1,222/255,173/255],navy:[0,0,128/255],oldlace:[253/255,245/255,230/255],olive:[128/255,128/255,0],olivedrab:[107/255,142/255,35/255],orange:[1,165/255,0],orangered:[1,69/255,0],orchid:[218/255,112/255,214/255],palegoldenrod:[238/255,232/255,170/255],palegreen:[152/255,251/255,152/255],paleturquoise:[175/255,238/255,238/255],palevioletred:[219/255,112/255,147/255],papayawhip:[1,239/255,213/255],peachpuff:[1,218/255,185/255],peru:[205/255,133/255,63/255],pink:[1,192/255,203/255],plum:[221/255,160/255,221/255],powderblue:[176/255,224/255,230/255],purple:[128/255,0,128/255],rebeccapurple:[102/255,51/255,153/255],red:[1,0,0],rosybrown:[188/255,143/255,143/255],royalblue:[65/255,105/255,225/255],saddlebrown:[139/255,69/255,19/255],salmon:[250/255,128/255,114/255],sandybrown:[244/255,164/255,96/255],seagreen:[46/255,139/255,87/255],seashell:[1,245/255,238/255],sienna:[160/255,82/255,45/255],silver:[192/255,192/255,192/255],skyblue:[135/255,206/255,235/255],slateblue:[106/255,90/255,205/255],slategray:[112/255,128/255,144/255],slategrey:[112/255,128/255,144/255],snow:[1,250/255,250/255],springgreen:[0,1,127/255],steelblue:[70/255,130/255,180/255],tan:[210/255,180/255,140/255],teal:[0,128/255,128/255],thistle:[216/255,191/255,216/255],tomato:[1,99/255,71/255],turquoise:[64/255,224/255,208/255],violet:[238/255,130/255,238/255],wheat:[245/255,222/255,179/255],white:[1,1,1],whitesmoke:[245/255,245/255,245/255],yellow:[1,1,0],yellowgreen:[154/255,205/255,50/255]},wl=Array(3).fill("<percentage> | <number>[0, 255]"),_l=Array(3).fill("<number>[0, 255]"),pa=new nt({id:"srgb",name:"sRGB",base:yl,fromBase:function(t){return t.map(function(r){var a=r<0?-1:1,n=r*a;return n>.0031308?a*(1.055*Math.pow(n,1/2.4)-.055):12.92*r})},toBase:function(t){return t.map(function(r){var a=r<0?-1:1,n=r*a;return n<.04045?r/12.92:a*Math.pow((n+.055)/1.055,2.4)})},formats:{rgb:{coords:wl},rgb_number:{name:"rgb",commas:!0,coords:_l,noAlpha:!0},color:{},rgba:{coords:wl,commas:!0,lastAlpha:!0},rgba_number:{name:"rgba",commas:!0,coords:_l},hex:{type:"custom",toGamut:!0,test:function(t){return/^#([a-f0-9]{3,4}){1,2}$/i.test(t)},parse:function(t){t.length<=5&&(t=t.replace(/[a-f0-9]/gi,"$&$&"));var r=[];return t.replace(/[a-f0-9]{2}/gi,function(a){r.push(parseInt(a,16)/255)}),{spaceId:"srgb",coords:r.slice(0,3),alpha:r.slice(3)[0]}},serialize:function(t,r){var a=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},n=a.collapse,i=n===void 0?!0:n;r<1&&t.push(r),t=t.map(function(s){return Math.round(s*255)});var o=i&&t.every(function(s){return s%17===0}),u=t.map(function(s){return o?(s/17).toString(16):s.toString(16).padStart(2,"0")}).join("");return"#"+u}},keyword:{type:"custom",test:function(t){return/^[a-z]+$/i.test(t)},parse:function(t){t=t.toLowerCase();var r={spaceId:"srgb",coords:null,alpha:1};if(t==="transparent"?(r.coords=Dl.black,r.alpha=0):r.coords=Dl[t],r.coords)return r}}}}),xl=new nt({id:"p3",name:"P3",base:bl,fromBase:pa.fromBase,toBase:pa.toBase,formats:{color:{id:"display-p3"}}});if(Ot.display_space=pa,typeof CSS<"u"&&(L=CSS)!==null&&L!==void 0&&L.supports)for(var Ji=0,El=[ot,gl,xl];Ji<El.length;Ji++){var Qi=El[Ji],pg=Qi.getMinCoords(),mg={space:Qi,coords:pg,alpha:1},hg=mn(mg);if(CSS.supports("color",hg)){Ot.display_space=Qi;break}}function vg(e){var t,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},a=r.space,n=a===void 0?Ot.display_space:a,i=qe(r,Ip),o=mn(e,i);if(typeof CSS>"u"||(t=CSS)!==null&&t!==void 0&&t.supports("color",o)||!Ot.display_space)o=new String(o),o.color=e;else{var u=vt(e,n);o=new String(mn(u,i)),o.color=u}return o}function Al(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"lab";r=ee.get(r);var a=r.from(e),n=r.from(t);return Math.sqrt(a.reduce(function(i,o,u){var s=n[u];return isNaN(o)||isNaN(s)?i:i+Math.pow(s-o,2)},0))}function gg(e,t){return e=be(e),t=be(t),e.space===t.space&&e.alpha===t.alpha&&e.coords.every(function(r,a){return r===t.coords[a]})}function ir(e){return ht(e,[mt,"y"])}function Fl(e,t){ar(e,[mt,"y"],t)}function bg(e){Object.defineProperty(e.prototype,"luminance",{get:function(){return ir(this)},set:function(r){Fl(this,r)}})}var yg=Object.freeze({__proto__:null,getLuminance:ir,setLuminance:Fl,register:bg});function Dg(e,t){e=be(e),t=be(t);var r=Math.max(ir(e),0),a=Math.max(ir(t),0);if(a>r){var n=[a,r];r=n[0],a=n[1]}return(r+.05)/(a+.05)}var wg=.56,_g=.57,xg=.62,Eg=.65,Cl=.022,Ag=1.414,Fg=.1,Cg=5e-4,Rg=1.14,Rl=.027,Tg=1.14;function Tl(e){return e>=Cl?e:e+Math.pow(Cl-e,Ag)}function Mr(e){var t=e<0?-1:1,r=Math.abs(e);return t*Math.pow(r,2.4)}function Sg(e,t){t=be(t),e=be(e);var r,a,n,i,o,u;t=vt(t,"srgb");var s=H(t.coords,3);i=s[0],o=s[1],u=s[2];var l=Mr(i)*.2126729+Mr(o)*.7151522+Mr(u)*.072175;e=vt(e,"srgb");var c=H(e.coords,3);i=c[0],o=c[1],u=c[2];var d=Mr(i)*.2126729+Mr(o)*.7151522+Mr(u)*.072175,f=Tl(l),p=Tl(d),m=p>f;return Math.abs(p-f)<Cg?a=0:m?(r=Math.pow(p,wg)-Math.pow(f,_g),a=r*Rg):(r=Math.pow(p,Eg)-Math.pow(f,xg),a=r*Tg),Math.abs(a)<Fg?n=0:a>0?n=a-Rl:n=a+Rl,n*100}function kg(e,t){e=be(e),t=be(t);var r=Math.max(ir(e),0),a=Math.max(ir(t),0);if(a>r){var n=[a,r];r=n[0],a=n[1]}var i=r+a;return i===0?0:(r-a)/i}var Og=5e4;function Mg(e,t){e=be(e),t=be(t);var r=Math.max(ir(e),0),a=Math.max(ir(t),0);if(a>r){var n=[a,r];r=n[0],a=n[1]}return a===0?Og:(r-a)/a}function Pg(e,t){e=be(e),t=be(t);var r=ht(e,[ot,"l"]),a=ht(t,[ot,"l"]);return Math.abs(r-a)}var Ig=216/24389,Sl=24/116,gn=24389/27,eo=Ct.D65,to=new ee({id:"lab-d65",name:"Lab D65",coords:{l:{refRange:[0,100],name:"L"},a:{refRange:[-125,125]},b:{refRange:[-125,125]}},white:eo,base:mt,fromBase:function(t){var r=t.map(function(n,i){return n/eo[i]}),a=r.map(function(n){return n>Ig?Math.cbrt(n):(gn*n+16)/116});return[116*a[1]-16,500*(a[0]-a[1]),200*(a[1]-a[2])]},toBase:function(t){var r=[];r[1]=(t[0]+16)/116,r[0]=t[1]/500+r[1],r[2]=r[1]-t[2]/200;var a=[r[0]>Sl?Math.pow(r[0],3):(116*r[0]-16)/gn,t[0]>8?Math.pow((t[0]+16)/116,3):t[0]/gn,r[2]>Sl?Math.pow(r[2],3):(116*r[2]-16)/gn];return a.map(function(n,i){return n*eo[i]})},formats:{"lab-d65":{coords:["<number> | <percentage>","<number>","<number>"]}}}),ro=Math.pow(5,.5)*.5+.5;function Ng(e,t){e=be(e),t=be(t);var r=ht(e,[to,"l"]),a=ht(t,[to,"l"]),n=Math.abs(Math.pow(r,ro)-Math.pow(a,ro)),i=Math.pow(n,1/ro)*Math.SQRT2-40;return i<7.5?0:i}var bn=Object.freeze({__proto__:null,contrastWCAG21:Dg,contrastAPCA:Sg,contrastMichelson:kg,contrastWeber:Mg,contrastLstar:Pg,contrastDeltaPhi:Ng});function Bg(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};sa(r)&&(r={algorithm:r});var a=r,n=a.algorithm,i=qe(a,Np);if(!n){var o=Object.keys(bn).map(function(s){return s.replace(/^contrast/,"")}).join(", ");throw new TypeError("contrast() function needs a contrast algorithm. Please specify one of: ".concat(o))}e=be(e),t=be(t);for(var u in bn)if("contrast"+n.toLowerCase()===u.toLowerCase())return bn[u](e,t,i);throw new TypeError("Unknown contrast algorithm: ".concat(n))}function kl(e){var t=la(e,mt),r=H(t,3),a=r[0],n=r[1],i=r[2],o=a+15*n+3*i;return[4*a/o,9*n/o]}function Ol(e){var t=la(e,mt),r=H(t,3),a=r[0],n=r[1],i=r[2],o=a+n+i;return[a/o,n/o]}function Lg(e){Object.defineProperty(e.prototype,"uv",{get:function(){return kl(this)}}),Object.defineProperty(e.prototype,"xy",{get:function(){return Ol(this)}})}var qg=Object.freeze({__proto__:null,uv:kl,xy:Ol,register:Lg});function jg(e,t){return Al(e,t,"lab")}var $g=Math.PI,Ml=$g/180;function zg(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},a=r.l,n=a===void 0?2:a,i=r.c,o=i===void 0?1:i,u=ot.from(e),s=H(u,3),l=s[0],c=s[1],d=s[2],f=ca.from(ot,[l,c,d]),p=H(f,3),m=p[1],h=p[2],v=ot.from(t),g=H(v,3),b=g[0],w=g[1],D=g[2],_=ca.from(ot,[b,w,D])[1];m<0&&(m=0),_<0&&(_=0);var C=l-b,T=m-_,O=c-w,$=d-D,k=Math.pow(O,2)+Math.pow($,2)-Math.pow(T,2),P=.511;l>=16&&(P=.040975*l/(1+.01765*l));var z=.0638*m/(1+.0131*m)+.638,V;Number.isNaN(h)&&(h=0),h>=164&&h<=345?V=.56+Math.abs(.2*Math.cos((h+168)*Ml)):V=.36+Math.abs(.4*Math.cos((h+35)*Ml));var Q=Math.pow(m,4),ie=Math.sqrt(Q/(Q+1900)),K=z*(ie*V+1-ie),te=Math.pow(C/(n*P),2);return te+=Math.pow(T/(o*z),2),te+=k/Math.pow(K,2),Math.sqrt(te)}var Pl=203,ao=new ee({id:"xyz-abs-d65",name:"Absolute XYZ D65",coords:{x:{refRange:[0,9504.7],name:"Xa"},y:{refRange:[0,1e4],name:"Ya"},z:{refRange:[0,10888.3],name:"Za"}},base:mt,fromBase:function(t){return t.map(function(r){return Math.max(r*Pl,0)})},toBase:function(t){return t.map(function(r){return Math.max(r/Pl,0)})}}),yn=1.15,Dn=.66,Il=2610/Math.pow(2,14),Vg=Math.pow(2,14)/2610,Nl=3424/Math.pow(2,12),Bl=2413/Math.pow(2,7),Ll=2392/Math.pow(2,7),Hg=1.7*2523/Math.pow(2,5),ql=Math.pow(2,5)/(1.7*2523),wn=-.56,no=16295499532821565e-27,Gg=[[.41478972,.579999,.014648],[-.20151,1.120649,.0531008],[-.0166008,.2648,.6684799]],Ug=[[1.9242264357876067,-1.0047923125953657,.037651404030618],[.35031676209499907,.7264811939316552,-.06538442294808501],[-.09098281098284752,-.3127282905230739,1.5227665613052603]],Wg=[[.5,.5,0],[3.524,-4.066708,.542708],[.199076,1.096799,-1.295875]],Yg=[[1,.1386050432715393,.05804731615611886],[.9999999999999999,-.1386050432715393,-.05804731615611886],[.9999999999999998,-.09601924202631895,-.8118918960560388]],jl=new ee({id:"jzazbz",name:"Jzazbz",coords:{jz:{refRange:[0,1],name:"Jz"},az:{refRange:[-.5,.5]},bz:{refRange:[-.5,.5]}},base:ao,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o=yn*a-(yn-1)*i,u=Dn*n-(Dn-1)*a,s=Ne(Gg,[o,u,i]),l=s.map(function(v){var g=Nl+Bl*Math.pow(v/1e4,Il),b=1+Ll*Math.pow(v/1e4,Il);return Math.pow(g/b,Hg)}),c=Ne(Wg,l),d=H(c,3),f=d[0],p=d[1],m=d[2],h=(1+wn)*f/(1+wn*f)-no;return[h,p,m]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o=(a+no)/(1+wn-wn*(a+no)),u=Ne(Yg,[o,n,i]),s=u.map(function(v){var g=Nl-Math.pow(v,ql),b=Ll*Math.pow(v,ql)-Bl,w=1e4*Math.pow(g/b,Vg);return w}),l=Ne(Ug,s),c=H(l,3),d=c[0],f=c[1],p=c[2],m=(d+(yn-1)*p)/yn,h=(f+(Dn-1)*m)/Dn;return[m,h,p]},formats:{color:{}}}),io=new ee({id:"jzczhz",name:"JzCzHz",coords:{jz:{refRange:[0,1],name:"Jz"},cz:{refRange:[0,1],name:"Chroma"},hz:{refRange:[0,360],type:"angle",name:"Hue"}},base:jl,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o,u=2e-4;return Math.abs(n)<u&&Math.abs(i)<u?o=NaN:o=Math.atan2(i,n)*180/Math.PI,[a,Math.sqrt(Math.pow(n,2)+Math.pow(i,2)),fn(o)]},toBase:function(t){return[t[0],t[1]*Math.cos(t[2]*Math.PI/180),t[1]*Math.sin(t[2]*Math.PI/180)]},formats:{color:{}}});function Kg(e,t){var r=io.from(e),a=H(r,3),n=a[0],i=a[1],o=a[2],u=io.from(t),s=H(u,3),l=s[0],c=s[1],d=s[2],f=n-l,p=i-c;Number.isNaN(o)&&Number.isNaN(d)?(o=0,d=0):Number.isNaN(o)?o=d:Number.isNaN(d)&&(d=o);var m=o-d,h=2*Math.sqrt(i*c)*Math.sin(m/2*(Math.PI/180));return Math.sqrt(Math.pow(f,2)+Math.pow(p,2)+Math.pow(h,2))}var $l=3424/4096,zl=2413/128,Vl=2392/128,Hl=2610/16384,Xg=2523/32,Zg=16384/2610,Gl=32/2523,Jg=[[.3592,.6976,-.0358],[-.1922,1.1004,.0755],[.007,.0749,.8434]],Qg=[[2048/4096,2048/4096,0],[6610/4096,-13613/4096,7003/4096],[17933/4096,-17390/4096,-543/4096]],eb=[[.9999888965628402,.008605050147287059,.11103437159861648],[1.00001110343716,-.008605050147287059,-.11103437159861648],[1.0000320633910054,.56004913547279,-.3206339100541203]],tb=[[2.0701800566956137,-1.326456876103021,.20661600684785517],[.3649882500326575,.6804673628522352,-.04542175307585323],[-.04959554223893211,-.04942116118675749,1.1879959417328034]],oo=new ee({id:"ictcp",name:"ICTCP",coords:{i:{refRange:[0,1],name:"I"},ct:{refRange:[-.5,.5],name:"CT"},cp:{refRange:[-.5,.5],name:"CP"}},base:ao,fromBase:function(t){var r=Ne(Jg,t);return rb(r)},toBase:function(t){var r=ab(t);return Ne(tb,r)},formats:{color:{}}});function rb(e){var t=e.map(function(r){var a=$l+zl*Math.pow(r/1e4,Hl),n=1+Vl*Math.pow(r/1e4,Hl);return Math.pow(a/n,Xg)});return Ne(Qg,t)}function ab(e){var t=Ne(eb,e),r=t.map(function(a){var n=Math.max(Math.pow(a,Gl)-$l,0),i=zl-Vl*Math.pow(a,Gl);return 1e4*Math.pow(n/i,Zg)});return r}function nb(e,t){var r=oo.from(e),a=H(r,3),n=a[0],i=a[1],o=a[2],u=oo.from(t),s=H(u,3),l=s[0],c=s[1],d=s[2];return 720*Math.sqrt(Math.pow(n-l,2)+.25*Math.pow(i-c,2)+Math.pow(o-d,2))}var ib=[[.8190224432164319,.3619062562801221,-.12887378261216414],[.0329836671980271,.9292868468965546,.03614466816999844],[.048177199566046255,.26423952494422764,.6335478258136937]],ob=[[1.2268798733741557,-.5578149965554813,.28139105017721583],[-.04057576262431372,1.1122868293970594,-.07171106666151701],[-.07637294974672142,-.4214933239627914,1.5869240244272418]],ub=[[.2104542553,.793617785,-.0040720468],[1.9779984951,-2.428592205,.4505937099],[.0259040371,.7827717662,-.808675766]],sb=[[.9999999984505198,.39633779217376786,.2158037580607588],[1.0000000088817609,-.10556134232365635,-.06385417477170591],[1.0000000546724108,-.08948418209496575,-1.2914855378640917]],_n=new ee({id:"oklab",name:"OKLab",coords:{l:{refRange:[0,1],name:"L"},a:{refRange:[-.4,.4]},b:{refRange:[-.4,.4]}},white:"D65",base:mt,fromBase:function(t){var r=Ne(ib,t),a=r.map(function(n){return Math.cbrt(n)});return Ne(ub,a)},toBase:function(t){var r=Ne(sb,t),a=r.map(function(n){return Math.pow(n,3)});return Ne(ob,a)},formats:{oklab:{coords:["<number> | <percentage>","<number>","<number>"]}}});function lb(e,t){var r=_n.from(e),a=H(r,3),n=a[0],i=a[1],o=a[2],u=_n.from(t),s=H(u,3),l=s[0],c=s[1],d=s[2],f=n-l,p=i-c,m=o-d;return Math.sqrt(Math.pow(f,2)+Math.pow(p,2)+Math.pow(m,2))}var uo=Object.freeze({__proto__:null,deltaE76:jg,deltaECMC:zg,deltaE2000:Zi,deltaEJz:Kg,deltaEITP:nb,deltaEOK:lb});function ma(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};sa(r)&&(r={method:r});var a=r,n=a.method,i=n===void 0?Ot.deltaE:n,o=qe(a,Bp);e=be(e),t=be(t);for(var u in uo)if("deltae"+i.toLowerCase()===u.toLowerCase())return uo[u](e,t,o);throw new TypeError("Unknown deltaE method: ".concat(i))}function cb(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:.25,r=ee.get("oklch","lch"),a=[r,"l"];return ar(e,a,function(n){return n*(1+t)})}function db(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:.25,r=ee.get("oklch","lch"),a=[r,"l"];return ar(e,a,function(n){return n*(1-t)})}var fb=Object.freeze({__proto__:null,lighten:cb,darken:db});function Ul(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:.5,a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},n=[be(e),be(t)];if(e=n[0],t=n[1],tr(r)==="object"){var i=[.5,r];r=i[0],a=i[1]}var o=a,u=o.space,s=o.outputSpace,l=o.premultiplied,c=ha(e,t,{space:u,outputSpace:s,premultiplied:l});return c(r)}function Wl(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},a;if(so(e)){a=e,r=t;var n=H(a.rangeArgs.colors,2);e=n[0],t=n[1]}var i=r,o=i.maxDeltaE,u=i.deltaEMethod,s=i.steps,l=s===void 0?2:s,c=i.maxSteps,d=c===void 0?1e3:c,f=qe(i,Lp);if(!a){var p=[be(e),be(t)];e=p[0],t=p[1],a=ha(e,t,f)}var m=ma(e,t),h=o>0?Math.max(l,Math.ceil(m/o)+1):l,v=[];if(d!==void 0&&(h=Math.min(h,d)),h===1)v=[{p:.5,color:a(.5)}];else{var g=1/(h-1);v=Array.from({length:h},function(O,$){var k=$*g;return{p:k,color:a(k)}})}if(o>0)for(var b=v.reduce(function(O,$,k){if(k===0)return 0;var P=ma($.color,v[k-1].color,u);return Math.max(O,P)},0);b>o;){b=0;for(var w=1;w<v.length&&v.length<d;w++){var D=v[w-1],_=v[w],C=(_.p+D.p)/2,T=a(C);b=Math.max(b,ma(T,D.color),ma(T,_.color)),v.splice(w,0,{p:C,color:a(C)}),w++}}return v=v.map(function(O){return O.color}),v}function ha(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(so(e)){var a=e,n=t;return ha.apply(void 0,re(a.rangeArgs.colors).concat([de({},a.rangeArgs.options,n)]))}var i=r.space,o=r.outputSpace,u=r.progression,s=r.premultiplied;e=be(e),t=be(t),e=fa(e),t=fa(t);var l={colors:[e,t],options:r};if(i?i=ee.get(i):i=ee.registry[Ot.interpolationSpace]||e.space,o=o?ee.get(o):i,e=vt(e,i),t=vt(t,i),e=nr(e),t=nr(t),i.coords.h&&i.coords.h.type==="angle"){var c=r.hue=r.hue||"shorter",d=[i,"h"],f=[ht(e,d),ht(t,d)],p=f[0],m=f[1],h=ig(c,[p,m]),v=H(h,2);p=v[0],m=v[1],ar(e,d,p),ar(t,d,m)}return s&&(e.coords=e.coords.map(function(g){return g*e.alpha}),t.coords=t.coords.map(function(g){return g*t.alpha})),Object.assign(function(g){g=u?u(g):g;var b=e.coords.map(function(_,C){var T=t.coords[C];return ln(_,T,g)}),w=ln(e.alpha,t.alpha,g),D={space:i,coords:b,alpha:w};return s&&(D.coords=D.coords.map(function(_){return _/w})),o!==i&&(D=vt(D,o)),D},{rangeArgs:l})}function so(e){return tr(e)==="function"&&!!e.rangeArgs}Ot.interpolationSpace="lab";function pb(e){e.defineFunction("mix",Ul,{returns:"color"}),e.defineFunction("range",ha,{returns:"function<color>"}),e.defineFunction("steps",Wl,{returns:"array<color>"})}var mb=Object.freeze({__proto__:null,mix:Ul,steps:Wl,range:ha,isRange:so,register:pb}),Yl=new ee({id:"hsl",name:"HSL",coords:{h:{refRange:[0,360],type:"angle",name:"Hue"},s:{range:[0,100],name:"Saturation"},l:{range:[0,100],name:"Lightness"}},base:pa,fromBase:function(t){var r=Math.max.apply(Math,re(t)),a=Math.min.apply(Math,re(t)),n=H(t,3),i=n[0],o=n[1],u=n[2],s=NaN,l=0,c=(a+r)/2,d=r-a;if(d!==0){switch(l=c===0||c===1?0:(r-c)/Math.min(c,1-c),r){case i:s=(o-u)/d+(o<u?6:0);break;case o:s=(u-i)/d+2;break;case u:s=(i-o)/d+4}s=s*60}return[s,l*100,c*100]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];a=a%360,a<0&&(a+=360),n/=100,i/=100;function o(u){var s=(u+a/30)%12,l=n*Math.min(i,1-i);return i-l*Math.max(-1,Math.min(s-3,9-s,1))}return[o(0),o(8),o(4)]},formats:{hsl:{toGamut:!0,coords:["<number> | <angle>","<percentage>","<percentage>"]},hsla:{coords:["<number> | <angle>","<percentage>","<percentage>"],commas:!0,lastAlpha:!0}}}),Kl=new ee({id:"hsv",name:"HSV",coords:{h:{refRange:[0,360],type:"angle",name:"Hue"},s:{range:[0,100],name:"Saturation"},v:{range:[0,100],name:"Value"}},base:Yl,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];n/=100,i/=100;var o=i+n*Math.min(i,1-i);return[a,o===0?0:200*(1-i/o),100*o]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];n/=100,i/=100;var o=i*(1-n/2);return[a,o===0||o===1?0:(i-o)/Math.min(o,1-o)*100,o*100]},formats:{color:{toGamut:!0}}}),hb=new ee({id:"hwb",name:"HWB",coords:{h:{refRange:[0,360],type:"angle",name:"Hue"},w:{range:[0,100],name:"Whiteness"},b:{range:[0,100],name:"Blackness"}},base:Kl,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];return[a,i*(100-n)/100,100-i]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];n/=100,i/=100;var o=n+i;if(o>=1){var u=n/o;return[a,0,u*100]}var s=1-i,l=s===0?0:1-n/s;return[a,l*100,s*100]},formats:{hwb:{toGamut:!0,coords:["<number> | <angle>","<percentage>","<percentage>"]}}}),vb=[[.5766690429101305,.1855582379065463,.1882286462349947],[.29734497525053605,.6273635662554661,.07529145849399788],[.02703136138641234,.07068885253582723,.9913375368376388]],gb=[[2.0415879038107465,-.5650069742788596,-.34473135077832956],[-.9692436362808795,1.8759675015077202,.04155505740717557],[.013444280632031142,-.11836239223101838,1.0151749943912054]],Xl=new nt({id:"a98rgb-linear",name:"Linear Adobe® 98 RGB compatible",white:"D65",toXYZ_M:vb,fromXYZ_M:gb}),bb=new nt({id:"a98rgb",name:"Adobe® 98 RGB compatible",base:Xl,toBase:function(t){return t.map(function(r){return Math.pow(Math.abs(r),563/256)*Math.sign(r)})},fromBase:function(t){return t.map(function(r){return Math.pow(Math.abs(r),256/563)*Math.sign(r)})},formats:{color:{id:"a98-rgb"}}}),yb=[[.7977604896723027,.13518583717574031,.0313493495815248],[.2880711282292934,.7118432178101014,8565396060525902e-20],[0,0,.8251046025104601]],Db=[[1.3457989731028281,-.25558010007997534,-.05110628506753401],[-.5446224939028347,1.5082327413132781,.02053603239147973],[0,0,1.2119675456389454]],Zl=new nt({id:"prophoto-linear",name:"Linear ProPhoto",white:"D50",base:Ki,toXYZ_M:yb,fromXYZ_M:Db}),wb=1/512,_b=16/512,xb=new nt({id:"prophoto",name:"ProPhoto",base:Zl,toBase:function(t){return t.map(function(r){return r<_b?r/16:Math.pow(r,1.8)})},fromBase:function(t){return t.map(function(r){return r>=wb?Math.pow(r,1/1.8):16*r})},formats:{color:{id:"prophoto-rgb"}}}),Eb=new ee({id:"oklch",name:"OKLCh",coords:{l:{refRange:[0,1],name:"Lightness"},c:{refRange:[0,.4],name:"Chroma"},h:{refRange:[0,360],type:"angle",name:"Hue"}},white:"D65",base:_n,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o,u=2e-4;return Math.abs(n)<u&&Math.abs(i)<u?o=NaN:o=Math.atan2(i,n)*180/Math.PI,[a,Math.sqrt(Math.pow(n,2)+Math.pow(i,2)),fn(o)]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o,u;return isNaN(i)?(o=0,u=0):(o=n*Math.cos(i*Math.PI/180),u=n*Math.sin(i*Math.PI/180)),[a,o,u]},formats:{oklch:{coords:["<number> | <percentage>","<number>","<number> | <angle>"]}}}),Jl=203,Ql=2610/Math.pow(2,14),Ab=Math.pow(2,14)/2610,Fb=2523/Math.pow(2,5),ec=Math.pow(2,5)/2523,tc=3424/Math.pow(2,12),rc=2413/Math.pow(2,7),ac=2392/Math.pow(2,7),Cb=new nt({id:"rec2100pq",name:"REC.2100-PQ",base:hn,toBase:function(t){return t.map(function(r){var a=Math.pow(Math.max(Math.pow(r,ec)-tc,0)/(rc-ac*Math.pow(r,ec)),Ab);return a*1e4/Jl})},fromBase:function(t){return t.map(function(r){var a=Math.max(r*Jl/1e4,0),n=tc+rc*Math.pow(a,Ql),i=1+ac*Math.pow(a,Ql);return Math.pow(n/i,Fb)})},formats:{color:{id:"rec2100-pq"}}}),nc=.17883277,ic=.28466892,oc=.55991073,lo=3.7743,Rb=new nt({id:"rec2100hlg",cssid:"rec2100-hlg",name:"REC.2100-HLG",referred:"scene",base:hn,toBase:function(t){return t.map(function(r){return r<=.5?Math.pow(r,2)/3*lo:Math.exp((r-oc)/nc+ic)/12*lo})},fromBase:function(t){return t.map(function(r){return r/=lo,r<=1/12?Math.sqrt(3*r):nc*Math.log(12*r-ic)+oc})},formats:{color:{id:"rec2100-hlg"}}}),uc={};rr.add("chromatic-adaptation-start",function(e){e.options.method&&(e.M=sc(e.W1,e.W2,e.options.method))}),rr.add("chromatic-adaptation-end",function(e){e.M||(e.M=sc(e.W1,e.W2,e.options.method))});function xn(e){var t=e.id;e.toCone_M,e.fromCone_M,uc[t]=arguments[0]}function sc(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"Bradford",a=uc[r],n=Ne(a.toCone_M,e),i=H(n,3),o=i[0],u=i[1],s=i[2],l=Ne(a.toCone_M,t),c=H(l,3),d=c[0],f=c[1],p=c[2],m=[[d/o,0,0],[0,f/u,0],[0,0,p/s]],h=Ne(m,a.toCone_M),v=Ne(a.fromCone_M,h);return v}xn({id:"von Kries",toCone_M:[[.40024,.7076,-.08081],[-.2263,1.16532,.0457],[0,0,.91822]],fromCone_M:[[1.8599364,-1.1293816,.2198974],[.3611914,.6388125,-64e-7],[0,0,1.0890636]]}),xn({id:"Bradford",toCone_M:[[.8951,.2664,-.1614],[-.7502,1.7135,.0367],[.0389,-.0685,1.0296]],fromCone_M:[[.9869929,-.1470543,.1599627],[.4323053,.5183603,.0492912],[-.0085287,.0400428,.9684867]]}),xn({id:"CAT02",toCone_M:[[.7328,.4296,-.1624],[-.7036,1.6975,.0061],[.003,.0136,.9834]],fromCone_M:[[1.0961238,-.278869,.1827452],[.454369,.4735332,.0720978],[-.0096276,-.005698,1.0153256]]}),xn({id:"CAT16",toCone_M:[[.401288,.650173,-.051461],[-.250268,1.204414,.045854],[-.002079,.048952,.953127]],fromCone_M:[[1.862067855087233,-1.011254630531685,.1491867754444518],[.3875265432361372,.6214474419314753,-.008973985167612518],[-.01584149884933386,-.03412293802851557,1.04996443687785]]}),Object.assign(Ct,{A:[1.0985,1,.35585],C:[.98074,1,1.18232],D55:[.95682,1,.92149],D75:[.94972,1,1.22638],E:[1,1,1],F2:[.99186,1,.67393],F7:[.95041,1,1.08747],F11:[1.00962,1,.6435]}),Ct.ACES=[.32168/.33767,1,(1-.32168-.33767)/.33767];var Tb=[[.6624541811085053,.13400420645643313,.1561876870049078],[.27222871678091454,.6740817658111484,.05368951740793705],[-.005574649490394108,.004060733528982826,1.0103391003129971]],Sb=[[1.6410233796943257,-.32480329418479,-.23642469523761225],[-.6636628587229829,1.6153315916573379,.016756347685530137],[.011721894328375376,-.008284441996237409,.9883948585390215]],lc=new nt({id:"acescg",name:"ACEScg",coords:{r:{range:[0,65504],name:"Red"},g:{range:[0,65504],name:"Green"},b:{range:[0,65504],name:"Blue"}},referred:"scene",white:Ct.ACES,toXYZ_M:Tb,fromXYZ_M:Sb,formats:{color:{}}}),En=Math.pow(2,-16),co=-.35828683,An=(Math.log2(65504)+9.72)/17.52,kb=new nt({id:"acescc",name:"ACEScc",coords:{r:{range:[co,An],name:"Red"},g:{range:[co,An],name:"Green"},b:{range:[co,An],name:"Blue"}},referred:"scene",base:lc,toBase:function(t){var r=-.3013698630136986;return t.map(function(a){return a<=r?(Math.pow(2,a*17.52-9.72)-En)*2:a<An?Math.pow(2,a*17.52-9.72):65504})},fromBase:function(t){return t.map(function(r){return r<=0?(Math.log2(En)+9.72)/17.52:r<En?(Math.log2(En+r*.5)+9.72)/17.52:(Math.log2(r)+9.72)/17.52})},formats:{color:{}}}),cc=Object.freeze({__proto__:null,XYZ_D65:mt,XYZ_D50:Ki,XYZ_ABS_D65:ao,Lab_D65:to,Lab:ot,LCH:ca,sRGB_Linear:yl,sRGB:pa,HSL:Yl,HWB:hb,HSV:Kl,P3_Linear:bl,P3:xl,A98RGB_Linear:Xl,A98RGB:bb,ProPhoto_Linear:Zl,ProPhoto:xb,REC_2020_Linear:hn,REC_2020:gl,OKLab:_n,OKLCH:Eb,Jzazbz:jl,JzCzHz:io,ICTCP:oo,REC_2100_PQ:Cb,REC_2100_HLG:Rb,ACEScg:lc,ACEScc:kb}),Ee=(G=new WeakMap,(function(){function e(){var t=this;wt(this,e),Zt(this,G,void 0);for(var r,a=arguments.length,n=new Array(a),i=0;i<a;i++)n[i]=arguments[i];n.length===1&&(r=be(n[0]));var o,u,s;r?(o=r.space||r.spaceId,u=r.coords,s=r.alpha):(o=n[0],u=n[1],s=n[2]),rt(G,this,ee.get(o)),this.coords=u?u.slice():[0,0,0],this.alpha=s<1?s:1;for(var l=0;l<this.coords.length;l++)this.coords[l]==="NaN"&&(this.coords[l]=NaN);var c=function(p){Object.defineProperty(t,p,{get:function(){return t.get(p)},set:function(h){return t.set(p,h)}})};for(var d in Dt(G,this).coords)c(d)}return _t(e,[{key:"space",get:function(){return Dt(G,this)}},{key:"spaceId",get:function(){return Dt(G,this).id}},{key:"clone",value:function(){return new Ee(this.space,this.coords,this.alpha)}},{key:"toJSON",value:function(){return{spaceId:this.spaceId,coords:this.coords,alpha:this.alpha}}},{key:"display",value:function(){for(var r=arguments.length,a=new Array(r),n=0;n<r;n++)a[n]=arguments[n];var i=vg.apply(void 0,[this].concat(a));return i.color=new Ee(i.color),i}}],[{key:"get",value:function(r){if(r instanceof Ee)return r;for(var a=arguments.length,n=new Array(a>1?a-1:0),i=1;i<a;i++)n[i-1]=arguments[i];return os(Ee,[r].concat(n))}},{key:"defineFunction",value:function(r,a){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:a,i=n.instance,o=i===void 0?!0:i,u=n.returns,s=function(){var c=a.apply(void 0,arguments);if(u==="color")c=Ee.get(c);else if(u==="function<color>"){var d=c;c=function(){var p=d.apply(void 0,arguments);return Ee.get(p)},Object.assign(c,d)}else u==="array<color>"&&(c=c.map(function(f){return Ee.get(f)}));return c};r in Ee||(Ee[r]=s),o&&(Ee.prototype[r]=function(){for(var l=arguments.length,c=new Array(l),d=0;d<l;d++)c[d]=arguments[d];return s.apply(void 0,[this].concat(c))})}},{key:"defineFunctions",value:function(r){for(var a in r)Ee.defineFunction(a,r[a],r[a])}},{key:"extend",value:function(r){if(r.register)r.register(Ee);else for(var a in r)Ee.defineFunction(a,r[a])}}])})());Ee.defineFunctions({get:ht,getAll:la,set:ar,setAll:fl,to:vt,equals:gg,inGamut:da,toGamut:nr,distance:Al,toString:mn}),Object.assign(Ee,{util:eg,hooks:rr,WHITES:Ct,Space:ee,spaces:ee.registry,parse:dl,defaults:Ot});for(var fo=0,dc=Object.keys(cc);fo<dc.length;fo++){var Ob=dc[fo];ee.register(cc[Ob])}for(var fc in ee.registry)po(fc,ee.registry[fc]);rr.add("colorspace-init-end",function(e){var t;po(e.id,e),(t=e.aliases)===null||t===void 0||t.forEach(function(r){po(r,e)})});function po(e,t){Object.keys(t.coords),Object.values(t.coords).map(function(a){return a.name});var r=e.replace(/-/g,"_");Object.defineProperty(Ee.prototype,r,{get:function(){var n=this,i=this.getAll(e);return typeof Proxy>"u"?i:new Proxy(i,{has:function(u,s){try{return ee.resolveCoord([t,s]),!0}catch{}return Reflect.has(u,s)},get:function(u,s,l){if(s&&M(s)!=="symbol"&&!(s in u)){var c=ee.resolveCoord([t,s]),d=c.index;if(d>=0)return u[d]}return Reflect.get(u,s,l)},set:function(u,s,l,c){if(s&&M(s)!=="symbol"&&!(s in u)||s>=0){var d=ee.resolveCoord([t,s]),f=d.index;if(f>=0)return u[f]=l,n.setAll(e,u),!0}return Reflect.set(u,s,l,c)}})},set:function(n){this.setAll(e,n)},configurable:!0,enumerable:!0})}Ee.extend(uo),Ee.extend({deltaE:ma}),Ee.extend(fb),Ee.extend({contrast:Bg}),Ee.extend(qg),Ee.extend(yg),Ee.extend(mb),Ee.extend(bn);var pc=kt(Bs());er.default.templateSettings.strip=!1,x._memoizedFns=[];function Mb(e){var t=(0,il.default)(e);return x._memoizedFns.push(t),t}var Re=Mb,Pb=Re(function(e){return e!=null&&e.createElement?e.createElement("A").localName==="A":!1}),Fn=Pb;function mo(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!t)return"";var a=t.getRootNode&&t.getRootNode()||N;if(a.nodeType!==11)return e(t,r,a);for(var n=[];a.nodeType===11;){if(!a.host)return"";n.unshift({elm:t,doc:a}),t=a.host,a=t.getRootNode()}return n.unshift({elm:t,doc:a}),n.map(function(i){return e(i.elm,r,i.doc)})}var Ib=["class","style","id","selected","checked","disabled","tabindex","aria-checked","aria-selected","aria-invalid","aria-activedescendant","aria-busy","aria-disabled","aria-expanded","aria-grabbed","aria-pressed","aria-valuenow","xmlns"],Nb=31,Bb=/([\\"])/g,Lb=/(\r\n|\r|\n)/g;function ho(e){return e.replace(Bb,"\\$1").replace(Lb,"\\a ")}function mc(e,t){var r=t.name,a;if(r.indexOf("href")!==-1||r.indexOf("src")!==-1){var n=rl(e.getAttribute(r));n?a=Oe(t.name)+'$="'+ho(n)+'"':a=Oe(t.name)+'="'+ho(e.getAttribute(r))+'"'}else a=Oe(r)+'="'+ho(t.value)+'"';return a}function vo(e,t){return e.count<t.count?-1:e.count===t.count?0:1}function hc(e){return!Ib.includes(e.name)&&e.name.indexOf(":")===-1&&(!e.value||e.value.length<Nb)}function Cn(e){var t={classes:{},tags:{},attributes:{}};e=Array.isArray(e)?e:[e];for(var r=e.slice(),a=[],n=function(){var o=r.pop(),u=o.actualNode;if(u.querySelectorAll){var s=u.nodeName;t.tags[s]?t.tags[s]++:t.tags[s]=1,u.classList&&Array.from(u.classList).forEach(function(l){var c=Oe(l);t.classes[c]?t.classes[c]++:t.classes[c]=1}),u.hasAttributes()&&Array.from(ua(u)).filter(hc).forEach(function(l){var c=mc(u,l);c&&(t.attributes[c]?t.attributes[c]++:t.attributes[c]=1)})}for(o.children.length&&(a.push(r),r=o.children.slice());!r.length&&a.length;)r=a.pop()};r.length;)n();return t}function qb(e,t){var r=[],a=t.classes,n=t.tags;return e.classList&&Array.from(e.classList).forEach(function(i){var o=Oe(i);a[o]<n[e.nodeName]&&r.push({name:o,count:a[o],species:"class"})}),r.sort(vo)}function jb(e,t){var r=e.parentNode&&Array.from(e.parentNode.children||"")||[],a=r.find(function(i){return i!==e&&kr(i,t)});if(a){var n=1+r.indexOf(e);return":nth-child("+n+")"}else return""}function $b(e){if(e.getAttribute("id")){var t=e.getRootNode&&e.getRootNode()||N,r="#"+Oe(e.getAttribute("id")||"");if(!r.match(/player_uid_/)&&t.querySelectorAll(r).length===1)return r}}function vc(e){var t=Fn(N);return Oe(t?e.localName:e.nodeName.toLowerCase())}function zb(e,t){var r=[],a=t.attributes,n=t.tags;return e.hasAttributes()&&Array.from(ua(e)).filter(hc).forEach(function(i){var o=mc(e,i);o&&a[o]<n[e.nodeName]&&r.push({name:o,count:a[o],species:"attribute"})}),r.sort(vo)}function Vb(e,t){var r="",a,n=qb(e,t),i=zb(e,t);return n.length&&n[0].count===1?a=[n[0]]:i.length&&i[0].count===1?(a=[i[0]],r=vc(e)):(a=n.concat(i),a.sort(vo),a=a.slice(0,3),a.some(function(o){return o.species==="class"})?a.sort(function(o,u){return o.species!==u.species&&o.species==="class"?-1:o.species===u.species?0:1}):r=vc(e)),r+=a.reduce(function(o,u){switch(u.species){case"class":return o+"."+u.name;case"attribute":return o+"["+u.name+"]"}return o},"")}function Hb(e,t,r){if(!x._selectorData)throw new Error("Expect axe._selectorData to be set up");var a=t.toRoot,n=a===void 0?!1:a,i,o;do{var u=$b(e);u||(u=Vb(e,x._selectorData),u+=jb(e,u)),i?i=u+" > "+i:i=u,!o||o.length>se.selectorSimilarFilterLimit?o=Ub(r,i):o=o.filter(function(s){return kr(s,i)}),e=e.parentElement}while((o.length>1||n)&&e&&e.nodeType!==11);return o.length===1?i:i.indexOf(" > ")!==-1?":root"+i.substring(i.indexOf(" > ")):":root"}function Gb(e,t){return mo(Hb,e,t)}var go=Re(Gb),Ub=Re(function(e,t){return Array.from(e.querySelectorAll(t))});function gc(e){var t=e.nodeName.toLowerCase(),r=e.parentElement,a=e.parentNode,n="";if(t!=="head"&&t!=="body"&&a?.children.length>1){var i=Array.prototype.indexOf.call(a.children,e)+1;n=":nth-child(".concat(i,")")}return r?gc(r)+" > "+t+n:t+n}function Rn(e,t){return mo(gc,e,t)}function bc(e,t){var r,a;if(!e)return[];if(!t&&e.nodeType===9)return t=[{str:"html"}],t;if(t=t||[],e.parentNode&&e.parentNode!==e&&(t=bc(e.parentNode,t)),e.previousSibling){a=1,r=e.previousSibling;do r.nodeType===1&&r.nodeName===e.nodeName&&a++,r=r.previousSibling;while(r);a===1&&(a=null)}else if(e.nextSibling){r=e.nextSibling;do r.nodeType===1&&r.nodeName===e.nodeName?(a=1,r=null):(a=null,r=r.previousSibling);while(r)}if(e.nodeType===1){var n={};n.str=e.nodeName.toLowerCase();var i=e.getAttribute&&Oe(e.getAttribute("id"));i&&e.ownerDocument.querySelectorAll("#"+i).length===1&&(n.id=e.getAttribute("id")),a>1&&(n.count=a),t.push(n)}return t}function Wb(e){return e.reduce(function(t,r){return r.id?"//".concat(r.str,"[@id='").concat(r.id,"']"):t+"/".concat(r.str)+(r.count>0?"[".concat(r.count,"]"):"")},"")}function Yb(e){var t=bc(e);return Wb(t)}var yc=Yb,va={},Kb={set:function(t,r){Xb(t),va[t]=r},get:function(t,r){if(Zb(r),t in va)return va[t];if(typeof r=="function"){var a=r();return he(a!==void 0,"Cache creator function should not return undefined"),this.set(t,a),va[t]}},clear:function(){va={}}};function Xb(e){he(typeof e=="string","key must be a string, "+M(e)+" given"),he(e!=="","key must not be empty")}function Zb(e){he(typeof e=="function"||typeof e>"u","creator must be a function or undefined, "+M(e)+" given")}var ue=Kb;function Jb(e,t){var r=t||e;return ue.get("nodeMap")?ue.get("nodeMap").get(r):null}var ce=Jb,bo={};xt(bo,{createGrid:function(){return Da},findElmsInContext:function(){return Dc},findNearbyElms:function(){return Nn},findUp:function(){return Ir},findUpVirtual:function(){return Pr},focusDisabled:function(){return Ro},getComposedParent:function(){return Ge},getElementByReference:function(){return So},getElementCoordinates:function(){return wo},getElementStack:function(){return Qc},getModalDialog:function(){return Yc},getNodeGrid:function(){return In},getOverflowHiddenAncestors:function(){return ba},getRootNode:function(){return Xe},getScrollOffset:function(){return Ic},getTabbableElements:function(){return ed},getTargetRects:function(){return Ln},getTargetSize:function(){return td},getTextElementStack:function(){return Yo},getViewportSize:function(){return Tn},getVisibleChildTextRects:function(){return Wo},hasContent:function(){return Hn},hasContentVirtual:function(){return Ra},hasLangText:function(){return Zo},idrefs:function(){return Mt},insertedIntoFocusOrder:function(){return Hd},isCurrentPageLink:function(){return To},isFocusable:function(){return Be},isHTML5:function(){return Wd},isHiddenForEveryone:function(){return or},isHiddenWithCSS:function(){return A2},isInTabOrder:function(){return gt},isInTextBlock:function(){return Jo},isInert:function(){return Bn},isModalOpen:function(){return Ta},isMultiline:function(){return Xd},isNativelyFocusable:function(){return Mo},isNode:function(){return M2},isOffscreen:function(){return Sn},isOpaque:function(){return V2},isSkipLink:function(){return eu},isVisible:function(){return K2},isVisibleOnScreen:function(){return ut},isVisibleToScreenReaders:function(){return Te},isVisualContent:function(){return Ko},reduceToElementsBelowFloating:function(){return Zd},shadowElementsFromPoint:function(){return J2},urlPropsFromAttribute:function(){return nD},visuallyContains:function(){return Jd},visuallyOverlaps:function(){return tu},visuallySort:function(){return ko}});function Qb(e){var t=e.getRootNode&&e.getRootNode()||N;return t===e&&(t=N),t}var ga=Qb,Xe=ga;function ey(e){var t=e.context,r=e.value,a=e.attr,n=e.elm,i=n===void 0?"":n,o,u=Oe(r);return t.nodeType===9||t.nodeType===11?o=t:o=Xe(t),Array.from(o.querySelectorAll(i+"["+a+"="+u+"]"))}var Dc=ey;function ty(e,t){var r;if(r=e.actualNode,!e.shadowId&&typeof e.actualNode.closest=="function"){var a=e.actualNode.closest(t);return a||null}do r=r.assignedSlot?r.assignedSlot:r.parentNode,r&&r.nodeType===11&&(r=r.host);while(r&&!kr(r,t)&&r!==N.documentElement);return!r||!kr(r,t)?null:r}var Pr=ty;function ry(e,t){return Pr(ce(e),t)}var Ir=ry;function yo(e,t){return(e.left|0)<(t.right|0)&&(e.right|0)>(t.left|0)&&(e.top|0)<(t.bottom|0)&&(e.bottom|0)>(t.top|0)}var wc=Re(function(t){var r=[];if(!t)return r;var a=t.getComputedStylePropertyValue("overflow");return a==="hidden"&&r.push(t),r.concat(wc(t.parent))}),ba=wc,ay=/rect\s*\(([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px\s*\)/,ny=/(\w+)\((\d+)/;function _c(e){return["style","script","noscript","template"].includes(e.props.nodeName)}function xc(e){return e.props.nodeName==="area"?!1:e.getComputedStylePropertyValue("display")==="none"}function Ec(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.isAncestor;return!r&&["hidden","collapse"].includes(e.getComputedStylePropertyValue("visibility"))}function Ac(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.isAncestor;return!!r&&e.getComputedStylePropertyValue("content-visibility")==="hidden"}function Fc(e){return e.attr("aria-hidden")==="true"}function Cc(e){return e.getComputedStylePropertyValue("opacity")==="0"}function Rc(e){var t=Kt(e.actualNode),r=parseInt(e.getComputedStylePropertyValue("height")),a=parseInt(e.getComputedStylePropertyValue("width"));return!!t&&(r===0||a===0)}function Tc(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.isAncestor;if(r)return!1;var a=e.getComputedStylePropertyValue("position");if(a==="fixed")return!1;var n=ba(e);if(!n.length)return!1;var i=e.boundingClientRect;return n.some(function(o){if(a==="absolute"&&!iy(e,o)&&o.getComputedStylePropertyValue("position")==="static")return!1;var u=o.boundingClientRect;return u.width<2||u.height<2?!0:!yo(i,u)})}function Sc(e){var t=e.getComputedStylePropertyValue("clip").match(ay),r=e.getComputedStylePropertyValue("clip-path").match(ny);if(t&&t.length===5){var a=e.getComputedStylePropertyValue("position");if(["fixed","absolute"].includes(a))return t[3]-t[1]<=0&&t[2]-t[4]<=0}if(r){var n=r[1],i=parseInt(r[2],10);switch(n){case"inset":return i>=50;case"circle":return i===0}}return!1}function Do(e,t){var r=lt(e,"map");if(!r)return!0;var a=r.attr("name");if(!a)return!0;var n=ga(e.actualNode);if(!n||n.nodeType!==9)return!0;var i=dt(x._tree,'img[usemap="#'.concat(Oe(a),'"]'));return!i||!i.length?!0:i.some(function(o){return!t(o)})}function kc(e){var t;if(((t=e.parent)===null||t===void 0?void 0:t.props.nodeName)!=="details")return!1;if(e.props.nodeName==="summary"){var r=e.parent.children.find(function(a){return a.props.nodeName==="summary"});if(r===e)return!1}return!e.parent.hasAttr("open")}function iy(e,t){for(var r=e.parent;r&&r!==t;){if(["relative","sticky"].includes(r.getComputedStylePropertyValue("position")))return!0;r=r.parent}return!1}var oy=[xc,Ec,Ac,kc];function or(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.skipAncestors,a=t.isAncestor,n=a===void 0?!1:a;return e=ye(e).vNode,r?Oc(e,n):Mc(e,n)}var Oc=Re(function(t,r){return _c(t)?!0:t.actualNode?!!(oy.some(function(a){return a(t,{isAncestor:r})})||!t.actualNode.isConnected):!1}),Mc=Re(function(t,r){return Oc(t,r)?!0:t.parent?Mc(t.parent,!0):!1});function Pc(e){if(e.assignedSlot)return Pc(e.assignedSlot);if(e.parentNode){var t=e.parentNode;if(t.nodeType===1)return t;if(t.host)return t.host}return null}var Ge=Pc;function uy(e){if(!e.nodeType&&e.document&&(e=e.document),e.nodeType===9){var t=e.documentElement,r=e.body;return{left:t&&t.scrollLeft||r&&r.scrollLeft||0,top:t&&t.scrollTop||r&&r.scrollTop||0}}return{left:e.scrollLeft,top:e.scrollTop}}var Ic=uy;function sy(e){var t=Ic(N),r=t.left,a=t.top,n=e.getBoundingClientRect();return{top:n.top+a,right:n.right+r,bottom:n.bottom+a,left:n.left+r,width:n.right-n.left,height:n.bottom-n.top}}var wo=sy;function ly(e){var t=e.document,r=t.documentElement;if(e.innerWidth)return{width:e.innerWidth,height:e.innerHeight};if(r)return{width:r.clientWidth,height:r.clientHeight};var a=t.body;return{width:a.clientWidth,height:a.clientHeight}}var Tn=ly;function cy(e,t){for(e=Ge(e);e&&e.nodeName.toLowerCase()!=="html";){if(e.scrollTop&&(t+=e.scrollTop,t>=0))return!1;e=Ge(e)}return!0}function dy(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.isAncestor;if(r)return!1;var a=ye(e),n=a.domNode;if(n){var i,o=N.documentElement,u=E.getComputedStyle(n),s=E.getComputedStyle(N.body||o).getPropertyValue("direction"),l=wo(n);if(l.bottom<0&&(cy(n,l.bottom)||u.position==="absolute"))return!0;if(l.left===0&&l.right===0)return!1;if(s==="ltr"){if(l.right<=0)return!0}else if(i=Math.max(o.scrollWidth,Tn(E).width),l.left>=i)return!0;return!1}}var Sn=dy,fy=[Cc,Rc,Tc,Sc,Sn];function ut(e){return e=ye(e).vNode,_o(e)}var _o=Re(function(t,r){return t.actualNode&&t.props.nodeName==="area"?!Do(t,_o):or(t,{skipAncestors:!0,isAncestor:r})||t.actualNode&&fy.some(function(a){return a(t,{isAncestor:r})})?!1:t.parent?_o(t.parent,!0):!0});function kn(e,t){var r=Math.min(e.top,t.top),a=Math.max(e.right,t.right),n=Math.max(e.bottom,t.bottom),i=Math.min(e.left,t.left);return new E.DOMRect(i,r,a-i,n-r)}function On(e,t){var r=e.x,a=e.y,n=t.top,i=t.right,o=t.bottom,u=t.left;return a>=n&&r<=i&&a<=o&&r>=u}var Nc={};xt(Nc,{getBoundingRect:function(){return kn},getIntersectionRect:function(){return Mn},getOffset:function(){return Lc},getRectCenter:function(){return ya},hasVisualOverlap:function(){return xo},isPointInRect:function(){return On},rectHasMinimumSize:function(){return Gt},rectsOverlap:function(){return yo},splitRects:function(){return Eo}});function Mn(e,t){var r=Math.max(e.left,t.left),a=Math.min(e.right,t.right),n=Math.max(e.top,t.top),i=Math.min(e.bottom,t.bottom);return r>=a||n>=i?null:new E.DOMRect(r,n,a-r,i-n)}function ya(e){var t=e.left,r=e.top,a=e.width,n=e.height;return new E.DOMPoint(t+a/2,r+n/2)}var Bc=.05;function Gt(e,t){var r=t.width,a=t.height;return r+Bc>=e&&a+Bc>=e}function Lc(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:12,a=Ln(e),n=Ln(t);if(!a.length||!n.length)return null;var i=a.reduce(kn),o=ya(i),u=1/0,s=xe(n),l;try{for(s.s();!(l=s.n()).done;){var c=l.value;if(On(o,c))return 0;var d=py(o,c),f=qc(o,d);u=Math.min(u,f)}}catch(g){s.e(g)}finally{s.f()}var p=td(t);if(Gt(r*2,p))return u;var m=n.reduce(kn),h=ya(m),v=qc(o,h)-r;return Math.max(0,Math.min(u,v))}function py(e,t){var r,a;return e.x<t.left?r=t.left:e.x>t.right?r=t.right:r=e.x,e.y<t.top?a=t.top:e.y>t.bottom?a=t.bottom:a=e.y,{x:r,y:a}}function qc(e,t){return Math.hypot(e.x-t.x,e.y-t.y)}function xo(e,t){var r=e.boundingClientRect,a=t.boundingClientRect;return r.left>=a.right||r.right<=a.left||r.top>=a.bottom||r.bottom<=a.top?!1:ko(e,t)>0}function Eo(e,t){var r=[e],a=xe(t),n;try{var i=function(){var u=n.value;if(r=r.reduce(function(s,l){return s.concat(my(l,u))},[]),r.length>4e3)throw new Error("splitRects: Too many rects")};for(a.s();!(n=a.n()).done;)i()}catch(o){a.e(o)}finally{a.f()}return r}function my(e,t){var r=e.top,a=e.left,n=e.bottom,i=e.right,o=r<t.bottom&&n>t.top,u=a<t.right&&i>t.left,s=[];if(Pn(t.top,r,n)&&u&&s.push({top:r,left:a,bottom:t.top,right:i}),Pn(t.right,a,i)&&o&&s.push({top:r,left:t.right,bottom:n,right:i}),Pn(t.bottom,r,n)&&u&&s.push({top:t.bottom,right:i,bottom:n,left:a}),Pn(t.left,a,i)&&o&&s.push({top:r,left:a,bottom:n,right:t.left}),s.length===0){if(vy(e,t))return[];s.push(e)}return s.map(hy)}var Pn=function(t,r,a){return t>r&&t<a};function hy(e){return new E.DOMRect(e.left,e.top,e.right-e.left,e.bottom-e.top)}function vy(e,t){return e.top>=t.top&&e.left>=t.left&&e.bottom<=t.bottom&&e.right<=t.right}var jc=0,gy=.1,$c=.2,zc=.3,Ao=0;function Da(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:N.body,t=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null;if(ue.get("gridCreated")&&!r)return se.gridSize;if(ue.set("gridCreated",!0),!r){var a=ce(N.documentElement);if(a||(a=new Wn(N.documentElement)),Ao=0,a._stackingOrder=[Gc(jc,Ao++,null)],t??(t=new Fo),Uc(t,a),Kt(a.actualNode)){var n=new Fo(a);a._subGrid=n}}for(var i=N.createTreeWalker(e,E.NodeFilter.SHOW_ELEMENT,null,!1),o=r?i.nextNode():i.currentNode;o;){var u=ce(o);u&&u.parent?r=u.parent:o.assignedSlot?r=ce(o.assignedSlot):o.parentElement?r=ce(o.parentElement):o.parentNode&&ce(o.parentNode)&&(r=ce(o.parentNode)),u||(u=new x.VirtualNode(o,r)),u._stackingOrder=by(u,r,Ao++);var s=wy(u,r),l=s?s._subGrid:t;if(Kt(u.actualNode)){var c=new Fo(u);u._subGrid=c}var d=u.boundingClientRect;d.width!==0&&d.height!==0&&ut(o)&&Uc(l,u),ti(o)&&Da(o.shadowRoot,l,u),o=i.nextNode()}return se.gridSize}function Vc(e,t){var r=e.getComputedStylePropertyValue("position"),a=e.getComputedStylePropertyValue("z-index");if(r==="fixed"||r==="sticky"||a!=="auto"&&r!=="static"||e.getComputedStylePropertyValue("opacity")!=="1")return!0;var n=e.getComputedStylePropertyValue("-webkit-transform")||e.getComputedStylePropertyValue("-ms-transform")||e.getComputedStylePropertyValue("transform")||"none";if(n!=="none")return!0;var i=e.getComputedStylePropertyValue("mix-blend-mode");if(i&&i!=="normal")return!0;var o=e.getComputedStylePropertyValue("filter");if(o&&o!=="none")return!0;var u=e.getComputedStylePropertyValue("perspective");if(u&&u!=="none")return!0;var s=e.getComputedStylePropertyValue("clip-path");if(s&&s!=="none")return!0;var l=e.getComputedStylePropertyValue("-webkit-mask")||e.getComputedStylePropertyValue("mask")||"none";if(l!=="none")return!0;var c=e.getComputedStylePropertyValue("-webkit-mask-image")||e.getComputedStylePropertyValue("mask-image")||"none";if(c!=="none")return!0;var d=e.getComputedStylePropertyValue("-webkit-mask-border")||e.getComputedStylePropertyValue("mask-border")||"none";if(d!=="none"||e.getComputedStylePropertyValue("isolation")==="isolate")return!0;var f=e.getComputedStylePropertyValue("will-change");if(f==="transform"||f==="opacity"||e.getComputedStylePropertyValue("-webkit-overflow-scrolling")==="touch")return!0;var p=e.getComputedStylePropertyValue("contain");return!!(["layout","paint","strict","content"].includes(p)||a!=="auto"&&Hc(t))}function Hc(e){if(!e)return!1;var t=e.getComputedStylePropertyValue("display");return["flex","inline-flex","grid","inline-grid"].includes(t)}function by(e,t,r){var a=t._stackingOrder.slice();if(Vc(e,t)){var n=a.findIndex(function(o){var u=o.stackLevel;return[jc,$c,zc].includes(u)});n!==-1&&a.splice(n,a.length-n)}var i=yy(e,t);return i!==null&&a.push(Gc(i,r,e)),a}function Gc(e,t,r){return{stackLevel:e,treeOrder:t,vNode:r}}function yy(e,t){var r=Dy(e,t);return["auto","0"].includes(r)?e.getComputedStylePropertyValue("position")!=="static"?zc:e.getComputedStylePropertyValue("float")!=="none"?$c:Vc(e,t)?gy:null:parseInt(r)}function Dy(e,t){var r=e.getComputedStylePropertyValue("position");return r==="static"&&!Hc(t)?"auto":e.getComputedStylePropertyValue("z-index")}function wy(e,t){for(var r=null,a=[e];t;){if(Kt(t.actualNode)){r=t;break}if(t._scrollRegionParent){r=t._scrollRegionParent;break}a.push(t),t=ce(t.actualNode.parentElement||t.actualNode.parentNode)}return a.forEach(function(n){return n._scrollRegionParent=r}),r}function Uc(e,t){var r=ba(t);t.clientRects.forEach(function(a){var n,i=r.reduce(function(u,s){return u&&Mn(u,s.boundingClientRect)},a);if(i){(n=t._grid)!==null&&n!==void 0||(t._grid=e);var o=e.getGridPositionOfRect(i);e.loopGridPosition(o,function(u){u.includes(t)||u.push(t)})}})}var Fo=(function(){function e(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null;wt(this,e),this.container=t,this.cells=[]}return _t(e,[{key:"toGridIndex",value:function(r){return Math.floor(r/se.gridSize)}},{key:"getCellFromPoint",value:function(r){var a,n,i=r.x,o=r.y;he(this.boundaries,"Grid does not have cells added");var u=this.toGridIndex(o),s=this.toGridIndex(i);he(On({y:u,x:s},this.boundaries),"Element midpoint exceeds the grid bounds");var l=(a=this.cells[u-this.cells._negativeIndex])!==null&&a!==void 0?a:[];return(n=l[s-l._negativeIndex])!==null&&n!==void 0?n:[]}},{key:"loopGridPosition",value:function(r,a){var n=r,i=n.left,o=n.right,u=n.top,s=n.bottom;this.boundaries&&(r=kn(this.boundaries,r)),this.boundaries=r,Wc(this.cells,u,s,function(l,c){Wc(l,i,o,function(d,f){a(d,{row:c,col:f})})})}},{key:"getGridPositionOfRect",value:function(r){var a=r.top,n=r.right,i=r.bottom,o=r.left,u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return a=this.toGridIndex(a-u),n=this.toGridIndex(n+u-1),i=this.toGridIndex(i+u-1),o=this.toGridIndex(o-u),new E.DOMRect(o,a,n-o,i-a)}}])})();function Wc(e,t,r,a){var n;if((n=e._negativeIndex)!==null&&n!==void 0||(e._negativeIndex=0),t<e._negativeIndex){for(var i=0;i<e._negativeIndex-t;i++)e.splice(0,0,[]);e._negativeIndex=t}for(var o=t-e._negativeIndex,u=r-e._negativeIndex,s=o;s<=u;s++){var l,c;(c=e[l=s])!==null&&c!==void 0||(e[l]=[]),a(e[s],s+e._negativeIndex)}}function In(e){Da();var t=ye(e),r=t.vNode;return r._grid}function Nn(e){var t,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,a=In(e);if(!(a!=null&&(t=a.cells)!==null&&t!==void 0&&t.length))return[];var n=e.boundingClientRect,i=Co(e),o=a.getGridPositionOfRect(n,r),u=[];return a.loopGridPosition(o,function(s){var l=xe(s),c;try{for(l.s();!(c=l.n()).done;){var d=c.value;d&&d!==e&&!u.includes(d)&&i===Co(d)&&u.push(d)}}catch(f){l.e(f)}finally{l.f()}}),u}var Co=Re(function(e){return e?e.getComputedStylePropertyValue("position")==="fixed"?!0:Co(e.parent):!1}),_y=Re(function(){var t;if(!x._tree)return null;var r=qt(x._tree[0],"dialog[open]",function(n){var i=n.boundingClientRect,o=N.elementsFromPoint(i.left+1,i.top+1);return o.includes(n.actualNode)&&ut(n)});if(!r.length)return null;var a=r.find(function(n){var i=n.boundingClientRect,o=N.elementsFromPoint(i.left-10,i.top-10);return o.includes(n.actualNode)});return a||((t=r.find(function(n){var i,o=(i=xy(n))!==null&&i!==void 0?i:{},u=o.vNode,s=o.rect;if(!u)return!1;var l=N.elementsFromPoint(s.left+1,s.top+1);return!l.includes(u.actualNode)}))!==null&&t!==void 0?t:null)}),Yc=_y;function xy(e){Da();var t=x._tree[0]._grid,r=new E.DOMRect(0,0,E.innerWidth,E.innerHeight);if(t)for(var a=0;a<t.cells.length;a++){var n=t.cells[a];if(n)for(var i=0;i<n.length;i++){var o=n[i];if(o)for(var u=0;u<o.length;u++){var s=o[u],l=s.boundingClientRect,c=Mn(l,r);if(s.props.nodeName!=="html"&&s!==e&&s.getComputedStylePropertyValue("pointer-events")!=="none"&&c)return{vNode:s,rect:c}}}}}function Bn(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.skipAncestors,a=t.isAncestor;return r?Kc(e,a):Xc(e,a)}var Kc=Re(function(t,r){if(t.hasAttr("inert"))return!0;if(!r&&t.actualNode){var a=Yc();if(a&&!Yt(a,t))return!0}return!1}),Xc=Re(function(t,r){return Kc(t,r)?!0:t.parent?Xc(t.parent,!0):!1}),Ey=["button","command","fieldset","keygen","optgroup","option","select","textarea","input"];function Ay(e){return Ey.includes(e)}function Fy(e){var t=ye(e),r=t.vNode;if(Ay(r.props.nodeName)&&r.hasAttr("disabled")||Bn(r))return!0;for(var a=r.parent,n=[],i=!1;a&&a.shadowId===r.shadowId&&!i&&(n.push(a),a.props.nodeName!=="legend");){if(a._inDisabledFieldset!==void 0){i=a._inDisabledFieldset;break}a.props.nodeName==="fieldset"&&a.hasAttr("disabled")&&(i=!0),a=a.parent}return n.forEach(function(o){return o._inDisabledFieldset=i}),i?!0:r.props.nodeName!=="area"&&r.actualNode?or(r):!1}var Ro=Fy,Cy=/^\/\#/,Ry=/^#[!/]/;function To(e){var t,r=e.getAttribute("href");if(!r||r==="#")return!1;if(Cy.test(r))return!0;var a=e.hash,n=e.protocol,i=e.hostname,o=e.port,u=e.pathname;if(Ry.test(a))return!1;if(r.charAt(0)==="#")return!0;if(typeof((t=E.location)===null||t===void 0?void 0:t.origin)!="string"||E.location.origin.indexOf("://")===-1)return null;var s=E.location.origin+E.location.pathname,l;return i?l="".concat(n,"//").concat(i).concat(o?":".concat(o):""):l=E.location.origin,u?l+=(u[0]!=="/"?"/":"")+u:l+=E.location.pathname,l===s}function Ty(e,t){var r=e.getAttribute(t);if(!r||t==="href"&&!To(e))return null;r.indexOf("#")!==-1&&(r=decodeURIComponent(r.substr(r.indexOf("#")+1)));var a=N.getElementById(r);return a||(a=N.getElementsByName(r),a.length?a[0]:null)}var So=Ty;function ko(e,t){Da();for(var r=Math.max(e._stackingOrder.length,t._stackingOrder.length),a=0;a<r;a++){if(typeof t._stackingOrder[a]>"u")return-1;if(typeof e._stackingOrder[a]>"u"||t._stackingOrder[a].stackLevel>e._stackingOrder[a].stackLevel)return 1;if(t._stackingOrder[a].stackLevel<e._stackingOrder[a].stackLevel)return-1;if(t._stackingOrder[a].treeOrder!==e._stackingOrder[a].treeOrder)return t._stackingOrder[a].treeOrder-e._stackingOrder[a].treeOrder}var n=e.actualNode,i=t.actualNode;if(n.getRootNode&&n.getRootNode()!==i.getRootNode()){for(var o=[];n;)o.push({root:n.getRootNode(),node:n}),n=n.getRootNode().host;for(;i&&!o.find(function(v){return v.root===i.getRootNode()});)i=i.getRootNode().host;if(n=o.find(function(v){return v.root===i.getRootNode()}).node,n===i)return e.actualNode.getRootNode()!==n.getRootNode()?-1:1}var u=E.Node,s=u.DOCUMENT_POSITION_FOLLOWING,l=u.DOCUMENT_POSITION_CONTAINS,c=u.DOCUMENT_POSITION_CONTAINED_BY,d=n.compareDocumentPosition(i),f=d&s?1:-1,p=d&l||d&c,m=Zc(e),h=Zc(t);return m===h||p?f:h-m}function Zc(e){return e.getComputedStylePropertyValue("display").indexOf("inline")!==-1?2:Jc(e)?1:0}function Jc(e){if(!e)return!1;if(e._isFloated!==void 0)return e._isFloated;var t=e.getComputedStylePropertyValue("float");if(t!=="none")return e._isFloated=!0,!0;var r=Jc(e.parent);return e._isFloated=r,r}function Oo(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,a=ya(t),n=e.getCellFromPoint(a)||[],i=Math.floor(a.x),o=Math.floor(a.y),u=n.filter(function(l){return l.clientRects.some(function(c){var d=c.left,f=c.top;return i<Math.floor(d+c.width)&&i>=Math.floor(d)&&o<Math.floor(f+c.height)&&o>=Math.floor(f)})}),s=e.container;return s&&(u=Oo(s._grid,s.boundingClientRect,!0).concat(u)),r||(u=u.sort(ko).map(function(l){return l.actualNode}).concat(N.documentElement).filter(function(l,c,d){return d.indexOf(l)===c})),u}function Sy(e){var t=In(e);if(!t)return[];var r=ce(e).boundingClientRect;return Oo(t,r)}var Qc=Sy;function ky(e){var t=dt(e,"*"),r=t.filter(function(a){var n=a.isFocusable,i=Lt(a.actualNode.getAttribute("tabindex"));return i!==null?n&&i>=0:n});return r}var ed=ky;function Oy(e){var t=ye(e),r=t.vNode;if(!r||Ro(r))return!1;switch(r.props.nodeName){case"a":case"area":if(r.hasAttr("href"))return!0;break;case"input":return r.props.type!=="hidden";case"textarea":case"select":case"summary":case"button":return!0;case"details":return!dt(r,"summary").length}return!1}var Mo=Oy;function Be(e){var t=ye(e),r=t.vNode;if(r.props.nodeType!==1||Ro(r))return!1;if(Mo(r))return!0;var a=Lt(r.attr("tabindex"));return a!==null}function gt(e){var t=ye(e),r=t.vNode;if(r.props.nodeType!==1)return!1;var a=Lt(r.attr("tabindex"));return a<=-1?!1:Be(r)}var Ln=Re(My);function My(e){var t=e.boundingClientRect,r=Nn(e).filter(function(n){return xo(e,n)&&n.getComputedStylePropertyValue("pointer-events")!=="none"&&!Py(e,n)});if(!r.length)return[t];var a=r.map(function(n){var i=n.boundingClientRect;return i});return Eo(t,a)}function Py(e,t){return Yt(e,t)&&!gt(t)}var td=Re(Iy);function Iy(e,t){var r=Ln(e);return Ny(r,t)}function Ny(e,t){return e.reduce(function(r,a){var n=Gt(t,r),i=Gt(t,a);if(n!==i)return n?r:a;var o=r.width*r.height,u=a.width*a.height;return o>u?r:a})}var wa={};xt(wa,{accessibleText:function(){return br},accessibleTextVirtual:function(){return Ue},autocomplete:function(){return _r},formControlValue:function(){return Od},formControlValueMethods:function(){return $o},hasUnicode:function(){return Ho},isHumanInterpretable:function(){return Uo},isIconLigature:function(){return Go},isValidAutocomplete:function(){return qd},label:function(){return f2},labelText:function(){return zo},labelVirtual:function(){return Vn},nativeElementType:function(){return m2},nativeTextAlternative:function(){return Pd},nativeTextMethods:function(){return Md},removeUnicode:function(){return Ca},sanitize:function(){return ae},subtreeText:function(){return ur},titleText:function(){return jn},unsupported:function(){return _d},visible:function(){return jd},visibleTextNodes:function(){return h2},visibleVirtual:function(){return It}});function By(e,t){e=e.actualNode||e;try{var r=Xe(e),a=[],n=e.getAttribute(t);if(n){n=Ze(n);for(var i=0;i<n.length;i++)a.push(r.getElementById(n[i]))}return a}catch{throw new TypeError("Cannot resolve id references for non-DOM nodes")}}var Mt=By;function Ly(e,t){var r=ce(e);return Ue(r,t)}var br=Ly;function qy(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=ye(e),a=r.vNode;if(a?.props.nodeType!==1||a.props.nodeType!==1||t.inLabelledByContext||t.inControlContext||!a.attr("aria-labelledby"))return"";var n=Mt(a,"aria-labelledby").filter(function(i){return i});return n.reduce(function(i,o){var u=br(o,de({inLabelledByContext:!0,startNode:t.startNode||a},t));return i?"".concat(i," ").concat(u):u},"")}var _a=qy;function xa(e){var t=ye(e),r=t.vNode;return r?.props.nodeType!==1?"":r.attr("aria-label")||""}var jy={"aria-activedescendant":{type:"idref",allowEmpty:!0},"aria-atomic":{type:"boolean",global:!0},"aria-autocomplete":{type:"nmtoken",values:["inline","list","both","none"]},"aria-braillelabel":{type:"string",allowEmpty:!0,global:!0},"aria-brailleroledescription":{type:"string",allowEmpty:!0,global:!0},"aria-busy":{type:"boolean",global:!0},"aria-checked":{type:"nmtoken",values:["false","mixed","true","undefined"]},"aria-colcount":{type:"int",minValue:-1},"aria-colindex":{type:"int",minValue:1},"aria-colspan":{type:"int",minValue:1},"aria-controls":{type:"idrefs",allowEmpty:!0,global:!0},"aria-current":{type:"nmtoken",allowEmpty:!0,values:["page","step","location","date","time","true","false"],global:!0},"aria-describedby":{type:"idrefs",allowEmpty:!0,global:!0},"aria-description":{type:"string",allowEmpty:!0,global:!0},"aria-details":{type:"idref",allowEmpty:!0,global:!0},"aria-disabled":{type:"boolean",global:!0},"aria-dropeffect":{type:"nmtokens",values:["copy","execute","link","move","none","popup"],global:!0},"aria-errormessage":{type:"idref",allowEmpty:!0,global:!0},"aria-expanded":{type:"nmtoken",values:["true","false","undefined"]},"aria-flowto":{type:"idrefs",allowEmpty:!0,global:!0},"aria-grabbed":{type:"nmtoken",values:["true","false","undefined"],global:!0},"aria-haspopup":{type:"nmtoken",allowEmpty:!0,values:["true","false","menu","listbox","tree","grid","dialog"],global:!0},"aria-hidden":{type:"nmtoken",values:["true","false","undefined"],global:!0},"aria-invalid":{type:"nmtoken",values:["grammar","false","spelling","true"],global:!0},"aria-keyshortcuts":{type:"string",allowEmpty:!0,global:!0},"aria-label":{type:"string",allowEmpty:!0,global:!0},"aria-labelledby":{type:"idrefs",allowEmpty:!0,global:!0},"aria-level":{type:"int",minValue:1},"aria-live":{type:"nmtoken",values:["assertive","off","polite"],global:!0},"aria-modal":{type:"boolean"},"aria-multiline":{type:"boolean"},"aria-multiselectable":{type:"boolean"},"aria-orientation":{type:"nmtoken",values:["horizontal","undefined","vertical"]},"aria-owns":{type:"idrefs",allowEmpty:!0,global:!0},"aria-placeholder":{type:"string",allowEmpty:!0},"aria-posinset":{type:"int",minValue:1},"aria-pressed":{type:"nmtoken",values:["false","mixed","true","undefined"]},"aria-readonly":{type:"boolean"},"aria-relevant":{type:"nmtokens",values:["additions","all","removals","text"],global:!0},"aria-required":{type:"boolean"},"aria-roledescription":{type:"string",allowEmpty:!0,global:!0},"aria-rowcount":{type:"int",minValue:-1},"aria-rowindex":{type:"int",minValue:1},"aria-rowspan":{type:"int",minValue:0},"aria-selected":{type:"nmtoken",values:["false","true","undefined"]},"aria-setsize":{type:"int",minValue:-1},"aria-sort":{type:"nmtoken",values:["ascending","descending","none","other"]},"aria-valuemax":{type:"decimal"},"aria-valuemin":{type:"decimal"},"aria-valuenow":{type:"decimal"},"aria-valuetext":{type:"string",allowEmpty:!0}},rd=jy,$y={alert:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},alertdialog:{type:"window",allowedAttrs:["aria-expanded","aria-modal"],superclassRole:["alert","dialog"],accessibleNameRequired:!0},application:{type:"landmark",allowedAttrs:["aria-activedescendant","aria-expanded"],superclassRole:["structure"],accessibleNameRequired:!0},article:{type:"structure",allowedAttrs:["aria-posinset","aria-setsize","aria-expanded"],superclassRole:["document"]},banner:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},blockquote:{type:"structure",superclassRole:["section"]},button:{type:"widget",allowedAttrs:["aria-expanded","aria-pressed"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},caption:{type:"structure",requiredContext:["figure","table","grid","treegrid"],superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},cell:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-colindex","aria-colspan","aria-rowindex","aria-rowspan","aria-expanded"],superclassRole:["section"],nameFromContent:!0},checkbox:{type:"widget",requiredAttrs:["aria-checked"],allowedAttrs:["aria-readonly","aria-expanded","aria-required"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},code:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},columnheader:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-sort","aria-colindex","aria-colspan","aria-expanded","aria-readonly","aria-required","aria-rowindex","aria-rowspan","aria-selected"],superclassRole:["cell","gridcell","sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},combobox:{type:"widget",requiredAttrs:["aria-expanded","aria-controls"],allowedAttrs:["aria-owns","aria-autocomplete","aria-readonly","aria-required","aria-activedescendant","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!0},command:{type:"abstract",superclassRole:["widget"]},complementary:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},composite:{type:"abstract",superclassRole:["widget"]},contentinfo:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},comment:{type:"structure",allowedAttrs:["aria-level","aria-posinset","aria-setsize"],superclassRole:["article"]},definition:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},deletion:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},dialog:{type:"window",allowedAttrs:["aria-expanded","aria-modal"],superclassRole:["window"],accessibleNameRequired:!0},directory:{type:"structure",deprecated:!0,allowedAttrs:["aria-expanded"],superclassRole:["list"],nameFromContent:!0},document:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["structure"]},emphasis:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},feed:{type:"structure",requiredOwned:["article"],allowedAttrs:["aria-expanded"],superclassRole:["list"]},figure:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},form:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},grid:{type:"composite",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-level","aria-multiselectable","aria-readonly","aria-activedescendant","aria-colcount","aria-expanded","aria-rowcount"],superclassRole:["composite","table"],accessibleNameRequired:!1},gridcell:{type:"widget",requiredContext:["row"],allowedAttrs:["aria-readonly","aria-required","aria-selected","aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan"],superclassRole:["cell","widget"],nameFromContent:!0},group:{type:"structure",allowedAttrs:["aria-activedescendant","aria-expanded"],superclassRole:["section"]},heading:{type:"structure",requiredAttrs:["aria-level"],allowedAttrs:["aria-expanded"],superclassRole:["sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},img:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],accessibleNameRequired:!0,childrenPresentational:!0},input:{type:"abstract",superclassRole:["widget"]},insertion:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},landmark:{type:"abstract",superclassRole:["section"]},link:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0},list:{type:"structure",requiredOwned:["listitem"],allowedAttrs:["aria-expanded"],superclassRole:["section"]},listbox:{type:"widget",requiredOwned:["group","option"],allowedAttrs:["aria-multiselectable","aria-readonly","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!0},listitem:{type:"structure",requiredContext:["list"],allowedAttrs:["aria-level","aria-posinset","aria-setsize","aria-expanded"],superclassRole:["section"],nameFromContent:!0},log:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},main:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},marquee:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},math:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],childrenPresentational:!0},menu:{type:"composite",requiredOwned:["group","menuitemradio","menuitem","menuitemcheckbox","menu","separator"],allowedAttrs:["aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"]},menubar:{type:"composite",requiredOwned:["group","menuitemradio","menuitem","menuitemcheckbox","menu","separator"],allowedAttrs:["aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["menu"]},menuitem:{type:"widget",requiredContext:["menu","menubar","group"],allowedAttrs:["aria-posinset","aria-setsize","aria-expanded"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0},menuitemcheckbox:{type:"widget",requiredContext:["menu","menubar","group"],requiredAttrs:["aria-checked"],allowedAttrs:["aria-expanded","aria-posinset","aria-readonly","aria-setsize"],superclassRole:["checkbox","menuitem"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},menuitemradio:{type:"widget",requiredContext:["menu","menubar","group"],requiredAttrs:["aria-checked"],allowedAttrs:["aria-expanded","aria-posinset","aria-readonly","aria-setsize"],superclassRole:["menuitemcheckbox","radio"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},meter:{type:"structure",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-valuemax","aria-valuemin","aria-valuetext"],superclassRole:["range"],accessibleNameRequired:!0,childrenPresentational:!0},mark:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},navigation:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},none:{type:"structure",superclassRole:["structure"],prohibitedAttrs:["aria-label","aria-labelledby"]},note:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},option:{type:"widget",requiredContext:["group","listbox"],allowedAttrs:["aria-selected","aria-checked","aria-posinset","aria-setsize"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},paragraph:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},presentation:{type:"structure",superclassRole:["structure"],prohibitedAttrs:["aria-label","aria-labelledby"]},progressbar:{type:"widget",allowedAttrs:["aria-expanded","aria-valuemax","aria-valuemin","aria-valuenow","aria-valuetext"],superclassRole:["range"],accessibleNameRequired:!0,childrenPresentational:!0},radio:{type:"widget",requiredAttrs:["aria-checked"],allowedAttrs:["aria-posinset","aria-setsize","aria-required"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},radiogroup:{type:"composite",allowedAttrs:["aria-readonly","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!1},range:{type:"abstract",superclassRole:["widget"]},region:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"],accessibleNameRequired:!1},roletype:{type:"abstract",superclassRole:[]},row:{type:"structure",requiredContext:["grid","rowgroup","table","treegrid"],requiredOwned:["cell","columnheader","gridcell","rowheader"],allowedAttrs:["aria-colindex","aria-level","aria-rowindex","aria-selected","aria-activedescendant","aria-expanded","aria-posinset","aria-setsize"],superclassRole:["group","widget"],nameFromContent:!0},rowgroup:{type:"structure",requiredContext:["grid","table","treegrid"],requiredOwned:["row"],superclassRole:["structure"],nameFromContent:!0},rowheader:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-sort","aria-colindex","aria-colspan","aria-expanded","aria-readonly","aria-required","aria-rowindex","aria-rowspan","aria-selected"],superclassRole:["cell","gridcell","sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},scrollbar:{type:"widget",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-controls","aria-orientation","aria-valuemax","aria-valuemin","aria-valuetext"],superclassRole:["range"],childrenPresentational:!0},search:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},searchbox:{type:"widget",allowedAttrs:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-placeholder","aria-readonly","aria-required"],superclassRole:["textbox"],accessibleNameRequired:!0},section:{type:"abstract",superclassRole:["structure"],nameFromContent:!0},sectionhead:{type:"abstract",superclassRole:["structure"],nameFromContent:!0},select:{type:"abstract",superclassRole:["composite","group"]},separator:{type:"structure",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-valuemax","aria-valuemin","aria-orientation","aria-valuetext"],superclassRole:["structure","widget"],childrenPresentational:!0},slider:{type:"widget",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-valuemax","aria-valuemin","aria-orientation","aria-readonly","aria-required","aria-valuetext"],superclassRole:["input","range"],accessibleNameRequired:!0,childrenPresentational:!0},spinbutton:{type:"widget",allowedAttrs:["aria-valuemax","aria-valuemin","aria-readonly","aria-required","aria-activedescendant","aria-valuetext","aria-valuenow"],superclassRole:["composite","input","range"],accessibleNameRequired:!0},status:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},strong:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},structure:{type:"abstract",superclassRole:["roletype"]},subscript:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},superscript:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},switch:{type:"widget",requiredAttrs:["aria-checked"],allowedAttrs:["aria-expanded","aria-readonly","aria-required"],superclassRole:["checkbox"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},suggestion:{type:"structure",requiredOwned:["insertion","deletion"],superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},tab:{type:"widget",requiredContext:["tablist"],allowedAttrs:["aria-posinset","aria-selected","aria-setsize","aria-expanded"],superclassRole:["sectionhead","widget"],nameFromContent:!0,childrenPresentational:!0},table:{type:"structure",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-colcount","aria-rowcount","aria-expanded"],superclassRole:["section"],accessibleNameRequired:!1,nameFromContent:!0},tablist:{type:"composite",requiredOwned:["tab"],allowedAttrs:["aria-level","aria-multiselectable","aria-orientation","aria-activedescendant","aria-expanded"],superclassRole:["composite"]},tabpanel:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],accessibleNameRequired:!1},term:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},text:{type:"structure",superclassRole:["section"],nameFromContent:!0},textbox:{type:"widget",allowedAttrs:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-placeholder","aria-readonly","aria-required"],superclassRole:["input"],accessibleNameRequired:!0},time:{type:"structure",superclassRole:["section"]},timer:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["status"]},toolbar:{type:"structure",allowedAttrs:["aria-orientation","aria-activedescendant","aria-expanded"],superclassRole:["group"],accessibleNameRequired:!0},tooltip:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},tree:{type:"composite",requiredOwned:["group","treeitem"],allowedAttrs:["aria-multiselectable","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!1},treegrid:{type:"composite",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-activedescendant","aria-colcount","aria-expanded","aria-level","aria-multiselectable","aria-orientation","aria-readonly","aria-required","aria-rowcount"],superclassRole:["grid","tree"],accessibleNameRequired:!1},treeitem:{type:"widget",requiredContext:["group","tree"],allowedAttrs:["aria-checked","aria-expanded","aria-level","aria-posinset","aria-selected","aria-setsize"],superclassRole:["listitem","option"],accessibleNameRequired:!0,nameFromContent:!0},widget:{type:"abstract",superclassRole:["roletype"]},window:{type:"abstract",superclassRole:["roletype"]}},ad=$y,zy={"doc-abstract":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-acknowledgments":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-afterword":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-appendix":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-backlink":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-biblioentry":{type:"listitem",allowedAttrs:["aria-expanded","aria-level","aria-posinset","aria-setsize"],superclassRole:["listitem"],deprecated:!0},"doc-bibliography":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-biblioref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-chapter":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-colophon":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-conclusion":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-cover":{type:"img",allowedAttrs:["aria-expanded"],superclassRole:["img"]},"doc-credit":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-credits":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-dedication":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-endnote":{type:"listitem",allowedAttrs:["aria-expanded","aria-level","aria-posinset","aria-setsize"],superclassRole:["listitem"],deprecated:!0},"doc-endnotes":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-epigraph":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-epilogue":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-errata":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-example":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-footnote":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-foreword":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-glossary":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-glossref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-index":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]},"doc-introduction":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-noteref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-notice":{type:"note",allowedAttrs:["aria-expanded"],superclassRole:["note"]},"doc-pagebreak":{type:"separator",allowedAttrs:["aria-expanded","aria-orientation"],superclassRole:["separator"],childrenPresentational:!0},"doc-pagelist":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]},"doc-part":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-preface":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-prologue":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-pullquote":{type:"none",superclassRole:["none"]},"doc-qna":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-subtitle":{type:"sectionhead",allowedAttrs:["aria-expanded"],superclassRole:["sectionhead"]},"doc-tip":{type:"note",allowedAttrs:["aria-expanded"],superclassRole:["note"]},"doc-toc":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]}},Vy=zy,Hy={"graphics-document":{type:"structure",superclassRole:["document"],accessibleNameRequired:!0},"graphics-object":{type:"structure",superclassRole:["group"],nameFromContent:!0},"graphics-symbol":{type:"structure",superclassRole:["img"],accessibleNameRequired:!0,childrenPresentational:!0}},Gy=Hy,Uy={a:{variant:{href:{matches:"[href]",contentTypes:["interactive","phrasing","flow"],allowedRoles:["button","checkbox","menuitem","menuitemcheckbox","menuitemradio","option","radio","switch","tab","treeitem","doc-backlink","doc-biblioref","doc-glossref","doc-noteref"],namingMethods:["subtreeText"]},default:{contentTypes:["phrasing","flow"],allowedRoles:!0}}},abbr:{contentTypes:["phrasing","flow"],allowedRoles:!0},address:{contentTypes:["flow"],allowedRoles:!0},area:{variant:{href:{matches:"[href]",allowedRoles:!1},default:{allowedRoles:["button","link"]}},contentTypes:["phrasing","flow"],namingMethods:["altText"]},article:{contentTypes:["sectioning","flow"],allowedRoles:["feed","presentation","none","document","application","main","region"],shadowRoot:!0},aside:{contentTypes:["sectioning","flow"],allowedRoles:["feed","note","presentation","none","region","search","doc-dedication","doc-example","doc-footnote","doc-glossary","doc-pullquote","doc-tip"]},audio:{variant:{controls:{matches:"[controls]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application"],chromiumRole:"Audio"},b:{contentTypes:["phrasing","flow"],allowedRoles:!0},base:{allowedRoles:!1,noAriaAttrs:!0},bdi:{contentTypes:["phrasing","flow"],allowedRoles:!0},bdo:{contentTypes:["phrasing","flow"],allowedRoles:!0},blockquote:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},body:{allowedRoles:!1,shadowRoot:!0},br:{contentTypes:["phrasing","flow"],allowedRoles:["presentation","none"],namingMethods:["titleText","singleSpace"]},button:{contentTypes:["interactive","phrasing","flow"],allowedRoles:["checkbox","combobox","gridcell","link","menuitem","menuitemcheckbox","menuitemradio","option","radio","separator","slider","switch","tab","treeitem"],namingMethods:["subtreeText"]},canvas:{allowedRoles:!0,contentTypes:["embedded","phrasing","flow"],chromiumRole:"Canvas"},caption:{allowedRoles:!1},cite:{contentTypes:["phrasing","flow"],allowedRoles:!0},code:{contentTypes:["phrasing","flow"],allowedRoles:!0},col:{allowedRoles:!1,noAriaAttrs:!0},colgroup:{allowedRoles:!1,noAriaAttrs:!0},data:{contentTypes:["phrasing","flow"],allowedRoles:!0},datalist:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0,implicitAttrs:{"aria-multiselectable":"false"}},dd:{allowedRoles:!1},del:{contentTypes:["phrasing","flow"],allowedRoles:!0},dfn:{contentTypes:["phrasing","flow"],allowedRoles:!0},details:{contentTypes:["interactive","flow"],allowedRoles:!1},dialog:{contentTypes:["flow"],allowedRoles:["alertdialog"]},div:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},dl:{contentTypes:["flow"],allowedRoles:["group","list","presentation","none"],chromiumRole:"DescriptionList"},dt:{allowedRoles:["listitem"]},em:{contentTypes:["phrasing","flow"],allowedRoles:!0},embed:{contentTypes:["interactive","embedded","phrasing","flow"],allowedRoles:["application","document","img","presentation","none"],chromiumRole:"EmbeddedObject"},fieldset:{contentTypes:["flow"],allowedRoles:["none","presentation","radiogroup"],namingMethods:["fieldsetLegendText"]},figcaption:{allowedRoles:["group","none","presentation"]},figure:{contentTypes:["flow"],allowedRoles:!0,namingMethods:["figureText","titleText"]},footer:{contentTypes:["flow"],allowedRoles:["group","none","presentation","doc-footnote"],shadowRoot:!0},form:{contentTypes:["flow"],allowedRoles:["form","search","none","presentation"]},h1:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"1"}},h2:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"2"}},h3:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"3"}},h4:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"4"}},h5:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"5"}},h6:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"6"}},head:{allowedRoles:!1,noAriaAttrs:!0},header:{contentTypes:["flow"],allowedRoles:["group","none","presentation","doc-footnote"],shadowRoot:!0},hgroup:{contentTypes:["heading","flow"],allowedRoles:!0},hr:{contentTypes:["flow"],allowedRoles:["none","presentation","doc-pagebreak"],namingMethods:["titleText","singleSpace"]},html:{allowedRoles:!1,noAriaAttrs:!0},i:{contentTypes:["phrasing","flow"],allowedRoles:!0},iframe:{contentTypes:["interactive","embedded","phrasing","flow"],allowedRoles:["application","document","img","none","presentation"],chromiumRole:"Iframe"},img:{variant:{nonEmptyAlt:{matches:[{attributes:{alt:"/.+/"}},{hasAccessibleName:!0}],allowedRoles:["button","checkbox","link","math","menuitem","menuitemcheckbox","menuitemradio","meter","option","progressbar","radio","scrollbar","separator","slider","switch","tab","treeitem","doc-cover"]},usemap:{matches:"[usemap]",contentTypes:["interactive","embedded","flow"]},default:{allowedRoles:["presentation","none"],contentTypes:["embedded","flow"]}},namingMethods:["altText"]},input:{variant:{button:{matches:{properties:{type:"button"}},allowedRoles:["checkbox","combobox","link","menuitem","menuitemcheckbox","menuitemradio","option","radio","switch","tab"]},buttonType:{matches:{properties:{type:["button","submit","reset"]}},namingMethods:["valueText","titleText","buttonDefaultText"]},checkboxPressed:{matches:{properties:{type:"checkbox"},attributes:{"aria-pressed":"/.*/"}},allowedRoles:["button","menuitemcheckbox","option","switch"],implicitAttrs:{"aria-checked":"false"}},checkbox:{matches:{properties:{type:"checkbox"},attributes:{"aria-pressed":null}},allowedRoles:["menuitemcheckbox","option","switch"],implicitAttrs:{"aria-checked":"false"}},noRoles:{matches:{properties:{type:["color","date","datetime-local","file","month","number","password","range","reset","submit","time","week"]}},allowedRoles:!1},hidden:{matches:{properties:{type:"hidden"}},contentTypes:["flow"],allowedRoles:!1,noAriaAttrs:!0},image:{matches:{properties:{type:"image"}},allowedRoles:["link","menuitem","menuitemcheckbox","menuitemradio","radio","switch"],namingMethods:["altText","valueText","labelText","titleText","buttonDefaultText"]},radio:{matches:{properties:{type:"radio"}},allowedRoles:["menuitemradio"],implicitAttrs:{"aria-checked":"false"}},textWithList:{matches:{properties:{type:"text"},attributes:{list:"/.*/"}},allowedRoles:!1},default:{contentTypes:["interactive","flow"],allowedRoles:["combobox","searchbox","spinbutton"],implicitAttrs:{"aria-valuenow":""},namingMethods:["labelText","placeholderText"]}}},ins:{contentTypes:["phrasing","flow"],allowedRoles:!0},kbd:{contentTypes:["phrasing","flow"],allowedRoles:!0},label:{contentTypes:["interactive","phrasing","flow"],allowedRoles:!1,chromiumRole:"Label"},legend:{allowedRoles:!1},li:{allowedRoles:["menuitem","menuitemcheckbox","menuitemradio","option","none","presentation","radio","separator","tab","treeitem","doc-biblioentry","doc-endnote"],implicitAttrs:{"aria-setsize":"1","aria-posinset":"1"}},link:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},main:{contentTypes:["flow"],allowedRoles:!1,shadowRoot:!0},map:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},math:{contentTypes:["embedded","phrasing","flow"],allowedRoles:!1},mark:{contentTypes:["phrasing","flow"],allowedRoles:!0},menu:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},meta:{variant:{itemprop:{matches:"[itemprop]",contentTypes:["phrasing","flow"]}},allowedRoles:!1,noAriaAttrs:!0},meter:{contentTypes:["phrasing","flow"],allowedRoles:!1,chromiumRole:"progressbar"},nav:{contentTypes:["sectioning","flow"],allowedRoles:["doc-index","doc-pagelist","doc-toc","menu","menubar","none","presentation","tablist"],shadowRoot:!0},noscript:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},object:{variant:{usemap:{matches:"[usemap]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application","document","img"],chromiumRole:"PluginObject"},ol:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},optgroup:{allowedRoles:!1},option:{allowedRoles:!1,implicitAttrs:{"aria-selected":"false"}},output:{contentTypes:["phrasing","flow"],allowedRoles:!0,namingMethods:["subtreeText"]},p:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},param:{allowedRoles:!1,noAriaAttrs:!0},picture:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},pre:{contentTypes:["flow"],allowedRoles:!0},progress:{contentTypes:["phrasing","flow"],allowedRoles:!1,implicitAttrs:{"aria-valuemax":"100","aria-valuemin":"0","aria-valuenow":"0"}},q:{contentTypes:["phrasing","flow"],allowedRoles:!0},rp:{allowedRoles:!0},rt:{allowedRoles:!0},ruby:{contentTypes:["phrasing","flow"],allowedRoles:!0},s:{contentTypes:["phrasing","flow"],allowedRoles:!0},samp:{contentTypes:["phrasing","flow"],allowedRoles:!0},script:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},search:{contentTypes:["flow"],allowedRoles:["form","group","none","presentation","region","search"]},section:{contentTypes:["sectioning","flow"],allowedRoles:["alert","alertdialog","application","banner","complementary","contentinfo","dialog","document","feed","group","log","main","marquee","navigation","none","note","presentation","search","status","tabpanel","doc-abstract","doc-acknowledgments","doc-afterword","doc-appendix","doc-bibliography","doc-chapter","doc-colophon","doc-conclusion","doc-credit","doc-credits","doc-dedication","doc-endnotes","doc-epigraph","doc-epilogue","doc-errata","doc-example","doc-foreword","doc-glossary","doc-index","doc-introduction","doc-notice","doc-pagelist","doc-part","doc-preface","doc-prologue","doc-pullquote","doc-qna","doc-toc"],shadowRoot:!0},select:{variant:{combobox:{matches:{attributes:{multiple:null,size:[null,"1"]}},allowedRoles:["menu"]},default:{allowedRoles:!1}},contentTypes:["interactive","phrasing","flow"],implicitAttrs:{"aria-valuenow":""},namingMethods:["labelText"]},slot:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},small:{contentTypes:["phrasing","flow"],allowedRoles:!0},source:{allowedRoles:!1,noAriaAttrs:!0},span:{contentTypes:["phrasing","flow"],allowedRoles:!0,shadowRoot:!0},strong:{contentTypes:["phrasing","flow"],allowedRoles:!0},style:{allowedRoles:!1,noAriaAttrs:!0},svg:{contentTypes:["embedded","phrasing","flow"],allowedRoles:!0,chromiumRole:"SVGRoot",namingMethods:["svgTitleText"]},sub:{contentTypes:["phrasing","flow"],allowedRoles:!0},summary:{allowedRoles:!1,namingMethods:["subtreeText"]},sup:{contentTypes:["phrasing","flow"],allowedRoles:!0},table:{contentTypes:["flow"],allowedRoles:!0,namingMethods:["tableCaptionText","tableSummaryText"]},tbody:{allowedRoles:!0},template:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},textarea:{contentTypes:["interactive","phrasing","flow"],allowedRoles:!1,implicitAttrs:{"aria-valuenow":"","aria-multiline":"true"},namingMethods:["labelText","placeholderText"]},tfoot:{allowedRoles:!0},thead:{allowedRoles:!0},time:{contentTypes:["phrasing","flow"],allowedRoles:!0},title:{allowedRoles:!1,noAriaAttrs:!0},td:{allowedRoles:!0},th:{allowedRoles:!0},tr:{allowedRoles:!0},track:{allowedRoles:!1,noAriaAttrs:!0},u:{contentTypes:["phrasing","flow"],allowedRoles:!0},ul:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},var:{contentTypes:["phrasing","flow"],allowedRoles:!0},video:{variant:{controls:{matches:"[controls]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application"],chromiumRole:"video"},wbr:{contentTypes:["phrasing","flow"],allowedRoles:["presentation","none"]}},Wy=Uy,Yy={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},Ky=Yy,nd={ariaAttrs:rd,ariaRoles:de({},ad,Vy,Gy),htmlElms:Wy,cssColors:Ky},Nr=de({},nd);function Xy(e){Object.keys(Nr).forEach(function(t){e[t]&&(Nr[t]=vu(Nr[t],e[t]))})}function Zy(){Object.keys(Nr).forEach(function(e){Nr[e]=nd[e]})}var ve=Nr;function Jy(e){var t=ve.ariaRoles[e];return t?!!t.unsupported:!1}var Po=Jy;function Qy(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.allowAbstract,a=t.flagUnsupported,n=a===void 0?!1:a,i=ve.ariaRoles[e],o=Po(e);return!i||n&&o?!1:r?!0:i.type!=="abstract"}var Ea=Qy;function e0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.fallback,a=t.abstracts,n=t.dpub;if(e=e instanceof He?e:ce(e),e.props.nodeType!==1)return null;var i=(e.attr("role")||"").trim().toLowerCase(),o=r?Ze(i):[i],u=o.find(function(s){return!n&&s.substr(0,4)==="doc-"?!1:Ea(s,{allowAbstract:a})});return u||null}var pe=e0;function t0(e){return Object.keys(ve.htmlElms).filter(function(t){var r=ve.htmlElms[t];return r.contentTypes?r.contentTypes.includes(e):r.variant&&r.variant.default&&r.variant.default.contentTypes?r.variant.default.contentTypes.includes(e):!1})}var Io=t0;function r0(){return ue.get("globalAriaAttrs",function(){return Object.keys(ve.ariaAttrs).filter(function(e){return ve.ariaAttrs[e].global})})}var yr=r0;function a0(e){for(var t=[],r=e.rows,a=0,n=r.length;a<n;a++){var i=r[a].cells;t[a]=t[a]||[];for(var o=0,u=0,s=i.length;u<s;u++)for(var l=0;l<i[u].colSpan;l++){for(var c=i[u].getAttribute("rowspan"),d=parseInt(c)===0||i[u].rowspan===0?r.length:i[u].rowSpan,f=0;f<d;f++){for(t[a+f]=t[a+f]||[];t[a+f][o];)o++;t[a+f][o]=i[u]}o++}}return t}var Ut=Re(a0);function n0(e,t){var r,a;for(t||(t=Ut(Ir(e,"table"))),r=0;r<t.length;r++)if(t[r]&&(a=t[r].indexOf(e),a!==-1))return{x:a,y:r}}var qn=Re(n0);function No(e){var t=ye(e),r=t.vNode,a=t.domNode,n=r.attr("scope"),i=pe(r);if(!["td","th"].includes(r.props.nodeName))throw new TypeError("Expected TD or TH element");if(i==="columnheader")return"col";if(i==="rowheader")return"row";if(n==="col"||n==="row")return n;if(r.props.nodeName!=="th")return!1;if(!r.actualNode)return"auto";var o=Ut(Ir(a,"table")),u=qn(a,o),s=o[u.y].every(function(c){return c.nodeName.toUpperCase()==="TH"});if(s)return"col";var l=o.map(function(c){return c[u.x]}).every(function(c){return c&&c.nodeName.toUpperCase()==="TH"});return l?"row":"auto"}function i0(e){return["col","auto"].indexOf(No(e))!==-1}var Br=i0;function o0(e){return["row","auto"].includes(No(e))}var Lr=o0;function u0(e){return e?e.replace(/\r\n/g,`
9
- `).replace(/\u00A0/g," ").replace(/[\s]{2,}/g," ").trim():""}var ae=u0,id=function(){return ue.get("sectioningContentSelector",function(){return Io("sectioning").map(function(t){return"".concat(t,":not([role])")}).join(", ")+" , [role=article], [role=complementary], [role=navigation], [role=region]"})},od=function(){return ue.get("sectioningContentPlusMainSelector",function(){return id()+" , main:not([role]), [role=main]"})};function Bo(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.checkTitle,a=r===void 0?!1:r;return!!(ae(_a(e))||ae(xa(e))||a&&e?.props.nodeType===1&&ae(e.attr("title")))}var s0={a:function(t){return t.hasAttr("href")?"link":null},area:function(t){return t.hasAttr("href")?"link":null},article:"article",aside:function(t){return lt(t.parent,id())&&!Bo(t,{checkTitle:!0})?null:"complementary"},body:"document",button:"button",datalist:"listbox",dd:"definition",dfn:"term",details:"group",dialog:"dialog",dt:"term",fieldset:"group",figure:"figure",footer:function(t){var r=lt(t,od());return r?null:"contentinfo"},form:function(t){return Bo(t)?"form":null},h1:"heading",h2:"heading",h3:"heading",h4:"heading",h5:"heading",h6:"heading",header:function(t){var r=lt(t,od());return r?null:"banner"},hr:"separator",img:function(t){var r=t.hasAttr("alt")&&!t.attr("alt"),a=yr().find(function(n){return t.hasAttr(n)});return r&&!a&&!Be(t)?"presentation":"img"},input:function(t){var r;if(t.hasAttr("list")){var a=Mt(t.actualNode,"list").filter(function(n){return!!n})[0];r=a&&a.nodeName.toLowerCase()==="datalist"}switch(t.props.type){case"checkbox":return"checkbox";case"number":return"spinbutton";case"radio":return"radio";case"range":return"slider";case"search":return r?"combobox":"searchbox";case"button":case"image":case"reset":case"submit":return"button";case"text":case"tel":case"url":case"email":case"":return r?"combobox":"textbox";default:return"textbox"}},li:"listitem",main:"main",math:"math",menu:"list",meter:"meter",nav:"navigation",ol:"list",optgroup:"group",option:"option",output:"status",progress:"progressbar",search:"search",section:function(t){return Bo(t)?"region":null},select:function(t){return t.hasAttr("multiple")||parseInt(t.attr("size"))>1?"listbox":"combobox"},summary:"button",table:"table",tbody:"rowgroup",td:function(t){var r=lt(t,"table"),a=pe(r);return["grid","treegrid"].includes(a)?"gridcell":"cell"},textarea:"textbox",tfoot:"rowgroup",th:function(t){if(Br(t))return"columnheader";if(Lr(t))return"rowheader"},thead:"rowgroup",tr:"row",ul:"list"},Lo=s0;function l0(e,t){var r=M(t);if(Array.isArray(t)&&typeof e<"u")return t.includes(e);if(r==="function")return!!t(e);if(e!=null){if(t instanceof RegExp)return t.test(e);if(/^\/.*\/$/.test(t)){var a=t.substring(1,t.length-1);return new RegExp(a).test(e)}}return t===e}var Dr=l0;function c0(e,t){return Dr(!!Ue(e),t)}var ud=c0;function d0(e,t){var r=M(t);if(r!=="object"||Array.isArray(t)||t instanceof RegExp)throw new Error("Expect matcher to be an object");return Object.keys(t).every(function(a){return Dr(e(a),t[a])})}var qo=d0;function f0(e,t){return e=ye(e).vNode,qo(function(r){return e.attr(r)},t)}var sd=f0;function ld(e,t){return!!t(e)}function p0(e,t){return Dr(pe(e),t)}var cd=p0;function m0(e,t){return Dr(Pt(e),t)}var dd=m0;function h0(e,t){return e=ye(e).vNode,Dr(e.props.nodeName,t)}var fd=h0;function v0(e,t){return e=ye(e).vNode,qo(function(r){return e.props[r]},t)}var pd=v0;function g0(e,t){return Dr(le(e),t)}var md=g0,hd={hasAccessibleName:ud,attributes:sd,condition:ld,explicitRole:cd,implicitRole:dd,nodeName:fd,properties:pd,semanticRole:md};function vd(e,t){return e=ye(e).vNode,Array.isArray(t)?t.some(function(r){return vd(e,r)}):typeof t=="string"?nu(e,t):Object.keys(t).every(function(r){if(!hd[r])throw new Error('Unknown matcher type "'.concat(r,'"'));var a=hd[r],n=t[r];return a(e,n)})}var gd=vd;function b0(e,t){return gd(e,t)}var st=b0;st.hasAccessibleName=ud,st.attributes=sd,st.condition=ld,st.explicitRole=cd,st.fromDefinition=gd,st.fromFunction=qo,st.fromPrimative=Dr,st.implicitRole=dd,st.nodeName=fd,st.properties=pd,st.semanticRole=md;var Aa=st;function y0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.noMatchAccessibleName,a=r===void 0?!1:r,n=ve.htmlElms[e.props.nodeName];if(!n)return{};if(!n.variant)return n;var i=n.variant,o=qe(n,qp);for(var u in i)if(!(!i.hasOwnProperty(u)||u==="default")){for(var s=i[u],l=s.matches,c=qe(s,jp),d=Array.isArray(l)?l:[l],f=0;f<d.length&&a;f++)if(d[f].hasOwnProperty("hasAccessibleName"))return n;if(Aa(e,l))for(var p in c)c.hasOwnProperty(p)&&(o[p]=c[p])}for(var m in i.default)i.default.hasOwnProperty(m)&&typeof o[m]>"u"&&(o[m]=i.default[m]);return o}var wr=y0;function D0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.chromium,a=e instanceof He?e:ce(e);if(e=a.actualNode,!a)throw new ReferenceError("Cannot get implicit role of a node outside the current scope.");var n=a.props.nodeName,i=Lo[n];if(!i&&r){var o=wr(a),u=o.chromiumRole;return u||null}return typeof i=="function"?i(a):i||null}var Pt=D0,w0={td:["tr"],th:["tr"],tr:["thead","tbody","tfoot","table"],thead:["table"],tbody:["table"],tfoot:["table"],li:["ol","ul"],dt:["dl","div"],dd:["dl","div"],div:["dl"]};function bd(e,t){var r=w0[e.props.nodeName];if(!r)return null;if(!e.parent){if(!e.actualNode)return null;throw new ReferenceError("Cannot determine role presentational inheritance of a required parent outside the current scope.")}if(!r.includes(e.parent.props.nodeName))return null;var a=pe(e.parent,t);return["none","presentation"].includes(a)&&!Dd(e.parent)?a:a?null:bd(e.parent,t)}function yd(e,t){var r=t.chromium,a=qe(t,$p),n=Pt(e,{chromium:r});if(!n)return null;var i=bd(e,a);return i||n}function Dd(e){var t=yr().some(function(r){return e.hasAttr(r)});return t||Be(e)}function _0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.noImplicit,a=qe(t,zp),n=ye(e),i=n.vNode;if(i.props.nodeType!==1)return null;var o=pe(i,a);return o?["presentation","none"].includes(o)&&Dd(i)?r?null:yd(i,a):o:r?null:yd(i,a)}function x0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.noPresentational,a=qe(t,Vp),n=_0(e,a);return r&&["presentation","none"].includes(n)?null:n}var le=x0,E0=["iframe"];function A0(e){var t=ye(e),r=t.vNode;return r.props.nodeType!==1||!e.hasAttr("title")||!st(r,E0)&&["none","presentation"].includes(le(r))?"":r.attr("title")}var jn=A0;function F0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.strict;if(e=e instanceof He?e:ce(e),e.props.nodeType!==1)return!1;var a=le(e),n=ve.ariaRoles[a];return n&&n.nameFromContent?!0:r?!1:!n||["presentation","none"].includes(a)}var wd=F0;function C0(e){var t=e.actualNode,r=e.children;if(!r)throw new Error("getOwnedVirtual requires a virtual node");if(e.hasAttr("aria-owns")){var a=Mt(t,"aria-owns").filter(function(n){return!!n}).map(function(n){return x.utils.getNodeFromTree(n)});return[].concat(re(r),re(a))}return re(r)}var Fa=C0,_d={accessibleNameFromFieldValue:["progressbar"]};function Te(e){return e=ye(e).vNode,jo(e)}var jo=Re(function(t,r){return Fc(t)||Bn(t,{skipAncestors:!0,isAncestor:r})?!1:t.actualNode&&t.props.nodeName==="area"?!Do(t,jo):or(t,{skipAncestors:!0,isAncestor:r})?!1:t.parent?jo(t.parent,!0):!0});function xd(e,t,r){var a=ye(e),n=a.vNode,i=t?Te:ut,o=!e.actualNode||e.actualNode&&i(e),u=n.children.map(function(s){var l=s.props,c=l.nodeType,d=l.nodeValue;if(c===3){if(d&&o)return d}else if(!r)return xd(s,t)}).join("");return ae(u)}var It=xd,R0=["button","checkbox","color","file","hidden","image","password","radio","reset","submit"];function T0(e){e=e instanceof He?e:ce(e);var t=e.props.nodeName;return t==="textarea"||t==="input"&&!R0.includes((e.attr("type")||"").toLowerCase())}var Ed=T0;function S0(e){e=e instanceof He?e:ce(e);var t=e.props.nodeName;return t==="select"}var Ad=S0;function k0(e){var t=pe(e);return t==="textbox"}var Fd=k0;function O0(e){var t=pe(e);return t==="listbox"}var Cd=O0;function M0(e){var t=pe(e);return t==="combobox"}var Rd=M0,P0=["progressbar","scrollbar","slider","spinbutton"];function I0(e){var t=pe(e);return P0.includes(t)}var Td=I0,Sd=["textbox","progressbar","scrollbar","slider","spinbutton","combobox","listbox"],$o={nativeTextboxValue:B0,nativeSelectValue:L0,ariaTextboxValue:q0,ariaListboxValue:kd,ariaComboboxValue:j0,ariaRangeValue:$0};function N0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=e.actualNode,a=_d.accessibleNameFromFieldValue||[],n=le(e);if(t.startNode===e||!Sd.includes(n)||a.includes(n))return"";var i=Object.keys($o).map(function(u){return $o[u]}),o=i.reduce(function(u,s){return u||s(e,t)},"");return t.debug&&gr(o||"{empty-value}",r,t),o}function B0(e){var t=ye(e),r=t.vNode;return Ed(r)&&r.props.value||""}function L0(e){var t=ye(e),r=t.vNode;if(!Ad(r))return"";var a=dt(r,"option"),n=a.filter(function(i){return i.props.selected});return n.length||n.push(a[0]),n.map(function(i){return It(i)}).join(" ")||""}function q0(e){var t=ye(e),r=t.vNode,a=t.domNode;return Fd(r)?!a||a&&!or(a)?It(r,!0):a.textContent:""}function kd(e,t){var r=ye(e),a=r.vNode;if(!Cd(a))return"";var n=Fa(a).filter(function(i){return le(i)==="option"&&i.attr("aria-selected")==="true"});return n.length===0?"":Ue(n[0],t)}function j0(e,t){var r=ye(e),a=r.vNode;if(!Rd(a))return"";var n=Fa(a).filter(function(i){return le(i)==="listbox"})[0];return n?kd(n,t):""}function $0(e){var t=ye(e),r=t.vNode;if(!Td(r)||!r.hasAttr("aria-valuenow"))return"";var a=+r.attr("aria-valuenow");return isNaN(a)?"0":String(a)}var Od=N0;function z0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=Ue.alreadyProcessed;t.startNode=t.startNode||e;var a=t,n=a.strict,i=a.inControlContext,o=a.inLabelledByContext,u=le(e),s=wr(e,{noMatchAccessibleName:!0}),l=s.contentTypes;if(r(e,t)||e.props.nodeType!==1||l!=null&&l.includes("embedded")||Sd.includes(u)||!t.subtreeDescendant&&!t.inLabelledByContext&&!wd(e,{strict:n}))return"";if(!n){var c=!i&&!o;t=de({subtreeDescendant:c},t)}return Fa(e).reduce(function(d,f){return H0(d,f,t)},"")}var V0=Io("phrasing").concat(["#text"]);function H0(e,t,r){var a=t.props.nodeName,n=Ue(t,r);return n?(V0.includes(a)||(n[0]!==" "&&(n+=" "),e&&e[e.length-1]!==" "&&(n=" "+n)),e+n):e}var ur=z0;function G0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=Ue.alreadyProcessed;if(t.inControlContext||t.inLabelledByContext||r(e,t))return"";t.startNode||(t.startNode=e);var a=de({inControlContext:!0},t),n=U0(e),i=lt(e,"label"),o;return i?(o=[].concat(re(n),[i.actualNode]),o.sort(ku)):o=n,o.map(function(u){return br(u,a)}).filter(function(u){return u!==""}).join(" ")}function U0(e){if(!e.attr("id"))return[];if(!e.actualNode)throw new TypeError("Cannot resolve explicit label reference for non-DOM nodes");return Dc({elm:"label",attr:"for",value:e.attr("id"),context:e.actualNode})}var zo=G0,W0={submit:"Submit",image:"Submit",reset:"Reset",button:""},Y0={valueText:function(t){return t.props.value||""},buttonDefaultText:function(t){return W0[t.props.type]||""},tableCaptionText:$n.bind(null,"caption"),figureText:$n.bind(null,"figcaption"),svgTitleText:$n.bind(null,"title"),fieldsetLegendText:$n.bind(null,"legend"),altText:Vo.bind(null,"alt"),tableSummaryText:Vo.bind(null,"summary"),titleText:jn,subtreeText:ur,labelText:zo,singleSpace:function(){return" "},placeholderText:Vo.bind(null,"placeholder")};function Vo(e,t){return t.attr(e)||""}function $n(e,t,r){var a=t.actualNode;e=e.toLowerCase();var n=[e,a.nodeName.toLowerCase()].join(","),i=a.querySelector(n);return!i||i.nodeName.toLowerCase()!==e?"":br(i,r)}var Md=Y0;function Pd(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=e.actualNode;if(e.props.nodeType!==1||["presentation","none"].includes(le(e)))return"";var a=K0(e),n=a.reduce(function(i,o){return i||o(e,t)},"");return t.debug&&x.log(n||"{empty-value}",r,t),n}function K0(e){var t=wr(e,{noMatchAccessibleName:!0}),r=t.namingMethods||[];return r.map(function(a){return Md[a]})}function Id(){return/[\u1D00-\u1D7F\u1D80-\u1DBF\u1DC0-\u1DFF\u20A0-\u20CF\u20D0-\u20FF\u2100-\u214F\u2150-\u218F\u2190-\u21FF\u2200-\u22FF\u2300-\u23FF\u2400-\u243F\u2440-\u245F\u2460-\u24FF\u2500-\u257F\u2580-\u259F\u25A0-\u25FF\u2600-\u26FF\u2700-\u27BF\uE000-\uF8FF]/g}function Nd(){return/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&\xa3\xa2\xa5\xa7\u20ac()*+,\-.\/:;<=>?@\[\]^_`{|}~\xb1]/g}function Bd(){return/[\uDB80-\uDBBF][\uDC00-\uDFFF]/g}function Ld(){return/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD80D[\uDC30-\uDC38]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/g}function X0(e,t){var r=t.emoji,a=t.nonBmp,n=t.punctuations,i=!1;return r&&(i||(i=Ui().test(e))),a&&(i||(i=Id().test(e)||Bd().test(e)||Ld().test(e))),n&&(i||(i=Nd().test(e))),i}var Ho=X0;function Go(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:.15,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:3,a=e.actualNode.nodeValue.trim();if(!ae(a)||Ho(a,{emoji:!0,nonBmp:!0}))return!1;var n=ue.get("canvasContext",function(){return N.createElement("canvas").getContext("2d",{willReadFrequently:!0})}),i=n.canvas,o=ue.get("fonts",function(){return{}}),u=E.getComputedStyle(e.parent.actualNode),s=u.getPropertyValue("font-family");o[s]||(o[s]={occurrences:0,numLigatures:0});var l=o[s];if(l.occurrences>=r){if(l.numLigatures/l.occurrences===1)return!0;if(l.numLigatures===0)return!1}l.occurrences++;var c=30,d="".concat(c,"px ").concat(s);n.font=d;var f=a.charAt(0),p=n.measureText(f).width;if(p===0)return l.numLigatures++,!0;if(p<30){var m=30/p;p*=m,c*=m,d="".concat(c,"px ").concat(s)}i.width=p,i.height=c,n.font=d,n.textAlign="left",n.textBaseline="top",n.fillText(f,0,0);var h=new Uint32Array(n.getImageData(0,0,p,c).data.buffer);if(!h.some(function(C){return C}))return l.numLigatures++,!0;n.clearRect(0,0,p,c),n.fillText(a,0,0);var v=new Uint32Array(n.getImageData(0,0,p,c).data.buffer),g=h.reduce(function(C,T,O){return T===0&&v[O]===0||T!==0&&v[O]!==0?C:++C},0),b=a.split("").reduce(function(C,T){return C+n.measureText(T).width},0),w=n.measureText(a).width,D=g/h.length,_=1-w/b;return D>=t&&_>=t?(l.numLigatures++,!0):!1}function Ue(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(t=e2(e,t),J0(e,t)||Q0(e,t))return"";var r=[_a,xa,Pd,Od,ur,Z0,jn],a=r.reduce(function(n,i){return t.startNode===e&&(n=ae(n)),n!==""?n:i(e,t)},"");return t.debug&&x.log(a||"{empty-value}",e.actualNode,t),a}function Z0(e){return e.props.nodeType!==3?"":e.props.nodeValue}function J0(e,t){return!e||e.props.nodeType!==1||t.includeHidden?!1:!Te(e)}function Q0(e,t){var r,a=t.ignoreIconLigature,n=t.pixelThreshold,i=(r=t.occurrenceThreshold)!==null&&r!==void 0?r:t.occuranceThreshold;return e.props.nodeType!==3||!a?!1:Go(e,n,i)}function e2(e,t){return t.startNode||(t=de({startNode:e},t)),e.props.nodeType===1&&t.inLabelledByContext&&t.includeHidden===void 0&&(t=de({includeHidden:!Te(e)},t)),t}Ue.alreadyProcessed=function(t,r){return r.processed=r.processed||[],r.processed.includes(t)?!0:(r.processed.push(t),!1)};function t2(e,t){var r=t.emoji,a=t.nonBmp,n=t.punctuations;return r&&(e=e.replace(Ui(),"")),a&&(e=e.replace(Id(),"").replace(Bd(),"").replace(Ld(),"")),n&&(e=e.replace(Nd(),"")),e}var Ca=t2;function r2(e){return a2(e)||n2(e)||i2(e)||o2(e)?0:1}function a2(e){return ae(e).length===0}function n2(e){return e.length===1&&e.match(/\D/)}function i2(e){var t=["aa","abc"];return t.includes(e.toLowerCase())}function o2(e){var t=Ca(e,{emoji:!0,nonBmp:!0,punctuations:!0});return!ae(t)}var Uo=r2,_r={stateTerms:["on","off"],standaloneTerms:["name","honorific-prefix","given-name","additional-name","family-name","honorific-suffix","nickname","username","new-password","current-password","organization-title","organization","street-address","address-line1","address-line2","address-line3","address-level4","address-level3","address-level2","address-level1","country","country-name","postal-code","cc-name","cc-given-name","cc-additional-name","cc-family-name","cc-number","cc-exp","cc-exp-month","cc-exp-year","cc-csc","cc-type","transaction-currency","transaction-amount","language","bday","bday-day","bday-month","bday-year","sex","url","photo","one-time-code"],qualifiers:["home","work","mobile","fax","pager"],qualifiedTerms:["tel","tel-country-code","tel-national","tel-area-code","tel-local","tel-local-prefix","tel-local-suffix","tel-extension","email","impp"],locations:["billing","shipping"]};function u2(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.looseTyped,a=r===void 0?!1:r,n=t.stateTerms,i=n===void 0?[]:n,o=t.locations,u=o===void 0?[]:o,s=t.qualifiers,l=s===void 0?[]:s,c=t.standaloneTerms,d=c===void 0?[]:c,f=t.qualifiedTerms,p=f===void 0?[]:f,m=t.ignoredValues,h=m===void 0?[]:m;if(e=e.toLowerCase().trim(),i=i.concat(_r.stateTerms),i.includes(e)||e==="")return!0;l=l.concat(_r.qualifiers),u=u.concat(_r.locations),d=d.concat(_r.standaloneTerms),p=p.concat(_r.qualifiedTerms);var v=e.split(/\s+/g);if(v[v.length-1]==="webauthn"&&(v.pop(),v.length===0)||!a&&(v[0].length>8&&v[0].substr(0,8)==="section-"&&v.shift(),u.includes(v[0])&&v.shift(),l.includes(v[0])&&(v.shift(),d=[]),v.length!==1))return!1;var g=v[v.length-1];if(!h.includes(g))return d.includes(g)||p.includes(g)}var qd=u2;function s2(e){var t,r;return e.attr("aria-labelledby")&&(t=Mt(e.actualNode,"aria-labelledby"),r=t.map(function(a){var n=ce(a);return n?It(n):""}).join(" ").trim(),r)||(r=e.attr("aria-label"),r&&(r=ae(r),r))?r:null}var zn=s2;function l2(e,t,r){return e=ce(e),It(e,t,r)}var jd=l2;function c2(e){var t,r,a;if(r=zn(e),r)return r;if(e.attr("id")){if(!e.actualNode)throw new TypeError("Cannot resolve explicit label reference for non-DOM nodes");var n=Oe(e.attr("id"));if(a=Xe(e.actualNode),t=a.querySelector('label[for="'+n+'"]'),r=t&&jd(t,!0),r)return r}return t=lt(e,"label"),r=t&&It(t,!0),r||null}var Vn=c2;function d2(e){return e=ce(e),Vn(e)}var f2=d2,p2=[{matches:[{nodeName:"textarea"},{nodeName:"input",properties:{type:["text","password","search","tel","email","url"]}}],namingMethods:"labelText"},{matches:{nodeName:"input",properties:{type:["button","submit","reset"]}},namingMethods:["valueText","titleText","buttonDefaultText"]},{matches:{nodeName:"input",properties:{type:"image"}},namingMethods:["altText","valueText","labelText","titleText","buttonDefaultText"]},{matches:"button",namingMethods:"subtreeText"},{matches:"fieldset",namingMethods:"fieldsetLegendText"},{matches:"OUTPUT",namingMethods:"subtreeText"},{matches:[{nodeName:"select"},{nodeName:"input",properties:{type:/^(?!text|password|search|tel|email|url|button|submit|reset)/}}],namingMethods:"labelText"},{matches:"summary",namingMethods:"subtreeText"},{matches:"figure",namingMethods:["figureText","titleText"]},{matches:"img",namingMethods:"altText"},{matches:"table",namingMethods:["tableCaptionText","tableSummaryText"]},{matches:["hr","br"],namingMethods:["titleText","singleSpace"]}],m2=p2;function $d(e){var t=ut(e),r=[];return e.children.forEach(function(a){a.actualNode.nodeType===3?t&&r.push(a):r=r.concat($d(a))}),r}var h2=$d,v2=Re(function(t){var r=ce(t),a=r.boundingClientRect,n=[],i=ba(r);return t.childNodes.forEach(function(o){if(!(o.nodeType!==3||ae(o.nodeValue)==="")){var u=g2(o);b2(u,a)||n.push.apply(n,re(zd(u,i)))}}),n.length?n:zd([a],i)}),Wo=v2;function g2(e){var t=N.createRange();return t.selectNodeContents(e),Array.from(t.getClientRects())}function b2(e,t){return e.some(function(r){var a=ya(r);return!On(a,t)})}function zd(e,t){var r=[];return e.forEach(function(a){if(!(a.width<1||a.height<1)){var n=t.reduce(function(i,o){return i&&Mn(i,o.boundingClientRect)},a);n&&r.push(n)}}),r}function y2(e){var t=In(e);if(!t)return[];var r=Wo(e);return r.map(function(a){return Oo(t,a)})}var Yo=y2,D2=["checkbox","img","meter","progressbar","scrollbar","radio","slider","spinbutton","textbox"];function w2(e){var t=ye(e),r=t.vNode,a=x.commons.aria.getExplicitRole(r);if(a)return D2.indexOf(a)!==-1;switch(r.props.nodeName){case"img":case"iframe":case"object":case"video":case"audio":case"canvas":case"svg":case"math":case"button":case"select":case"textarea":case"keygen":case"progress":case"meter":return!0;case"input":return r.props.type!=="hidden";default:return!1}}var Ko=w2,_2=["head","title","template","script","style","iframe","object","video","audio","noscript"];function Xo(e){return _2.includes(e.props.nodeName)?!1:e.children.some(function(t){var r=t.props;return r.nodeType===3&&r.nodeValue.trim()})}function Vd(e,t,r){return Xo(e)||Ko(e.actualNode)||!r&&!!zn(e)||!t&&e.children.some(function(a){return a.actualNode.nodeType===1&&Vd(a)})}var Ra=Vd;function x2(e,t,r){return e=ce(e),Ra(e,t,r)}var Hn=x2;function Zo(e){return typeof e.children>"u"||Xo(e)?!0:e.props.nodeType===1&&Ko(e)?!!x.commons.text.accessibleTextVirtual(e):e.children.some(function(t){return!t.attr("lang")&&Zo(t)&&!or(t)})}function E2(e){var t=Lt(e.getAttribute("tabindex"));return t>-1&&Be(e)&&!Mo(e)}var Hd=E2;function Gd(e,t){var r=ye(e),a=r.vNode,n=r.domNode;return a?(a._isHiddenWithCSS===void 0&&(a._isHiddenWithCSS=Ud(n,t)),a._isHiddenWithCSS):Ud(n,t)}function Ud(e,t){if(e.nodeType===9||(e.nodeType===11&&(e=e.host),["STYLE","SCRIPT"].includes(e.nodeName.toUpperCase())))return!1;var r=E.getComputedStyle(e,null);if(!r)throw new Error("Style does not exist for the given element.");var a=r.getPropertyValue("display");if(a==="none")return!0;var n=["hidden","collapse"],i=r.getPropertyValue("visibility");if(n.includes(i)&&!t||n.includes(i)&&t&&n.includes(t))return!0;var o=Ge(e);return o&&!n.includes(i)?Gd(o,i):!1}var A2=Gd;function F2(e){var t=e.doctype;return t===null?!1:t.name==="html"&&!t.publicId&&!t.systemId}var Wd=F2;function C2(e){var t;(e instanceof He||(t=E)!==null&&t!==void 0&&t.Node&&e instanceof E.Node)&&(e=x.commons.aria.getRole(e));var r=ve.ariaRoles[e];return r?.type||null}var Tt=C2;function Yd(e,t){t(e.actualNode)!==!1&&e.children.forEach(function(r){return Yd(r,t)})}var R2=["block","list-item","table","flex","grid","inline-block"];function Kd(e){var t=E.getComputedStyle(e).getPropertyValue("display");return R2.includes(t)||t.substr(0,6)==="table-"}function T2(e){for(var t=Ge(e);t&&!Kd(t);)t=Ge(t);return ce(t)}function S2(e,t){if(Kd(e))return!1;var r=T2(e),a="",n="",i=0;return Yd(r,function(o){if(i===2)return!1;if(o.nodeType===3&&(a+=o.nodeValue),o.nodeType===1){var u=(o.nodeName||"").toUpperCase();if(o===e&&(i=1),["BR","HR"].includes(u))i===0?(a="",n=""):i=2;else{if(o.style.display==="none"||o.style.overflow==="hidden"||!["",null,"none"].includes(o.style.float)||!["",null,"relative"].includes(o.style.position))return!1;if(Tt(o)==="widget")return n+=o.textContent,!1}}}),a=ae(a),t!=null&&t.noLengthCompare?a.length!==0:(n=ae(n),a.length>n.length)}var Jo=S2;function k2(e){e=e||{};var t=e.modalPercent||.75;if(ue.get("isModalOpen"))return ue.get("isModalOpen");var r=qt(x._tree[0],"dialog, [role=dialog], [aria-modal=true]",ut);if(r.length)return ue.set("isModalOpen",!0),!0;for(var a=Tn(E),n=a.width*t,i=a.height*t,o=(a.width-n)/2,u=(a.height-i)/2,s=[{x:o,y:u},{x:a.width-o,y:u},{x:a.width/2,y:a.height/2},{x:o,y:a.height-u},{x:a.width-o,y:a.height-u}],l=s.map(function(p){return Array.from(N.elementsFromPoint(p.x,p.y))}),c=function(){var m=l[f].find(function(h){var v=E.getComputedStyle(h);return parseInt(v.width,10)>=n&&parseInt(v.height,10)>=i&&v.getPropertyValue("pointer-events")!=="none"&&(v.position==="absolute"||v.position==="fixed")});if(m&&l.every(function(h){return h.includes(m)}))return ue.set("isModalOpen",!0),{v:!0}},d,f=0;f<l.length;f++)if(d=c(),d)return d.v;ue.set("isModalOpen",void 0)}var Ta=k2;function Xd(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:2,r=e.ownerDocument.createRange();r.setStart(e,0),r.setEnd(e,e.childNodes.length);var a=0,n=0,i=xe(r.getClientRects()),o;try{for(i.s();!(o=i.n()).done;){var u=o.value;if(!(u.height<=t))if(a>u.top+t)a=Math.max(a,u.bottom);else if(n===0)a=u.bottom,n++;else return!0}}catch(s){i.e(s)}finally{i.f()}return!1}function O2(e){return e instanceof E.Node}var M2=O2,Qo="color.incompleteData",P2={set:function(t,r){if(typeof t!="string")throw new Error("Incomplete data: key must be a string");var a=ue.get(Qo,function(){return{}});return r&&(a[t]=r),a[t]},get:function(t){var r=ue.get(Qo);return r?.[t]},clear:function(){ue.set(Qo,{})}},We=P2;function I2(e,t){var r=["IMG","CANVAS","OBJECT","IFRAME","VIDEO","SVG"],a=e.nodeName.toUpperCase();if(r.includes(a))return We.set("bgColor","imgNode"),!0;t=t||E.getComputedStyle(e);var n=t.getPropertyValue("background-image"),i=n!=="none";if(i){var o=/gradient/.test(n);We.set("bgColor",o?"bgGradient":"bgImage")}return i}var Gn=I2,N2=/^#[0-9a-f]{3,8}$/i,B2=/hsl\(\s*([-\d.]+)(rad|turn)/,Sa=(_e=new WeakMap,Ie=new WeakMap,Ke=new WeakMap,ft=new WeakMap,Ve=new WeakMap,tt=new WeakMap,Qr=new WeakSet,(function(){function e(t,r,a){var n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:1;if(wt(this,e),ss(this,Qr),Zt(this,_e,void 0),Zt(this,Ie,void 0),Zt(this,Ke,void 0),Zt(this,ft,void 0),Zt(this,Ve,void 0),Zt(this,tt,void 0),t instanceof Sa){var i=t.r,o=t.g,u=t.b;this.r=i,this.g=o,this.b=u,this.alpha=t.alpha;return}this.red=t,this.green=r,this.blue=a,this.alpha=n}return _t(e,[{key:"r",get:function(){return Dt(_e,this)},set:function(r){rt(_e,this,r),rt(ft,this,Math.round(qr(r,0,1)*255))}},{key:"g",get:function(){return Dt(Ie,this)},set:function(r){rt(Ie,this,r),rt(Ve,this,Math.round(qr(r,0,1)*255))}},{key:"b",get:function(){return Dt(Ke,this)},set:function(r){rt(Ke,this,r),rt(tt,this,Math.round(qr(r,0,1)*255))}},{key:"red",get:function(){return Dt(ft,this)},set:function(r){rt(_e,this,r/255),rt(ft,this,qr(r,0,255))}},{key:"green",get:function(){return Dt(Ve,this)},set:function(r){rt(Ie,this,r/255),rt(Ve,this,qr(r,0,255))}},{key:"blue",get:function(){return Dt(tt,this)},set:function(r){rt(Ke,this,r/255),rt(tt,this,qr(r,0,255))}},{key:"toHexString",value:function(){var r=Math.round(this.red).toString(16),a=Math.round(this.green).toString(16),n=Math.round(this.blue).toString(16);return"#"+(this.red>15.5?r:"0"+r)+(this.green>15.5?a:"0"+a)+(this.blue>15.5?n:"0"+n)}},{key:"toJSON",value:function(){var r=this.red,a=this.green,n=this.blue,i=this.alpha;return{red:r,green:a,blue:n,alpha:i}}},{key:"parseString",value:function(r){r=r.replace(B2,function(i,o,u){var s=o+u;switch(u){case"rad":return i.replace(s,q2(o));case"turn":return i.replace(s,j2(o))}});try{var a;"Prototype"in E&&"Version"in E.Prototype&&(a=Array.from,Array.from=pc.default);var n=new Ee(r).to("srgb");a&&(Array.from=a,a=null),this.r=n.r,this.g=n.g,this.b=n.b,this.alpha=+n.alpha}catch{throw new Error('Unable to parse color "'.concat(r,'"'))}return this}},{key:"parseRgbString",value:function(r){this.parseString(r)}},{key:"parseHexString",value:function(r){!r.match(N2)||[6,8].includes(r.length)||this.parseString(r)}},{key:"parseColorFnString",value:function(r){this.parseString(r)}},{key:"getRelativeLuminance",value:function(){var r=this.r,a=this.g,n=this.b,i=r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4),o=a<=.03928?a/12.92:Math.pow((a+.055)/1.055,2.4),u=n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4);return .2126*i+.7152*o+.0722*u}},{key:"getLuminosity",value:function(){return .3*this.r+.59*this.g+.11*this.b}},{key:"setLuminosity",value:function(r){var a=r-this.getLuminosity();return Rr(Qr,this,L2).call(this,a).clip()}},{key:"getSaturation",value:function(){return Math.max(this.r,this.g,this.b)-Math.min(this.r,this.g,this.b)}},{key:"setSaturation",value:function(r){var a=new Sa(this),n=[{name:"r",value:a.r},{name:"g",value:a.g},{name:"b",value:a.b}],i=n.sort(function(c,d){return c.value-d.value}),o=H(i,3),u=o[0],s=o[1],l=o[2];return l.value>u.value?(s.value=(s.value-u.value)*r/(l.value-u.value),l.value=r):s.value=l.value=0,u.value=0,a[l.name]=l.value,a[u.name]=u.value,a[s.name]=s.value,a}},{key:"clip",value:function(){var r=new Sa(this),a=r.getLuminosity(),n=Math.min(r.r,r.g,r.b),i=Math.max(r.r,r.g,r.b);return n<0&&(r.r=a+(r.r-a)*a/(a-n),r.g=a+(r.g-a)*a/(a-n),r.b=a+(r.b-a)*a/(a-n)),i>1&&(r.r=a+(r.r-a)*(1-a)/(i-a),r.g=a+(r.g-a)*(1-a)/(i-a),r.b=a+(r.b-a)*(1-a)/(i-a)),r}}])})());function L2(e){var t=new Sa(this);return t.r+=e,t.g+=e,t.b+=e,t}var Se=Sa;function qr(e,t,r){return Math.min(Math.max(t,e),r)}function q2(e){return e*180/Math.PI}function j2(e){return e*360}function $2(e){var t=new Se;if(t.parseString(e.getPropertyValue("background-color")),t.alpha!==0){var r=e.getPropertyValue("opacity");t.alpha=t.alpha*r}return t}var xr=$2;function z2(e){var t=E.getComputedStyle(e);return Gn(e,t)||xr(t).alpha===1}var V2=z2;function eu(e){if(!e.href)return!1;var t=ue.get("firstPageLink",H2);return t?e.compareDocumentPosition(t.actualNode)===e.DOCUMENT_POSITION_FOLLOWING:!0}function H2(){var e;return E.location.origin?e=dt(x._tree,'a[href]:not([href^="javascript:"])').find(function(t){return!To(t.actualNode)}):e=dt(x._tree,'a:not([href^="#"]):not([href^="/#"]):not([href^="javascript:"])')[0],e||null}var G2=/rect\s*\(([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px\s*\)/,U2=/(\w+)\((\d+)/;function W2(e){var t=e.getPropertyValue("clip").match(G2),r=e.getPropertyValue("clip-path").match(U2);if(t&&t.length===5){var a=e.getPropertyValue("position");if(["fixed","absolute"].includes(a))return t[3]-t[1]<=0&&t[2]-t[4]<=0}if(r){var n=r[1],i=parseInt(r[2],10);switch(n){case"inset":return i>=50;case"circle":return i===0}}return!1}function Y2(e,t,r){var a=Ir(e,"map");if(!a)return!1;var n=a.getAttribute("name");if(!n)return!1;var i=Xe(e);if(!i||i.nodeType!==9)return!1;var o=dt(x._tree,'img[usemap="#'.concat(Oe(n),'"]'));return!o||!o.length?!1:o.some(function(u){var s=u.actualNode;return Un(s,t,r)})}function Un(e,t,r){var a;if(!e)throw new TypeError("Cannot determine if element is visible for non-DOM nodes");var n=e instanceof He?e:ce(e);e=n?n.actualNode:e;var i="_isVisible"+(t?"ScreenReader":""),o=(a=E.Node)!==null&&a!==void 0?a:{},u=o.DOCUMENT_NODE,s=o.DOCUMENT_FRAGMENT_NODE,l=n?n.props.nodeType:e.nodeType,c=n?n.props.nodeName:e.nodeName.toLowerCase();if(n&&typeof n[i]<"u")return n[i];if(l===u)return!0;if(["style","script","noscript","template"].includes(c))return!1;if(e&&l===s&&(e=e.host),t){var d=n?n.attr("aria-hidden"):e.getAttribute("aria-hidden");if(d==="true")return!1}if(!e){var f=n.parent,p=!0;return f&&(p=Un(f,t,!0)),n&&(n[i]=p),p}var m=E.getComputedStyle(e,null);if(m===null)return!1;if(c==="area")return Y2(e,t,r);if(m.getPropertyValue("display")==="none")return!1;var h=parseInt(m.getPropertyValue("height")),v=parseInt(m.getPropertyValue("width")),g=Kt(e),b=g&&h===0,w=g&&v===0,D=m.getPropertyValue("position")==="absolute"&&(h<2||v<2)&&m.getPropertyValue("overflow")==="hidden";if(!t&&(W2(m)||m.getPropertyValue("opacity")==="0"||b||w||D)||!r&&(m.getPropertyValue("visibility")==="hidden"||!t&&Sn(e)))return!1;var _=e.assignedSlot?e.assignedSlot:e.parentNode,C=!1;return _&&(C=Un(_,t,!0)),n&&(n[i]=C),C}var K2=Un;function X2(e,t){for(var r=["fixed","sticky"],a=[],n=!1,i=0;i<e.length;++i){var o=e[i];o===t&&(n=!0);var u=E.getComputedStyle(o);if(!n&&r.indexOf(u.position)!==-1){a=[];continue}a.push(o)}return a}var Zd=X2;function Jd(e,t){var r=Qd(t);do{var a=Qd(e);if(a===r||a===t)return Z2(e,t);e=a}while(e);return!1}function Qd(e){for(var t=ce(e),r=t.parent;r;){if(Kt(r.actualNode))return r.actualNode;r=r.parent}}function Z2(e,t){var r=E.getComputedStyle(t),a=r.getPropertyValue("overflow");if(r.getPropertyValue("display")==="inline")return!0;var n=Array.from(e.getClientRects()),i=t.getBoundingClientRect(),o={left:i.left,top:i.top,width:i.width,height:i.height};return(["scroll","auto"].includes(a)||t instanceof E.HTMLHtmlElement)&&(o.width=t.scrollWidth,o.height=t.scrollHeight),n.length===1&&a==="hidden"&&r.getPropertyValue("white-space")==="nowrap"&&(n[0]=o),n.some(function(u){return!(Math.ceil(u.left)<Math.floor(o.left)||Math.ceil(u.top)<Math.floor(o.top)||Math.floor(u.left+u.width)>Math.ceil(o.left+o.width)||Math.floor(u.top+u.height)>Math.ceil(o.top+o.height))})}function e1(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:N,a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0;if(a>999)throw new Error("Infinite loop detected");return Array.from(r.elementsFromPoint(e,t)||[]).filter(function(n){return Xe(n)===r}).reduce(function(n,i){if(ti(i)){var o=e1(e,t,i.shadowRoot,a+1);n=n.concat(o),n.length&&Jd(n[0],i)&&n.push(i)}else n.push(i);return n},[])}var J2=e1;function Q2(e,t){if(e.hasAttribute(t)){var r=e.nodeName.toUpperCase(),a=e;(!["A","AREA"].includes(r)||e.ownerSVGElement)&&(a=N.createElement("a"),a.href=e.getAttribute(t));var n=["https:","ftps:"].includes(a.protocol)?a.protocol.replace(/s:$/,":"):a.protocol,i=/^\//.test(a.pathname)?a.pathname:"/".concat(a.pathname),o=tD(i),u=o.pathname,s=o.filename;return{protocol:n,hostname:a.hostname,port:eD(a.port),pathname:/\/$/.test(u)?u:"".concat(u,"/"),search:rD(a.search),hash:aD(a.hash),filename:s}}}function eD(e){var t=["443","80"];return t.includes(e)?"":e}function tD(e){var t=e.split("/").pop();return!t||t.indexOf(".")===-1?{pathname:e,filename:""}:{pathname:e.replace(t,""),filename:/index./.test(t)?"":t}}function rD(e){var t={};if(!e||!e.length)return t;var r=e.substring(1).split("&");if(!r||!r.length)return t;for(var a=0;a<r.length;a++){var n=r[a],i=n.split("="),o=H(i,2),u=o[0],s=o[1],l=s===void 0?"":s;t[decodeURIComponent(u)]=decodeURIComponent(l)}return t}function aD(e){if(!e)return"";var t=/#!?\/?/g,r=e.match(t);if(!r)return"";var a=H(r,1),n=a[0];return n==="#"?"":e}var nD=Q2;function iD(e,t){var r=t.getBoundingClientRect(),a=r.top,n=r.left,i={top:a-t.scrollTop,bottom:a-t.scrollTop+t.scrollHeight,left:n-t.scrollLeft,right:n-t.scrollLeft+t.scrollWidth};if(e.left>i.right&&e.left>r.right||e.top>i.bottom&&e.top>r.bottom||e.right<i.left&&e.right<r.left||e.bottom<i.top&&e.bottom<r.top)return!1;var o=E.getComputedStyle(t);return e.left>r.right||e.top>r.bottom?o.overflow==="scroll"||o.overflow==="auto"||t instanceof E.HTMLBodyElement||t instanceof E.HTMLHtmlElement:!0}var tu=iD,t1=0,oD=(function(e){function t(r,a,n){var i;if(wt(this,t),i=Ga(this,t),i.shadowId=n,i.children=[],i.actualNode=r,i.parent=a,a||(t1=0),i.nodeIndex=t1++,i._isHidden=null,i._cache={},i._isXHTML=Fn(r.ownerDocument),r.nodeName.toLowerCase()==="input"){var o=r.getAttribute("type");o=i._isXHTML?o:(o||"").toLowerCase(),fi().includes(o)||(o="text"),i._type=o}return ue.get("nodeMap")&&ue.get("nodeMap").set(r,i),i}return Ua(t,e),_t(t,[{key:"props",get:function(){if(!this._cache.hasOwnProperty("props")){var a=this.actualNode,n=a.nodeType,i=a.nodeName,o=a.id,u=a.nodeValue;this._cache.props={nodeType:n,nodeName:this._isXHTML?i:i.toLowerCase(),id:o,type:this._type,nodeValue:u},n===1&&(this._cache.props.multiple=this.actualNode.multiple,this._cache.props.value=this.actualNode.value,this._cache.props.selected=this.actualNode.selected,this._cache.props.checked=this.actualNode.checked,this._cache.props.indeterminate=this.actualNode.indeterminate)}return this._cache.props}},{key:"attr",value:function(a){return typeof this.actualNode.getAttribute!="function"?null:this.actualNode.getAttribute(a)}},{key:"hasAttr",value:function(a){return typeof this.actualNode.hasAttribute!="function"?!1:this.actualNode.hasAttribute(a)}},{key:"attrNames",get:function(){if(!this._cache.hasOwnProperty("attrNames")){var a;this.actualNode.attributes instanceof E.NamedNodeMap?a=this.actualNode.attributes:a=this.actualNode.cloneNode(!1).attributes,this._cache.attrNames=Array.from(a).map(function(n){return n.name})}return this._cache.attrNames}},{key:"getComputedStylePropertyValue",value:function(a){var n="computedStyle_"+a;return this._cache.hasOwnProperty(n)||(this._cache.hasOwnProperty("computedStyle")||(this._cache.computedStyle=E.getComputedStyle(this.actualNode)),this._cache[n]=this._cache.computedStyle.getPropertyValue(a)),this._cache[n]}},{key:"isFocusable",get:function(){return this._cache.hasOwnProperty("isFocusable")||(this._cache.isFocusable=Be(this.actualNode)),this._cache.isFocusable}},{key:"tabbableElements",get:function(){return this._cache.hasOwnProperty("tabbableElements")||(this._cache.tabbableElements=ed(this)),this._cache.tabbableElements}},{key:"clientRects",get:function(){return this._cache.hasOwnProperty("clientRects")||(this._cache.clientRects=Array.from(this.actualNode.getClientRects()).filter(function(a){return a.width>0})),this._cache.clientRects}},{key:"boundingClientRect",get:function(){return this._cache.hasOwnProperty("boundingClientRect")||(this._cache.boundingClientRect=this.actualNode.getBoundingClientRect()),this._cache.boundingClientRect}}])})(He),Wn=oD,r1="DqElm.RunOptions";function a1(e){var t=e.outerHTML;return!t&&typeof E.XMLSerializer=="function"&&(t=new E.XMLSerializer().serializeToString(e)),t||""}function uD(e){var t=300,r=20,a=a1(e),n=ce(e);n||(n=new Wn(e));var i=n.props.nodeName;if(a.length<t)return a;var o=[],u=e.cloneNode(!1),s=ua(u),l=a1(u);if(l.length<t){var c="",d=xe(s),f;try{for(d.s();!(f=d.n()).done;){var p=f.value,m=p.name,h=p.value,v={name:m,value:h};c+=" ".concat(v.name,'="').concat(v.value,'"')}}catch(P){d.e(P)}finally{d.f()}return l="<".concat(i).concat(c,">"),l}var g="<".concat(i,">").length,b=xe(s),w;try{for(b.s();!(w=b.n()).done;){var D=w.value,_=D.name,C=D.value;if(g>t)break;var T={name:_,value:C},O=T.name,$=T.value;O=O.length>r?O.substring(0,r)+"...":O,$=$.length>r?$.substring(0,r)+"...":$;var k="".concat(O,'="').concat($,'"');g+=(" "+k).length,o.push(k)}}catch(P){b.e(P)}finally{b.f()}return l="<".concat(i," ").concat(o.join(" "),">"),l.length>t?l=l.substring(0,t)+" ...>":o.length<s.length&&(l=l.substring(0,l.length-1)+" ...>"),l}function sD(e){return e?uD(e):""}var Er=Re(function(t,r,a){var n,i;if(r??(r=null),a??(a={}),!r){var o;r=(o=ue.get(r1))!==null&&o!==void 0?o:{}}if(this.spec=a,t instanceof He?(this._virtualNode=t,this._element=t.actualNode):(this._element=t,this._virtualNode=ce(t)),this.fromFrame=((n=this.spec.selector)===null||n===void 0?void 0:n.length)>1,this._includeElementInJson=r.elementRef,r.absolutePaths&&(this._options={toRoot:!0}),this.nodeIndexes=[],Array.isArray(this.spec.nodeIndexes)?this.nodeIndexes=this.spec.nodeIndexes:typeof((i=this._virtualNode)===null||i===void 0?void 0:i.nodeIndex)=="number"&&(this.nodeIndexes=[this._virtualNode.nodeIndex]),this.source=null,!x._audit.noHtml){var u;this.source=(u=this.spec.source)!==null&&u!==void 0?u:sD(this._element)}return this});Er.prototype={get selector(){return this.spec.selector||[go(this.element,this._options)]},get ancestry(){return this.spec.ancestry||[Rn(this.element)]},get xpath(){return this.spec.xpath||[yc(this.element)]},get element(){return this._element},toJSON:function(){var t={selector:this.selector,source:this.source,xpath:this.xpath,ancestry:this.ancestry,nodeIndexes:this.nodeIndexes,fromFrame:this.fromFrame};return this._includeElementInJson&&(t.element=this._element),t}},Er.fromFrame=function(t,r,a){var n=Er.mergeSpecs(t,a);return new Er(a.element,r,n)},Er.mergeSpecs=function(t,r){return de({},t,{selector:[].concat(re(r.selector),re(t.selector)),ancestry:[].concat(re(r.ancestry),re(t.ancestry)),xpath:[].concat(re(r.xpath),re(t.xpath)),nodeIndexes:[].concat(re(r.nodeIndexes),re(t.nodeIndexes)),fromFrame:!0})},Er.setRunOptions=function(t){var r=t.elementRef,a=t.absolutePaths;ue.set(r1,{elementRef:r,absolutePaths:a})};var bt=Er;function lD(e,t,r,a){return{isAsync:!1,async:function(){return this.isAsync=!0,function(i){i instanceof Error?a(i):(e.result=i,r(e))}},data:function(i){e.data=i},relatedNodes:function(i){E.Node&&(i instanceof E.Node||i instanceof He?i=[i]:i=tl(i),e.relatedNodes=[],i.forEach(function(o){if(o instanceof He&&(o=o.actualNode),o instanceof E.Node){var u=new bt(o);e.relatedNodes.push(u)}}))}}}var ru=lD;function Wt(e){return au(e,new Map)}function au(e,t){var r,a;if(e===null||M(e)!=="object"||(r=E)!==null&&r!==void 0&&r.Node&&e instanceof E.Node||(a=E)!==null&&a!==void 0&&a.HTMLCollection&&e instanceof E.HTMLCollection||"nodeName"in e&&"nodeType"in e&&"ownerDocument"in e)return e;if(t.has(e))return t.get(e);if(Array.isArray(e)){var n=[];return t.set(e,n),e.forEach(function(u){n.push(au(u,t))}),n}var i={};t.set(e,i);for(var o in e)i[o]=au(e[o],t);return i}var ka=new nl.CssSelectorParser;ka.registerSelectorPseudos("not"),ka.registerSelectorPseudos("is"),ka.registerNestingOperators(">"),ka.registerAttrEqualityMods("^","$","*","~");var n1=ka;function nu(e,t){var r=Yn(t);return r.some(function(a){return jr(e,a)})}function cD(e,t){return e.props.nodeType===1&&(t.tag==="*"||e.props.nodeName===t.tag)}function dD(e,t){return!t.classes||t.classes.every(function(r){return e.hasClass(r.value)})}function fD(e,t){return!t.attributes||t.attributes.every(function(r){var a=e.attr(r.key);return a!==null&&r.test(a)})}function pD(e,t){return!t.id||e.props.id===t.id}function mD(e,t){return!!(!t.pseudos||t.pseudos.every(function(r){if(r.name==="not")return!r.expressions.some(function(a){return jr(e,a)});if(r.name==="is")return r.expressions.some(function(a){return jr(e,a)});throw new Error("the pseudo selector "+r.name+" has not yet been implemented")}))}function i1(e,t){return cD(e,t)&&dD(e,t)&&fD(e,t)&&pD(e,t)&&mD(e,t)}var Oa=(function(){var e=/(?=[\-\[\]{}()*+?.\\\^$|,#\s])/g,t="\\";return function(r){return r.replace(e,t)}})(),iu=/\\/g;function hD(e){if(e)return e.map(function(t){var r=t.name.replace(iu,""),a=(t.value||"").replace(iu,""),n,i;switch(t.operator){case"^=":i=new RegExp("^"+Oa(a));break;case"$=":i=new RegExp(Oa(a)+"$");break;case"~=":i=new RegExp("(^|\\s)"+Oa(a)+"(\\s|$)");break;case"|=":i=new RegExp("^"+Oa(a)+"(-|$)");break;case"=":n=function(u){return a===u};break;case"*=":n=function(u){return u&&u.includes(a)};break;case"!=":n=function(u){return a!==u};break;default:n=function(u){return u!==null}}return a===""&&/^[*$^]=$/.test(t.operator)&&(n=function(){return!1}),n||(n=function(u){return u&&i.test(u)}),{key:r,value:a,type:typeof t.value>"u"?"attrExist":"attrValue",test:n}})}function vD(e){if(e)return e.map(function(t){return t=t.replace(iu,""),{value:t,regexp:new RegExp("(^|\\s)"+Oa(t)+"(\\s|$)")}})}function gD(e){if(e)return e.map(function(t){var r;return["is","not"].includes(t.name)&&(r=t.value,r=r.selectors?r.selectors:[r],r=o1(r)),{name:t.name,expressions:r,value:t.value}})}function o1(e){return e.map(function(t){for(var r=[],a=t.rule;a;)r.push({tag:a.tagName?a.tagName.toLowerCase():"*",combinator:a.nestingOperator?a.nestingOperator:" ",id:a.id,attributes:hD(a.attrs),classes:vD(a.classNames),pseudos:gD(a.pseudos)}),a=a.rule;return r})}function Yn(e){var t=n1.parse(e);return t=t.selectors?t.selectors:[t],o1(t)}function u1(e,t,r,a){if(!e)return!1;for(var n=Array.isArray(t),i=n?t[r]:t,o=i1(e,i);!o&&a&&e.parent;)e=e.parent,o=i1(e,i);if(r>0){if([" ",">"].includes(i.combinator)===!1)throw new Error("axe.utils.matchesExpression does not support the combinator: "+i.combinator);o=o&&u1(e.parent,t,r-1,i.combinator===" ")}return o}function jr(e,t,r){return u1(e,t,t.length-1,r)}function bD(e,t){for(;e;){if(nu(e,t))return e;if(typeof e.parent>"u")throw new TypeError("Cannot resolve parent for non-DOM nodes");e=e.parent}return null}var lt=bD;function Kn(){}function ou(e){if(typeof e!="function")throw new TypeError("Queue methods require functions as arguments")}function yD(){var e=[],t=0,r=0,a=Kn,n=!1,i,o=function(p){i=p,setTimeout(function(){i!=null&&gr("Uncaught error (of queue)",i)},1)},u=o;function s(f){return function(p){e[f]=p,r-=1,!r&&a!==Kn&&(n=!0,a(e))}}function l(f){return a=Kn,u(f),e}function c(){for(var f=e.length;t<f;t++){var p=e[t];try{p.call(null,s(t),l)}catch(m){l(m)}}}var d={defer:function(p){if(M(p)==="object"&&p.then&&p.catch){var m=p;p=function(v,g){m.then(v).catch(g)}}if(ou(p),i===void 0){if(n)throw new Error("Queue already completed");return e.push(p),++r,c(),d}},then:function(p){if(ou(p),a!==Kn)throw new Error("queue `then` already set");return i||(a=p,r||(n=!0,a(e))),d},catch:function(p){if(ou(p),u!==o)throw new Error("queue `catch` already set");return i?(p(i),i=null):u=p,d},abort:l};return d}var Nt=yD,$r,zr,uu=E.crypto||E.msCrypto;if(!zr&&uu&&uu.getRandomValues){var s1=new Uint8Array(16);zr=function(){return uu.getRandomValues(s1),s1}}if(!zr){var l1=new Array(16);zr=function(){for(var t=0,r;t<16;t++)(t&3)===0&&(r=Math.random()*4294967296),l1[t]=r>>>((t&3)<<3)&255;return l1}}for(var c1=typeof E.Buffer=="function"?E.Buffer:Array,su=[],d1={},Vr=0;Vr<256;Vr++)su[Vr]=(Vr+256).toString(16).substr(1),d1[su[Vr]]=Vr;function DD(e,t,r){var a=t&&r||0,n=0;for(t=t||[],e.toLowerCase().replace(/[0-9a-f]{2}/g,function(i){n<16&&(t[a+n++]=d1[i])});n<16;)t[a+n++]=0;return t}function lu(e,t){var r=t||0,a=su;return a[e[r++]]+a[e[r++]]+a[e[r++]]+a[e[r++]]+"-"+a[e[r++]]+a[e[r++]]+"-"+a[e[r++]]+a[e[r++]]+"-"+a[e[r++]]+a[e[r++]]+"-"+a[e[r++]]+a[e[r++]]+a[e[r++]]+a[e[r++]]+a[e[r++]]+a[e[r++]]}var sr=zr(),wD=[sr[0]|1,sr[1],sr[2],sr[3],sr[4],sr[5]],f1=(sr[6]<<8|sr[7])&16383,cu=0,du=0;function p1(e,t,r){var a=t&&r||0,n=t||[];e=e||{};var i=e.clockseq!=null?e.clockseq:f1,o=e.msecs!=null?e.msecs:new Date().getTime(),u=e.nsecs!=null?e.nsecs:du+1,s=o-cu+(u-du)/1e4;if(s<0&&e.clockseq==null&&(i=i+1&16383),(s<0||o>cu)&&e.nsecs==null&&(u=0),u>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");cu=o,du=u,f1=i,o+=122192928e5;var l=((o&268435455)*1e4+u)%4294967296;n[a++]=l>>>24&255,n[a++]=l>>>16&255,n[a++]=l>>>8&255,n[a++]=l&255;var c=o/4294967296*1e4&268435455;n[a++]=c>>>8&255,n[a++]=c&255,n[a++]=c>>>24&15|16,n[a++]=c>>>16&255,n[a++]=i>>>8|128,n[a++]=i&255;for(var d=e.node||wD,f=0;f<6;f++)n[a+f]=d[f];return t||lu(n)}function Ar(e,t,r){var a=t&&r||0;typeof e=="string"&&(t=e=="binary"?new c1(16):null,e=null),e=e||{};var n=e.random||(e.rng||zr)();if(n[6]=n[6]&15|64,n[8]=n[8]&63|128,t)for(var i=0;i<16;i++)t[a+i]=n[i];return t||lu(n)}$r=Ar,$r.v1=p1,$r.v4=Ar,$r.parse=DD,$r.unparse=lu,$r.BufferClass=c1,x._uuid=p1();var _D=Ar,xD=Object.freeze(["EvalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);function ED(e){var t=e.topic,r=e.channelId,a=e.message,n=e.messageId,i=e.keepalive,o={channelId:r,topic:t,messageId:n,keepalive:!!i,source:m1()};return a instanceof Error?o.error={name:a.name,message:a.message,stack:a.stack}:o.payload=a,JSON.stringify(o)}function AD(e){var t;try{t=JSON.parse(e)}catch{return}if(FD(t)){var r=t,a=r.topic,n=r.channelId,i=r.messageId,o=r.keepalive,u=M(t.error)==="object"?CD(t.error):t.payload;return{topic:a,message:u,messageId:i,channelId:n,keepalive:!!o}}}function FD(e){return e!==null&&M(e)==="object"&&typeof e.channelId=="string"&&e.source===m1()}function CD(e){var t=e.message||"Unknown error occurred",r=xD.includes(e.name)?e.name:"Error",a=E[r]||Error;return e.stack&&(t+=`
10
- `+e.stack.replace(e.message,"")),new a(t)}function m1(){var e="axeAPI",t="";return typeof x<"u"&&x._audit&&x._audit.application&&(e=x._audit.application),typeof x<"u"&&(t=x.version),e+"."+t}function fu(e){v1(e),he(E.parent===e,"Source of the response must be the parent window.")}function h1(e){v1(e),he(e.parent===E,"Respondable target must be a frame in the current window")}function v1(e){he(E!==e,"Messages can not be sent to the same window.")}var Xn={};function RD(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;he(!Xn[e],"A replyHandler already exists for this message channel."),Xn[e]={replyHandler:t,sendToParent:r}}function TD(e){return Xn[e]}function SD(e){delete Xn[e]}var Zn=[];function pu(){var e="".concat(Ar(),":").concat(Ar());return Zn.includes(e)?pu():(Zn.push(e),e)}function kD(e){return Zn.includes(e)?!1:(Zn.push(e),!0)}function mu(e,t,r,a){if(r?fu(e):h1(e),t.message instanceof Error&&!r)return x.log(t.message),!1;var n=ED(de({messageId:pu()},t)),i=x._audit.allowedOrigins;return!i||!i.length?!1:(typeof a=="function"&&RD(t.channelId,a,r),i.forEach(function(o){try{e.postMessage(n,o)}catch(u){throw u instanceof e.DOMException?new Error('allowedOrigins value "'.concat(o,'" is not a valid origin')):u}}),!0)}function OD(e,t,r){if(!e.parent!==E)return x.log(t);try{mu(e,{topic:null,channelId:r,message:t,messageId:pu(),keepalive:!0},!0)}catch(a){return x.log(a)}}function g1(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;return function(n,i,o){var u={channelId:t,message:n,keepalive:i};mu(e,u,r,o)}}function MD(e){var t=x._audit.allowedOrigins;return t&&t.includes("*")||t.includes(e)}function PD(e,t){var r=e.origin,a=e.data,n=e.source;try{var i=AD(a)||{},o=i.channelId,u=i.message,s=i.messageId;if(!MD(r)||!kD(s))return;if(u instanceof Error&&n.parent!==E)return x.log(u),!1;try{if(i.topic){var l=g1(n,o);fu(n),t(i,l)}else ID(n,i)}catch(c){OD(n,c,o)}}catch(c){return x.log(c),!1}}function ID(e,t){var r=t.channelId,a=t.message,n=t.keepalive,i=TD(r)||{},o=i.replyHandler,u=i.sendToParent;if(o){u?fu(e):h1(e);var s=g1(e,r,u);!n&&r&&SD(r);try{o(a,n,s)}catch(l){x.log(l),s(l,n)}}}var ND={open:function(t){if(typeof E.addEventListener=="function"){var r=function(n){PD(n,t)};return E.addEventListener("message",r,!1),function(){E.removeEventListener("message",r,!1)}}},post:function(t,r,a){return typeof E.addEventListener!="function"?!1:mu(t,r,!1,a)}};function b1(e){e.updateMessenger(ND)}var Jn,y1,hu={};function St(e,t,r,a,n){var i={topic:t,message:r,channelId:"".concat(Ar(),":").concat(Ar()),keepalive:a};return y1(e,i,n)}function BD(e,t){var r=e.topic,a=e.message,n=e.keepalive,i=hu[r];if(i)try{i(a,n,t)}catch(o){x.log(o),t(o,n)}}St.updateMessenger=function(t){var r=t.open,a=t.post;he(typeof r=="function","open callback must be a function"),he(typeof a=="function","post callback must be a function"),Jn&&Jn();var n=r(BD);n?(he(typeof n=="function","open callback must return a cleanup function"),Jn=n):Jn=null,y1=a},St.subscribe=function(t,r){he(typeof r=="function","Subscriber callback must be a function"),he(!hu[t],"Topic ".concat(t," is already registered to.")),hu[t]=r},St.isInFrame=function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:E;return!!t.frameElement},b1(St);function D1(e,t,r,a){var n,i,o=e.contentWindow,u=(n=(i=t.options)===null||i===void 0?void 0:i.pingWaitTime)!==null&&n!==void 0?n:500;if(!o){gr("Frame does not have a content window",e),r(null);return}if(u===0){w1(e,t,r,a);return}var s=setTimeout(function(){s=setTimeout(function(){t.debug?a(_1("No response from frame",e)):r(null)},0)},u);St(o,"axe.ping",null,void 0,function(){clearTimeout(s),w1(e,t,r,a)})}function w1(e,t,r,a){var n,i,o=(n=(i=t.options)===null||i===void 0?void 0:i.frameWaitTime)!==null&&n!==void 0?n:6e4,u=e.contentWindow,s=setTimeout(function(){a(_1("Axe in frame timed out",e))},o);St(u,"axe.start",t,void 0,function(l){clearTimeout(s),l instanceof Error?a(l):r(l)})}function _1(e,t){var r;return x._tree&&(r=go(t)),new Error(e+": "+(r||t))}var Ma=null,Pa={update:function(t){he(M(t)==="object","serializer must be an object"),Ma=t},toSpec:function(t){return Pa.dqElmToSpec(new bt(t))},dqElmToSpec:function(t,r){var a;return t instanceof bt?(r&&(t=LD(t,r)),typeof((a=Ma)===null||a===void 0?void 0:a.toSpec)=="function"?Ma.toSpec(t):t.toJSON()):t},mergeSpecs:function(t,r){var a;return typeof((a=Ma)===null||a===void 0?void 0:a.mergeSpecs)=="function"?Ma.mergeSpecs(t,r):bt.mergeSpecs(t,r)},mapRawResults:function(t){return t.map(function(r){return de({},r,{nodes:Pa.mapRawNodeResults(r.nodes)})})},mapRawNodeResults:function(t){return t?.map(function(r){var a=r.node,n=qe(r,Hp);n.node=Pa.dqElmToSpec(a);for(var i=0,o=["any","all","none"];i<o.length;i++){var u=o[i];n[u]=n[u].map(function(s){var l=s.relatedNodes,c=qe(s,Gp);return c.relatedNodes=l.map(Pa.dqElmToSpec),c})}return n})}},yt=Pa;function LD(e,t){var r=e.fromFrame,a=t.ancestry,n=t.xpath,i=t.selectors!==!1||r;return e=new bt(e.element,t,{source:e.source,nodeIndexes:e.nodeIndexes,selector:i?e.selector:[":root"],ancestry:a?e.ancestry:[":root"],xpath:n?e.xpath:"/"}),e.fromFrame=r,e}function qD(e){var t=[];return t.concat(e.any||[]).concat(e.all||[]).concat(e.none||[])}var Qn=qD;function jD(e,t,r){if(Array.isArray(e))return e.find(function(a){return a!==null&&M(a)==="object"&&Object.hasOwn(a,t)&&a[t]===r})}var Ia=jD;function $D(e,t,r){e.forEach(function(a){a.node=yt.mergeSpecs(a.node,r);var n=Qn(a);n.forEach(function(i){i.relatedNodes=i.relatedNodes.map(function(o){return yt.mergeSpecs(o,r)})})})}function zD(e,t){for(var r=t[0].node,a,n=0;n<e.length;n++){a=e[n].node;var i=x1(a.nodeIndexes,r.nodeIndexes);if(i>0||i===0&&r.selector.length<a.selector.length){e.splice.apply(e,[n,0].concat(re(t)));return}}e.push.apply(e,re(t))}function VD(e){return!e||!e.results?null:Array.isArray(e.results)?e.results.length?e.results:null:[e.results]}function HD(e,t){var r=[];return e.forEach(function(a){var n=VD(a);if(!(!n||!n.length)){var i=GD(a);n.forEach(function(o){o.nodes&&i&&$D(o.nodes,t,i);var u=Ia(r,"id",o.id);if(!u)r.push(o);else if(o.nodes.length&&zD(u.nodes,o.nodes),o.error){var s;(s=u.error)!==null&&s!==void 0||(u.error=o.error)}})}}),r.forEach(function(a){a.nodes&&a.nodes.sort(function(n,i){return x1(n.node.nodeIndexes,i.node.nodeIndexes)})}),r}function x1(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],r=Math.max(e?.length,t?.length),a=0;a<r;a++){var n=e?.[a],i=t?.[a];if(typeof n!="number"||isNaN(n))return a===0?1:-1;if(typeof i!="number"||isNaN(i))return a===0?-1:1;if(n!==i)return n-i}return 0}var ei=HD;function GD(e){return e.frameElement?yt.toSpec(e.frameElement):e.frameSpec?e.frameSpec:null}function E1(e,t,r,a,n,i){t=de({},t,{elementRef:!1});var o=Nt(),u=e.frames;u.forEach(function(s){var l=s.node,c=qe(s,Up);o.defer(function(d,f){var p={options:t,command:r,parameter:a,context:c};function m(h){return d(h?{results:h,frameElement:l}:null)}D1(l,p,m,f)})}),o.then(function(s){n(ei(s,t))}).catch(i)}function Yt(e,t){if(!e.shadowId&&!t.shadowId&&e.actualNode&&typeof e.actualNode.contains=="function")return e.actualNode.contains(t.actualNode);do{if(e===t)return!0;if(t.nodeIndex<e.nodeIndex)return!1;t=t.parent}while(t);return!1}function A1(){for(var e={},t=arguments.length,r=new Array(t),a=0;a<t;a++)r[a]=arguments[a];return r.forEach(function(n){if(!(!n||M(n)!=="object"||Array.isArray(n)))for(var i=0,o=Object.keys(n);i<o.length;i++){var u=o[i];!e.hasOwnProperty(u)||M(n[u])!=="object"||Array.isArray(e[u])?e[u]=n[u]:e[u]=A1(e[u],n[u])}}),e}var vu=A1;function UD(e,t){Object.assign(e,t),Object.keys(t).filter(function(r){return typeof t[r]=="function"}).forEach(function(r){e[r]=null;try{e[r]=t[r](e)}catch{}})}var gu=UD,WD=["article","aside","blockquote","body","div","footer","h1","h2","h3","h4","h5","h6","header","main","nav","p","section","span"];function YD(e){if(e.shadowRoot){var t=e.nodeName.toLowerCase();if(WD.includes(t)||/^[a-z][a-z0-9_.-]*-[a-z0-9_.-]*$/.test(t))return!0}return!1}var ti=YD;function KD(e){return(e||"").trim().replace(/\s{2,}/g," ").split(" ")}var Ze=KD,Fr=" [idsMap]";function F1(e,t,r){var a=e[0]._selectorMap;if(a){for(var n=e[0].shadowId,i=0;i<t.length;i++)if(t[i].length>1&&t[i].some(function(s){return C1(s)}))return;var o=new Set;t.forEach(function(s){var l,c=XD(s,a,n);c==null||(l=c.nodes)===null||l===void 0||l.forEach(function(d){c.isComplexSelector&&!jr(d,s)||o.add(d)})});var u=[];return o.forEach(function(s){return u.push(s)}),r&&(u=u.filter(r)),u.sort(function(s,l){return s.nodeIndex-l.nodeIndex})}}function XD(e,t,r){var a=e[e.length-1],n=null,i=e.length>1||!!a.pseudos||!!a.classes;if(C1(a))n=t["*"];else{if(a.id){var o;if(!t[Fr]||!Object.hasOwn(t[Fr],a.id)||!((o=t[Fr][a.id])!==null&&o!==void 0&&o.length))return;n=t[Fr][a.id].filter(function(h){return h.shadowId===r})}if(a.tag&&a.tag!=="*"){var u;if(!((u=t[a.tag])!==null&&u!==void 0&&u.length))return;var s=t[a.tag];n=n?bu(s,n):s}if(a.classes){var l;if(!((l=t["[class]"])!==null&&l!==void 0&&l.length))return;var c=t["[class]"];n=n?bu(c,n):c}if(a.attributes)for(var d=0;d<a.attributes.length;d++){var f,p=a.attributes[d];if(p.type==="attrValue"&&(i=!0),!((f=t["[".concat(p.key,"]")])!==null&&f!==void 0&&f.length))return;var m=t["[".concat(p.key,"]")];n=n?bu(m,n):m}}return{nodes:n,isComplexSelector:i}}function C1(e){return e.tag==="*"&&!e.attributes&&!e.id&&!e.classes}function bu(e,t){return e.filter(function(r){return t.includes(r)})}function ri(e,t,r){Object.hasOwn(r,e)||(r[e]=[]),r[e].push(t)}function R1(e,t){e.props.nodeType===1&&(ri(e.props.nodeName,e,t),ri("*",e,t),e.attrNames.forEach(function(r){r==="id"&&(t[Fr]=t[Fr]||{},Ze(e.attr(r)).forEach(function(a){ri(a,e,t[Fr])})),ri("[".concat(r,"]"),e,t)}))}var yu;function Du(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:N.documentElement,t=arguments.length>1?arguments[1]:void 0;yu=!1;var r={};ue.set("nodeMap",new WeakMap),ue.set("selectorMap",r);var a=T1(e,t,null);return a[0]._selectorMap=r,a[0]._hasShadowRoot=yu,a}function ZD(e){var t=[];for(e=e.firstChild;e;)t.push(e),e=e.nextSibling;return t}function wu(e,t,r){var a=new Wn(e,t,r);return R1(a,ue.get("selectorMap")),a}function ai(e,t,r){var a=[];return e.forEach(function(n){var i=T1(n,r,t);i&&a.push.apply(a,re(i))}),a}function T1(e,t,r){var a,n;e.documentElement&&(e=e.documentElement);var i=e.nodeName.toLowerCase();if(ti(e))return yu=!0,a=wu(e,r,t),t="a"+Math.random().toString().substring(2),n=Array.from(e.shadowRoot.childNodes),a.children=ai(n,a,t),[a];if(i==="content"&&typeof e.getDistributedNodes=="function")return n=Array.from(e.getDistributedNodes()),ai(n,r,t);if(i==="slot"&&typeof e.assignedNodes=="function")return n=Array.from(e.assignedNodes()),n.length||(n=ZD(e)),E.getComputedStyle(e),ai(n,r,t);if(e.nodeType===N.ELEMENT_NODE)return a=wu(e,r,t),n=Array.from(e.childNodes),a.children=ai(n,a,t),[a];if(e.nodeType===N.TEXT_NODE)return[wu(e,r)]}function JD(e){return e?e.trim().split("-")[0].toLowerCase():""}var Cr=JD;function QD(e){var t={};return t.none=e.none.concat(e.all),t.any=e.any,Object.keys(t).map(function(r){if(t[r].length){var a=x._audit.data.failureSummaries[r];if(a&&typeof a.failureMessage=="function")return a.failureMessage(t[r].map(function(n){return n.message||""}))}}).filter(function(r){return r!==void 0}).join(`
6
+ `,r:"\r",t:" ",f:"\f","\\":"\\",'"':'"'}}),bh=y(function(e){Object.defineProperty(e,"__esModule",{value:!0});var t=Ls();function r(a,n,i,o,u,s){var l=a.length,c="";function d(b,w){var D="";for(n++,c=a.charAt(n);n<l;){if(c===b)return n++,D;if(c==="\\"){n++,c=a.charAt(n);var _=void 0;if(c===b)D+=b;else if((_=w[c])!==void 0)D+=_;else if(t.isHex(c)){var C=c;for(n++,c=a.charAt(n);t.isHex(c);)C+=c,n++,c=a.charAt(n);c===" "&&(n++,c=a.charAt(n)),D+=String.fromCharCode(parseInt(C,16));continue}else D+=c}else D+=c;n++,c=a.charAt(n)}return D}function f(){var b="";for(c=a.charAt(n);n<l;){if(t.isIdent(c))b+=c;else if(c==="\\"){if(n++,n>=l)throw Error("Expected symbol but end of file reached.");if(c=a.charAt(n),t.identSpecialChars[c])b+=c;else if(t.isHex(c)){var w=c;for(n++,c=a.charAt(n);t.isHex(c);)w+=c,n++,c=a.charAt(n);c===" "&&(n++,c=a.charAt(n)),b+=String.fromCharCode(parseInt(w,16));continue}else b+=c}else return b;n++,c=a.charAt(n)}return b}function p(){c=a.charAt(n);for(var b=!1;c===" "||c===" "||c===`
7
+ `||c==="\r"||c==="\f";)b=!0,n++,c=a.charAt(n);return b}function m(){var b=h();if(n<l)throw Error('Rule expected but "'+a.charAt(n)+'" found.');return b}function h(){var b=v();if(!b)return null;var w=b;for(c=a.charAt(n);c===",";){if(n++,p(),w.type!=="selectors"&&(w={type:"selectors",selectors:[b]}),b=v(),!b)throw Error('Rule expected after ",".');w.selectors.push(b)}return w}function v(){p();var b={type:"ruleSet"},w=g();if(!w)return null;for(var D=b;w&&(w.type="rule",D.rule=w,D=w,p(),c=a.charAt(n),!(n>=l||c===","||c===")"));)if(u[c]){var _=c;if(n++,p(),w=g(),!w)throw Error('Rule expected after "'+_+'".');w.nestingOperator=_}else w=g(),w&&(w.nestingOperator=null);return b}function g(){for(var b=null;n<l;)if(c=a.charAt(n),c==="*")n++,(b=b||{}).tagName="*";else if(t.isIdentStart(c)||c==="\\")(b=b||{}).tagName=f();else if(c===".")n++,b=b||{},(b.classNames=b.classNames||[]).push(f());else if(c==="#")n++,(b=b||{}).id=f();else if(c==="["){n++,p();var w={name:f()};if(p(),c==="]")n++;else{var D="";if(o[c]&&(D=c,n++,c=a.charAt(n)),n>=l)throw Error('Expected "=" but end of file reached.');if(c!=="=")throw Error('Expected "=" but "'+c+'" found.');w.operator=D+"=",n++,p();var _="";if(w.valueType="string",c==='"')_=d('"',t.doubleQuotesEscapeChars);else if(c==="'")_=d("'",t.singleQuoteEscapeChars);else if(s&&c==="$")n++,_=f(),w.valueType="substitute";else{for(;n<l&&c!=="]";)_+=c,n++,c=a.charAt(n);_=_.trim()}if(p(),n>=l)throw Error('Expected "]" but end of file reached.');if(c!=="]")throw Error('Expected "]" but "'+c+'" found.');n++,w.value=_}b=b||{},(b.attrs=b.attrs||[]).push(w)}else if(c===":"){n++;var C=f(),T={name:C};if(c==="("){n++;var O="";if(p(),i[C]==="selector")T.valueType="selector",O=h();else{if(T.valueType=i[C]||"string",c==='"')O=d('"',t.doubleQuotesEscapeChars);else if(c==="'")O=d("'",t.singleQuoteEscapeChars);else if(s&&c==="$")n++,O=f(),T.valueType="substitute";else{for(;n<l&&c!==")";)O+=c,n++,c=a.charAt(n);O=O.trim()}p()}if(n>=l)throw Error('Expected ")" but end of file reached.');if(c!==")")throw Error('Expected ")" but "'+c+'" found.');n++,T.value=O}b=b||{},(b.pseudos=b.pseudos||[]).push(T)}else break;return b}return m()}e.parseCssSelector=r}),yh=y(function(e){Object.defineProperty(e,"__esModule",{value:!0});var t=Ls();function r(a){var n="";switch(a.type){case"ruleSet":for(var i=a.rule,o=[];i;)i.nestingOperator&&o.push(i.nestingOperator),o.push(r(i)),i=i.rule;n=o.join(" ");break;case"selectors":n=a.selectors.map(r).join(", ");break;case"rule":a.tagName&&(a.tagName==="*"?n="*":n=t.escapeIdentifier(a.tagName)),a.id&&(n+="#"+t.escapeIdentifier(a.id)),a.classNames&&(n+=a.classNames.map(function(u){return"."+t.escapeIdentifier(u)}).join("")),a.attrs&&(n+=a.attrs.map(function(u){return"operator"in u?u.valueType==="substitute"?"["+t.escapeIdentifier(u.name)+u.operator+"$"+u.value+"]":"["+t.escapeIdentifier(u.name)+u.operator+t.escapeStr(u.value)+"]":"["+t.escapeIdentifier(u.name)+"]"}).join("")),a.pseudos&&(n+=a.pseudos.map(function(u){return u.valueType?u.valueType==="selector"?":"+t.escapeIdentifier(u.name)+"("+r(u.value)+")":u.valueType==="substitute"?":"+t.escapeIdentifier(u.name)+"($"+u.value+")":u.valueType==="numeric"?":"+t.escapeIdentifier(u.name)+"("+u.value+")":":"+t.escapeIdentifier(u.name)+"("+t.escapeIdentifier(u.value)+")":":"+t.escapeIdentifier(u.name)}).join(""));break;default:throw Error('Unknown entity type: "'+a.type+'".')}return n}e.renderEntity=r}),Dh=y(function(e){Object.defineProperty(e,"__esModule",{value:!0});var t=bh(),r=yh(),a=(function(){function n(){this.pseudos={},this.attrEqualityMods={},this.ruleNestingOperators={},this.substitutesEnabled=!1}return n.prototype.registerSelectorPseudos=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];this.pseudos[l]="selector"}return this},n.prototype.unregisterSelectorPseudos=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];delete this.pseudos[l]}return this},n.prototype.registerNumericPseudos=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];this.pseudos[l]="numeric"}return this},n.prototype.unregisterNumericPseudos=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];delete this.pseudos[l]}return this},n.prototype.registerNestingOperators=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];this.ruleNestingOperators[l]=!0}return this},n.prototype.unregisterNestingOperators=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];delete this.ruleNestingOperators[l]}return this},n.prototype.registerAttrEqualityMods=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];this.attrEqualityMods[l]=!0}return this},n.prototype.unregisterAttrEqualityMods=function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];for(var u=0,s=i;u<s.length;u++){var l=s[u];delete this.attrEqualityMods[l]}return this},n.prototype.enableSubstitutes=function(){return this.substitutesEnabled=!0,this},n.prototype.disableSubstitutes=function(){return this.substitutesEnabled=!1,this},n.prototype.parse=function(i){return t.parseCssSelector(i,0,this.pseudos,this.attrEqualityMods,this.ruleNestingOperators,this.substitutesEnabled)},n.prototype.render=function(i){return r.renderEntity(i).trim()},n})();e.CssSelectorParser=a}),wh=y(function(e,t){(function(){var r={name:"doT",version:"1.1.1",templateSettings:{evaluate:/\{\{([\s\S]+?(\}?)+)\}\}/g,interpolate:/\{\{=([\s\S]+?)\}\}/g,encode:/\{\{!([\s\S]+?)\}\}/g,use:/\{\{#([\s\S]+?)\}\}/g,useParams:/(^|[^\w$])def(?:\.|\[[\'\"])([\w$\.]+)(?:[\'\"]\])?\s*\:\s*([\w$\.]+|\"[^\"]+\"|\'[^\']+\'|\{[^\}]+\})/g,define:/\{\{##\s*([\w\.$]+)\s*(\:|=)([\s\S]+?)#\}\}/g,defineParams:/^\s*([\w$]+):([\s\S]+)/,conditional:/\{\{\?(\?)?\s*([\s\S]*?)\s*\}\}/g,iterate:/\{\{~\s*(?:\}\}|([\s\S]+?)\s*\:\s*([\w$]+)\s*(?:\:\s*([\w$]+))?\s*\}\})/g,varname:"it",strip:!0,append:!0,selfcontained:!1,doNotSkipEncoded:!1},template:void 0,compile:void 0,log:!0};(function(){if((typeof globalThis>"u"?"undefined":P(globalThis))!=="object")try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),__magic__.globalThis=__magic__,delete Object.prototype.__magic__}catch{E.globalThis=(function(){if(typeof self<"u")return self;if(typeof E<"u")return E;if(typeof tt<"u")return tt;if(typeof this<"u")return this;throw new Error("Unable to locate global `this`")})()}})(),r.encodeHTMLSource=function(u){var s={"&":"&#38;","<":"&#60;",">":"&#62;",'"':"&#34;","'":"&#39;","/":"&#47;"},l=u?/[&<>"'\/]/g:/&(?!#?\w+;)|<|>|"|'|\//g;return function(c){return c?c.toString().replace(l,function(d){return s[d]||d}):""}},typeof t<"u"&&t.exports?t.exports=r:globalThis.doT=r;var a={append:{start:"'+(",end:")+'",startencode:"'+encodeHTML("},split:{start:"';out+=(",end:");out+='",startencode:"';out+=encodeHTML("}},n=/$^/;function i(u,s,l){return(typeof s=="string"?s:s.toString()).replace(u.define||n,function(c,d,f,p){return d.indexOf("def.")===0&&(d=d.substring(4)),d in l||(f===":"?(u.defineParams&&p.replace(u.defineParams,function(m,h,v){l[d]={arg:h,text:v}}),d in l||(l[d]=p)):new Function("def","def['"+d+"']="+p)(l)),""}).replace(u.use||n,function(c,d){u.useParams&&(d=d.replace(u.useParams,function(p,m,h,v){if(l[h]&&l[h].arg&&v){var g=(h+":"+v).replace(/'|\\/g,"_");return l.__exp=l.__exp||{},l.__exp[g]=l[h].text.replace(new RegExp("(^|[^\\w$])"+l[h].arg+"([^\\w$])","g"),"$1"+v+"$2"),m+"def.__exp['"+g+"']"}}));var f=new Function("def","return "+d)(l);return f&&i(u,f,l)})}function o(u){return u.replace(/\\('|\\)/g,"$1").replace(/[\r\t\n]/g," ")}r.template=function(u,s,l){s=s||r.templateSettings;var c=s.append?a.append:a.split,d,f=0,p,m=s.use||s.define?i(s,u,l||{}):u;m=("var out='"+(s.strip?m.replace(/(^|\r|\n)\t* +| +\t*(\r|\n|$)/g," ").replace(/\r|\n|\t|\/\*[\s\S]*?\*\//g,""):m).replace(/'|\\/g,"\\$&").replace(s.interpolate||n,function(h,v){return c.start+o(v)+c.end}).replace(s.encode||n,function(h,v){return d=!0,c.startencode+o(v)+c.end}).replace(s.conditional||n,function(h,v,g){return v?g?"';}else if("+o(g)+"){out+='":"';}else{out+='":g?"';if("+o(g)+"){out+='":"';}out+='"}).replace(s.iterate||n,function(h,v,g,b){return v?(f+=1,p=b||"i"+f,v=o(v),"';var arr"+f+"="+v+";if(arr"+f+"){var "+g+","+p+"=-1,l"+f+"=arr"+f+".length-1;while("+p+"<l"+f+"){"+g+"=arr"+f+"["+p+"+=1];out+='"):"';} } out+='"}).replace(s.evaluate||n,function(h,v){return"';"+o(v)+"out+='"})+"';return out;").replace(/\n/g,"\\n").replace(/\t/g,"\\t").replace(/\r/g,"\\r").replace(/(\s|;|\}|^|\{)out\+='';/g,"$1").replace(/\+''/g,""),d&&(!s.selfcontained&&globalThis&&!globalThis._encodeHTML&&(globalThis._encodeHTML=r.encodeHTMLSource(s.doNotSkipEncoded)),m="var encodeHTML = typeof _encodeHTML !== 'undefined' ? _encodeHTML : ("+r.encodeHTMLSource.toString()+"("+(s.doNotSkipEncoded||"")+"));"+m);try{return new Function(s.varname,m)}catch(h){throw typeof console<"u"&&console.log("Could not create a template function: "+m),h}},r.compile=function(u,s){return r.template(u,null,s)}})()}),_h=y(function(e,t){t.exports=function(){}}),mr=y(function(e,t){var r=_h()();t.exports=function(a){return a!==r&&a!==null}}),qs=y(function(e,t){var r=mr(),a=Array.prototype.forEach,n=Object.create,i=function(u,s){var l;for(l in u)s[l]=u[l]};t.exports=function(o){var u=n(null);return a.call(arguments,function(s){r(s)&&i(Object(s),u)}),u}}),xh=y(function(e,t){t.exports=function(){var r=Math.sign;return typeof r!="function"?!1:r(10)===1&&r(-20)===-1}}),Eh=y(function(e,t){t.exports=function(r){return r=Number(r),isNaN(r)||r===0?r:r>0?1:-1}}),Ah=y(function(e,t){t.exports=xh()()?Math.sign:Eh()}),Fh=y(function(e,t){var r=Ah(),a=Math.abs,n=Math.floor;t.exports=function(i){return isNaN(i)?0:(i=Number(i),i===0||!isFinite(i)?i:r(i)*n(a(i)))}}),hr=y(function(e,t){var r=Fh(),a=Math.max;t.exports=function(n){return a(0,r(n))}}),js=y(function(e,t){var r=hr();t.exports=function(a,n,i){var o;return isNaN(a)?(o=n,o>=0?i&&o?o-1:o:1):a===!1?!1:r(a)}}),Qt=y(function(e,t){t.exports=function(r){if(typeof r!="function")throw new TypeError(r+" is not a function");return r}}),kr=y(function(e,t){var r=mr();t.exports=function(a){if(!r(a))throw new TypeError("Cannot use null or undefined");return a}}),Ch=y(function(e,t){var r=Qt(),a=kr(),n=Function.prototype.bind,i=Function.prototype.call,o=Object.keys,u=Object.prototype.propertyIsEnumerable;t.exports=function(s,l){return function(c,d){var f,p=arguments[2],m=arguments[3];return c=Object(a(c)),r(d),f=o(c),m&&f.sort(typeof m=="function"?n.call(m,c):void 0),typeof s!="function"&&(s=f[s]),i.call(s,f,function(h,v){return u.call(c,h)?i.call(d,p,c[h],h,c,v):l})}}}),on=y(function(e,t){t.exports=Ch()("forEach")}),vr=y(function(){}),Rh=y(function(e,t){t.exports=function(){var r=Object.assign,a;return typeof r!="function"?!1:(a={foo:"raz"},r(a,{bar:"dwa"},{trzy:"trzy"}),a.foo+a.bar+a.trzy==="razdwatrzy")}}),Th=y(function(e,t){t.exports=function(){try{return Object.keys("primitive"),!0}catch{return!1}}}),Sh=y(function(e,t){var r=mr(),a=Object.keys;t.exports=function(n){return a(r(n)?Object(n):n)}}),kh=y(function(e,t){t.exports=Th()()?Object.keys:Sh()}),Oh=y(function(e,t){var r=kh(),a=kr(),n=Math.max;t.exports=function(i,o){var u,s,l=n(arguments.length,2),c;for(i=Object(a(i)),c=function(f){try{i[f]=o[f]}catch(p){u||(u=p)}},s=1;s<l;++s)o=arguments[s],r(o).forEach(c);if(u!==void 0)throw u;return i}}),$s=y(function(e,t){t.exports=Rh()()?Object.assign:Oh()}),Mh=y(function(e,t){var r=mr(),a={function:!0,object:!0};t.exports=function(n){return r(n)&&a[P(n)]||!1}}),Ph=y(function(e,t){var r=$s(),a=Mh(),n=mr(),i=Error.captureStackTrace;t.exports=function(o){var u=new Error(o),s=arguments[1],l=arguments[2];return n(l)||a(s)&&(l=s,s=null),n(l)&&r(u,l),n(s)&&(u.code=s),i&&i(u,t.exports),u}}),zs=y(function(e,t){var r=kr(),a=Object.defineProperty,n=Object.getOwnPropertyDescriptor,i=Object.getOwnPropertyNames,o=Object.getOwnPropertySymbols;t.exports=function(u,s){var l,c=Object(r(s));if(u=Object(r(u)),i(c).forEach(function(d){try{a(u,d,n(s,d))}catch(f){l=f}}),typeof o=="function"&&o(c).forEach(function(d){try{a(u,d,n(s,d))}catch(f){l=f}}),l!==void 0)throw l;return u}}),Vs=y(function(e,t){var r=hr(),a=function(l,c){return c},n,i,o,u;try{Object.defineProperty(a,"length",{configurable:!0,writable:!1,enumerable:!1,value:1})}catch{}a.length===1?(n={configurable:!0,writable:!1,enumerable:!1},i=Object.defineProperty,t.exports=function(s,l){return l=r(l),s.length===l?s:(n.value=l,i(s,"length",n))}):(u=zs(),o=(function(){var s=[];return function(l){var c,d=0;if(s[l])return s[l];for(c=[];l--;)c.push("a"+(++d).toString(36));return new Function("fn","return function ("+c.join(", ")+") { return fn.apply(this, arguments); };")}})(),t.exports=function(s,l){var c;if(l=r(l),s.length===l)return s;c=o(l)(s);try{u(c,s)}catch{}return c})}),Hs=y(function(e,t){var r=void 0;t.exports=function(a){return a!==r&&a!==null}}),Ih=y(function(e,t){var r=Hs(),a={object:!0,function:!0,undefined:!0};t.exports=function(n){return r(n)?hasOwnProperty.call(a,P(n)):!1}}),Nh=y(function(e,t){var r=Ih();t.exports=function(a){if(!r(a))return!1;try{return a.constructor?a.constructor.prototype===a:!1}catch{return!1}}}),Bh=y(function(e,t){var r=Nh();t.exports=function(a){if(typeof a!="function"||!hasOwnProperty.call(a,"length"))return!1;try{if(typeof a.length!="number"||typeof a.call!="function"||typeof a.apply!="function")return!1}catch{return!1}return!r(a)}}),Lh=y(function(e,t){var r=Bh(),a=/^\s*class[\s{/}]/,n=Function.prototype.toString;t.exports=function(i){return!(!r(i)||a.test(n.call(i)))}}),qh=y(function(e,t){var r="razdwatrzy";t.exports=function(){return typeof r.contains!="function"?!1:r.contains("dwa")===!0&&r.contains("foo")===!1}}),jh=y(function(e,t){var r=String.prototype.indexOf;t.exports=function(a){return r.call(this,a,arguments[1])>-1}}),$h=y(function(e,t){t.exports=qh()()?String.prototype.contains:jh()}),gr=y(function(e,t){var r=Hs(),a=Lh(),n=$s(),i=qs(),o=$h(),u=t.exports=function(s,l){var c,d,f,p,m;return arguments.length<2||typeof s!="string"?(p=l,l=s,s=null):p=arguments[2],r(s)?(c=o.call(s,"c"),d=o.call(s,"e"),f=o.call(s,"w")):(c=f=!0,d=!1),m={value:l,configurable:c,enumerable:d,writable:f},p?n(i(p),m):m};u.gs=function(s,l,c){var d,f,p,m;return typeof s!="string"?(p=c,c=l,l=s,s=null):p=arguments[3],r(l)?a(l)?r(c)?a(c)||(p=c,c=void 0):c=void 0:(p=l,l=c=void 0):l=void 0,r(s)?(d=o.call(s,"c"),f=o.call(s,"e")):(d=!0,f=!1),m={get:l,set:c,configurable:d,enumerable:f},p?n(i(p),m):m}}),zh=y(function(e,t){var r=gr(),a=Qt(),n=Function.prototype.apply,i=Function.prototype.call,o=Object.create,u=Object.defineProperty,s=Object.defineProperties,l=Object.prototype.hasOwnProperty,c={configurable:!0,enumerable:!1,writable:!0},d,f,p,m,h,v,g;d=function(w,D){var _;return a(D),l.call(this,"__ee__")?_=this.__ee__:(_=c.value=o(null),u(this,"__ee__",c),c.value=null),_[w]?P(_[w])==="object"?_[w].push(D):_[w]=[_[w],D]:_[w]=D,this},f=function(w,D){var _,C;return a(D),C=this,d.call(this,w,_=function(){p.call(C,w,_),n.call(D,this,arguments)}),_.__eeOnceListener__=D,this},p=function(w,D){var _,C,T,O;if(a(D),!l.call(this,"__ee__"))return this;if(_=this.__ee__,!_[w])return this;if(C=_[w],P(C)==="object")for(O=0;T=C[O];++O)(T===D||T.__eeOnceListener__===D)&&(C.length===2?_[w]=C[O?0:1]:C.splice(O,1));else(C===D||C.__eeOnceListener__===D)&&delete _[w];return this},m=function(w){var D,_,C,T,O;if(l.call(this,"__ee__")&&(T=this.__ee__[w],!!T))if(P(T)==="object"){for(_=arguments.length,O=new Array(_-1),D=1;D<_;++D)O[D-1]=arguments[D];for(T=T.slice(),D=0;C=T[D];++D)n.call(C,this,O)}else switch(arguments.length){case 1:i.call(T,this);break;case 2:i.call(T,this,arguments[1]);break;case 3:i.call(T,this,arguments[1],arguments[2]);break;default:for(_=arguments.length,O=new Array(_-1),D=1;D<_;++D)O[D-1]=arguments[D];n.call(T,this,O)}},h={on:d,once:f,off:p,emit:m},v={on:r(d),once:r(f),off:r(p),emit:r(m)},g=s({},v),t.exports=e=function(w){return w==null?o(g):s(Object(w),v)},e.methods=h}),Vh=y(function(e,t){t.exports=function(){var r=Array.from,a,n;return typeof r!="function"?!1:(a=["raz","dwa"],n=r(a),!!(n&&n!==a&&n[1]==="dwa"))}}),Hh=y(function(e,t){t.exports=function(){return(typeof globalThis>"u"?"undefined":P(globalThis))!=="object"||!globalThis?!1:globalThis.Array===Array}}),Gh=y(function(e,t){var r=function(){if((typeof self>"u"?"undefined":P(self))==="object"&&self)return self;if((typeof E>"u"?"undefined":P(E))==="object"&&E)return E;throw new Error("Unable to resolve global `this`")};t.exports=(function(){if(this)return this;try{Object.defineProperty(Object.prototype,"__global__",{get:function(){return this},configurable:!0})}catch{return r()}try{return __global__||r()}finally{delete Object.prototype.__global__}})()}),un=y(function(e,t){t.exports=Hh()()?globalThis:Gh()}),Uh=y(function(e,t){var r=un(),a={object:!0,symbol:!0};t.exports=function(){var n=r.Symbol,i;if(typeof n!="function")return!1;i=n("test symbol");try{String(i)}catch{return!1}return!(!a[P(n.iterator)]||!a[P(n.toPrimitive)]||!a[P(n.toStringTag)])}}),Wh=y(function(e,t){t.exports=function(r){return r?P(r)==="symbol"?!0:!r.constructor||r.constructor.name!=="Symbol"?!1:r[r.constructor.toStringTag]==="Symbol":!1}}),Gs=y(function(e,t){var r=Wh();t.exports=function(a){if(!r(a))throw new TypeError(a+" is not a symbol");return a}}),Yh=y(function(e,t){var r=gr(),a=Object.create,n=Object.defineProperty,i=Object.prototype,o=a(null);t.exports=function(u){for(var s=0,l,c;o[u+(s||"")];)++s;return u+=s||"",o[u]=!0,l="@@"+u,n(i,l,r.gs(null,function(d){c||(c=!0,n(this,l,r(d)),c=!1)})),l}}),Kh=y(function(e,t){var r=gr(),a=un().Symbol;t.exports=function(n){return Object.defineProperties(n,{hasInstance:r("",a&&a.hasInstance||n("hasInstance")),isConcatSpreadable:r("",a&&a.isConcatSpreadable||n("isConcatSpreadable")),iterator:r("",a&&a.iterator||n("iterator")),match:r("",a&&a.match||n("match")),replace:r("",a&&a.replace||n("replace")),search:r("",a&&a.search||n("search")),species:r("",a&&a.species||n("species")),split:r("",a&&a.split||n("split")),toPrimitive:r("",a&&a.toPrimitive||n("toPrimitive")),toStringTag:r("",a&&a.toStringTag||n("toStringTag")),unscopables:r("",a&&a.unscopables||n("unscopables"))})}}),Xh=y(function(e,t){var r=gr(),a=Gs(),n=Object.create(null);t.exports=function(i){return Object.defineProperties(i,{for:r(function(o){return n[o]?n[o]:n[o]=i(String(o))}),keyFor:r(function(o){var u;a(o);for(u in n)if(n[u]===o)return u})})}}),Zh=y(function(e,t){var r=gr(),a=Gs(),n=un().Symbol,i=Yh(),o=Kh(),u=Xh(),s=Object.create,l=Object.defineProperties,c=Object.defineProperty,d,f,p;if(typeof n=="function")try{String(n()),p=!0}catch{}else n=null;f=function(h){if(this instanceof f)throw new TypeError("Symbol is not a constructor");return d(h)},t.exports=d=function m(h){var v;if(this instanceof m)throw new TypeError("Symbol is not a constructor");return p?n(h):(v=s(f.prototype),h=h===void 0?"":String(h),l(v,{__description__:r("",h),__name__:r("",i(h))}))},o(d),u(d),l(f.prototype,{constructor:r(d),toString:r("",function(){return this.__name__})}),l(d.prototype,{toString:r(function(){return"Symbol ("+a(this).__description__+")"}),valueOf:r(function(){return a(this)})}),c(d.prototype,d.toPrimitive,r("",function(){var m=a(this);return P(m)==="symbol"?m:m.toString()})),c(d.prototype,d.toStringTag,r("c","Symbol")),c(f.prototype,d.toStringTag,r("c",d.prototype[d.toStringTag])),c(f.prototype,d.toPrimitive,r("c",d.prototype[d.toPrimitive]))}),Jh=y(function(e,t){t.exports=Uh()()?un().Symbol:Zh()}),Qh=y(function(e,t){var r=Object.prototype.toString,a=r.call((function(){return arguments})());t.exports=function(n){return r.call(n)===a}}),ev=y(function(e,t){var r=Object.prototype.toString,a=RegExp.prototype.test.bind(/^[object [A-Za-z0-9]*Function]$/);t.exports=function(n){return typeof n=="function"&&a(r.call(n))}}),tv=y(function(e,t){var r=Object.prototype.toString,a=r.call("");t.exports=function(n){return typeof n=="string"||n&&P(n)==="object"&&(n instanceof String||r.call(n)===a)||!1}}),rv=y(function(e,t){var r=Jh().iterator,a=Qh(),n=ev(),i=hr(),o=Qt(),u=kr(),s=mr(),l=tv(),c=Array.isArray,d=Function.prototype.call,f={configurable:!0,enumerable:!0,writable:!0,value:null},p=Object.defineProperty;t.exports=function(m){var h=arguments[1],v=arguments[2],g,b,w,D,_,C,T,O,$,k;if(m=Object(u(m)),s(h)&&o(h),!this||this===Array||!n(this)){if(!h){if(a(m))return _=m.length,_!==1?Array.apply(null,m):(D=new Array(1),D[0]=m[0],D);if(c(m)){for(D=new Array(_=m.length),b=0;b<_;++b)D[b]=m[b];return D}}D=[]}else g=this;if(!c(m)){if(($=m[r])!==void 0){for(T=o($).call(m),g&&(D=new g),O=T.next(),b=0;!O.done;)k=h?d.call(h,v,O.value,b):O.value,g?(f.value=k,p(D,b,f)):D[b]=k,O=T.next(),++b;_=b}else if(l(m)){for(_=m.length,g&&(D=new g),b=0,w=0;b<_;++b)k=m[b],b+1<_&&(C=k.charCodeAt(0),C>=55296&&C<=56319&&(k+=m[++b])),k=h?d.call(h,v,k,w):k,g?(f.value=k,p(D,w,f)):D[w]=k,++w;_=w}}if(_===void 0)for(_=i(m.length),g&&(D=new g(_)),b=0;b<_;++b)k=h?d.call(h,v,m[b],b):m[b],g?(f.value=k,p(D,b,f)):D[b]=k;return g&&(f.value=null,D.length=_),D}}),zi=y(function(e,t){t.exports=Vh()()?Array.from:rv()}),av=y(function(e,t){var r=zi(),a=Array.isArray;t.exports=function(n){return a(n)?n:r(n)}}),nv=y(function(e,t){var r=av(),a=mr(),n=Qt(),i=Array.prototype.slice,o;o=function(s){return this.map(function(l,c){return l?l(s[c]):s[c]}).concat(i.call(s,this.length))},t.exports=function(u){return u=r(u),u.forEach(function(s){a(s)&&n(s)}),o.bind(u)}}),iv=y(function(e,t){var r=Qt();t.exports=function(a){var n;return typeof a=="function"?{set:a,get:a}:(n={get:r(a.get)},a.set!==void 0?(n.set=r(a.set),a.delete&&(n.delete=r(a.delete)),a.clear&&(n.clear=r(a.clear)),n):(n.set=n.get,n))}}),ov=y(function(e,t){var r=Ph(),a=Vs(),n=gr(),i=zh().methods,o=nv(),u=iv(),s=Function.prototype.apply,l=Function.prototype.call,c=Object.create,d=Object.defineProperties,f=i.on,p=i.emit;t.exports=function(m,h,v){var g=c(null),b,w,D,_,C,T,O,$,k,I,z,V,Q,ie,K;return h!==!1?w=h:isNaN(m.length)?w=1:w=m.length,v.normalizer&&(I=u(v.normalizer),D=I.get,_=I.set,C=I.delete,T=I.clear),v.resolvers!=null&&(K=o(v.resolvers)),D?ie=a(function(te){var q,J,A=arguments;if(K&&(A=K(A)),q=D(A),q!==null&&hasOwnProperty.call(g,q))return z&&b.emit("get",q,A,this),g[q];if(A.length===1?J=l.call(m,this,A[0]):J=s.call(m,this,A),q===null){if(q=D(A),q!==null)throw r("Circular invocation","CIRCULAR_INVOCATION");q=_(A)}else if(hasOwnProperty.call(g,q))throw r("Circular invocation","CIRCULAR_INVOCATION");return g[q]=J,V&&b.emit("set",q,null,J),J},w):h===0?ie=function(){var q;if(hasOwnProperty.call(g,"data"))return z&&b.emit("get","data",arguments,this),g.data;if(arguments.length?q=s.call(m,this,arguments):q=l.call(m,this),hasOwnProperty.call(g,"data"))throw r("Circular invocation","CIRCULAR_INVOCATION");return g.data=q,V&&b.emit("set","data",null,q),q}:ie=function(q){var J,A=arguments,U;if(K&&(A=K(arguments)),U=String(A[0]),hasOwnProperty.call(g,U))return z&&b.emit("get",U,A,this),g[U];if(A.length===1?J=l.call(m,this,A[0]):J=s.call(m,this,A),hasOwnProperty.call(g,U))throw r("Circular invocation","CIRCULAR_INVOCATION");return g[U]=J,V&&b.emit("set",U,null,J),J},b={original:m,memoized:ie,profileName:v.profileName,get:function(q){return K&&(q=K(q)),D?D(q):String(q[0])},has:function(q){return hasOwnProperty.call(g,q)},delete:function(q){var J;hasOwnProperty.call(g,q)&&(C&&C(q),J=g[q],delete g[q],Q&&b.emit("delete",q,J))},clear:function(){var q=g;T&&T(),g=c(null),b.emit("clear",q)},on:function(q,J){return q==="get"?z=!0:q==="set"?V=!0:q==="delete"&&(Q=!0),f.call(this,q,J)},emit:p,updateEnv:function(){m=b.original}},D?O=a(function(te){var q,J=arguments;K&&(J=K(J)),q=D(J),q!==null&&b.delete(q)},w):h===0?O=function(){return b.delete("data")}:O=function(q){return K&&(q=K(arguments)[0]),b.delete(q)},$=a(function(){var te,q=arguments;return h===0?g.data:(K&&(q=K(q)),D?te=D(q):te=String(q[0]),g[te])}),k=a(function(){var te,q=arguments;return h===0?b.has("data"):(K&&(q=K(q)),D?te=D(q):te=String(q[0]),te===null?!1:b.has(te))}),d(ie,{__memoized__:n(!0),delete:n(O),clear:n(b.clear),_get:n($),_has:n(k)}),b}}),uv=y(function(e,t){var r=Qt(),a=on(),n=vr(),i=ov(),o=js();t.exports=function u(s){var l,c,d;if(r(s),l=Object(arguments[1]),l.async&&l.promise)throw new Error("Options 'async' and 'promise' cannot be used together");return hasOwnProperty.call(s,"__memoized__")&&!l.force?s:(c=o(l.length,s.length,l.async&&n.async),d=i(s,c,l),a(n,function(f,p){l[p]&&f(l[p],d,l)}),u.__profiler__&&u.__profiler__(d),d.updateEnv(),d.memoized)}}),sv=y(function(e,t){t.exports=function(r){var a,n,i=r.length;if(!i)return"";for(a=String(r[n=0]);--i;)a+=""+r[++n];return a}}),lv=y(function(e,t){t.exports=function(r){return r?function(a){for(var n=String(a[0]),i=0,o=r;--o;)n+=""+a[++i];return n}:function(){return""}}}),cv=y(function(e,t){t.exports=function(){var r=Number.isNaN;return typeof r!="function"?!1:!r({})&&r(NaN)&&!r(34)}}),dv=y(function(e,t){t.exports=function(r){return r!==r}}),fv=y(function(e,t){t.exports=cv()()?Number.isNaN:dv()}),Vi=y(function(e,t){var r=fv(),a=hr(),n=kr(),i=Array.prototype.indexOf,o=Object.prototype.hasOwnProperty,u=Math.abs,s=Math.floor;t.exports=function(l){var c,d,f,p;if(!r(l))return i.apply(this,arguments);for(d=a(n(this).length),f=arguments[1],isNaN(f)?f=0:f>=0?f=s(f):f=a(this.length)-s(u(f)),c=f;c<d;++c)if(o.call(this,c)&&(p=this[c],r(p)))return c;return-1}}),pv=y(function(e,t){var r=Vi(),a=Object.create;t.exports=function(){var n=0,i=[],o=a(null);return{get:function(s){var l=0,c=i,d,f=s.length;if(f===0)return c[f]||null;if(c=c[f]){for(;l<f-1;){if(d=r.call(c[0],s[l]),d===-1)return null;c=c[1][d],++l}return d=r.call(c[0],s[l]),d===-1?null:c[1][d]||null}return null},set:function(s){var l=0,c=i,d,f=s.length;if(f===0)c[f]=++n;else{for(c[f]||(c[f]=[[],[]]),c=c[f];l<f-1;)d=r.call(c[0],s[l]),d===-1&&(d=c[0].push(s[l])-1,c[1].push([[],[]])),c=c[1][d],++l;d=r.call(c[0],s[l]),d===-1&&(d=c[0].push(s[l])-1),c[1][d]=++n}return o[n]=s,n},delete:function(s){var l=0,c=i,d,f=o[s],p=f.length,m=[];if(p===0)delete c[p];else if(c=c[p]){for(;l<p-1;){if(d=r.call(c[0],f[l]),d===-1)return;m.push(c,d),c=c[1][d],++l}if(d=r.call(c[0],f[l]),d===-1)return;for(s=c[1][d],c[0].splice(d,1),c[1].splice(d,1);!c[0].length&&m.length;)d=m.pop(),c=m.pop(),c[0].splice(d,1),c[1].splice(d,1)}delete o[s]},clear:function(){i=[],o=a(null)}}}}),mv=y(function(e,t){var r=Vi();t.exports=function(){var a=0,n=[],i=[];return{get:function(u){var s=r.call(n,u[0]);return s===-1?null:i[s]},set:function(u){return n.push(u[0]),i.push(++a),a},delete:function(u){var s=r.call(i,u);s!==-1&&(n.splice(s,1),i.splice(s,1))},clear:function(){n=[],i=[]}}}}),hv=y(function(e,t){var r=Vi(),a=Object.create;t.exports=function(n){var i=0,o=[[],[]],u=a(null);return{get:function(l){for(var c=0,d=o,f;c<n-1;){if(f=r.call(d[0],l[c]),f===-1)return null;d=d[1][f],++c}return f=r.call(d[0],l[c]),f===-1?null:d[1][f]||null},set:function(l){for(var c=0,d=o,f;c<n-1;)f=r.call(d[0],l[c]),f===-1&&(f=d[0].push(l[c])-1,d[1].push([[],[]])),d=d[1][f],++c;return f=r.call(d[0],l[c]),f===-1&&(f=d[0].push(l[c])-1),d[1][f]=++i,u[i]=l,i},delete:function(l){for(var c=0,d=o,f,p=[],m=u[l];c<n-1;){if(f=r.call(d[0],m[c]),f===-1)return;p.push(d,f),d=d[1][f],++c}if(f=r.call(d[0],m[c]),f!==-1){for(l=d[1][f],d[0].splice(f,1),d[1].splice(f,1);!d[0].length&&p.length;)f=p.pop(),d=p.pop(),d[0].splice(f,1),d[1].splice(f,1);delete u[l]}},clear:function(){o=[[],[]],u=a(null)}}}}),Us=y(function(e,t){var r=Qt(),a=on(),n=Function.prototype.call;t.exports=function(i,o){var u={},s=arguments[2];return r(o),a(i,function(l,c,d,f){u[c]=n.call(o,s,l,c,d,f)}),u}}),Hi=y(function(e,t){var r=function(i){if(typeof i!="function")throw new TypeError(i+" is not a function");return i},a=function(i){var o=M.createTextNode(""),u,s,l=0;return new i(function(){var c;if(u)s&&(u=s.concat(u));else{if(!s)return;u=s}if(s=u,u=null,typeof s=="function"){c=s,s=null,c();return}for(o.data=l=++l%2;s;)c=s.shift(),s.length||(s=null),c()}).observe(o,{characterData:!0}),function(c){if(r(c),u){typeof u=="function"?u=[u,c]:u.push(c);return}u=c,o.data=l=++l%2}};t.exports=(function(){if((typeof process>"u"?"undefined":P(process))==="object"&&process&&typeof process.nextTick=="function")return process.nextTick;if(typeof queueMicrotask=="function")return function(n){queueMicrotask(r(n))};if((typeof M>"u"?"undefined":P(M))==="object"&&M){if(typeof MutationObserver=="function")return a(MutationObserver);if(typeof WebKitMutationObserver=="function")return a(WebKitMutationObserver)}return typeof setImmediate=="function"?function(n){setImmediate(r(n))}:typeof setTimeout=="function"||(typeof setTimeout>"u"?"undefined":P(setTimeout))==="object"?function(n){setTimeout(r(n),0)}:null})()}),vv=y(function(){var e=zi(),t=Us(),r=zs(),a=Vs(),n=Hi(),i=Array.prototype.slice,o=Function.prototype.apply,u=Object.create;vr().async=function(s,l){var c=u(null),d=u(null),f=l.memoized,p=l.original,m,h,v;l.memoized=a(function(g){var b=arguments,w=b[b.length-1];return typeof w=="function"&&(m=w,b=i.call(b,0,-1)),f.apply(h=this,v=b)},f);try{r(l.memoized,f)}catch{}l.on("get",function(g){var b,w,D;if(m){if(c[g]){typeof c[g]=="function"?c[g]=[c[g],m]:c[g].push(m),m=null;return}b=m,w=h,D=v,m=h=v=null,n(function(){var _;hasOwnProperty.call(d,g)?(_=d[g],l.emit("getasync",g,D,w),o.call(b,_.context,_.args)):(m=b,h=w,v=D,f.apply(w,D))})}}),l.original=function(){var g,b,w,D;return m?(g=e(arguments),b=function _(C){var T,O,$=_.id;if($==null){n(o.bind(_,this,arguments));return}if(delete _.id,T=c[$],delete c[$],!!T)return O=e(arguments),l.has($)&&(C?l.delete($):(d[$]={context:this,args:O},l.emit("setasync",$,typeof T=="function"?1:T.length))),typeof T=="function"?D=o.call(T,this,O):T.forEach(function(k){D=o.call(k,this,O)},this),D},w=m,m=h=v=null,g.push(b),D=o.call(p,this,g),b.cb=w,m=b,D):o.call(p,this,arguments)},l.on("set",function(g){if(!m){l.delete(g);return}c[g]?typeof c[g]=="function"?c[g]=[c[g],m.cb]:c[g].push(m.cb):c[g]=m.cb,delete m.cb,m.id=g,m=null}),l.on("delete",function(g){var b;hasOwnProperty.call(c,g)||d[g]&&(b=d[g],delete d[g],l.emit("deleteasync",g,i.call(b.args,1)))}),l.on("clear",function(){var g=d;d=u(null),l.emit("clearasync",t(g,function(b){return i.call(b.args,1)}))})}}),gv=y(function(e,t){var r=Array.prototype.forEach,a=Object.create;t.exports=function(n){var i=a(null);return r.call(arguments,function(o){i[o]=!0}),i}}),Ws=y(function(e,t){t.exports=function(r){return typeof r=="function"}}),bv=y(function(e,t){var r=Ws();t.exports=function(a){try{return a&&r(a.toString)?a.toString():String(a)}catch{throw new TypeError("Passed argument cannot be stringifed")}}}),yv=y(function(e,t){var r=kr(),a=bv();t.exports=function(n){return a(r(n))}}),Dv=y(function(e,t){var r=Ws();t.exports=function(a){try{return a&&r(a.toString)?a.toString():String(a)}catch{return"<Non-coercible to string value>"}}}),wv=y(function(e,t){var r=Dv(),a=/[\n\r\u2028\u2029]/g;t.exports=function(n){var i=r(n);return i.length>100&&(i=i.slice(0,99)+"…"),i=i.replace(a,function(o){return JSON.stringify(o).slice(1,-1)}),i}}),Ys=y(function(e,t){t.exports=r,t.exports.default=r;function r(a){return!!a&&(P(a)==="object"||typeof a=="function")&&typeof a.then=="function"}}),_v=y(function(){var e=Us(),t=gv(),r=yv(),a=wv(),n=Ys(),i=Hi(),o=Object.create,u=t("then","then:finally","done","done:finally");vr().promise=function(s,l){var c=o(null),d=o(null),f=o(null);if(s===!0)s=null;else if(s=r(s),!u[s])throw new TypeError("'"+a(s)+"' is not valid promise mode");l.on("set",function(p,m,h){var v=!1;if(!n(h)){d[p]=h,l.emit("setasync",p,1);return}c[p]=1,f[p]=h;var g=function(C){var T=c[p];if(v)throw new Error(`Memoizee error: Detected unordered then|done & finally resolution, which in turn makes proper detection of success/failure impossible (when in 'done:finally' mode)
8
+ Consider to rely on 'then' or 'done' mode instead.`);T&&(delete c[p],d[p]=C,l.emit("setasync",p,T))},b=function(){v=!0,c[p]&&(delete c[p],delete f[p],l.delete(p))},w=s;if(w||(w="then"),w==="then"){var D=function(){i(b)};h=h.then(function(_){i(g.bind(this,_))},D),typeof h.finally=="function"&&h.finally(D)}else if(w==="done"){if(typeof h.done!="function")throw new Error("Memoizee error: Retrieved promise does not implement 'done' in 'done' mode");h.done(g,b)}else if(w==="done:finally"){if(typeof h.done!="function")throw new Error("Memoizee error: Retrieved promise does not implement 'done' in 'done:finally' mode");if(typeof h.finally!="function")throw new Error("Memoizee error: Retrieved promise does not implement 'finally' in 'done:finally' mode");h.done(g),h.finally(b)}}),l.on("get",function(p,m,h){var v;if(c[p]){++c[p];return}v=f[p];var g=function(){l.emit("getasync",p,m,h)};n(v)?typeof v.done=="function"?v.done(g):v.then(function(){i(g)}):g()}),l.on("delete",function(p){if(delete f[p],c[p]){delete c[p];return}if(hasOwnProperty.call(d,p)){var m=d[p];delete d[p],l.emit("deleteasync",p,[m])}}),l.on("clear",function(){var p=d;d=o(null),c=o(null),f=o(null),l.emit("clearasync",e(p,function(m){return[m]}))})}}),xv=y(function(){var e=Qt(),t=on(),r=vr(),a=Function.prototype.apply;r.dispose=function(n,i,o){var u;if(e(n),o.async&&r.async||o.promise&&r.promise){i.on("deleteasync",u=function(l,c){a.call(n,null,c)}),i.on("clearasync",function(s){t(s,function(l,c){u(c,l)})});return}i.on("delete",u=function(l,c){n(c)}),i.on("clear",function(s){t(s,function(l,c){u(c,l)})})}}),Ev=y(function(e,t){t.exports=2147483647}),Av=y(function(e,t){var r=hr(),a=Ev();t.exports=function(n){if(n=r(n),n>a)throw new TypeError(n+" exceeds maximum possible timeout");return n}}),Fv=y(function(){var e=zi(),t=on(),r=Hi(),a=Ys(),n=Av(),i=vr(),o=Function.prototype,u=Math.max,s=Math.min,l=Object.create;i.maxAge=function(c,d,f){var p,m,h,v;c=n(c),c&&(p=l(null),m=f.async&&i.async||f.promise&&i.promise?"async":"",d.on("set"+m,function(g){p[g]=setTimeout(function(){d.delete(g)},c),typeof p[g].unref=="function"&&p[g].unref(),v&&(v[g]&&v[g]!=="nextTick"&&clearTimeout(v[g]),v[g]=setTimeout(function(){delete v[g]},h),typeof v[g].unref=="function"&&v[g].unref())}),d.on("delete"+m,function(g){clearTimeout(p[g]),delete p[g],v&&(v[g]!=="nextTick"&&clearTimeout(v[g]),delete v[g])}),f.preFetch&&(f.preFetch===!0||isNaN(f.preFetch)?h=.333:h=u(s(Number(f.preFetch),1),0),h&&(v={},h=(1-h)*c,d.on("get"+m,function(g,b,w){v[g]||(v[g]="nextTick",r(function(){var D;v[g]==="nextTick"&&(delete v[g],d.delete(g),f.async&&(b=e(b),b.push(o)),D=d.memoized.apply(w,b),f.promise&&a(D)&&(typeof D.done=="function"?D.done(o,o):D.then(o,o)))}))}))),d.on("clear"+m,function(){t(p,function(g){clearTimeout(g)}),p={},v&&(t(v,function(g){g!=="nextTick"&&clearTimeout(g)}),v={})}))}}),Cv=y(function(e,t){var r=hr(),a=Object.create,n=Object.prototype.hasOwnProperty;t.exports=function(i){var o=0,u=1,s=a(null),l=a(null),c=0,d;return i=r(i),{hit:function(p){var m=l[p],h=++c;if(s[h]=p,l[p]=h,!m)return++o,o<=i?void 0:(p=s[u],d(p),p);if(delete s[m],u===m)for(;!n.call(s,++u););},delete:d=function(p){var m=l[p];if(m&&(delete s[m],delete l[p],--o,u===m)){if(!o){c=0,u=1;return}for(;!n.call(s,++u););}},clear:function(){o=0,u=1,s=a(null),l=a(null),c=0}}}}),Rv=y(function(){var e=hr(),t=Cv(),r=vr();r.max=function(a,n,i){var o,u,s;a=e(a),a&&(u=t(a),o=i.async&&r.async||i.promise&&r.promise?"async":"",n.on("set"+o,s=function(c){c=u.hit(c),c!==void 0&&n.delete(c)}),n.on("get"+o,s),n.on("delete"+o,u.delete),n.on("clear"+o,u.clear))}}),Tv=y(function(){var e=gr(),t=vr(),r=Object.create,a=Object.defineProperties;t.refCounter=function(n,i,o){var u,s;u=r(null),s=o.async&&t.async||o.promise&&t.promise?"async":"",i.on("set"+s,function(l,c){u[l]=c||1}),i.on("get"+s,function(l){++u[l]}),i.on("delete"+s,function(l){delete u[l]}),i.on("clear"+s,function(){u={}}),a(i.memoized,{deleteRef:e(function(){var l=i.get(arguments);return l===null||!u[l]?null:--u[l]?!1:(i.delete(l),!0)}),getRefCount:e(function(){var l=i.get(arguments);return l===null||!u[l]?0:u[l]})})}}),Sv=y(function(e,t){var r=qs(),a=js(),n=uv();t.exports=function(i){var o=r(arguments[1]),u;return o.normalizer||(u=o.length=a(o.length,i.length,o.async),u!==0&&(o.primitive?u===!1?o.normalizer=sv():u>1&&(o.normalizer=lv()(u)):u===!1?o.normalizer=pv()():u===1?o.normalizer=mv()():o.normalizer=hv()(u))),o.async&&vv(),o.promise&&_v(),o.dispose&&xv(),o.maxAge&&Fv(),o.max&&Rv(),o.refCounter&&Tv(),n(i,o)}}),kv=[{name:"NA",value:"inapplicable",priority:0,group:"inapplicable"},{name:"PASS",value:"passed",priority:1,group:"passes"},{name:"CANTTELL",value:"cantTell",priority:2,group:"incomplete"},{name:"FAIL",value:"failed",priority:3,group:"violations"}],Ct={helpUrlBase:"https://dequeuniversity.com/rules/",gridSize:200,selectorSimilarFilterLimit:700,results:[],resultGroups:[],resultGroupMap:{},impact:Object.freeze(["minor","moderate","serious","critical"]),preload:Object.freeze({assets:["cssom","media"],timeout:1e4}),allOrigins:"<unsafe_all_origins>",sameOrigin:"<same_origin>",serializableErrorProps:Object.freeze(["message","stack","name","code","ruleId","method"])};kv.forEach(function(e){var t=e.name,r=e.value,a=e.priority,n=e.group;Ct[t]=r,Ct[t+"_PRIO"]=a,Ct[t+"_GROUP"]=n,Ct.results[a]=r,Ct.resultGroups[a]=n,Ct.resultGroupMap[r]=n}),Object.freeze(Ct.results),Object.freeze(Ct.resultGroups),Object.freeze(Ct.resultGroupMap),Object.freeze(Ct);var se=Ct;function Ov(){(typeof console>"u"?"undefined":P(console))==="object"&&console.log&&Function.prototype.apply.call(console.log,console,arguments)}var br=Ov,Mv=/[\t\r\n\f]/g,Pv=(function(){function e(){_t(this,e),this.parent=void 0}return xt(e,[{key:"props",get:function(){throw new Error('VirtualNode class must have a "props" object consisting of "nodeType" and "nodeName" properties')}},{key:"attrNames",get:function(){throw new Error('VirtualNode class must have an "attrNames" property')}},{key:"attr",value:function(){throw new Error('VirtualNode class must have an "attr" function')}},{key:"hasAttr",value:function(){throw new Error('VirtualNode class must have a "hasAttr" function')}},{key:"hasClass",value:function(r){var a=this.attr("class");if(!a)return!1;var n=" "+r+" ";return(" "+a+" ").replace(Mv," ").indexOf(n)>=0}}])})(),He=Pv,Gi={};Et(Gi,{DqElement:function(){return yt},RuleError:function(){return pi},aggregate:function(){return sn},aggregateChecks:function(){return Zs},aggregateNodeResults:function(){return Js},aggregateResult:function(){return Qs},areStylesSet:function(){return $v},assert:function(){return he},checkHelper:function(){return au},clone:function(){return Wt},closest:function(){return ct},collectResultsFromFrames:function(){return E1},contains:function(){return Yt},convertSelector:function(){return Xn},cssParser:function(){return n1},deepMerge:function(){return gu},escapeSelector:function(){return Oe},extendMetaData:function(){return bu},filterHtmlAttrs:function(){return rf},finalizeRuleResult:function(){return oa},findBy:function(){return Ba},getAllChecks:function(){return ti},getAncestry:function(){return Sn},getBaseLang:function(){return Rr},getCheckMessage:function(){return nw},getCheckOption:function(){return ui},getEnvironmentData:function(){return lr},getFlattenedTree:function(){return wu},getFrameContexts:function(){return ww},getFriendlyUriEnd:function(){return rl},getNodeAttributes:function(){return la},getNodeFromTree:function(){return ce},getPreloadConfig:function(){return J1},getRootNode:function(){return ya},getRule:function(){return N1},getScroll:function(){return Kt},getScrollState:function(){return Ew},getSelector:function(){return bo},getSelectorData:function(){return Tn},getShadowSelector:function(){return ho},getStandards:function(){return Aw},getStyleSheetFactory:function(){return q1},getXpath:function(){return yc},injectStyle:function(){return Rw},isArrayLike:function(){return Fu},isContextObject:function(){return Cu},isContextProp:function(){return li},isContextSpec:function(){return j1},isHidden:function(){return Tw},isHtmlElement:function(){return Tu},isLabelledFramesSelector:function(){return Ru},isLabelledShadowDomSelector:function(){return ci},isNodeInContext:function(){return Su},isShadowRoot:function(){return ai},isValidLang:function(){return hi},isXHTML:function(){return Rn},matchAncestry:function(){return ku},matches:function(){return iu},matchesExpression:function(){return $r},matchesSelector:function(){return Or},memoize:function(){return Re},mergeResults:function(){return ri},nodeLookup:function(){return ye},nodeSerializer:function(){return Dt},nodeSorter:function(){return Ou},objectHasOwn:function(){return Lt},parseCrossOriginStylesheet:function(){return Pu},parseSameOriginStylesheet:function(){return V1},parseStylesheet:function(){return Mu},parseTabindex:function(){return qt},performanceTimer:function(){return ge},pollyfillElementsFromPoint:function(){return H1},preload:function(){return X1},preloadCssom:function(){return U1},preloadMedia:function(){return K1},processMessage:function(){return Au},publishMetaData:function(){return di},querySelectorAll:function(){return ft},querySelectorAllFilter:function(){return jt},queue:function(){return Bt},respondable:function(){return kt},ruleShouldRun:function(){return tf},select:function(){return Iu},sendCommandToFrame:function(){return D1},serializeError:function(){return fi},setScrollState:function(){return s_},shadowSelect:function(){return l_},shadowSelectAll:function(){return Nu},shouldPreload:function(){return Z1},toArray:function(){return tl},tokenList:function(){return Ze},uniqueArray:function(){return qa},uuid:function(){return xD},validInputTypes:function(){return mi},validLangs:function(){return sf}});function Iv(e,t,r){t=t.slice(),r&&t.push(r);var a=t.map(function(n){return e.indexOf(n)}).sort();return e[a.pop()]}var sn=Iv,Nv=se.CANTTELL_PRIO,Bv=se.FAIL_PRIO,ln=[];ln[se.PASS_PRIO]=!0,ln[se.CANTTELL_PRIO]=null,ln[se.FAIL_PRIO]=!1;var Ks=["any","all","none"];function Xs(e,t){return Ks.reduce(function(r,a){return r[a]=(e[a]||[]).map(function(n){return t(n,a)}),r},{})}function Lv(e){var t=Object.assign({},e);Xs(t,function(n,i){var o=typeof n.result>"u"?-1:ln.indexOf(n.result);n.priority=o!==-1?o:se.CANTTELL_PRIO,i==="none"&&(n.priority===se.PASS_PRIO?n.priority=se.FAIL_PRIO:n.priority===se.FAIL_PRIO&&(n.priority=se.PASS_PRIO))});var r={all:t.all.reduce(function(n,i){return Math.max(n,i.priority)},0),none:t.none.reduce(function(n,i){return Math.max(n,i.priority)},0),any:t.any.reduce(function(n,i){return Math.min(n,i.priority)},4)%4};t.priority=Math.max(r.all,r.none,r.any);var a=[];return Ks.forEach(function(n){t[n]=t[n].filter(function(i){return i.priority===t.priority&&i.priority===r[n]}),t[n].forEach(function(i){return a.push(i.impact)})}),[Nv,Bv].includes(t.priority)?t.impact=sn(se.impact,a):t.impact=null,Xs(t,function(n){delete n.result,delete n.priority}),t.result=se.results[t.priority],delete t.priority,t}var Zs=Lv;function oa(e){var t=x._audit.rules.find(function(r){var a=r.id;return a===e.id});return t&&t.impact&&e.nodes.forEach(function(r){["any","all","none"].forEach(function(a){(r[a]||[]).forEach(function(n){n.impact=t.impact})})}),Object.assign(e,Js(e.nodes)),delete e.nodes,e}function qv(e){var t={};if(e=e.map(function(i){if(i.any&&i.all&&i.none)return Zs(i);if(Array.isArray(i.node))return oa(i);throw new TypeError("Invalid Result type")}),e&&e.length){var r=e.map(function(i){return i.result});t.result=sn(se.results,r,t.result)}else t.result="inapplicable";se.resultGroups.forEach(function(i){return t[i]=[]}),e.forEach(function(i){var o=se.resultGroupMap[i.result];t[o].push(i)});var a=se.FAIL_GROUP;if(t[a].length===0&&(a=se.CANTTELL_GROUP),t[a].length>0){var n=t[a].map(function(i){return i.impact});t.impact=sn(se.impact,n)||null}else t.impact=null;return t}var Js=qv;function Ui(e,t,r){var a=Object.assign({},t);a.nodes=(a[r]||[]).concat(),se.resultGroups.forEach(function(n){delete a[n]}),e[r].push(a)}function jv(e){var t={};return se.resultGroups.forEach(function(r){return t[r]=[]}),e.forEach(function(r){r.error?Ui(t,r,se.CANTTELL_GROUP):r.result===se.NA?Ui(t,r,se.NA_GROUP):se.resultGroups.forEach(function(a){Array.isArray(r[a])&&r[a].length>0&&Ui(t,r,a)})}),t}var Qs=jv;function el(e,t,r){var a=E.getComputedStyle(e,null);if(!a)return!1;for(var n=0;n<t.length;++n){var i=t[n];if(a.getPropertyValue(i.property)===i.value)return!0}return!e.parentNode||e.nodeName.toUpperCase()===r.toUpperCase()?!1:el(e.parentNode,t,r)}var $v=el;function zv(e,t){if(!e)throw new Error(t)}var he=zv;function Vv(e){return Array.prototype.slice.call(e)}var tl=Vv;function Hv(e){for(var t=String(e),r=t.length,a=-1,n,i="",o=t.charCodeAt(0);++a<r;){if(n=t.charCodeAt(a),n==0){i+="�";continue}if(n>=1&&n<=31||n==127||a==0&&n>=48&&n<=57||a==1&&n>=48&&n<=57&&o==45){i+="\\"+n.toString(16)+" ";continue}if(a==0&&r==1&&n==45){i+="\\"+t.charAt(a);continue}if(n>=128||n==45||n==95||n>=48&&n<=57||n>=65&&n<=90||n>=97&&n<=122){i+=t.charAt(a);continue}i+="\\"+t.charAt(a)}return i}var Oe=Hv;function Gv(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";return e.length!==0&&(e.match(/[0-9]/g)||"").length>=e.length/2}function ua(e,t){return[e.substring(0,t),e.substring(t)]}function sa(e){return e.replace(/\s+$/,"")}function Uv(e){var t=e,r="",a="",n="",i="",o="",u="";if(e.includes("#")){var s=ua(e,e.indexOf("#")),l=H(s,2);e=l[0],u=l[1]}if(e.includes("?")){var c=ua(e,e.indexOf("?")),d=H(c,2);e=d[0],o=d[1]}if(e.includes("://")){var f=e.split("://"),p=H(f,2);r=p[0],e=p[1];var m=ua(e,e.indexOf("/")),h=H(m,2);a=h[0],e=h[1]}else if(e.substr(0,2)==="//"){e=e.substr(2);var v=ua(e,e.indexOf("/")),g=H(v,2);a=g[0],e=g[1]}if(a.substr(0,4)==="www."&&(a=a.substr(4)),a&&a.includes(":")){var b=ua(a,a.indexOf(":")),w=H(b,2);a=w[0],n=w[1]}return i=e,{original:t,protocol:r,domain:a,port:n,path:i,query:o,hash:u}}function Wv(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(!(e.length<=1||e.substr(0,5)==="data:"||e.substr(0,11)==="javascript:"||e.includes("?"))){var r=t.currentDomain,a=t.maxLength,n=a===void 0?25:a,i=Uv(e),o=i.path,u=i.domain,s=i.hash,l=o.substr(o.substr(0,o.length-2).lastIndexOf("/")+1);if(s)return l&&(l+s).length<=n?sa(l+s):l.length<2&&s.length>2&&s.length<=n?sa(s):void 0;if(u&&u.length<n&&o.length<=1||o==="/"+l&&u&&r&&u!==r&&(u+o).length<=n)return sa(u+o);var c=l.lastIndexOf(".");if((c===-1||c>1)&&(c!==-1||l.length>2)&&l.length<=n&&!l.match(/index(\.[a-zA-Z]{2-4})?/)&&!Gv(l))return sa(l)}}var rl=Wv;function Yv(e){return e.attributes instanceof E.NamedNodeMap?e.attributes:e.cloneNode(!1).attributes}var la=Yv,Kv=(function(){var e;function t(r){var a=["matches","matchesSelector","mozMatchesSelector","webkitMatchesSelector","msMatchesSelector"],n=a.length,i,o;for(i=0;i<n;i++)if(o=a[i],r[o])return o}return function(r,a){return(!e||!r[e])&&(e=t(r)),r[e]?r[e](a):!1}})(),Or=Kv,al={};Et(al,{ArrayFrom:function(){return pc.default},Colorjs:function(){return Ee},CssSelectorParser:function(){return nl.CssSelectorParser},doT:function(){return er.default},emojiRegexText:function(){return Wi},memoize:function(){return il.default}});var Xv=Ot(gm()),Zv=Ot(bm());Ot(ym());var Jv=Ot(Mm()),Qv=Ot(Hm()),eg=Ot(Bs());"hasOwn"in Object||(Object.hasOwn=Jv.default),"values"in Object||(Object.values=Qv.default),"Promise"in E||Xv.default.polyfill(),"Uint32Array"in E||(E.Uint32Array=Zv.Uint32Array),E.Uint32Array&&("some"in E.Uint32Array.prototype||Object.defineProperty(E.Uint32Array.prototype,"some",{value:Array.prototype.some}),"reduce"in E.Uint32Array.prototype||Object.defineProperty(E.Uint32Array.prototype,"reduce",{value:Array.prototype.reduce})),typeof Object.assign!="function"&&(function(){Object.assign=function(e){if(e==null)throw new TypeError("Cannot convert undefined or null to object");for(var t=Object(e),r=1;r<arguments.length;r++){var a=arguments[r];if(a!=null)for(var n in a)a.hasOwnProperty(n)&&(t[n]=a[n])}return t}})(),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(t){if(this===null)throw new TypeError("Array.prototype.find called on null or undefined");if(typeof t!="function")throw new TypeError("predicate must be a function");for(var r=Object(this),a=r.length>>>0,n=arguments[1],i,o=0;o<a;o++)if(i=r[o],t.call(n,i,o,r))return i}}),Array.prototype.findIndex||Object.defineProperty(Array.prototype,"findIndex",{value:function(t,r){if(this===null)throw new TypeError("Array.prototype.find called on null or undefined");if(typeof t!="function")throw new TypeError("predicate must be a function");for(var a=Object(this),n=a.length>>>0,i,o=0;o<n;o++)if(i=a[o],t.call(r,i,o,a))return o;return-1}}),Array.prototype.includes||Object.defineProperty(Array.prototype,"includes",{value:function(t){var r=Object(this),a=parseInt(r.length,10)||0;if(a===0)return!1;var n=parseInt(arguments[1],10)||0,i;n>=0?i=n:(i=a+n,i<0&&(i=0));for(var o;i<a;){if(o=r[i],t===o||t!==t&&o!==o)return!0;i++}return!1}}),Array.prototype.some||Object.defineProperty(Array.prototype,"some",{value:function(t){if(this==null)throw new TypeError("Array.prototype.some called on null or undefined");if(typeof t!="function")throw new TypeError;for(var r=Object(this),a=r.length>>>0,n=arguments.length>=2?arguments[1]:void 0,i=0;i<a;i++)if(i in r&&t.call(n,r[i],i,r))return!0;return!1}}),Array.from||(Array.from=eg.default),String.prototype.includes||(String.prototype.includes=function(e,t){return typeof t!="number"&&(t=0),t+e.length>this.length?!1:this.indexOf(e,t)!==-1}),Array.prototype.flat||Object.defineProperty(Array.prototype,"flat",{configurable:!0,value:function e(){var t=isNaN(arguments[0])?1:Number(arguments[0]);return t?Array.prototype.reduce.call(this,function(r,a){return Array.isArray(a)?r.push.apply(r,e.call(a,t-1)):r.push(a),r},[]):Array.prototype.slice.call(this)},writable:!0}),E.Node&&!("isConnected"in E.Node.prototype)&&Object.defineProperty(E.Node.prototype,"isConnected",{get:function(){return!this.ownerDocument||!(this.ownerDocument.compareDocumentPosition(this)&this.DOCUMENT_POSITION_DISCONNECTED)}});var nl=Ot(Dh()),er=Ot(wh()),Wi=function(){return/[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E-\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED8\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])))?))?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3C-\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE8A\uDE8E-\uDEC2\uDEC6\uDEC8\uDECD-\uDEDC\uDEDF-\uDEEA\uDEEF]|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g},il=Ot(Sv());function Ne(e,t){var r=e.length;Array.isArray(e[0])||(e=[e]),Array.isArray(t[0])||(t=t.map(function(o){return[o]}));var a=t[0].length,n=t[0].map(function(o,u){return t.map(function(s){return s[u]})}),i=e.map(function(o){return n.map(function(u){var s=0;if(!Array.isArray(o)){var l=xe(u),c;try{for(l.s();!(c=l.n()).done;){var d=c.value;s+=o*d}}catch(p){l.e(p)}finally{l.f()}return s}for(var f=0;f<o.length;f++)s+=o[f]*(u[f]||0);return s})});return r===1&&(i=i[0]),a===1?i.map(function(o){return o[0]}):i}function ca(e){return tr(e)==="string"}function tr(e){var t=Object.prototype.toString.call(e);return(t.match(/^\[object\s+(.*?)\]$/)[1]||"").toLowerCase()}function cn(e,t){e=+e,t=+t;var r=(Math.floor(e)+"").length;if(t>r)return+e.toFixed(t-r);var a=Math.pow(10,r-t);return Math.round(e/a)*a}function ol(e){if(e){e=e.trim();var t=/^([a-z]+)\((.+?)\)$/i,r=/^-?[\d.]+$/,a=e.match(t);if(a){var n=[];return a[2].replace(/\/?\s*([-\w.]+(?:%|deg)?)/g,function(i,o){/%$/.test(o)?(o=new Number(o.slice(0,-1)/100),o.type="<percentage>"):/deg$/.test(o)?(o=new Number(+o.slice(0,-3)),o.type="<angle>",o.unit="deg"):r.test(o)&&(o=new Number(o),o.type="<number>"),i.startsWith("/")&&(o=o instanceof Number?o:new Number(o),o.alpha=!0),n.push(o)}),{name:a[1].toLowerCase(),rawName:a[1],rawArgs:a[2],args:n}}}}function ul(e){return e[e.length-1]}function dn(e,t,r){return isNaN(e)?t:isNaN(t)?e:e+(t-e)*r}function sl(e,t,r){return(r-e)/(t-e)}function Yi(e,t,r){return dn(t[0],t[1],sl(e[0],e[1],r))}function ll(e){return e.map(function(t){return t.split("|").map(function(r){r=r.trim();var a=r.match(/^(<[a-z]+>)\[(-?[.\d]+),\s*(-?[.\d]+)\]?$/);if(a){var n=new String(a[1]);return n.range=[+a[2],+a[3]],n}return r})})}var tg=Object.freeze({__proto__:null,isString:ca,type:tr,toPrecision:cn,parseFunction:ol,last:ul,interpolate:dn,interpolateInv:sl,mapRange:Yi,parseCoordGrammar:ll,multiplyMatrices:Ne}),rg=(function(){function e(){_t(this,e)}return xt(e,[{key:"add",value:function(r,a,n){if(typeof arguments[0]!="string"){for(var r in arguments[0])this.add(r,arguments[0][r],arguments[1]);return}(Array.isArray(r)?r:[r]).forEach(function(i){this[i]=this[i]||[],a&&this[i][n?"unshift":"push"](a)},this)}},{key:"run",value:function(r,a){this[r]=this[r]||[],this[r].forEach(function(n){n.call(a&&a.context?a.context:a,a)})}}])})(),rr=new rg,Mt={gamut_mapping:"lch.c",precision:5,deltaE:"76"},Rt={D50:[.3457/.3585,1,(1-.3457-.3585)/.3585],D65:[.3127/.329,1,(1-.3127-.329)/.329]};function Ki(e){return Array.isArray(e)?e:Rt[e]}function fn(e,t,r){var a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{};if(e=Ki(e),t=Ki(t),!e||!t)throw new TypeError("Missing white point to convert ".concat(e?"":"from").concat(!e&&!t?"/":"").concat(t?"":"to"));if(e===t)return r;var n={W1:e,W2:t,XYZ:r,options:a};if(rr.run("chromatic-adaptation-start",n),n.M||(n.W1===Rt.D65&&n.W2===Rt.D50?n.M=[[1.0479298208405488,.022946793341019088,-.05019222954313557],[.029627815688159344,.990434484573249,-.01707382502938514],[-.009243058152591178,.015055144896577895,.7518742899580008]]:n.W1===Rt.D50&&n.W2===Rt.D65&&(n.M=[[.9554734527042182,-.023098536874261423,.0632593086610217],[-.028369706963208136,1.0099954580058226,.021041398966943008],[.012314001688319899,-.020507696433477912,1.3303659366080753]])),rr.run("chromatic-adaptation-end",n),n.M)return Ne(n.M,n.XYZ);throw new TypeError("Only Bradford CAT with white points D50 and D65 supported for now.")}var ag=75e-6,Tt=(F=new WeakSet,S=new WeakMap,(function(){function e(t){var r,a,n,i,o,u,s;_t(this,e),ss(this,F),Zt(this,S,void 0),this.id=t.id,this.name=t.name,this.base=t.base?Tt.get(t.base):null,this.aliases=t.aliases,this.base&&(this.fromBase=t.fromBase,this.toBase=t.toBase);var l=(r=t.coords)!==null&&r!==void 0?r:this.base.coords;this.coords=l;var c=(a=(n=t.white)!==null&&n!==void 0?n:this.base.white)!==null&&a!==void 0?a:"D65";this.white=Ki(c),this.formats=(i=t.formats)!==null&&i!==void 0?i:{};for(var d in this.formats){var f=this.formats[d];f.type||(f.type="function"),f.name||(f.name=d)}t.cssId&&!((o=this.formats.functions)!==null&&o!==void 0&&o.color)?(this.formats.color={id:t.cssId},Object.defineProperty(this,"cssId",{value:t.cssId})):(u=this.formats)!==null&&u!==void 0&&u.color&&!((s=this.formats)!==null&&s!==void 0&&s.color.id)&&(this.formats.color.id=this.id),this.referred=t.referred,at(S,this,Tr(F,this,ng).call(this).reverse()),rr.run("colorspace-init-end",this)}return xt(e,[{key:"inGamut",value:function(r){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=a.epsilon,i=n===void 0?ag:n;if(this.isPolar)return r=this.toBase(r),this.base.inGamut(r,{epsilon:i});var o=Object.values(this.coords);return r.every(function(u,s){var l=o[s];if(l.type!=="angle"&&l.range){if(Number.isNaN(u))return!0;var c=H(l.range,2),d=c[0],f=c[1];return(d===void 0||u>=d-i)&&(f===void 0||u<=f+i)}return!0})}},{key:"cssId",get:function(){var r;return((r=this.formats.functions)===null||r===void 0||(r=r.color)===null||r===void 0?void 0:r.id)||this.id}},{key:"isPolar",get:function(){for(var r in this.coords)if(this.coords[r].type==="angle")return!0;return!1}},{key:"getFormat",value:function(r){if(P(r)==="object")return r=Tr(F,this,cl).call(this,r),r;var a;return r==="default"?a=Object.values(this.formats)[0]:a=this.formats[r],a?(a=Tr(F,this,cl).call(this,a),a):null}},{key:"to",value:function(r,a){if(arguments.length===1){var n=[r.space,r.coords];r=n[0],a=n[1]}if(r=Tt.get(r),this===r)return a;a=a.map(function(f){return Number.isNaN(f)?0:f});for(var i=wt(S,this),o=wt(S,r),u,s,l=0;l<i.length&&i[l]===o[l];l++)u=i[l],s=l;if(!u)throw new Error("Cannot convert between color spaces ".concat(this," and ").concat(r,": no connection space was found"));for(var c=i.length-1;c>s;c--)a=i[c].toBase(a);for(var d=s+1;d<o.length;d++)a=o[d].fromBase(a);return a}},{key:"from",value:function(r,a){if(arguments.length===1){var n=[r.space,r.coords];r=n[0],a=n[1]}return r=Tt.get(r),r.to(this,a)}},{key:"toString",value:function(){return"".concat(this.name," (").concat(this.id,")")}},{key:"getMinCoords",value:function(){var r=[];for(var a in this.coords){var n,i=this.coords[a],o=i.range||i.refRange;r.push((n=o?.min)!==null&&n!==void 0?n:0)}return r}}],[{key:"all",get:function(){return re(new Set(Object.values(Tt.registry)))}},{key:"register",value:function(r,a){if(arguments.length===1&&(a=arguments[0],r=a.id),a=this.get(a),this.registry[r]&&this.registry[r]!==a)throw new Error("Duplicate color space registration: '".concat(r,"'"));if(this.registry[r]=a,arguments.length===1&&a.aliases){var n=xe(a.aliases),i;try{for(n.s();!(i=n.n()).done;){var o=i.value;this.register(o,a)}}catch(u){n.e(u)}finally{n.f()}}return a}},{key:"get",value:function(r){if(!r||r instanceof Tt)return r;var a=tr(r);if(a==="string"){var n=Tt.registry[r.toLowerCase()];if(!n)throw new TypeError('No color space found with id = "'.concat(r,'"'));return n}for(var i=arguments.length,o=new Array(i>1?i-1:0),u=1;u<i;u++)o[u-1]=arguments[u];if(o.length)return Tt.get.apply(Tt,o);throw new TypeError("".concat(r," is not a valid color space"))}},{key:"resolveCoord",value:function(r,a){var n=tr(r),i,o;if(n==="string")if(r.includes(".")){var u=r.split("."),s=H(u,2);i=s[0],o=s[1]}else i=void 0,o=r;else if(Array.isArray(r)){var l=H(r,2);i=l[0],o=l[1]}else i=r.space,o=r.coordId;if(i=Tt.get(i),i||(i=a),!i)throw new TypeError("Cannot resolve coordinate reference ".concat(r,": No color space specified and relative references are not allowed here"));if(n=tr(o),n==="number"||n==="string"&&o>=0){var c=Object.entries(i.coords)[o];if(c)return de({space:i,id:c[0],index:o},c[1])}i=Tt.get(i);var d=o.toLowerCase(),f=0;for(var p in i.coords){var m,h=i.coords[p];if(p.toLowerCase()===d||((m=h.name)===null||m===void 0?void 0:m.toLowerCase())===d)return de({space:i,id:p,index:f},h);f++}throw new TypeError('No "'.concat(o,'" coordinate found in ').concat(i.name,". Its coordinates are: ").concat(Object.keys(i.coords).join(", ")))}}])})());function cl(e){if(e.coords&&!e.coordGrammar){e.type||(e.type="function"),e.name||(e.name="color"),e.coordGrammar=ll(e.coords);var t=Object.entries(this.coords).map(function(r,a){var n=H(r,2);n[0];var i=n[1],o=e.coordGrammar[a][0],u=i.range||i.refRange,s=o.range,l="";return o=="<percentage>"?(s=[0,100],l="%"):o=="<angle>"&&(l="deg"),{fromRange:u,toRange:s,suffix:l}});e.serializeCoords=function(r,a){return r.map(function(n,i){var o=t[i],u=o.fromRange,s=o.toRange,l=o.suffix;return u&&s&&(n=Yi(u,s,n)),n=cn(n,a),l&&(n+=l),n})}}return e}function ng(){for(var e=[this],t=this;t=t.base;)e.push(t);return e}var ee=Tt;ms(ee,"registry",{}),ms(ee,"DEFAULT_FORMAT",{type:"functions",name:"color"});var ht=new ee({id:"xyz-d65",name:"XYZ D65",coords:{x:{name:"X"},y:{name:"Y"},z:{name:"Z"}},white:"D65",formats:{color:{ids:["xyz-d65","xyz"]}},aliases:["xyz"]}),it=(function(e){function t(r){var a,n;if(_t(this,t),r.coords||(r.coords={r:{range:[0,1],name:"Red"},g:{range:[0,1],name:"Green"},b:{range:[0,1],name:"Blue"}}),r.base||(r.base=ht),r.toXYZ_M&&r.fromXYZ_M){var i,o;(i=r.toBase)!==null&&i!==void 0||(r.toBase=function(u){var s=Ne(r.toXYZ_M,u);return n.white!==n.base.white&&(s=fn(n.white,n.base.white,s)),s}),(o=r.fromBase)!==null&&o!==void 0||(r.fromBase=function(u){return u=fn(n.base.white,n.white,u),Ne(r.fromXYZ_M,u)})}return(a=r.referred)!==null&&a!==void 0||(r.referred="display"),n=Wa(this,t,[r])}return Ya(t,e),xt(t)})(ee);function dl(e){var t,r={str:(t=String(e))===null||t===void 0?void 0:t.trim()};if(rr.run("parse-start",r),r.color)return r.color;if(r.parsed=ol(r.str),r.parsed){var a=r.parsed.name;if(a==="color"){var n=r.parsed.args.shift(),i=r.parsed.rawArgs.indexOf("/")>0?r.parsed.args.pop():1,o=xe(ee.all),u;try{var s=function(){var $=u.value,k=$.getFormat("color");if(k){var I;if(n===k.id||(I=k.ids)!==null&&I!==void 0&&I.includes(n)){var z=Object.keys($.coords).length,V=Array(z).fill(0);return V.forEach(function(Q,ie){return V[ie]=r.parsed.args[ie]||0}),{v:{spaceId:$.id,coords:V,alpha:i}}}}},l;for(o.s();!(u=o.n()).done;)if(l=s(),l)return l.v}catch(O){o.e(O)}finally{o.f()}var c="";if(n in ee.registry){var d,f=(d=ee.registry[n].formats)===null||d===void 0||(d=d.functions)===null||d===void 0||(d=d.color)===null||d===void 0?void 0:d.id;f&&(c="Did you mean color(".concat(f,")?"))}throw new TypeError("Cannot parse color(".concat(n,"). ")+(c||"Missing a plugin?"))}else{var p=xe(ee.all),m;try{var h=function(){var $=m.value,k=$.getFormat(a);if(k&&k.type==="function"){var I=1;(k.lastAlpha||ul(r.parsed.args).alpha)&&(I=r.parsed.args.pop());var z=r.parsed.args;return k.coordGrammar&&Object.entries($.coords).forEach(function(V,Q){var ie,K=H(V,2),te=K[0],q=K[1],J=k.coordGrammar[Q],A=(ie=z[Q])===null||ie===void 0?void 0:ie.type;if(J=J.find(function(ne){return ne==A}),!J){var U=q.name||te;throw new TypeError("".concat(A," not allowed for ").concat(U," in ").concat(a,"()"))}var B=J.range;A==="<percentage>"&&(B||(B=[0,1]));var W=q.range||q.refRange;B&&W&&(z[Q]=Yi(B,W,z[Q]))}),{v:{spaceId:$.id,coords:z,alpha:I}}}},v;for(p.s();!(m=p.n()).done;)if(v=h(),v)return v.v}catch(O){p.e(O)}finally{p.f()}}}else{var g=xe(ee.all),b;try{for(g.s();!(b=g.n()).done;){var w=b.value;for(var D in w.formats){var _=w.formats[D];if(_.type==="custom"&&!(_.test&&!_.test(r.str))){var C=_.parse(r.str);if(C){var T;return(T=C.alpha)!==null&&T!==void 0||(C.alpha=1),C}}}}}catch(O){g.e(O)}finally{g.f()}}throw new TypeError("Could not parse ".concat(e," as a color. Missing a plugin?"))}function be(e){if(!e)throw new TypeError("Empty color reference");ca(e)&&(e=dl(e));var t=e.space||e.spaceId;return t instanceof ee||(e.space=ee.get(t)),e.alpha===void 0&&(e.alpha=1),e}function da(e,t){return t=ee.get(t),t.from(e)}function vt(e,t){var r=ee.resolveCoord(t,e.space),a=r.space,n=r.index,i=da(e,a);return i[n]}function fl(e,t,r){return t=ee.get(t),e.coords=t.to(e.space,r),e}function ar(e,t,r){if(e=be(e),arguments.length===2&&tr(arguments[1])==="object"){var a=arguments[1];for(var n in a)ar(e,n,a[n])}else{typeof r=="function"&&(r=r(vt(e,t)));var i=ee.resolveCoord(t,e.space),o=i.space,u=i.index,s=da(e,o);s[u]=r,fl(e,o,s)}return e}var Xi=new ee({id:"xyz-d50",name:"XYZ D50",white:"D50",base:ht,fromBase:function(t){return fn(ht.white,"D50",t)},toBase:function(t){return fn("D50",ht.white,t)},formats:{color:{}}}),ig=216/24389,pl=24/116,pn=24389/27,Zi=Rt.D50,ut=new ee({id:"lab",name:"Lab",coords:{l:{refRange:[0,100],name:"L"},a:{refRange:[-125,125]},b:{refRange:[-125,125]}},white:Zi,base:Xi,fromBase:function(t){var r=t.map(function(n,i){return n/Zi[i]}),a=r.map(function(n){return n>ig?Math.cbrt(n):(pn*n+16)/116});return[116*a[1]-16,500*(a[0]-a[1]),200*(a[1]-a[2])]},toBase:function(t){var r=[];r[1]=(t[0]+16)/116,r[0]=t[1]/500+r[1],r[2]=r[1]-t[2]/200;var a=[r[0]>pl?Math.pow(r[0],3):(116*r[0]-16)/pn,t[0]>8?Math.pow((t[0]+16)/116,3):t[0]/pn,r[2]>pl?Math.pow(r[2],3):(116*r[2]-16)/pn];return a.map(function(n,i){return n*Zi[i]})},formats:{lab:{coords:["<number> | <percentage>","<number>","<number>"]}}});function mn(e){return(e%360+360)%360}function og(e,t){if(e==="raw")return t;var r=t.map(mn),a=H(r,2),n=a[0],i=a[1],o=i-n;return e==="increasing"?o<0&&(i+=360):e==="decreasing"?o>0&&(n+=360):e==="longer"?-180<o&&o<180&&(o>0?i+=360:n+=360):e==="shorter"&&(o>180?n+=360:o<-180&&(i+=360)),[n,i]}var fa=new ee({id:"lch",name:"LCH",coords:{l:{refRange:[0,100],name:"Lightness"},c:{refRange:[0,150],name:"Chroma"},h:{refRange:[0,360],type:"angle",name:"Hue"}},base:ut,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o,u=.02;return Math.abs(n)<u&&Math.abs(i)<u?o=NaN:o=Math.atan2(i,n)*180/Math.PI,[a,Math.sqrt(Math.pow(n,2)+Math.pow(i,2)),mn(o)]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];return n<0&&(n=0),isNaN(i)&&(i=0),[a,n*Math.cos(i*Math.PI/180),n*Math.sin(i*Math.PI/180)]},formats:{lch:{coords:["<number> | <percentage>","<number>","<number> | <angle>"]}}}),ml=Math.pow(25,7),hn=Math.PI,hl=180/hn,Mr=hn/180;function Ji(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},a=r.kL,n=a===void 0?1:a,i=r.kC,o=i===void 0?1:i,u=r.kH,s=u===void 0?1:u,l=ut.from(e),c=H(l,3),d=c[0],f=c[1],p=c[2],m=fa.from(ut,[d,f,p])[1],h=ut.from(t),v=H(h,3),g=v[0],b=v[1],w=v[2],D=fa.from(ut,[g,b,w])[1];m<0&&(m=0),D<0&&(D=0);var _=(m+D)/2,C=Math.pow(_,7),T=.5*(1-Math.sqrt(C/(C+ml))),O=(1+T)*f,$=(1+T)*b,k=Math.sqrt(Math.pow(O,2)+Math.pow(p,2)),I=Math.sqrt(Math.pow($,2)+Math.pow(w,2)),z=O===0&&p===0?0:Math.atan2(p,O),V=$===0&&w===0?0:Math.atan2(w,$);z<0&&(z+=2*hn),V<0&&(V+=2*hn),z*=hl,V*=hl;var Q=g-d,ie=I-k,K=V-z,te=z+V,q=Math.abs(K),J;k*I===0?J=0:q<=180?J=K:K>180?J=K-360:K<-180?J=K+360:console.log("the unthinkable has happened");var A=2*Math.sqrt(I*k)*Math.sin(J*Mr/2),U=(d+g)/2,B=(k+I)/2,W=Math.pow(B,7),ne;k*I===0?ne=te:q<=180?ne=te/2:te<360?ne=(te+360)/2:ne=(te-360)/2;var Y=Math.pow(U-50,2),Z=1+.015*Y/Math.sqrt(20+Y),me=1+.045*B,De=1;De-=.17*Math.cos((ne-30)*Mr),De+=.24*Math.cos(2*ne*Mr),De+=.32*Math.cos((3*ne+6)*Mr),De-=.2*Math.cos((4*ne-63)*Mr);var Ae=1+.015*B*De,Me=30*Math.exp(-1*Math.pow((ne-275)/25,2)),je=2*Math.sqrt(W/(W+ml)),Le=-1*Math.sin(2*Me*Mr)*je,Fe=Math.pow(Q/(n*Z),2);return Fe+=Math.pow(ie/(o*me),2),Fe+=Math.pow(A/(s*Ae),2),Fe+=Le*(ie/(o*me))*(A/(s*Ae)),Math.sqrt(Fe)}var ug=75e-6;function pa(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e.space,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},a=r.epsilon,n=a===void 0?ug:a;e=be(e),t=ee.get(t);var i=e.coords;return t!==e.space&&(i=t.from(e)),t.inGamut(i,{epsilon:n})}function ma(e){return{space:e.space,coords:e.coords.slice(),alpha:e.alpha}}function nr(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.method,a=r===void 0?Mt.gamut_mapping:r,n=t.space,i=n===void 0?e.space:n;if(ca(arguments[1])&&(i=arguments[1]),i=ee.get(i),pa(e,i,{epsilon:0}))return e;var o=gt(e,i);if(a!=="clip"&&!pa(e,i)){var u=nr(ma(o),{method:"clip",space:i});if(Ji(e,u)>2){for(var s=ee.resolveCoord(a),l=s.space,c=s.id,d=gt(o,l),f=s.range||s.refRange,p=f[0],m=.01,h=p,v=vt(d,c);v-h>m;){var g=ma(d);g=nr(g,{space:i,method:"clip"});var b=Ji(d,g);b-2<m?h=vt(d,c):v=vt(d,c),ar(d,c,(h+v)/2)}o=gt(d,i)}else o=u}if(a==="clip"||!pa(o,i,{epsilon:0})){var w=Object.values(i.coords).map(function(D){return D.range||[]});o.coords=o.coords.map(function(D,_){var C=H(w[_],2),T=C[0],O=C[1];return T!==void 0&&(D=Math.max(T,D)),O!==void 0&&(D=Math.min(D,O)),D})}return i!==e.space&&(o=gt(o,e.space)),e.coords=o.coords,e}nr.returns="color";function gt(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},a=r.inGamut;e=be(e),t=ee.get(t);var n=t.from(e),i={space:t,coords:n,alpha:e.alpha};return a&&(i=nr(i)),i}gt.returns="color";function vn(e){var t,r,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=a.precision,i=n===void 0?Mt.precision:n,o=a.format,u=o===void 0?"default":o,s=a.inGamut,l=s===void 0?!0:s,c=qe(a,Ip),d;e=be(e);var f=u;u=(t=(r=e.space.getFormat(u))!==null&&r!==void 0?r:e.space.getFormat("default"))!==null&&t!==void 0?t:ee.DEFAULT_FORMAT,l||(l=u.toGamut);var p=e.coords;if(p=p.map(function(D){return D||0}),l&&!pa(e)&&(p=nr(ma(e),l===!0?void 0:l).coords),u.type==="custom")if(c.precision=i,u.serialize)d=u.serialize(p,e.alpha,c);else throw new TypeError("format ".concat(f," can only be used to parse colors, not for serialization"));else{var m=u.name||"color";u.serializeCoords?p=u.serializeCoords(p,i):i!==null&&(p=p.map(function(D){return cn(D,i)}));var h=re(p);if(m==="color"){var v,g=u.id||((v=u.ids)===null||v===void 0?void 0:v[0])||e.space.id;h.unshift(g)}var b=e.alpha;i!==null&&(b=cn(b,i));var w=e.alpha<1&&!u.noAlpha?"".concat(u.commas?",":" /"," ").concat(b):"";d="".concat(m,"(").concat(h.join(u.commas?", ":" ")).concat(w,")")}return d}var sg=[[.6369580483012914,.14461690358620832,.1688809751641721],[.2627002120112671,.6779980715188708,.05930171646986196],[0,.028072693049087428,1.060985057710791]],lg=[[1.716651187971268,-.355670783776392,-.25336628137366],[-.666684351832489,1.616481236634939,.0157685458139111],[.017639857445311,-.042770613257809,.942103121235474]],gn=new it({id:"rec2020-linear",name:"Linear REC.2020",white:"D65",toXYZ_M:sg,fromXYZ_M:lg,formats:{color:{}}}),bn=1.09929682680944,vl=.018053968510807,gl=new it({id:"rec2020",name:"REC.2020",base:gn,toBase:function(t){return t.map(function(r){return r<vl*4.5?r/4.5:Math.pow((r+bn-1)/bn,1/.45)})},fromBase:function(t){return t.map(function(r){return r>=vl?bn*Math.pow(r,.45)-(bn-1):4.5*r})},formats:{color:{}}}),cg=[[.4865709486482162,.26566769316909306,.1982172852343625],[.2289745640697488,.6917385218365064,.079286914093745],[0,.04511338185890264,1.043944368900976]],dg=[[2.493496911941425,-.9313836179191239,-.40271078445071684],[-.8294889695615747,1.7626640603183463,.023624685841943577],[.03584583024378447,-.07617238926804182,.9568845240076872]],bl=new it({id:"p3-linear",name:"Linear P3",white:"D65",toXYZ_M:cg,fromXYZ_M:dg}),fg=[[.41239079926595934,.357584339383878,.1804807884018343],[.21263900587151027,.715168678767756,.07219231536073371],[.01933081871559182,.11919477979462598,.9505321522496607]],pg=[[3.2409699419045226,-1.537383177570094,-.4986107602930034],[-.9692436362808796,1.8759675015077202,.04155505740717559],[.05563007969699366,-.20397695888897652,1.0569715142428786]],yl=new it({id:"srgb-linear",name:"Linear sRGB",white:"D65",toXYZ_M:fg,fromXYZ_M:pg,formats:{color:{}}}),Dl={aliceblue:[240/255,248/255,1],antiquewhite:[250/255,235/255,215/255],aqua:[0,1,1],aquamarine:[127/255,1,212/255],azure:[240/255,1,1],beige:[245/255,245/255,220/255],bisque:[1,228/255,196/255],black:[0,0,0],blanchedalmond:[1,235/255,205/255],blue:[0,0,1],blueviolet:[138/255,43/255,226/255],brown:[165/255,42/255,42/255],burlywood:[222/255,184/255,135/255],cadetblue:[95/255,158/255,160/255],chartreuse:[127/255,1,0],chocolate:[210/255,105/255,30/255],coral:[1,127/255,80/255],cornflowerblue:[100/255,149/255,237/255],cornsilk:[1,248/255,220/255],crimson:[220/255,20/255,60/255],cyan:[0,1,1],darkblue:[0,0,139/255],darkcyan:[0,139/255,139/255],darkgoldenrod:[184/255,134/255,11/255],darkgray:[169/255,169/255,169/255],darkgreen:[0,100/255,0],darkgrey:[169/255,169/255,169/255],darkkhaki:[189/255,183/255,107/255],darkmagenta:[139/255,0,139/255],darkolivegreen:[85/255,107/255,47/255],darkorange:[1,140/255,0],darkorchid:[153/255,50/255,204/255],darkred:[139/255,0,0],darksalmon:[233/255,150/255,122/255],darkseagreen:[143/255,188/255,143/255],darkslateblue:[72/255,61/255,139/255],darkslategray:[47/255,79/255,79/255],darkslategrey:[47/255,79/255,79/255],darkturquoise:[0,206/255,209/255],darkviolet:[148/255,0,211/255],deeppink:[1,20/255,147/255],deepskyblue:[0,191/255,1],dimgray:[105/255,105/255,105/255],dimgrey:[105/255,105/255,105/255],dodgerblue:[30/255,144/255,1],firebrick:[178/255,34/255,34/255],floralwhite:[1,250/255,240/255],forestgreen:[34/255,139/255,34/255],fuchsia:[1,0,1],gainsboro:[220/255,220/255,220/255],ghostwhite:[248/255,248/255,1],gold:[1,215/255,0],goldenrod:[218/255,165/255,32/255],gray:[128/255,128/255,128/255],green:[0,128/255,0],greenyellow:[173/255,1,47/255],grey:[128/255,128/255,128/255],honeydew:[240/255,1,240/255],hotpink:[1,105/255,180/255],indianred:[205/255,92/255,92/255],indigo:[75/255,0,130/255],ivory:[1,1,240/255],khaki:[240/255,230/255,140/255],lavender:[230/255,230/255,250/255],lavenderblush:[1,240/255,245/255],lawngreen:[124/255,252/255,0],lemonchiffon:[1,250/255,205/255],lightblue:[173/255,216/255,230/255],lightcoral:[240/255,128/255,128/255],lightcyan:[224/255,1,1],lightgoldenrodyellow:[250/255,250/255,210/255],lightgray:[211/255,211/255,211/255],lightgreen:[144/255,238/255,144/255],lightgrey:[211/255,211/255,211/255],lightpink:[1,182/255,193/255],lightsalmon:[1,160/255,122/255],lightseagreen:[32/255,178/255,170/255],lightskyblue:[135/255,206/255,250/255],lightslategray:[119/255,136/255,153/255],lightslategrey:[119/255,136/255,153/255],lightsteelblue:[176/255,196/255,222/255],lightyellow:[1,1,224/255],lime:[0,1,0],limegreen:[50/255,205/255,50/255],linen:[250/255,240/255,230/255],magenta:[1,0,1],maroon:[128/255,0,0],mediumaquamarine:[102/255,205/255,170/255],mediumblue:[0,0,205/255],mediumorchid:[186/255,85/255,211/255],mediumpurple:[147/255,112/255,219/255],mediumseagreen:[60/255,179/255,113/255],mediumslateblue:[123/255,104/255,238/255],mediumspringgreen:[0,250/255,154/255],mediumturquoise:[72/255,209/255,204/255],mediumvioletred:[199/255,21/255,133/255],midnightblue:[25/255,25/255,112/255],mintcream:[245/255,1,250/255],mistyrose:[1,228/255,225/255],moccasin:[1,228/255,181/255],navajowhite:[1,222/255,173/255],navy:[0,0,128/255],oldlace:[253/255,245/255,230/255],olive:[128/255,128/255,0],olivedrab:[107/255,142/255,35/255],orange:[1,165/255,0],orangered:[1,69/255,0],orchid:[218/255,112/255,214/255],palegoldenrod:[238/255,232/255,170/255],palegreen:[152/255,251/255,152/255],paleturquoise:[175/255,238/255,238/255],palevioletred:[219/255,112/255,147/255],papayawhip:[1,239/255,213/255],peachpuff:[1,218/255,185/255],peru:[205/255,133/255,63/255],pink:[1,192/255,203/255],plum:[221/255,160/255,221/255],powderblue:[176/255,224/255,230/255],purple:[128/255,0,128/255],rebeccapurple:[102/255,51/255,153/255],red:[1,0,0],rosybrown:[188/255,143/255,143/255],royalblue:[65/255,105/255,225/255],saddlebrown:[139/255,69/255,19/255],salmon:[250/255,128/255,114/255],sandybrown:[244/255,164/255,96/255],seagreen:[46/255,139/255,87/255],seashell:[1,245/255,238/255],sienna:[160/255,82/255,45/255],silver:[192/255,192/255,192/255],skyblue:[135/255,206/255,235/255],slateblue:[106/255,90/255,205/255],slategray:[112/255,128/255,144/255],slategrey:[112/255,128/255,144/255],snow:[1,250/255,250/255],springgreen:[0,1,127/255],steelblue:[70/255,130/255,180/255],tan:[210/255,180/255,140/255],teal:[0,128/255,128/255],thistle:[216/255,191/255,216/255],tomato:[1,99/255,71/255],turquoise:[64/255,224/255,208/255],violet:[238/255,130/255,238/255],wheat:[245/255,222/255,179/255],white:[1,1,1],whitesmoke:[245/255,245/255,245/255],yellow:[1,1,0],yellowgreen:[154/255,205/255,50/255]},wl=Array(3).fill("<percentage> | <number>[0, 255]"),_l=Array(3).fill("<number>[0, 255]"),ha=new it({id:"srgb",name:"sRGB",base:yl,fromBase:function(t){return t.map(function(r){var a=r<0?-1:1,n=r*a;return n>.0031308?a*(1.055*Math.pow(n,1/2.4)-.055):12.92*r})},toBase:function(t){return t.map(function(r){var a=r<0?-1:1,n=r*a;return n<.04045?r/12.92:a*Math.pow((n+.055)/1.055,2.4)})},formats:{rgb:{coords:wl},rgb_number:{name:"rgb",commas:!0,coords:_l,noAlpha:!0},color:{},rgba:{coords:wl,commas:!0,lastAlpha:!0},rgba_number:{name:"rgba",commas:!0,coords:_l},hex:{type:"custom",toGamut:!0,test:function(t){return/^#([a-f0-9]{3,4}){1,2}$/i.test(t)},parse:function(t){t.length<=5&&(t=t.replace(/[a-f0-9]/gi,"$&$&"));var r=[];return t.replace(/[a-f0-9]{2}/gi,function(a){r.push(parseInt(a,16)/255)}),{spaceId:"srgb",coords:r.slice(0,3),alpha:r.slice(3)[0]}},serialize:function(t,r){var a=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},n=a.collapse,i=n===void 0?!0:n;r<1&&t.push(r),t=t.map(function(s){return Math.round(s*255)});var o=i&&t.every(function(s){return s%17===0}),u=t.map(function(s){return o?(s/17).toString(16):s.toString(16).padStart(2,"0")}).join("");return"#"+u}},keyword:{type:"custom",test:function(t){return/^[a-z]+$/i.test(t)},parse:function(t){t=t.toLowerCase();var r={spaceId:"srgb",coords:null,alpha:1};if(t==="transparent"?(r.coords=Dl.black,r.alpha=0):r.coords=Dl[t],r.coords)return r}}}}),xl=new it({id:"p3",name:"P3",base:bl,fromBase:ha.fromBase,toBase:ha.toBase,formats:{color:{id:"display-p3"}}});if(Mt.display_space=ha,typeof CSS<"u"&&(L=CSS)!==null&&L!==void 0&&L.supports)for(var Qi=0,El=[ut,gl,xl];Qi<El.length;Qi++){var eo=El[Qi],mg=eo.getMinCoords(),hg={space:eo,coords:mg,alpha:1},vg=vn(hg);if(CSS.supports("color",vg)){Mt.display_space=eo;break}}function gg(e){var t,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},a=r.space,n=a===void 0?Mt.display_space:a,i=qe(r,Np),o=vn(e,i);if(typeof CSS>"u"||(t=CSS)!==null&&t!==void 0&&t.supports("color",o)||!Mt.display_space)o=new String(o),o.color=e;else{var u=gt(e,n);o=new String(vn(u,i)),o.color=u}return o}function Al(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"lab";r=ee.get(r);var a=r.from(e),n=r.from(t);return Math.sqrt(a.reduce(function(i,o,u){var s=n[u];return isNaN(o)||isNaN(s)?i:i+Math.pow(s-o,2)},0))}function bg(e,t){return e=be(e),t=be(t),e.space===t.space&&e.alpha===t.alpha&&e.coords.every(function(r,a){return r===t.coords[a]})}function ir(e){return vt(e,[ht,"y"])}function Fl(e,t){ar(e,[ht,"y"],t)}function yg(e){Object.defineProperty(e.prototype,"luminance",{get:function(){return ir(this)},set:function(r){Fl(this,r)}})}var Dg=Object.freeze({__proto__:null,getLuminance:ir,setLuminance:Fl,register:yg});function wg(e,t){e=be(e),t=be(t);var r=Math.max(ir(e),0),a=Math.max(ir(t),0);if(a>r){var n=[a,r];r=n[0],a=n[1]}return(r+.05)/(a+.05)}var _g=.56,xg=.57,Eg=.62,Ag=.65,Cl=.022,Fg=1.414,Cg=.1,Rg=5e-4,Tg=1.14,Rl=.027,Sg=1.14;function Tl(e){return e>=Cl?e:e+Math.pow(Cl-e,Fg)}function Pr(e){var t=e<0?-1:1,r=Math.abs(e);return t*Math.pow(r,2.4)}function kg(e,t){t=be(t),e=be(e);var r,a,n,i,o,u;t=gt(t,"srgb");var s=H(t.coords,3);i=s[0],o=s[1],u=s[2];var l=Pr(i)*.2126729+Pr(o)*.7151522+Pr(u)*.072175;e=gt(e,"srgb");var c=H(e.coords,3);i=c[0],o=c[1],u=c[2];var d=Pr(i)*.2126729+Pr(o)*.7151522+Pr(u)*.072175,f=Tl(l),p=Tl(d),m=p>f;return Math.abs(p-f)<Rg?a=0:m?(r=Math.pow(p,_g)-Math.pow(f,xg),a=r*Tg):(r=Math.pow(p,Ag)-Math.pow(f,Eg),a=r*Sg),Math.abs(a)<Cg?n=0:a>0?n=a-Rl:n=a+Rl,n*100}function Og(e,t){e=be(e),t=be(t);var r=Math.max(ir(e),0),a=Math.max(ir(t),0);if(a>r){var n=[a,r];r=n[0],a=n[1]}var i=r+a;return i===0?0:(r-a)/i}var Mg=5e4;function Pg(e,t){e=be(e),t=be(t);var r=Math.max(ir(e),0),a=Math.max(ir(t),0);if(a>r){var n=[a,r];r=n[0],a=n[1]}return a===0?Mg:(r-a)/a}function Ig(e,t){e=be(e),t=be(t);var r=vt(e,[ut,"l"]),a=vt(t,[ut,"l"]);return Math.abs(r-a)}var Ng=216/24389,Sl=24/116,yn=24389/27,to=Rt.D65,ro=new ee({id:"lab-d65",name:"Lab D65",coords:{l:{refRange:[0,100],name:"L"},a:{refRange:[-125,125]},b:{refRange:[-125,125]}},white:to,base:ht,fromBase:function(t){var r=t.map(function(n,i){return n/to[i]}),a=r.map(function(n){return n>Ng?Math.cbrt(n):(yn*n+16)/116});return[116*a[1]-16,500*(a[0]-a[1]),200*(a[1]-a[2])]},toBase:function(t){var r=[];r[1]=(t[0]+16)/116,r[0]=t[1]/500+r[1],r[2]=r[1]-t[2]/200;var a=[r[0]>Sl?Math.pow(r[0],3):(116*r[0]-16)/yn,t[0]>8?Math.pow((t[0]+16)/116,3):t[0]/yn,r[2]>Sl?Math.pow(r[2],3):(116*r[2]-16)/yn];return a.map(function(n,i){return n*to[i]})},formats:{"lab-d65":{coords:["<number> | <percentage>","<number>","<number>"]}}}),ao=Math.pow(5,.5)*.5+.5;function Bg(e,t){e=be(e),t=be(t);var r=vt(e,[ro,"l"]),a=vt(t,[ro,"l"]),n=Math.abs(Math.pow(r,ao)-Math.pow(a,ao)),i=Math.pow(n,1/ao)*Math.SQRT2-40;return i<7.5?0:i}var Dn=Object.freeze({__proto__:null,contrastWCAG21:wg,contrastAPCA:kg,contrastMichelson:Og,contrastWeber:Pg,contrastLstar:Ig,contrastDeltaPhi:Bg});function Lg(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};ca(r)&&(r={algorithm:r});var a=r,n=a.algorithm,i=qe(a,Bp);if(!n){var o=Object.keys(Dn).map(function(s){return s.replace(/^contrast/,"")}).join(", ");throw new TypeError("contrast() function needs a contrast algorithm. Please specify one of: ".concat(o))}e=be(e),t=be(t);for(var u in Dn)if("contrast"+n.toLowerCase()===u.toLowerCase())return Dn[u](e,t,i);throw new TypeError("Unknown contrast algorithm: ".concat(n))}function kl(e){var t=da(e,ht),r=H(t,3),a=r[0],n=r[1],i=r[2],o=a+15*n+3*i;return[4*a/o,9*n/o]}function Ol(e){var t=da(e,ht),r=H(t,3),a=r[0],n=r[1],i=r[2],o=a+n+i;return[a/o,n/o]}function qg(e){Object.defineProperty(e.prototype,"uv",{get:function(){return kl(this)}}),Object.defineProperty(e.prototype,"xy",{get:function(){return Ol(this)}})}var jg=Object.freeze({__proto__:null,uv:kl,xy:Ol,register:qg});function $g(e,t){return Al(e,t,"lab")}var zg=Math.PI,Ml=zg/180;function Vg(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},a=r.l,n=a===void 0?2:a,i=r.c,o=i===void 0?1:i,u=ut.from(e),s=H(u,3),l=s[0],c=s[1],d=s[2],f=fa.from(ut,[l,c,d]),p=H(f,3),m=p[1],h=p[2],v=ut.from(t),g=H(v,3),b=g[0],w=g[1],D=g[2],_=fa.from(ut,[b,w,D])[1];m<0&&(m=0),_<0&&(_=0);var C=l-b,T=m-_,O=c-w,$=d-D,k=Math.pow(O,2)+Math.pow($,2)-Math.pow(T,2),I=.511;l>=16&&(I=.040975*l/(1+.01765*l));var z=.0638*m/(1+.0131*m)+.638,V;Number.isNaN(h)&&(h=0),h>=164&&h<=345?V=.56+Math.abs(.2*Math.cos((h+168)*Ml)):V=.36+Math.abs(.4*Math.cos((h+35)*Ml));var Q=Math.pow(m,4),ie=Math.sqrt(Q/(Q+1900)),K=z*(ie*V+1-ie),te=Math.pow(C/(n*I),2);return te+=Math.pow(T/(o*z),2),te+=k/Math.pow(K,2),Math.sqrt(te)}var Pl=203,no=new ee({id:"xyz-abs-d65",name:"Absolute XYZ D65",coords:{x:{refRange:[0,9504.7],name:"Xa"},y:{refRange:[0,1e4],name:"Ya"},z:{refRange:[0,10888.3],name:"Za"}},base:ht,fromBase:function(t){return t.map(function(r){return Math.max(r*Pl,0)})},toBase:function(t){return t.map(function(r){return Math.max(r/Pl,0)})}}),wn=1.15,_n=.66,Il=2610/Math.pow(2,14),Hg=Math.pow(2,14)/2610,Nl=3424/Math.pow(2,12),Bl=2413/Math.pow(2,7),Ll=2392/Math.pow(2,7),Gg=1.7*2523/Math.pow(2,5),ql=Math.pow(2,5)/(1.7*2523),xn=-.56,io=16295499532821565e-27,Ug=[[.41478972,.579999,.014648],[-.20151,1.120649,.0531008],[-.0166008,.2648,.6684799]],Wg=[[1.9242264357876067,-1.0047923125953657,.037651404030618],[.35031676209499907,.7264811939316552,-.06538442294808501],[-.09098281098284752,-.3127282905230739,1.5227665613052603]],Yg=[[.5,.5,0],[3.524,-4.066708,.542708],[.199076,1.096799,-1.295875]],Kg=[[1,.1386050432715393,.05804731615611886],[.9999999999999999,-.1386050432715393,-.05804731615611886],[.9999999999999998,-.09601924202631895,-.8118918960560388]],jl=new ee({id:"jzazbz",name:"Jzazbz",coords:{jz:{refRange:[0,1],name:"Jz"},az:{refRange:[-.5,.5]},bz:{refRange:[-.5,.5]}},base:no,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o=wn*a-(wn-1)*i,u=_n*n-(_n-1)*a,s=Ne(Ug,[o,u,i]),l=s.map(function(v){var g=Nl+Bl*Math.pow(v/1e4,Il),b=1+Ll*Math.pow(v/1e4,Il);return Math.pow(g/b,Gg)}),c=Ne(Yg,l),d=H(c,3),f=d[0],p=d[1],m=d[2],h=(1+xn)*f/(1+xn*f)-io;return[h,p,m]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o=(a+io)/(1+xn-xn*(a+io)),u=Ne(Kg,[o,n,i]),s=u.map(function(v){var g=Nl-Math.pow(v,ql),b=Ll*Math.pow(v,ql)-Bl,w=1e4*Math.pow(g/b,Hg);return w}),l=Ne(Wg,s),c=H(l,3),d=c[0],f=c[1],p=c[2],m=(d+(wn-1)*p)/wn,h=(f+(_n-1)*m)/_n;return[m,h,p]},formats:{color:{}}}),oo=new ee({id:"jzczhz",name:"JzCzHz",coords:{jz:{refRange:[0,1],name:"Jz"},cz:{refRange:[0,1],name:"Chroma"},hz:{refRange:[0,360],type:"angle",name:"Hue"}},base:jl,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o,u=2e-4;return Math.abs(n)<u&&Math.abs(i)<u?o=NaN:o=Math.atan2(i,n)*180/Math.PI,[a,Math.sqrt(Math.pow(n,2)+Math.pow(i,2)),mn(o)]},toBase:function(t){return[t[0],t[1]*Math.cos(t[2]*Math.PI/180),t[1]*Math.sin(t[2]*Math.PI/180)]},formats:{color:{}}});function Xg(e,t){var r=oo.from(e),a=H(r,3),n=a[0],i=a[1],o=a[2],u=oo.from(t),s=H(u,3),l=s[0],c=s[1],d=s[2],f=n-l,p=i-c;Number.isNaN(o)&&Number.isNaN(d)?(o=0,d=0):Number.isNaN(o)?o=d:Number.isNaN(d)&&(d=o);var m=o-d,h=2*Math.sqrt(i*c)*Math.sin(m/2*(Math.PI/180));return Math.sqrt(Math.pow(f,2)+Math.pow(p,2)+Math.pow(h,2))}var $l=3424/4096,zl=2413/128,Vl=2392/128,Hl=2610/16384,Zg=2523/32,Jg=16384/2610,Gl=32/2523,Qg=[[.3592,.6976,-.0358],[-.1922,1.1004,.0755],[.007,.0749,.8434]],eb=[[2048/4096,2048/4096,0],[6610/4096,-13613/4096,7003/4096],[17933/4096,-17390/4096,-543/4096]],tb=[[.9999888965628402,.008605050147287059,.11103437159861648],[1.00001110343716,-.008605050147287059,-.11103437159861648],[1.0000320633910054,.56004913547279,-.3206339100541203]],rb=[[2.0701800566956137,-1.326456876103021,.20661600684785517],[.3649882500326575,.6804673628522352,-.04542175307585323],[-.04959554223893211,-.04942116118675749,1.1879959417328034]],uo=new ee({id:"ictcp",name:"ICTCP",coords:{i:{refRange:[0,1],name:"I"},ct:{refRange:[-.5,.5],name:"CT"},cp:{refRange:[-.5,.5],name:"CP"}},base:no,fromBase:function(t){var r=Ne(Qg,t);return ab(r)},toBase:function(t){var r=nb(t);return Ne(rb,r)},formats:{color:{}}});function ab(e){var t=e.map(function(r){var a=$l+zl*Math.pow(r/1e4,Hl),n=1+Vl*Math.pow(r/1e4,Hl);return Math.pow(a/n,Zg)});return Ne(eb,t)}function nb(e){var t=Ne(tb,e),r=t.map(function(a){var n=Math.max(Math.pow(a,Gl)-$l,0),i=zl-Vl*Math.pow(a,Gl);return 1e4*Math.pow(n/i,Jg)});return r}function ib(e,t){var r=uo.from(e),a=H(r,3),n=a[0],i=a[1],o=a[2],u=uo.from(t),s=H(u,3),l=s[0],c=s[1],d=s[2];return 720*Math.sqrt(Math.pow(n-l,2)+.25*Math.pow(i-c,2)+Math.pow(o-d,2))}var ob=[[.8190224432164319,.3619062562801221,-.12887378261216414],[.0329836671980271,.9292868468965546,.03614466816999844],[.048177199566046255,.26423952494422764,.6335478258136937]],ub=[[1.2268798733741557,-.5578149965554813,.28139105017721583],[-.04057576262431372,1.1122868293970594,-.07171106666151701],[-.07637294974672142,-.4214933239627914,1.5869240244272418]],sb=[[.2104542553,.793617785,-.0040720468],[1.9779984951,-2.428592205,.4505937099],[.0259040371,.7827717662,-.808675766]],lb=[[.9999999984505198,.39633779217376786,.2158037580607588],[1.0000000088817609,-.10556134232365635,-.06385417477170591],[1.0000000546724108,-.08948418209496575,-1.2914855378640917]],En=new ee({id:"oklab",name:"OKLab",coords:{l:{refRange:[0,1],name:"L"},a:{refRange:[-.4,.4]},b:{refRange:[-.4,.4]}},white:"D65",base:ht,fromBase:function(t){var r=Ne(ob,t),a=r.map(function(n){return Math.cbrt(n)});return Ne(sb,a)},toBase:function(t){var r=Ne(lb,t),a=r.map(function(n){return Math.pow(n,3)});return Ne(ub,a)},formats:{oklab:{coords:["<number> | <percentage>","<number>","<number>"]}}});function cb(e,t){var r=En.from(e),a=H(r,3),n=a[0],i=a[1],o=a[2],u=En.from(t),s=H(u,3),l=s[0],c=s[1],d=s[2],f=n-l,p=i-c,m=o-d;return Math.sqrt(Math.pow(f,2)+Math.pow(p,2)+Math.pow(m,2))}var so=Object.freeze({__proto__:null,deltaE76:$g,deltaECMC:Vg,deltaE2000:Ji,deltaEJz:Xg,deltaEITP:ib,deltaEOK:cb});function va(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};ca(r)&&(r={method:r});var a=r,n=a.method,i=n===void 0?Mt.deltaE:n,o=qe(a,Lp);e=be(e),t=be(t);for(var u in so)if("deltae"+i.toLowerCase()===u.toLowerCase())return so[u](e,t,o);throw new TypeError("Unknown deltaE method: ".concat(i))}function db(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:.25,r=ee.get("oklch","lch"),a=[r,"l"];return ar(e,a,function(n){return n*(1+t)})}function fb(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:.25,r=ee.get("oklch","lch"),a=[r,"l"];return ar(e,a,function(n){return n*(1-t)})}var pb=Object.freeze({__proto__:null,lighten:db,darken:fb});function Ul(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:.5,a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},n=[be(e),be(t)];if(e=n[0],t=n[1],tr(r)==="object"){var i=[.5,r];r=i[0],a=i[1]}var o=a,u=o.space,s=o.outputSpace,l=o.premultiplied,c=ga(e,t,{space:u,outputSpace:s,premultiplied:l});return c(r)}function Wl(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},a;if(lo(e)){a=e,r=t;var n=H(a.rangeArgs.colors,2);e=n[0],t=n[1]}var i=r,o=i.maxDeltaE,u=i.deltaEMethod,s=i.steps,l=s===void 0?2:s,c=i.maxSteps,d=c===void 0?1e3:c,f=qe(i,qp);if(!a){var p=[be(e),be(t)];e=p[0],t=p[1],a=ga(e,t,f)}var m=va(e,t),h=o>0?Math.max(l,Math.ceil(m/o)+1):l,v=[];if(d!==void 0&&(h=Math.min(h,d)),h===1)v=[{p:.5,color:a(.5)}];else{var g=1/(h-1);v=Array.from({length:h},function(O,$){var k=$*g;return{p:k,color:a(k)}})}if(o>0)for(var b=v.reduce(function(O,$,k){if(k===0)return 0;var I=va($.color,v[k-1].color,u);return Math.max(O,I)},0);b>o;){b=0;for(var w=1;w<v.length&&v.length<d;w++){var D=v[w-1],_=v[w],C=(_.p+D.p)/2,T=a(C);b=Math.max(b,va(T,D.color),va(T,_.color)),v.splice(w,0,{p:C,color:a(C)}),w++}}return v=v.map(function(O){return O.color}),v}function ga(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(lo(e)){var a=e,n=t;return ga.apply(void 0,re(a.rangeArgs.colors).concat([de({},a.rangeArgs.options,n)]))}var i=r.space,o=r.outputSpace,u=r.progression,s=r.premultiplied;e=be(e),t=be(t),e=ma(e),t=ma(t);var l={colors:[e,t],options:r};if(i?i=ee.get(i):i=ee.registry[Mt.interpolationSpace]||e.space,o=o?ee.get(o):i,e=gt(e,i),t=gt(t,i),e=nr(e),t=nr(t),i.coords.h&&i.coords.h.type==="angle"){var c=r.hue=r.hue||"shorter",d=[i,"h"],f=[vt(e,d),vt(t,d)],p=f[0],m=f[1],h=og(c,[p,m]),v=H(h,2);p=v[0],m=v[1],ar(e,d,p),ar(t,d,m)}return s&&(e.coords=e.coords.map(function(g){return g*e.alpha}),t.coords=t.coords.map(function(g){return g*t.alpha})),Object.assign(function(g){g=u?u(g):g;var b=e.coords.map(function(_,C){var T=t.coords[C];return dn(_,T,g)}),w=dn(e.alpha,t.alpha,g),D={space:i,coords:b,alpha:w};return s&&(D.coords=D.coords.map(function(_){return _/w})),o!==i&&(D=gt(D,o)),D},{rangeArgs:l})}function lo(e){return tr(e)==="function"&&!!e.rangeArgs}Mt.interpolationSpace="lab";function mb(e){e.defineFunction("mix",Ul,{returns:"color"}),e.defineFunction("range",ga,{returns:"function<color>"}),e.defineFunction("steps",Wl,{returns:"array<color>"})}var hb=Object.freeze({__proto__:null,mix:Ul,steps:Wl,range:ga,isRange:lo,register:mb}),Yl=new ee({id:"hsl",name:"HSL",coords:{h:{refRange:[0,360],type:"angle",name:"Hue"},s:{range:[0,100],name:"Saturation"},l:{range:[0,100],name:"Lightness"}},base:ha,fromBase:function(t){var r=Math.max.apply(Math,re(t)),a=Math.min.apply(Math,re(t)),n=H(t,3),i=n[0],o=n[1],u=n[2],s=NaN,l=0,c=(a+r)/2,d=r-a;if(d!==0){switch(l=c===0||c===1?0:(r-c)/Math.min(c,1-c),r){case i:s=(o-u)/d+(o<u?6:0);break;case o:s=(u-i)/d+2;break;case u:s=(i-o)/d+4}s=s*60}return[s,l*100,c*100]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];a=a%360,a<0&&(a+=360),n/=100,i/=100;function o(u){var s=(u+a/30)%12,l=n*Math.min(i,1-i);return i-l*Math.max(-1,Math.min(s-3,9-s,1))}return[o(0),o(8),o(4)]},formats:{hsl:{toGamut:!0,coords:["<number> | <angle>","<percentage>","<percentage>"]},hsla:{coords:["<number> | <angle>","<percentage>","<percentage>"],commas:!0,lastAlpha:!0}}}),Kl=new ee({id:"hsv",name:"HSV",coords:{h:{refRange:[0,360],type:"angle",name:"Hue"},s:{range:[0,100],name:"Saturation"},v:{range:[0,100],name:"Value"}},base:Yl,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];n/=100,i/=100;var o=i+n*Math.min(i,1-i);return[a,o===0?0:200*(1-i/o),100*o]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];n/=100,i/=100;var o=i*(1-n/2);return[a,o===0||o===1?0:(i-o)/Math.min(o,1-o)*100,o*100]},formats:{color:{toGamut:!0}}}),vb=new ee({id:"hwb",name:"HWB",coords:{h:{refRange:[0,360],type:"angle",name:"Hue"},w:{range:[0,100],name:"Whiteness"},b:{range:[0,100],name:"Blackness"}},base:Kl,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];return[a,i*(100-n)/100,100-i]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2];n/=100,i/=100;var o=n+i;if(o>=1){var u=n/o;return[a,0,u*100]}var s=1-i,l=s===0?0:1-n/s;return[a,l*100,s*100]},formats:{hwb:{toGamut:!0,coords:["<number> | <angle>","<percentage>","<percentage>"]}}}),gb=[[.5766690429101305,.1855582379065463,.1882286462349947],[.29734497525053605,.6273635662554661,.07529145849399788],[.02703136138641234,.07068885253582723,.9913375368376388]],bb=[[2.0415879038107465,-.5650069742788596,-.34473135077832956],[-.9692436362808795,1.8759675015077202,.04155505740717557],[.013444280632031142,-.11836239223101838,1.0151749943912054]],Xl=new it({id:"a98rgb-linear",name:"Linear Adobe® 98 RGB compatible",white:"D65",toXYZ_M:gb,fromXYZ_M:bb}),yb=new it({id:"a98rgb",name:"Adobe® 98 RGB compatible",base:Xl,toBase:function(t){return t.map(function(r){return Math.pow(Math.abs(r),563/256)*Math.sign(r)})},fromBase:function(t){return t.map(function(r){return Math.pow(Math.abs(r),256/563)*Math.sign(r)})},formats:{color:{id:"a98-rgb"}}}),Db=[[.7977604896723027,.13518583717574031,.0313493495815248],[.2880711282292934,.7118432178101014,8565396060525902e-20],[0,0,.8251046025104601]],wb=[[1.3457989731028281,-.25558010007997534,-.05110628506753401],[-.5446224939028347,1.5082327413132781,.02053603239147973],[0,0,1.2119675456389454]],Zl=new it({id:"prophoto-linear",name:"Linear ProPhoto",white:"D50",base:Xi,toXYZ_M:Db,fromXYZ_M:wb}),_b=1/512,xb=16/512,Eb=new it({id:"prophoto",name:"ProPhoto",base:Zl,toBase:function(t){return t.map(function(r){return r<xb?r/16:Math.pow(r,1.8)})},fromBase:function(t){return t.map(function(r){return r>=_b?Math.pow(r,1/1.8):16*r})},formats:{color:{id:"prophoto-rgb"}}}),Ab=new ee({id:"oklch",name:"OKLCh",coords:{l:{refRange:[0,1],name:"Lightness"},c:{refRange:[0,.4],name:"Chroma"},h:{refRange:[0,360],type:"angle",name:"Hue"}},white:"D65",base:En,fromBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o,u=2e-4;return Math.abs(n)<u&&Math.abs(i)<u?o=NaN:o=Math.atan2(i,n)*180/Math.PI,[a,Math.sqrt(Math.pow(n,2)+Math.pow(i,2)),mn(o)]},toBase:function(t){var r=H(t,3),a=r[0],n=r[1],i=r[2],o,u;return isNaN(i)?(o=0,u=0):(o=n*Math.cos(i*Math.PI/180),u=n*Math.sin(i*Math.PI/180)),[a,o,u]},formats:{oklch:{coords:["<number> | <percentage>","<number>","<number> | <angle>"]}}}),Jl=203,Ql=2610/Math.pow(2,14),Fb=Math.pow(2,14)/2610,Cb=2523/Math.pow(2,5),ec=Math.pow(2,5)/2523,tc=3424/Math.pow(2,12),rc=2413/Math.pow(2,7),ac=2392/Math.pow(2,7),Rb=new it({id:"rec2100pq",name:"REC.2100-PQ",base:gn,toBase:function(t){return t.map(function(r){var a=Math.pow(Math.max(Math.pow(r,ec)-tc,0)/(rc-ac*Math.pow(r,ec)),Fb);return a*1e4/Jl})},fromBase:function(t){return t.map(function(r){var a=Math.max(r*Jl/1e4,0),n=tc+rc*Math.pow(a,Ql),i=1+ac*Math.pow(a,Ql);return Math.pow(n/i,Cb)})},formats:{color:{id:"rec2100-pq"}}}),nc=.17883277,ic=.28466892,oc=.55991073,co=3.7743,Tb=new it({id:"rec2100hlg",cssid:"rec2100-hlg",name:"REC.2100-HLG",referred:"scene",base:gn,toBase:function(t){return t.map(function(r){return r<=.5?Math.pow(r,2)/3*co:Math.exp((r-oc)/nc+ic)/12*co})},fromBase:function(t){return t.map(function(r){return r/=co,r<=1/12?Math.sqrt(3*r):nc*Math.log(12*r-ic)+oc})},formats:{color:{id:"rec2100-hlg"}}}),uc={};rr.add("chromatic-adaptation-start",function(e){e.options.method&&(e.M=sc(e.W1,e.W2,e.options.method))}),rr.add("chromatic-adaptation-end",function(e){e.M||(e.M=sc(e.W1,e.W2,e.options.method))});function An(e){var t=e.id;e.toCone_M,e.fromCone_M,uc[t]=arguments[0]}function sc(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"Bradford",a=uc[r],n=Ne(a.toCone_M,e),i=H(n,3),o=i[0],u=i[1],s=i[2],l=Ne(a.toCone_M,t),c=H(l,3),d=c[0],f=c[1],p=c[2],m=[[d/o,0,0],[0,f/u,0],[0,0,p/s]],h=Ne(m,a.toCone_M),v=Ne(a.fromCone_M,h);return v}An({id:"von Kries",toCone_M:[[.40024,.7076,-.08081],[-.2263,1.16532,.0457],[0,0,.91822]],fromCone_M:[[1.8599364,-1.1293816,.2198974],[.3611914,.6388125,-64e-7],[0,0,1.0890636]]}),An({id:"Bradford",toCone_M:[[.8951,.2664,-.1614],[-.7502,1.7135,.0367],[.0389,-.0685,1.0296]],fromCone_M:[[.9869929,-.1470543,.1599627],[.4323053,.5183603,.0492912],[-.0085287,.0400428,.9684867]]}),An({id:"CAT02",toCone_M:[[.7328,.4296,-.1624],[-.7036,1.6975,.0061],[.003,.0136,.9834]],fromCone_M:[[1.0961238,-.278869,.1827452],[.454369,.4735332,.0720978],[-.0096276,-.005698,1.0153256]]}),An({id:"CAT16",toCone_M:[[.401288,.650173,-.051461],[-.250268,1.204414,.045854],[-.002079,.048952,.953127]],fromCone_M:[[1.862067855087233,-1.011254630531685,.1491867754444518],[.3875265432361372,.6214474419314753,-.008973985167612518],[-.01584149884933386,-.03412293802851557,1.04996443687785]]}),Object.assign(Rt,{A:[1.0985,1,.35585],C:[.98074,1,1.18232],D55:[.95682,1,.92149],D75:[.94972,1,1.22638],E:[1,1,1],F2:[.99186,1,.67393],F7:[.95041,1,1.08747],F11:[1.00962,1,.6435]}),Rt.ACES=[.32168/.33767,1,(1-.32168-.33767)/.33767];var Sb=[[.6624541811085053,.13400420645643313,.1561876870049078],[.27222871678091454,.6740817658111484,.05368951740793705],[-.005574649490394108,.004060733528982826,1.0103391003129971]],kb=[[1.6410233796943257,-.32480329418479,-.23642469523761225],[-.6636628587229829,1.6153315916573379,.016756347685530137],[.011721894328375376,-.008284441996237409,.9883948585390215]],lc=new it({id:"acescg",name:"ACEScg",coords:{r:{range:[0,65504],name:"Red"},g:{range:[0,65504],name:"Green"},b:{range:[0,65504],name:"Blue"}},referred:"scene",white:Rt.ACES,toXYZ_M:Sb,fromXYZ_M:kb,formats:{color:{}}}),Fn=Math.pow(2,-16),fo=-.35828683,Cn=(Math.log2(65504)+9.72)/17.52,Ob=new it({id:"acescc",name:"ACEScc",coords:{r:{range:[fo,Cn],name:"Red"},g:{range:[fo,Cn],name:"Green"},b:{range:[fo,Cn],name:"Blue"}},referred:"scene",base:lc,toBase:function(t){var r=-.3013698630136986;return t.map(function(a){return a<=r?(Math.pow(2,a*17.52-9.72)-Fn)*2:a<Cn?Math.pow(2,a*17.52-9.72):65504})},fromBase:function(t){return t.map(function(r){return r<=0?(Math.log2(Fn)+9.72)/17.52:r<Fn?(Math.log2(Fn+r*.5)+9.72)/17.52:(Math.log2(r)+9.72)/17.52})},formats:{color:{}}}),cc=Object.freeze({__proto__:null,XYZ_D65:ht,XYZ_D50:Xi,XYZ_ABS_D65:no,Lab_D65:ro,Lab:ut,LCH:fa,sRGB_Linear:yl,sRGB:ha,HSL:Yl,HWB:vb,HSV:Kl,P3_Linear:bl,P3:xl,A98RGB_Linear:Xl,A98RGB:yb,ProPhoto_Linear:Zl,ProPhoto:Eb,REC_2020_Linear:gn,REC_2020:gl,OKLab:En,OKLCH:Ab,Jzazbz:jl,JzCzHz:oo,ICTCP:uo,REC_2100_PQ:Rb,REC_2100_HLG:Tb,ACEScg:lc,ACEScc:Ob}),Ee=(G=new WeakMap,(function(){function e(){var t=this;_t(this,e),Zt(this,G,void 0);for(var r,a=arguments.length,n=new Array(a),i=0;i<a;i++)n[i]=arguments[i];n.length===1&&(r=be(n[0]));var o,u,s;r?(o=r.space||r.spaceId,u=r.coords,s=r.alpha):(o=n[0],u=n[1],s=n[2]),at(G,this,ee.get(o)),this.coords=u?u.slice():[0,0,0],this.alpha=s<1?s:1;for(var l=0;l<this.coords.length;l++)this.coords[l]==="NaN"&&(this.coords[l]=NaN);var c=function(p){Object.defineProperty(t,p,{get:function(){return t.get(p)},set:function(h){return t.set(p,h)}})};for(var d in wt(G,this).coords)c(d)}return xt(e,[{key:"space",get:function(){return wt(G,this)}},{key:"spaceId",get:function(){return wt(G,this).id}},{key:"clone",value:function(){return new Ee(this.space,this.coords,this.alpha)}},{key:"toJSON",value:function(){return{spaceId:this.spaceId,coords:this.coords,alpha:this.alpha}}},{key:"display",value:function(){for(var r=arguments.length,a=new Array(r),n=0;n<r;n++)a[n]=arguments[n];var i=gg.apply(void 0,[this].concat(a));return i.color=new Ee(i.color),i}}],[{key:"get",value:function(r){if(r instanceof Ee)return r;for(var a=arguments.length,n=new Array(a>1?a-1:0),i=1;i<a;i++)n[i-1]=arguments[i];return os(Ee,[r].concat(n))}},{key:"defineFunction",value:function(r,a){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:a,i=n.instance,o=i===void 0?!0:i,u=n.returns,s=function(){var c=a.apply(void 0,arguments);if(u==="color")c=Ee.get(c);else if(u==="function<color>"){var d=c;c=function(){var p=d.apply(void 0,arguments);return Ee.get(p)},Object.assign(c,d)}else u==="array<color>"&&(c=c.map(function(f){return Ee.get(f)}));return c};r in Ee||(Ee[r]=s),o&&(Ee.prototype[r]=function(){for(var l=arguments.length,c=new Array(l),d=0;d<l;d++)c[d]=arguments[d];return s.apply(void 0,[this].concat(c))})}},{key:"defineFunctions",value:function(r){for(var a in r)Ee.defineFunction(a,r[a],r[a])}},{key:"extend",value:function(r){if(r.register)r.register(Ee);else for(var a in r)Ee.defineFunction(a,r[a])}}])})());Ee.defineFunctions({get:vt,getAll:da,set:ar,setAll:fl,to:gt,equals:bg,inGamut:pa,toGamut:nr,distance:Al,toString:vn}),Object.assign(Ee,{util:tg,hooks:rr,WHITES:Rt,Space:ee,spaces:ee.registry,parse:dl,defaults:Mt});for(var po=0,dc=Object.keys(cc);po<dc.length;po++){var Mb=dc[po];ee.register(cc[Mb])}for(var fc in ee.registry)mo(fc,ee.registry[fc]);rr.add("colorspace-init-end",function(e){var t;mo(e.id,e),(t=e.aliases)===null||t===void 0||t.forEach(function(r){mo(r,e)})});function mo(e,t){Object.keys(t.coords),Object.values(t.coords).map(function(a){return a.name});var r=e.replace(/-/g,"_");Object.defineProperty(Ee.prototype,r,{get:function(){var n=this,i=this.getAll(e);return typeof Proxy>"u"?i:new Proxy(i,{has:function(u,s){try{return ee.resolveCoord([t,s]),!0}catch{}return Reflect.has(u,s)},get:function(u,s,l){if(s&&P(s)!=="symbol"&&!(s in u)){var c=ee.resolveCoord([t,s]),d=c.index;if(d>=0)return u[d]}return Reflect.get(u,s,l)},set:function(u,s,l,c){if(s&&P(s)!=="symbol"&&!(s in u)||s>=0){var d=ee.resolveCoord([t,s]),f=d.index;if(f>=0)return u[f]=l,n.setAll(e,u),!0}return Reflect.set(u,s,l,c)}})},set:function(n){this.setAll(e,n)},configurable:!0,enumerable:!0})}Ee.extend(so),Ee.extend({deltaE:va}),Ee.extend(pb),Ee.extend({contrast:Lg}),Ee.extend(jg),Ee.extend(Dg),Ee.extend(hb),Ee.extend(Dn);var pc=Ot(Bs());er.default.templateSettings.strip=!1,x._memoizedFns=[];function Pb(e){var t=(0,il.default)(e);return x._memoizedFns.push(t),t}var Re=Pb,Ib=Re(function(e){return e!=null&&e.createElement?e.createElement("A").localName==="A":!1}),Rn=Ib;function ho(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!t)return"";var a=t.getRootNode&&t.getRootNode()||M;if(a.nodeType!==11)return e(t,r,a);for(var n=[];a.nodeType===11;){if(!a.host)return"";n.unshift({elm:t,doc:a}),t=a.host,a=t.getRootNode()}return n.unshift({elm:t,doc:a}),n.map(function(i){return e(i.elm,r,i.doc)})}var Nb=["class","style","id","selected","checked","disabled","tabindex","aria-checked","aria-selected","aria-invalid","aria-activedescendant","aria-busy","aria-disabled","aria-expanded","aria-grabbed","aria-pressed","aria-valuenow","xmlns"],Bb=31,Lb=/([\\"])/g,qb=/(\r\n|\r|\n)/g;function vo(e){return e.replace(Lb,"\\$1").replace(qb,"\\a ")}function mc(e,t){var r=t.name,a;if(r.indexOf("href")!==-1||r.indexOf("src")!==-1){var n=rl(e.getAttribute(r));n?a=Oe(t.name)+'$="'+vo(n)+'"':a=Oe(t.name)+'="'+vo(e.getAttribute(r))+'"'}else a=Oe(r)+'="'+vo(t.value)+'"';return a}function go(e,t){return e.count<t.count?-1:e.count===t.count?0:1}function hc(e){return!Nb.includes(e.name)&&e.name.indexOf(":")===-1&&(!e.value||e.value.length<Bb)}function Tn(e){var t={classes:{},tags:{},attributes:{}};e=Array.isArray(e)?e:[e];for(var r=e.slice(),a=[],n=function(){var o=r.pop(),u=o.actualNode;if(u.querySelectorAll){var s=u.nodeName;t.tags[s]?t.tags[s]++:t.tags[s]=1,u.classList&&Array.from(u.classList).forEach(function(l){var c=Oe(l);t.classes[c]?t.classes[c]++:t.classes[c]=1}),u.hasAttributes()&&Array.from(la(u)).filter(hc).forEach(function(l){var c=mc(u,l);c&&(t.attributes[c]?t.attributes[c]++:t.attributes[c]=1)})}for(o.children.length&&(a.push(r),r=o.children.slice());!r.length&&a.length;)r=a.pop()};r.length;)n();return t}function jb(e,t){var r=[],a=t.classes,n=t.tags;return e.classList&&Array.from(e.classList).forEach(function(i){var o=Oe(i);a[o]<n[e.nodeName]&&r.push({name:o,count:a[o],species:"class"})}),r.sort(go)}function $b(e,t){var r=e.parentNode&&Array.from(e.parentNode.children||"")||[],a=r.find(function(i){return i!==e&&Or(i,t)});if(a){var n=1+r.indexOf(e);return":nth-child("+n+")"}else return""}function zb(e){if(e.getAttribute("id")){var t=e.getRootNode&&e.getRootNode()||M,r="#"+Oe(e.getAttribute("id")||"");if(!r.match(/player_uid_/)&&t.querySelectorAll(r).length===1)return r}}function vc(e){var t=Rn(M);return Oe(t?e.localName:e.nodeName.toLowerCase())}function Vb(e,t){var r=[],a=t.attributes,n=t.tags;return e.hasAttributes()&&Array.from(la(e)).filter(hc).forEach(function(i){var o=mc(e,i);o&&a[o]<n[e.nodeName]&&r.push({name:o,count:a[o],species:"attribute"})}),r.sort(go)}function Hb(e,t){var r="",a,n=jb(e,t),i=Vb(e,t);return n.length&&n[0].count===1?a=[n[0]]:i.length&&i[0].count===1?(a=[i[0]],r=vc(e)):(a=n.concat(i),a.sort(go),a=a.slice(0,3),a.some(function(o){return o.species==="class"})?a.sort(function(o,u){return o.species!==u.species&&o.species==="class"?-1:o.species===u.species?0:1}):r=vc(e)),r+=a.reduce(function(o,u){switch(u.species){case"class":return o+"."+u.name;case"attribute":return o+"["+u.name+"]"}return o},"")}function Gb(e,t,r){if(!x._selectorData)throw new Error("Expect axe._selectorData to be set up");var a=t.toRoot,n=a===void 0?!1:a,i,o;do{var u=zb(e);u||(u=Hb(e,x._selectorData),u+=$b(e,u)),i?i=u+" > "+i:i=u,!o||o.length>se.selectorSimilarFilterLimit?o=Wb(r,i):o=o.filter(function(s){return Or(s,i)}),e=e.parentElement}while((o.length>1||n)&&e&&e.nodeType!==11);return o.length===1?i:i.indexOf(" > ")!==-1?":root"+i.substring(i.indexOf(" > ")):":root"}function Ub(e,t){return ho(Gb,e,t)}var bo=Re(Ub),Wb=Re(function(e,t){return Array.from(e.querySelectorAll(t))});function gc(e){var t=e.nodeName.toLowerCase(),r=e.parentElement,a=e.parentNode,n="";if(t!=="head"&&t!=="body"&&a?.children.length>1){var i=Array.prototype.indexOf.call(a.children,e)+1;n=":nth-child(".concat(i,")")}return r?gc(r)+" > "+t+n:t+n}function Sn(e,t){return ho(gc,e,t)}function bc(e,t){var r,a;if(!e)return[];if(!t&&e.nodeType===9)return t=[{str:"html"}],t;if(t=t||[],e.parentNode&&e.parentNode!==e&&(t=bc(e.parentNode,t)),e.previousSibling){a=1,r=e.previousSibling;do r.nodeType===1&&r.nodeName===e.nodeName&&a++,r=r.previousSibling;while(r);a===1&&(a=null)}else if(e.nextSibling){r=e.nextSibling;do r.nodeType===1&&r.nodeName===e.nodeName?(a=1,r=null):(a=null,r=r.previousSibling);while(r)}if(e.nodeType===1){var n={};n.str=e.nodeName.toLowerCase();var i=e.getAttribute&&Oe(e.getAttribute("id"));i&&e.ownerDocument.querySelectorAll("#"+i).length===1&&(n.id=e.getAttribute("id")),a>1&&(n.count=a),t.push(n)}return t}function Yb(e){return e.reduce(function(t,r){return r.id?"//".concat(r.str,"[@id='").concat(r.id,"']"):t+"/".concat(r.str)+(r.count>0?"[".concat(r.count,"]"):"")},"")}function Kb(e){var t=bc(e);return Yb(t)}var yc=Kb,ba={},Xb={set:function(t,r){Zb(t),ba[t]=r},get:function(t,r){if(Jb(r),t in ba)return ba[t];if(typeof r=="function"){var a=r();return he(a!==void 0,"Cache creator function should not return undefined"),this.set(t,a),ba[t]}},clear:function(){ba={}}};function Zb(e){he(typeof e=="string","key must be a string, "+P(e)+" given"),he(e!=="","key must not be empty")}function Jb(e){he(typeof e=="function"||typeof e>"u","creator must be a function or undefined, "+P(e)+" given")}var ue=Xb;function Qb(e,t){var r=t||e;return ue.get("nodeMap")?ue.get("nodeMap").get(r):null}var ce=Qb,yo={};Et(yo,{createGrid:function(){return _a},findElmsInContext:function(){return Dc},findNearbyElms:function(){return Ln},findUp:function(){return Nr},findUpVirtual:function(){return Ir},focusDisabled:function(){return To},getComposedParent:function(){return Ge},getElementByReference:function(){return ko},getElementCoordinates:function(){return _o},getElementStack:function(){return Qc},getModalDialog:function(){return Yc},getNodeGrid:function(){return Bn},getOverflowHiddenAncestors:function(){return Da},getRootNode:function(){return Xe},getScrollOffset:function(){return Ic},getTabbableElements:function(){return ed},getTargetRects:function(){return jn},getTargetSize:function(){return td},getTextElementStack:function(){return Ko},getViewportSize:function(){return kn},getVisibleChildTextRects:function(){return Yo},hasContent:function(){return Un},hasContentVirtual:function(){return Sa},hasLangText:function(){return Jo},idrefs:function(){return Pt},insertedIntoFocusOrder:function(){return Hd},isCurrentPageLink:function(){return So},isFocusable:function(){return Be},isHTML5:function(){return Wd},isHiddenForEveryone:function(){return or},isHiddenWithCSS:function(){return F2},isInTabOrder:function(){return bt},isInTextBlock:function(){return Qo},isInert:function(){return qn},isModalOpen:function(){return ka},isMultiline:function(){return Xd},isNativelyFocusable:function(){return Po},isNode:function(){return P2},isOffscreen:function(){return On},isOpaque:function(){return H2},isSkipLink:function(){return tu},isVisible:function(){return X2},isVisibleOnScreen:function(){return st},isVisibleToScreenReaders:function(){return Te},isVisualContent:function(){return Xo},reduceToElementsBelowFloating:function(){return Zd},shadowElementsFromPoint:function(){return Q2},urlPropsFromAttribute:function(){return iD},visuallyContains:function(){return Jd},visuallyOverlaps:function(){return ru},visuallySort:function(){return Oo}});function ey(e){var t=e.getRootNode&&e.getRootNode()||M;return t===e&&(t=M),t}var ya=ey,Xe=ya;function ty(e){var t=e.context,r=e.value,a=e.attr,n=e.elm,i=n===void 0?"":n,o,u=Oe(r);return t.nodeType===9||t.nodeType===11?o=t:o=Xe(t),Array.from(o.querySelectorAll(i+"["+a+"="+u+"]"))}var Dc=ty;function ry(e,t){var r;if(r=e.actualNode,!e.shadowId&&typeof e.actualNode.closest=="function"){var a=e.actualNode.closest(t);return a||null}do r=r.assignedSlot?r.assignedSlot:r.parentNode,r&&r.nodeType===11&&(r=r.host);while(r&&!Or(r,t)&&r!==M.documentElement);return!r||!Or(r,t)?null:r}var Ir=ry;function ay(e,t){return Ir(ce(e),t)}var Nr=ay;function Do(e,t){return(e.left|0)<(t.right|0)&&(e.right|0)>(t.left|0)&&(e.top|0)<(t.bottom|0)&&(e.bottom|0)>(t.top|0)}var wc=Re(function(t){var r=[];if(!t)return r;var a=t.getComputedStylePropertyValue("overflow");return a==="hidden"&&r.push(t),r.concat(wc(t.parent))}),Da=wc,ny=/rect\s*\(([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px\s*\)/,iy=/(\w+)\((\d+)/;function _c(e){return["style","script","noscript","template"].includes(e.props.nodeName)}function xc(e){return e.props.nodeName==="area"?!1:e.getComputedStylePropertyValue("display")==="none"}function Ec(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.isAncestor;return!r&&["hidden","collapse"].includes(e.getComputedStylePropertyValue("visibility"))}function Ac(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.isAncestor;return!!r&&e.getComputedStylePropertyValue("content-visibility")==="hidden"}function Fc(e){return e.attr("aria-hidden")==="true"}function Cc(e){return e.getComputedStylePropertyValue("opacity")==="0"}function Rc(e){var t=Kt(e.actualNode),r=parseInt(e.getComputedStylePropertyValue("height")),a=parseInt(e.getComputedStylePropertyValue("width"));return!!t&&(r===0||a===0)}function Tc(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.isAncestor;if(r)return!1;var a=e.getComputedStylePropertyValue("position");if(a==="fixed")return!1;var n=Da(e);if(!n.length)return!1;var i=e.boundingClientRect;return n.some(function(o){if(a==="absolute"&&!oy(e,o)&&o.getComputedStylePropertyValue("position")==="static")return!1;var u=o.boundingClientRect;return u.width<2||u.height<2?!0:!Do(i,u)})}function Sc(e){var t=e.getComputedStylePropertyValue("clip").match(ny),r=e.getComputedStylePropertyValue("clip-path").match(iy);if(t&&t.length===5){var a=e.getComputedStylePropertyValue("position");if(["fixed","absolute"].includes(a))return t[3]-t[1]<=0&&t[2]-t[4]<=0}if(r){var n=r[1],i=parseInt(r[2],10);switch(n){case"inset":return i>=50;case"circle":return i===0}}return!1}function wo(e,t){var r=ct(e,"map");if(!r)return!0;var a=r.attr("name");if(!a)return!0;var n=ya(e.actualNode);if(!n||n.nodeType!==9)return!0;var i=ft(x._tree,'img[usemap="#'.concat(Oe(a),'"]'));return!i||!i.length?!0:i.some(function(o){return!t(o)})}function kc(e){var t;if(((t=e.parent)===null||t===void 0?void 0:t.props.nodeName)!=="details")return!1;if(e.props.nodeName==="summary"){var r=e.parent.children.find(function(a){return a.props.nodeName==="summary"});if(r===e)return!1}return!e.parent.hasAttr("open")}function oy(e,t){for(var r=e.parent;r&&r!==t;){if(["relative","sticky"].includes(r.getComputedStylePropertyValue("position")))return!0;r=r.parent}return!1}var uy=[xc,Ec,Ac,kc];function or(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.skipAncestors,a=t.isAncestor,n=a===void 0?!1:a;return e=ye(e).vNode,r?Oc(e,n):Mc(e,n)}var Oc=Re(function(t,r){return _c(t)?!0:t.actualNode?!!(uy.some(function(a){return a(t,{isAncestor:r})})||!t.actualNode.isConnected):!1}),Mc=Re(function(t,r){return Oc(t,r)?!0:t.parent?Mc(t.parent,!0):!1});function Pc(e){if(e.assignedSlot)return Pc(e.assignedSlot);if(e.parentNode){var t=e.parentNode;if(t.nodeType===1)return t;if(t.host)return t.host}return null}var Ge=Pc;function sy(e){if(!e.nodeType&&e.document&&(e=e.document),e.nodeType===9){var t=e.documentElement,r=e.body;return{left:t&&t.scrollLeft||r&&r.scrollLeft||0,top:t&&t.scrollTop||r&&r.scrollTop||0}}return{left:e.scrollLeft,top:e.scrollTop}}var Ic=sy;function ly(e){var t=Ic(M),r=t.left,a=t.top,n=e.getBoundingClientRect();return{top:n.top+a,right:n.right+r,bottom:n.bottom+a,left:n.left+r,width:n.right-n.left,height:n.bottom-n.top}}var _o=ly;function cy(e){var t=e.document,r=t.documentElement;if(e.innerWidth)return{width:e.innerWidth,height:e.innerHeight};if(r)return{width:r.clientWidth,height:r.clientHeight};var a=t.body;return{width:a.clientWidth,height:a.clientHeight}}var kn=cy;function dy(e,t){for(e=Ge(e);e&&e.nodeName.toLowerCase()!=="html";){if(e.scrollTop&&(t+=e.scrollTop,t>=0))return!1;e=Ge(e)}return!0}function fy(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.isAncestor;if(r)return!1;var a=ye(e),n=a.domNode;if(n){var i,o=M.documentElement,u=E.getComputedStyle(n),s=E.getComputedStyle(M.body||o).getPropertyValue("direction"),l=_o(n);if(l.bottom<0&&(dy(n,l.bottom)||u.position==="absolute"))return!0;if(l.left===0&&l.right===0)return!1;if(s==="ltr"){if(l.right<=0)return!0}else if(i=Math.max(o.scrollWidth,kn(E).width),l.left>=i)return!0;return!1}}var On=fy,py=[Cc,Rc,Tc,Sc,On];function st(e){return e=ye(e).vNode,xo(e)}var xo=Re(function(t,r){return t.actualNode&&t.props.nodeName==="area"?!wo(t,xo):or(t,{skipAncestors:!0,isAncestor:r})||t.actualNode&&py.some(function(a){return a(t,{isAncestor:r})})?!1:t.parent?xo(t.parent,!0):!0});function Mn(e,t){var r=Math.min(e.top,t.top),a=Math.max(e.right,t.right),n=Math.max(e.bottom,t.bottom),i=Math.min(e.left,t.left);return new E.DOMRect(i,r,a-i,n-r)}function Pn(e,t){var r=e.x,a=e.y,n=t.top,i=t.right,o=t.bottom,u=t.left;return a>=n&&r<=i&&a<=o&&r>=u}var Nc={};Et(Nc,{getBoundingRect:function(){return Mn},getIntersectionRect:function(){return In},getOffset:function(){return Lc},getRectCenter:function(){return wa},hasVisualOverlap:function(){return Eo},isPointInRect:function(){return Pn},rectHasMinimumSize:function(){return Gt},rectsOverlap:function(){return Do},splitRects:function(){return Ao}});function In(e,t){var r=Math.max(e.left,t.left),a=Math.min(e.right,t.right),n=Math.max(e.top,t.top),i=Math.min(e.bottom,t.bottom);return r>=a||n>=i?null:new E.DOMRect(r,n,a-r,i-n)}function wa(e){var t=e.left,r=e.top,a=e.width,n=e.height;return new E.DOMPoint(t+a/2,r+n/2)}var Bc=.05;function Gt(e,t){var r=t.width,a=t.height;return r+Bc>=e&&a+Bc>=e}function Lc(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:12,a=jn(e),n=jn(t);if(!a.length||!n.length)return null;var i=a.reduce(Mn),o=wa(i),u=1/0,s=xe(n),l;try{for(s.s();!(l=s.n()).done;){var c=l.value;if(Pn(o,c))return 0;var d=my(o,c),f=qc(o,d);u=Math.min(u,f)}}catch(g){s.e(g)}finally{s.f()}var p=td(t);if(Gt(r*2,p))return u;var m=n.reduce(Mn),h=wa(m),v=qc(o,h)-r;return Math.max(0,Math.min(u,v))}function my(e,t){var r,a;return e.x<t.left?r=t.left:e.x>t.right?r=t.right:r=e.x,e.y<t.top?a=t.top:e.y>t.bottom?a=t.bottom:a=e.y,{x:r,y:a}}function qc(e,t){return Math.hypot(e.x-t.x,e.y-t.y)}function Eo(e,t){var r=e.boundingClientRect,a=t.boundingClientRect;return r.left>=a.right||r.right<=a.left||r.top>=a.bottom||r.bottom<=a.top?!1:Oo(e,t)>0}function Ao(e,t){var r=[e],a=xe(t),n;try{var i=function(){var u=n.value;if(r=r.reduce(function(s,l){return s.concat(hy(l,u))},[]),r.length>4e3)throw new Error("splitRects: Too many rects")};for(a.s();!(n=a.n()).done;)i()}catch(o){a.e(o)}finally{a.f()}return r}function hy(e,t){var r=e.top,a=e.left,n=e.bottom,i=e.right,o=r<t.bottom&&n>t.top,u=a<t.right&&i>t.left,s=[];if(Nn(t.top,r,n)&&u&&s.push({top:r,left:a,bottom:t.top,right:i}),Nn(t.right,a,i)&&o&&s.push({top:r,left:t.right,bottom:n,right:i}),Nn(t.bottom,r,n)&&u&&s.push({top:t.bottom,right:i,bottom:n,left:a}),Nn(t.left,a,i)&&o&&s.push({top:r,left:a,bottom:n,right:t.left}),s.length===0){if(gy(e,t))return[];s.push(e)}return s.map(vy)}var Nn=function(t,r,a){return t>r&&t<a};function vy(e){return new E.DOMRect(e.left,e.top,e.right-e.left,e.bottom-e.top)}function gy(e,t){return e.top>=t.top&&e.left>=t.left&&e.bottom<=t.bottom&&e.right<=t.right}var jc=0,by=.1,$c=.2,zc=.3,Fo=0;function _a(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:M.body,t=arguments.length>1?arguments[1]:void 0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null;if(ue.get("gridCreated")&&!r)return se.gridSize;if(ue.set("gridCreated",!0),!r){var a=ce(M.documentElement);if(a||(a=new Kn(M.documentElement)),Fo=0,a._stackingOrder=[Gc(jc,Fo++,null)],t??(t=new Co),Uc(t,a),Kt(a.actualNode)){var n=new Co(a);a._subGrid=n}}for(var i=M.createTreeWalker(e,E.NodeFilter.SHOW_ELEMENT,null,!1),o=r?i.nextNode():i.currentNode;o;){var u=ce(o);u&&u.parent?r=u.parent:o.assignedSlot?r=ce(o.assignedSlot):o.parentElement?r=ce(o.parentElement):o.parentNode&&ce(o.parentNode)&&(r=ce(o.parentNode)),u||(u=new x.VirtualNode(o,r)),u._stackingOrder=yy(u,r,Fo++);var s=_y(u,r),l=s?s._subGrid:t;if(Kt(u.actualNode)){var c=new Co(u);u._subGrid=c}var d=u.boundingClientRect;d.width!==0&&d.height!==0&&st(o)&&Uc(l,u),ai(o)&&_a(o.shadowRoot,l,u),o=i.nextNode()}return se.gridSize}function Vc(e,t){var r=e.getComputedStylePropertyValue("position"),a=e.getComputedStylePropertyValue("z-index");if(r==="fixed"||r==="sticky"||a!=="auto"&&r!=="static"||e.getComputedStylePropertyValue("opacity")!=="1")return!0;var n=e.getComputedStylePropertyValue("-webkit-transform")||e.getComputedStylePropertyValue("-ms-transform")||e.getComputedStylePropertyValue("transform")||"none";if(n!=="none")return!0;var i=e.getComputedStylePropertyValue("mix-blend-mode");if(i&&i!=="normal")return!0;var o=e.getComputedStylePropertyValue("filter");if(o&&o!=="none")return!0;var u=e.getComputedStylePropertyValue("perspective");if(u&&u!=="none")return!0;var s=e.getComputedStylePropertyValue("clip-path");if(s&&s!=="none")return!0;var l=e.getComputedStylePropertyValue("-webkit-mask")||e.getComputedStylePropertyValue("mask")||"none";if(l!=="none")return!0;var c=e.getComputedStylePropertyValue("-webkit-mask-image")||e.getComputedStylePropertyValue("mask-image")||"none";if(c!=="none")return!0;var d=e.getComputedStylePropertyValue("-webkit-mask-border")||e.getComputedStylePropertyValue("mask-border")||"none";if(d!=="none"||e.getComputedStylePropertyValue("isolation")==="isolate")return!0;var f=e.getComputedStylePropertyValue("will-change");if(f==="transform"||f==="opacity"||e.getComputedStylePropertyValue("-webkit-overflow-scrolling")==="touch")return!0;var p=e.getComputedStylePropertyValue("contain");return!!(["layout","paint","strict","content"].includes(p)||a!=="auto"&&Hc(t))}function Hc(e){if(!e)return!1;var t=e.getComputedStylePropertyValue("display");return["flex","inline-flex","grid","inline-grid"].includes(t)}function yy(e,t,r){var a=t._stackingOrder.slice();if(Vc(e,t)){var n=a.findIndex(function(o){var u=o.stackLevel;return[jc,$c,zc].includes(u)});n!==-1&&a.splice(n,a.length-n)}var i=Dy(e,t);return i!==null&&a.push(Gc(i,r,e)),a}function Gc(e,t,r){return{stackLevel:e,treeOrder:t,vNode:r}}function Dy(e,t){var r=wy(e,t);return["auto","0"].includes(r)?e.getComputedStylePropertyValue("position")!=="static"?zc:e.getComputedStylePropertyValue("float")!=="none"?$c:Vc(e,t)?by:null:parseInt(r)}function wy(e,t){var r=e.getComputedStylePropertyValue("position");return r==="static"&&!Hc(t)?"auto":e.getComputedStylePropertyValue("z-index")}function _y(e,t){for(var r=null,a=[e];t;){if(Kt(t.actualNode)){r=t;break}if(t._scrollRegionParent){r=t._scrollRegionParent;break}a.push(t),t=ce(t.actualNode.parentElement||t.actualNode.parentNode)}return a.forEach(function(n){return n._scrollRegionParent=r}),r}function Uc(e,t){var r=Da(t);t.clientRects.forEach(function(a){var n,i=r.reduce(function(u,s){return u&&In(u,s.boundingClientRect)},a);if(i){(n=t._grid)!==null&&n!==void 0||(t._grid=e);var o=e.getGridPositionOfRect(i);e.loopGridPosition(o,function(u){u.includes(t)||u.push(t)})}})}var Co=(function(){function e(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null;_t(this,e),this.container=t,this.cells=[]}return xt(e,[{key:"toGridIndex",value:function(r){return Math.floor(r/se.gridSize)}},{key:"getCellFromPoint",value:function(r){var a,n,i=r.x,o=r.y;he(this.boundaries,"Grid does not have cells added");var u=this.toGridIndex(o),s=this.toGridIndex(i);he(Pn({y:u,x:s},this.boundaries),"Element midpoint exceeds the grid bounds");var l=(a=this.cells[u-this.cells._negativeIndex])!==null&&a!==void 0?a:[];return(n=l[s-l._negativeIndex])!==null&&n!==void 0?n:[]}},{key:"loopGridPosition",value:function(r,a){var n=r,i=n.left,o=n.right,u=n.top,s=n.bottom;this.boundaries&&(r=Mn(this.boundaries,r)),this.boundaries=r,Wc(this.cells,u,s,function(l,c){Wc(l,i,o,function(d,f){a(d,{row:c,col:f})})})}},{key:"getGridPositionOfRect",value:function(r){var a=r.top,n=r.right,i=r.bottom,o=r.left,u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return a=this.toGridIndex(a-u),n=this.toGridIndex(n+u-1),i=this.toGridIndex(i+u-1),o=this.toGridIndex(o-u),new E.DOMRect(o,a,n-o,i-a)}}])})();function Wc(e,t,r,a){var n;if((n=e._negativeIndex)!==null&&n!==void 0||(e._negativeIndex=0),t<e._negativeIndex){for(var i=0;i<e._negativeIndex-t;i++)e.splice(0,0,[]);e._negativeIndex=t}for(var o=t-e._negativeIndex,u=r-e._negativeIndex,s=o;s<=u;s++){var l,c;(c=e[l=s])!==null&&c!==void 0||(e[l]=[]),a(e[s],s+e._negativeIndex)}}function Bn(e){_a();var t=ye(e),r=t.vNode;return r._grid}function Ln(e){var t,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,a=Bn(e);if(!(a!=null&&(t=a.cells)!==null&&t!==void 0&&t.length))return[];var n=e.boundingClientRect,i=Ro(e),o=a.getGridPositionOfRect(n,r),u=[];return a.loopGridPosition(o,function(s){var l=xe(s),c;try{for(l.s();!(c=l.n()).done;){var d=c.value;d&&d!==e&&!u.includes(d)&&i===Ro(d)&&u.push(d)}}catch(f){l.e(f)}finally{l.f()}}),u}var Ro=Re(function(e){return e?e.getComputedStylePropertyValue("position")==="fixed"?!0:Ro(e.parent):!1}),xy=Re(function(){var t;if(!x._tree)return null;var r=jt(x._tree[0],"dialog[open]",function(n){var i=n.boundingClientRect,o=M.elementsFromPoint(i.left+1,i.top+1);return o.includes(n.actualNode)&&st(n)});if(!r.length)return null;var a=r.find(function(n){var i=n.boundingClientRect,o=M.elementsFromPoint(i.left-10,i.top-10);return o.includes(n.actualNode)});return a||((t=r.find(function(n){var i,o=(i=Ey(n))!==null&&i!==void 0?i:{},u=o.vNode,s=o.rect;if(!u)return!1;var l=M.elementsFromPoint(s.left+1,s.top+1);return!l.includes(u.actualNode)}))!==null&&t!==void 0?t:null)}),Yc=xy;function Ey(e){_a();var t=x._tree[0]._grid,r=new E.DOMRect(0,0,E.innerWidth,E.innerHeight);if(t)for(var a=0;a<t.cells.length;a++){var n=t.cells[a];if(n)for(var i=0;i<n.length;i++){var o=n[i];if(o)for(var u=0;u<o.length;u++){var s=o[u],l=s.boundingClientRect,c=In(l,r);if(s.props.nodeName!=="html"&&s!==e&&s.getComputedStylePropertyValue("pointer-events")!=="none"&&c)return{vNode:s,rect:c}}}}}function qn(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.skipAncestors,a=t.isAncestor;return r?Kc(e,a):Xc(e,a)}var Kc=Re(function(t,r){if(t.hasAttr("inert"))return!0;if(!r&&t.actualNode){var a=Yc();if(a&&!Yt(a,t))return!0}return!1}),Xc=Re(function(t,r){return Kc(t,r)?!0:t.parent?Xc(t.parent,!0):!1}),Ay=["button","command","fieldset","keygen","optgroup","option","select","textarea","input"];function Fy(e){return Ay.includes(e)}function Cy(e){var t=ye(e),r=t.vNode;if(Fy(r.props.nodeName)&&r.hasAttr("disabled")||qn(r))return!0;for(var a=r.parent,n=[],i=!1;a&&a.shadowId===r.shadowId&&!i&&(n.push(a),a.props.nodeName!=="legend");){if(a._inDisabledFieldset!==void 0){i=a._inDisabledFieldset;break}a.props.nodeName==="fieldset"&&a.hasAttr("disabled")&&(i=!0),a=a.parent}return n.forEach(function(o){return o._inDisabledFieldset=i}),i?!0:r.props.nodeName!=="area"&&r.actualNode?or(r):!1}var To=Cy,Ry=/^\/\#/,Ty=/^#[!/]/;function So(e){var t,r=e.getAttribute("href");if(!r||r==="#")return!1;if(Ry.test(r))return!0;var a=e.hash,n=e.protocol,i=e.hostname,o=e.port,u=e.pathname;if(Ty.test(a))return!1;if(r.charAt(0)==="#")return!0;if(typeof((t=E.location)===null||t===void 0?void 0:t.origin)!="string"||E.location.origin.indexOf("://")===-1)return null;var s=E.location.origin+E.location.pathname,l;return i?l="".concat(n,"//").concat(i).concat(o?":".concat(o):""):l=E.location.origin,u?l+=(u[0]!=="/"?"/":"")+u:l+=E.location.pathname,l===s}function Sy(e,t){var r=e.getAttribute(t);if(!r||t==="href"&&!So(e))return null;r.indexOf("#")!==-1&&(r=decodeURIComponent(r.substr(r.indexOf("#")+1)));var a=M.getElementById(r);return a||(a=M.getElementsByName(r),a.length?a[0]:null)}var ko=Sy;function Oo(e,t){_a();for(var r=Math.max(e._stackingOrder.length,t._stackingOrder.length),a=0;a<r;a++){if(typeof t._stackingOrder[a]>"u")return-1;if(typeof e._stackingOrder[a]>"u"||t._stackingOrder[a].stackLevel>e._stackingOrder[a].stackLevel)return 1;if(t._stackingOrder[a].stackLevel<e._stackingOrder[a].stackLevel)return-1;if(t._stackingOrder[a].treeOrder!==e._stackingOrder[a].treeOrder)return t._stackingOrder[a].treeOrder-e._stackingOrder[a].treeOrder}var n=e.actualNode,i=t.actualNode;if(n.getRootNode&&n.getRootNode()!==i.getRootNode()){for(var o=[];n;)o.push({root:n.getRootNode(),node:n}),n=n.getRootNode().host;for(;i&&!o.find(function(v){return v.root===i.getRootNode()});)i=i.getRootNode().host;if(n=o.find(function(v){return v.root===i.getRootNode()}).node,n===i)return e.actualNode.getRootNode()!==n.getRootNode()?-1:1}var u=E.Node,s=u.DOCUMENT_POSITION_FOLLOWING,l=u.DOCUMENT_POSITION_CONTAINS,c=u.DOCUMENT_POSITION_CONTAINED_BY,d=n.compareDocumentPosition(i),f=d&s?1:-1,p=d&l||d&c,m=Zc(e),h=Zc(t);return m===h||p?f:h-m}function Zc(e){return e.getComputedStylePropertyValue("display").indexOf("inline")!==-1?2:Jc(e)?1:0}function Jc(e){if(!e)return!1;if(e._isFloated!==void 0)return e._isFloated;var t=e.getComputedStylePropertyValue("float");if(t!=="none")return e._isFloated=!0,!0;var r=Jc(e.parent);return e._isFloated=r,r}function Mo(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,a=wa(t),n=e.getCellFromPoint(a)||[],i=Math.floor(a.x),o=Math.floor(a.y),u=n.filter(function(l){return l.clientRects.some(function(c){var d=c.left,f=c.top;return i<Math.floor(d+c.width)&&i>=Math.floor(d)&&o<Math.floor(f+c.height)&&o>=Math.floor(f)})}),s=e.container;return s&&(u=Mo(s._grid,s.boundingClientRect,!0).concat(u)),r||(u=u.sort(Oo).map(function(l){return l.actualNode}).concat(M.documentElement).filter(function(l,c,d){return d.indexOf(l)===c})),u}function ky(e){var t=Bn(e);if(!t)return[];var r=ce(e).boundingClientRect;return Mo(t,r)}var Qc=ky;function Oy(e){var t=ft(e,"*"),r=t.filter(function(a){var n=a.isFocusable,i=qt(a.actualNode.getAttribute("tabindex"));return i!==null?n&&i>=0:n});return r}var ed=Oy;function My(e){var t=ye(e),r=t.vNode;if(!r||To(r))return!1;switch(r.props.nodeName){case"a":case"area":if(r.hasAttr("href"))return!0;break;case"input":return r.props.type!=="hidden";case"textarea":case"select":case"summary":case"button":return!0;case"details":return!ft(r,"summary").length}return!1}var Po=My;function Be(e){var t=ye(e),r=t.vNode;if(r.props.nodeType!==1||To(r))return!1;if(Po(r))return!0;var a=qt(r.attr("tabindex"));return a!==null}function bt(e){var t=ye(e),r=t.vNode;if(r.props.nodeType!==1)return!1;var a=qt(r.attr("tabindex"));return a<=-1?!1:Be(r)}var jn=Re(Py);function Py(e){var t=e.boundingClientRect,r=Ln(e).filter(function(n){return Eo(e,n)&&n.getComputedStylePropertyValue("pointer-events")!=="none"&&!Iy(e,n)});if(!r.length)return[t];var a=r.map(function(n){var i=n.boundingClientRect;return i});return Ao(t,a)}function Iy(e,t){return Yt(e,t)&&!bt(t)}var td=Re(Ny);function Ny(e,t){var r=jn(e);return By(r,t)}function By(e,t){return e.reduce(function(r,a){var n=Gt(t,r),i=Gt(t,a);if(n!==i)return n?r:a;var o=r.width*r.height,u=a.width*a.height;return o>u?r:a})}var xa={};Et(xa,{accessibleText:function(){return yr},accessibleTextVirtual:function(){return Ue},autocomplete:function(){return xr},formControlValue:function(){return Od},formControlValueMethods:function(){return zo},hasUnicode:function(){return Go},isHumanInterpretable:function(){return Wo},isIconLigature:function(){return Uo},isValidAutocomplete:function(){return qd},label:function(){return p2},labelText:function(){return Vo},labelVirtual:function(){return Gn},nativeElementType:function(){return h2},nativeTextAlternative:function(){return Pd},nativeTextMethods:function(){return Md},removeUnicode:function(){return Ta},sanitize:function(){return ae},subtreeText:function(){return ur},titleText:function(){return zn},unsupported:function(){return _d},visible:function(){return jd},visibleTextNodes:function(){return v2},visibleVirtual:function(){return Nt}});function Ly(e,t){e=e.actualNode||e;try{var r=Xe(e),a=[],n=e.getAttribute(t);if(n){n=Ze(n);for(var i=0;i<n.length;i++)a.push(r.getElementById(n[i]))}return a}catch{throw new TypeError("Cannot resolve id references for non-DOM nodes")}}var Pt=Ly;function qy(e,t){var r=ce(e);return Ue(r,t)}var yr=qy;function jy(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=ye(e),a=r.vNode;if(a?.props.nodeType!==1||a.props.nodeType!==1||t.inLabelledByContext||t.inControlContext||!a.attr("aria-labelledby"))return"";var n=Pt(a,"aria-labelledby").filter(function(i){return i});return n.reduce(function(i,o){var u=yr(o,de({inLabelledByContext:!0,startNode:t.startNode||a},t));return i?"".concat(i," ").concat(u):u},"")}var Ea=jy;function Aa(e){var t=ye(e),r=t.vNode;return r?.props.nodeType!==1?"":r.attr("aria-label")||""}var $y={"aria-activedescendant":{type:"idref",allowEmpty:!0},"aria-atomic":{type:"boolean",global:!0},"aria-autocomplete":{type:"nmtoken",values:["inline","list","both","none"]},"aria-braillelabel":{type:"string",allowEmpty:!0,global:!0},"aria-brailleroledescription":{type:"string",allowEmpty:!0,global:!0},"aria-busy":{type:"boolean",global:!0},"aria-checked":{type:"nmtoken",values:["false","mixed","true","undefined"]},"aria-colcount":{type:"int",minValue:-1},"aria-colindex":{type:"int",minValue:1},"aria-colspan":{type:"int",minValue:1},"aria-controls":{type:"idrefs",allowEmpty:!0,global:!0},"aria-current":{type:"nmtoken",allowEmpty:!0,values:["page","step","location","date","time","true","false"],global:!0},"aria-describedby":{type:"idrefs",allowEmpty:!0,global:!0},"aria-description":{type:"string",allowEmpty:!0,global:!0},"aria-details":{type:"idref",allowEmpty:!0,global:!0},"aria-disabled":{type:"boolean",global:!0},"aria-dropeffect":{type:"nmtokens",values:["copy","execute","link","move","none","popup"],global:!0},"aria-errormessage":{type:"idref",allowEmpty:!0,global:!0},"aria-expanded":{type:"nmtoken",values:["true","false","undefined"]},"aria-flowto":{type:"idrefs",allowEmpty:!0,global:!0},"aria-grabbed":{type:"nmtoken",values:["true","false","undefined"],global:!0},"aria-haspopup":{type:"nmtoken",allowEmpty:!0,values:["true","false","menu","listbox","tree","grid","dialog"],global:!0},"aria-hidden":{type:"nmtoken",values:["true","false","undefined"],global:!0},"aria-invalid":{type:"nmtoken",values:["grammar","false","spelling","true"],global:!0},"aria-keyshortcuts":{type:"string",allowEmpty:!0,global:!0},"aria-label":{type:"string",allowEmpty:!0,global:!0},"aria-labelledby":{type:"idrefs",allowEmpty:!0,global:!0},"aria-level":{type:"int",minValue:1},"aria-live":{type:"nmtoken",values:["assertive","off","polite"],global:!0},"aria-modal":{type:"boolean"},"aria-multiline":{type:"boolean"},"aria-multiselectable":{type:"boolean"},"aria-orientation":{type:"nmtoken",values:["horizontal","undefined","vertical"]},"aria-owns":{type:"idrefs",allowEmpty:!0,global:!0},"aria-placeholder":{type:"string",allowEmpty:!0},"aria-posinset":{type:"int",minValue:1},"aria-pressed":{type:"nmtoken",values:["false","mixed","true","undefined"]},"aria-readonly":{type:"boolean"},"aria-relevant":{type:"nmtokens",values:["additions","all","removals","text"],global:!0},"aria-required":{type:"boolean"},"aria-roledescription":{type:"string",allowEmpty:!0,global:!0},"aria-rowcount":{type:"int",minValue:-1},"aria-rowindex":{type:"int",minValue:1},"aria-rowspan":{type:"int",minValue:0},"aria-selected":{type:"nmtoken",values:["false","true","undefined"]},"aria-setsize":{type:"int",minValue:-1},"aria-sort":{type:"nmtoken",values:["ascending","descending","none","other"]},"aria-valuemax":{type:"decimal"},"aria-valuemin":{type:"decimal"},"aria-valuenow":{type:"decimal"},"aria-valuetext":{type:"string",allowEmpty:!0}},rd=$y,zy={alert:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},alertdialog:{type:"window",allowedAttrs:["aria-expanded","aria-modal"],superclassRole:["alert","dialog"],accessibleNameRequired:!0},application:{type:"landmark",allowedAttrs:["aria-activedescendant","aria-expanded"],superclassRole:["structure"],accessibleNameRequired:!0},article:{type:"structure",allowedAttrs:["aria-posinset","aria-setsize","aria-expanded"],superclassRole:["document"]},banner:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},blockquote:{type:"structure",superclassRole:["section"]},button:{type:"widget",allowedAttrs:["aria-expanded","aria-pressed"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},caption:{type:"structure",requiredContext:["figure","table","grid","treegrid"],superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},cell:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-colindex","aria-colspan","aria-rowindex","aria-rowspan","aria-expanded"],superclassRole:["section"],nameFromContent:!0},checkbox:{type:"widget",requiredAttrs:["aria-checked"],allowedAttrs:["aria-readonly","aria-expanded","aria-required"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},code:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},columnheader:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-sort","aria-colindex","aria-colspan","aria-expanded","aria-readonly","aria-required","aria-rowindex","aria-rowspan","aria-selected"],superclassRole:["cell","gridcell","sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},combobox:{type:"widget",requiredAttrs:["aria-expanded","aria-controls"],allowedAttrs:["aria-owns","aria-autocomplete","aria-readonly","aria-required","aria-activedescendant","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!0},command:{type:"abstract",superclassRole:["widget"]},complementary:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},composite:{type:"abstract",superclassRole:["widget"]},contentinfo:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},comment:{type:"structure",allowedAttrs:["aria-level","aria-posinset","aria-setsize"],superclassRole:["article"]},definition:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},deletion:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},dialog:{type:"window",allowedAttrs:["aria-expanded","aria-modal"],superclassRole:["window"],accessibleNameRequired:!0},directory:{type:"structure",deprecated:!0,allowedAttrs:["aria-expanded"],superclassRole:["list"],nameFromContent:!0},document:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["structure"]},emphasis:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},feed:{type:"structure",requiredOwned:["article"],allowedAttrs:["aria-expanded"],superclassRole:["list"]},figure:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},form:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},grid:{type:"composite",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-level","aria-multiselectable","aria-readonly","aria-activedescendant","aria-colcount","aria-expanded","aria-rowcount"],superclassRole:["composite","table"],accessibleNameRequired:!1},gridcell:{type:"widget",requiredContext:["row"],allowedAttrs:["aria-readonly","aria-required","aria-selected","aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan"],superclassRole:["cell","widget"],nameFromContent:!0},group:{type:"structure",allowedAttrs:["aria-activedescendant","aria-expanded"],superclassRole:["section"]},heading:{type:"structure",requiredAttrs:["aria-level"],allowedAttrs:["aria-expanded"],superclassRole:["sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},img:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],accessibleNameRequired:!0,childrenPresentational:!0},input:{type:"abstract",superclassRole:["widget"]},insertion:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},landmark:{type:"abstract",superclassRole:["section"]},link:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0},list:{type:"structure",requiredOwned:["listitem"],allowedAttrs:["aria-expanded"],superclassRole:["section"]},listbox:{type:"widget",requiredOwned:["group","option"],allowedAttrs:["aria-multiselectable","aria-readonly","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!0},listitem:{type:"structure",requiredContext:["list"],allowedAttrs:["aria-level","aria-posinset","aria-setsize","aria-expanded"],superclassRole:["section"],nameFromContent:!0},log:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},main:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},marquee:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},math:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],childrenPresentational:!0},menu:{type:"composite",requiredOwned:["group","menuitemradio","menuitem","menuitemcheckbox","menu","separator"],allowedAttrs:["aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"]},menubar:{type:"composite",requiredOwned:["group","menuitemradio","menuitem","menuitemcheckbox","menu","separator"],allowedAttrs:["aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["menu"]},menuitem:{type:"widget",requiredContext:["menu","menubar","group"],allowedAttrs:["aria-posinset","aria-setsize","aria-expanded"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0},menuitemcheckbox:{type:"widget",requiredContext:["menu","menubar","group"],requiredAttrs:["aria-checked"],allowedAttrs:["aria-expanded","aria-posinset","aria-readonly","aria-setsize"],superclassRole:["checkbox","menuitem"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},menuitemradio:{type:"widget",requiredContext:["menu","menubar","group"],requiredAttrs:["aria-checked"],allowedAttrs:["aria-expanded","aria-posinset","aria-readonly","aria-setsize"],superclassRole:["menuitemcheckbox","radio"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},meter:{type:"structure",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-valuemax","aria-valuemin","aria-valuetext"],superclassRole:["range"],accessibleNameRequired:!0,childrenPresentational:!0},mark:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},navigation:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},none:{type:"structure",superclassRole:["structure"],prohibitedAttrs:["aria-label","aria-labelledby"]},note:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},option:{type:"widget",requiredContext:["group","listbox"],allowedAttrs:["aria-selected","aria-checked","aria-posinset","aria-setsize"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},paragraph:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},presentation:{type:"structure",superclassRole:["structure"],prohibitedAttrs:["aria-label","aria-labelledby"]},progressbar:{type:"widget",allowedAttrs:["aria-expanded","aria-valuemax","aria-valuemin","aria-valuenow","aria-valuetext"],superclassRole:["range"],accessibleNameRequired:!0,childrenPresentational:!0},radio:{type:"widget",requiredAttrs:["aria-checked"],allowedAttrs:["aria-posinset","aria-setsize","aria-required"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},radiogroup:{type:"composite",allowedAttrs:["aria-readonly","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!1},range:{type:"abstract",superclassRole:["widget"]},region:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"],accessibleNameRequired:!1},roletype:{type:"abstract",superclassRole:[]},row:{type:"structure",requiredContext:["grid","rowgroup","table","treegrid"],requiredOwned:["cell","columnheader","gridcell","rowheader"],allowedAttrs:["aria-colindex","aria-level","aria-rowindex","aria-selected","aria-activedescendant","aria-expanded","aria-posinset","aria-setsize"],superclassRole:["group","widget"],nameFromContent:!0},rowgroup:{type:"structure",requiredContext:["grid","table","treegrid"],requiredOwned:["row"],superclassRole:["structure"],nameFromContent:!0},rowheader:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-sort","aria-colindex","aria-colspan","aria-expanded","aria-readonly","aria-required","aria-rowindex","aria-rowspan","aria-selected"],superclassRole:["cell","gridcell","sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},scrollbar:{type:"widget",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-controls","aria-orientation","aria-valuemax","aria-valuemin","aria-valuetext"],superclassRole:["range"],childrenPresentational:!0},search:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},searchbox:{type:"widget",allowedAttrs:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-placeholder","aria-readonly","aria-required"],superclassRole:["textbox"],accessibleNameRequired:!0},section:{type:"abstract",superclassRole:["structure"],nameFromContent:!0},sectionhead:{type:"abstract",superclassRole:["structure"],nameFromContent:!0},select:{type:"abstract",superclassRole:["composite","group"]},separator:{type:"structure",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-valuemax","aria-valuemin","aria-orientation","aria-valuetext"],superclassRole:["structure","widget"],childrenPresentational:!0},slider:{type:"widget",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-valuemax","aria-valuemin","aria-orientation","aria-readonly","aria-required","aria-valuetext"],superclassRole:["input","range"],accessibleNameRequired:!0,childrenPresentational:!0},spinbutton:{type:"widget",allowedAttrs:["aria-valuemax","aria-valuemin","aria-readonly","aria-required","aria-activedescendant","aria-valuetext","aria-valuenow"],superclassRole:["composite","input","range"],accessibleNameRequired:!0},status:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},strong:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},structure:{type:"abstract",superclassRole:["roletype"]},subscript:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},superscript:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},switch:{type:"widget",requiredAttrs:["aria-checked"],allowedAttrs:["aria-expanded","aria-readonly","aria-required"],superclassRole:["checkbox"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},suggestion:{type:"structure",requiredOwned:["insertion","deletion"],superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},tab:{type:"widget",requiredContext:["tablist"],allowedAttrs:["aria-posinset","aria-selected","aria-setsize","aria-expanded"],superclassRole:["sectionhead","widget"],nameFromContent:!0,childrenPresentational:!0},table:{type:"structure",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-colcount","aria-rowcount","aria-expanded"],superclassRole:["section"],accessibleNameRequired:!1,nameFromContent:!0},tablist:{type:"composite",requiredOwned:["tab"],allowedAttrs:["aria-level","aria-multiselectable","aria-orientation","aria-activedescendant","aria-expanded"],superclassRole:["composite"]},tabpanel:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],accessibleNameRequired:!1},term:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},text:{type:"structure",superclassRole:["section"],nameFromContent:!0},textbox:{type:"widget",allowedAttrs:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-placeholder","aria-readonly","aria-required"],superclassRole:["input"],accessibleNameRequired:!0},time:{type:"structure",superclassRole:["section"]},timer:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["status"]},toolbar:{type:"structure",allowedAttrs:["aria-orientation","aria-activedescendant","aria-expanded"],superclassRole:["group"],accessibleNameRequired:!0},tooltip:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},tree:{type:"composite",requiredOwned:["group","treeitem"],allowedAttrs:["aria-multiselectable","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!1},treegrid:{type:"composite",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-activedescendant","aria-colcount","aria-expanded","aria-level","aria-multiselectable","aria-orientation","aria-readonly","aria-required","aria-rowcount"],superclassRole:["grid","tree"],accessibleNameRequired:!1},treeitem:{type:"widget",requiredContext:["group","tree"],allowedAttrs:["aria-checked","aria-expanded","aria-level","aria-posinset","aria-selected","aria-setsize"],superclassRole:["listitem","option"],accessibleNameRequired:!0,nameFromContent:!0},widget:{type:"abstract",superclassRole:["roletype"]},window:{type:"abstract",superclassRole:["roletype"]}},ad=zy,Vy={"doc-abstract":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-acknowledgments":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-afterword":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-appendix":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-backlink":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-biblioentry":{type:"listitem",allowedAttrs:["aria-expanded","aria-level","aria-posinset","aria-setsize"],superclassRole:["listitem"],deprecated:!0},"doc-bibliography":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-biblioref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-chapter":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-colophon":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-conclusion":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-cover":{type:"img",allowedAttrs:["aria-expanded"],superclassRole:["img"]},"doc-credit":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-credits":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-dedication":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-endnote":{type:"listitem",allowedAttrs:["aria-expanded","aria-level","aria-posinset","aria-setsize"],superclassRole:["listitem"],deprecated:!0},"doc-endnotes":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-epigraph":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-epilogue":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-errata":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-example":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-footnote":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-foreword":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-glossary":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-glossref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-index":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]},"doc-introduction":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-noteref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-notice":{type:"note",allowedAttrs:["aria-expanded"],superclassRole:["note"]},"doc-pagebreak":{type:"separator",allowedAttrs:["aria-expanded","aria-orientation"],superclassRole:["separator"],childrenPresentational:!0},"doc-pagelist":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]},"doc-part":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-preface":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-prologue":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-pullquote":{type:"none",superclassRole:["none"]},"doc-qna":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-subtitle":{type:"sectionhead",allowedAttrs:["aria-expanded"],superclassRole:["sectionhead"]},"doc-tip":{type:"note",allowedAttrs:["aria-expanded"],superclassRole:["note"]},"doc-toc":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]}},Hy=Vy,Gy={"graphics-document":{type:"structure",superclassRole:["document"],accessibleNameRequired:!0},"graphics-object":{type:"structure",superclassRole:["group"],nameFromContent:!0},"graphics-symbol":{type:"structure",superclassRole:["img"],accessibleNameRequired:!0,childrenPresentational:!0}},Uy=Gy,Wy={a:{variant:{href:{matches:"[href]",contentTypes:["interactive","phrasing","flow"],allowedRoles:["button","checkbox","menuitem","menuitemcheckbox","menuitemradio","option","radio","switch","tab","treeitem","doc-backlink","doc-biblioref","doc-glossref","doc-noteref"],namingMethods:["subtreeText"]},default:{contentTypes:["phrasing","flow"],allowedRoles:!0}}},abbr:{contentTypes:["phrasing","flow"],allowedRoles:!0},address:{contentTypes:["flow"],allowedRoles:!0},area:{variant:{href:{matches:"[href]",allowedRoles:!1},default:{allowedRoles:["button","link"]}},contentTypes:["phrasing","flow"],namingMethods:["altText"]},article:{contentTypes:["sectioning","flow"],allowedRoles:["feed","presentation","none","document","application","main","region"],shadowRoot:!0},aside:{contentTypes:["sectioning","flow"],allowedRoles:["feed","note","presentation","none","region","search","doc-dedication","doc-example","doc-footnote","doc-glossary","doc-pullquote","doc-tip"]},audio:{variant:{controls:{matches:"[controls]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application"],chromiumRole:"Audio"},b:{contentTypes:["phrasing","flow"],allowedRoles:!0},base:{allowedRoles:!1,noAriaAttrs:!0},bdi:{contentTypes:["phrasing","flow"],allowedRoles:!0},bdo:{contentTypes:["phrasing","flow"],allowedRoles:!0},blockquote:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},body:{allowedRoles:!1,shadowRoot:!0},br:{contentTypes:["phrasing","flow"],allowedRoles:["presentation","none"],namingMethods:["titleText","singleSpace"]},button:{contentTypes:["interactive","phrasing","flow"],allowedRoles:["checkbox","combobox","gridcell","link","menuitem","menuitemcheckbox","menuitemradio","option","radio","separator","slider","switch","tab","treeitem"],namingMethods:["subtreeText"]},canvas:{allowedRoles:!0,contentTypes:["embedded","phrasing","flow"],chromiumRole:"Canvas"},caption:{allowedRoles:!1},cite:{contentTypes:["phrasing","flow"],allowedRoles:!0},code:{contentTypes:["phrasing","flow"],allowedRoles:!0},col:{allowedRoles:!1,noAriaAttrs:!0},colgroup:{allowedRoles:!1,noAriaAttrs:!0},data:{contentTypes:["phrasing","flow"],allowedRoles:!0},datalist:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0,implicitAttrs:{"aria-multiselectable":"false"}},dd:{allowedRoles:!1},del:{contentTypes:["phrasing","flow"],allowedRoles:!0},dfn:{contentTypes:["phrasing","flow"],allowedRoles:!0},details:{contentTypes:["interactive","flow"],allowedRoles:!1},dialog:{contentTypes:["flow"],allowedRoles:["alertdialog"]},div:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},dl:{contentTypes:["flow"],allowedRoles:["group","list","presentation","none"],chromiumRole:"DescriptionList"},dt:{allowedRoles:["listitem"]},em:{contentTypes:["phrasing","flow"],allowedRoles:!0},embed:{contentTypes:["interactive","embedded","phrasing","flow"],allowedRoles:["application","document","img","presentation","none"],chromiumRole:"EmbeddedObject"},fieldset:{contentTypes:["flow"],allowedRoles:["none","presentation","radiogroup"],namingMethods:["fieldsetLegendText"]},figcaption:{allowedRoles:["group","none","presentation"]},figure:{contentTypes:["flow"],allowedRoles:!0,namingMethods:["figureText","titleText"]},footer:{contentTypes:["flow"],allowedRoles:["group","none","presentation","doc-footnote"],shadowRoot:!0},form:{contentTypes:["flow"],allowedRoles:["form","search","none","presentation"]},h1:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"1"}},h2:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"2"}},h3:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"3"}},h4:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"4"}},h5:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"5"}},h6:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"6"}},head:{allowedRoles:!1,noAriaAttrs:!0},header:{contentTypes:["flow"],allowedRoles:["group","none","presentation","doc-footnote"],shadowRoot:!0},hgroup:{contentTypes:["heading","flow"],allowedRoles:!0},hr:{contentTypes:["flow"],allowedRoles:["none","presentation","doc-pagebreak"],namingMethods:["titleText","singleSpace"]},html:{allowedRoles:!1,noAriaAttrs:!0},i:{contentTypes:["phrasing","flow"],allowedRoles:!0},iframe:{contentTypes:["interactive","embedded","phrasing","flow"],allowedRoles:["application","document","img","none","presentation"],chromiumRole:"Iframe"},img:{variant:{nonEmptyAlt:{matches:[{attributes:{alt:"/.+/"}},{hasAccessibleName:!0}],allowedRoles:["button","checkbox","link","math","menuitem","menuitemcheckbox","menuitemradio","meter","option","progressbar","radio","scrollbar","separator","slider","switch","tab","treeitem","doc-cover"]},usemap:{matches:"[usemap]",contentTypes:["interactive","embedded","flow"]},default:{allowedRoles:["presentation","none"],contentTypes:["embedded","flow"]}},namingMethods:["altText"]},input:{variant:{button:{matches:{properties:{type:"button"}},allowedRoles:["checkbox","combobox","link","menuitem","menuitemcheckbox","menuitemradio","option","radio","switch","tab"]},buttonType:{matches:{properties:{type:["button","submit","reset"]}},namingMethods:["valueText","titleText","buttonDefaultText"]},checkboxPressed:{matches:{properties:{type:"checkbox"},attributes:{"aria-pressed":"/.*/"}},allowedRoles:["button","menuitemcheckbox","option","switch"],implicitAttrs:{"aria-checked":"false"}},checkbox:{matches:{properties:{type:"checkbox"},attributes:{"aria-pressed":null}},allowedRoles:["menuitemcheckbox","option","switch"],implicitAttrs:{"aria-checked":"false"}},noRoles:{matches:{properties:{type:["color","date","datetime-local","file","month","number","password","range","reset","submit","time","week"]}},allowedRoles:!1},hidden:{matches:{properties:{type:"hidden"}},contentTypes:["flow"],allowedRoles:!1,noAriaAttrs:!0},image:{matches:{properties:{type:"image"}},allowedRoles:["link","menuitem","menuitemcheckbox","menuitemradio","radio","switch"],namingMethods:["altText","valueText","labelText","titleText","buttonDefaultText"]},radio:{matches:{properties:{type:"radio"}},allowedRoles:["menuitemradio"],implicitAttrs:{"aria-checked":"false"}},textWithList:{matches:{properties:{type:"text"},attributes:{list:"/.*/"}},allowedRoles:!1},default:{contentTypes:["interactive","flow"],allowedRoles:["combobox","searchbox","spinbutton"],implicitAttrs:{"aria-valuenow":""},namingMethods:["labelText","placeholderText"]}}},ins:{contentTypes:["phrasing","flow"],allowedRoles:!0},kbd:{contentTypes:["phrasing","flow"],allowedRoles:!0},label:{contentTypes:["interactive","phrasing","flow"],allowedRoles:!1,chromiumRole:"Label"},legend:{allowedRoles:!1},li:{allowedRoles:["menuitem","menuitemcheckbox","menuitemradio","option","none","presentation","radio","separator","tab","treeitem","doc-biblioentry","doc-endnote"],implicitAttrs:{"aria-setsize":"1","aria-posinset":"1"}},link:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},main:{contentTypes:["flow"],allowedRoles:!1,shadowRoot:!0},map:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},math:{contentTypes:["embedded","phrasing","flow"],allowedRoles:!1},mark:{contentTypes:["phrasing","flow"],allowedRoles:!0},menu:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},meta:{variant:{itemprop:{matches:"[itemprop]",contentTypes:["phrasing","flow"]}},allowedRoles:!1,noAriaAttrs:!0},meter:{contentTypes:["phrasing","flow"],allowedRoles:!1,chromiumRole:"progressbar"},nav:{contentTypes:["sectioning","flow"],allowedRoles:["doc-index","doc-pagelist","doc-toc","menu","menubar","none","presentation","tablist"],shadowRoot:!0},noscript:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},object:{variant:{usemap:{matches:"[usemap]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application","document","img"],chromiumRole:"PluginObject"},ol:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},optgroup:{allowedRoles:!1},option:{allowedRoles:!1,implicitAttrs:{"aria-selected":"false"}},output:{contentTypes:["phrasing","flow"],allowedRoles:!0,namingMethods:["subtreeText"]},p:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},param:{allowedRoles:!1,noAriaAttrs:!0},picture:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},pre:{contentTypes:["flow"],allowedRoles:!0},progress:{contentTypes:["phrasing","flow"],allowedRoles:!1,implicitAttrs:{"aria-valuemax":"100","aria-valuemin":"0","aria-valuenow":"0"}},q:{contentTypes:["phrasing","flow"],allowedRoles:!0},rp:{allowedRoles:!0},rt:{allowedRoles:!0},ruby:{contentTypes:["phrasing","flow"],allowedRoles:!0},s:{contentTypes:["phrasing","flow"],allowedRoles:!0},samp:{contentTypes:["phrasing","flow"],allowedRoles:!0},script:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},search:{contentTypes:["flow"],allowedRoles:["form","group","none","presentation","region","search"]},section:{contentTypes:["sectioning","flow"],allowedRoles:["alert","alertdialog","application","banner","complementary","contentinfo","dialog","document","feed","group","log","main","marquee","navigation","none","note","presentation","search","status","tabpanel","doc-abstract","doc-acknowledgments","doc-afterword","doc-appendix","doc-bibliography","doc-chapter","doc-colophon","doc-conclusion","doc-credit","doc-credits","doc-dedication","doc-endnotes","doc-epigraph","doc-epilogue","doc-errata","doc-example","doc-foreword","doc-glossary","doc-index","doc-introduction","doc-notice","doc-pagelist","doc-part","doc-preface","doc-prologue","doc-pullquote","doc-qna","doc-toc"],shadowRoot:!0},select:{variant:{combobox:{matches:{attributes:{multiple:null,size:[null,"1"]}},allowedRoles:["menu"]},default:{allowedRoles:!1}},contentTypes:["interactive","phrasing","flow"],implicitAttrs:{"aria-valuenow":""},namingMethods:["labelText"]},slot:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},small:{contentTypes:["phrasing","flow"],allowedRoles:!0},source:{allowedRoles:!1,noAriaAttrs:!0},span:{contentTypes:["phrasing","flow"],allowedRoles:!0,shadowRoot:!0},strong:{contentTypes:["phrasing","flow"],allowedRoles:!0},style:{allowedRoles:!1,noAriaAttrs:!0},svg:{contentTypes:["embedded","phrasing","flow"],allowedRoles:!0,chromiumRole:"SVGRoot",namingMethods:["svgTitleText"]},sub:{contentTypes:["phrasing","flow"],allowedRoles:!0},summary:{allowedRoles:!1,namingMethods:["subtreeText"]},sup:{contentTypes:["phrasing","flow"],allowedRoles:!0},table:{contentTypes:["flow"],allowedRoles:!0,namingMethods:["tableCaptionText","tableSummaryText"]},tbody:{allowedRoles:!0},template:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},textarea:{contentTypes:["interactive","phrasing","flow"],allowedRoles:!1,implicitAttrs:{"aria-valuenow":"","aria-multiline":"true"},namingMethods:["labelText","placeholderText"]},tfoot:{allowedRoles:!0},thead:{allowedRoles:!0},time:{contentTypes:["phrasing","flow"],allowedRoles:!0},title:{allowedRoles:!1,noAriaAttrs:!0},td:{allowedRoles:!0},th:{allowedRoles:!0},tr:{allowedRoles:!0},track:{allowedRoles:!1,noAriaAttrs:!0},u:{contentTypes:["phrasing","flow"],allowedRoles:!0},ul:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},var:{contentTypes:["phrasing","flow"],allowedRoles:!0},video:{variant:{controls:{matches:"[controls]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application"],chromiumRole:"video"},wbr:{contentTypes:["phrasing","flow"],allowedRoles:["presentation","none"]}},Yy=Wy,Ky={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},Xy=Ky,nd={ariaAttrs:rd,ariaRoles:de({},ad,Hy,Uy),htmlElms:Yy,cssColors:Xy},Br=de({},nd);function Zy(e){Object.keys(Br).forEach(function(t){e[t]&&(Br[t]=gu(Br[t],e[t]))})}function Jy(){Object.keys(Br).forEach(function(e){Br[e]=nd[e]})}var ve=Br;function Qy(e){var t=ve.ariaRoles[e];return t?!!t.unsupported:!1}var Io=Qy;function e0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.allowAbstract,a=t.flagUnsupported,n=a===void 0?!1:a,i=ve.ariaRoles[e],o=Io(e);return!i||n&&o?!1:r?!0:i.type!=="abstract"}var Fa=e0;function t0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.fallback,a=t.abstracts,n=t.dpub;if(e=e instanceof He?e:ce(e),e.props.nodeType!==1)return null;var i=(e.attr("role")||"").trim().toLowerCase(),o=r?Ze(i):[i],u=o.find(function(s){return!n&&s.substr(0,4)==="doc-"?!1:Fa(s,{allowAbstract:a})});return u||null}var pe=t0;function r0(e){return Object.keys(ve.htmlElms).filter(function(t){var r=ve.htmlElms[t];return r.contentTypes?r.contentTypes.includes(e):r.variant&&r.variant.default&&r.variant.default.contentTypes?r.variant.default.contentTypes.includes(e):!1})}var No=r0;function a0(){return ue.get("globalAriaAttrs",function(){return Object.keys(ve.ariaAttrs).filter(function(e){return ve.ariaAttrs[e].global})})}var Dr=a0;function n0(e){for(var t=[],r=e.rows,a=0,n=r.length;a<n;a++){var i=r[a].cells;t[a]=t[a]||[];for(var o=0,u=0,s=i.length;u<s;u++)for(var l=0;l<i[u].colSpan;l++){for(var c=i[u].getAttribute("rowspan"),d=parseInt(c)===0||i[u].rowspan===0?r.length:i[u].rowSpan,f=0;f<d;f++){for(t[a+f]=t[a+f]||[];t[a+f][o];)o++;t[a+f][o]=i[u]}o++}}return t}var Ut=Re(n0);function i0(e,t){var r,a;for(t||(t=Ut(Nr(e,"table"))),r=0;r<t.length;r++)if(t[r]&&(a=t[r].indexOf(e),a!==-1))return{x:a,y:r}}var $n=Re(i0);function Bo(e){var t=ye(e),r=t.vNode,a=t.domNode,n=r.attr("scope"),i=pe(r);if(!["td","th"].includes(r.props.nodeName))throw new TypeError("Expected TD or TH element");if(i==="columnheader")return"col";if(i==="rowheader")return"row";if(n==="col"||n==="row")return n;if(r.props.nodeName!=="th")return!1;if(!r.actualNode)return"auto";var o=Ut(Nr(a,"table")),u=$n(a,o),s=o[u.y].every(function(c){return c.nodeName.toUpperCase()==="TH"});if(s)return"col";var l=o.map(function(c){return c[u.x]}).every(function(c){return c&&c.nodeName.toUpperCase()==="TH"});return l?"row":"auto"}function o0(e){return["col","auto"].indexOf(Bo(e))!==-1}var Lr=o0;function u0(e){return["row","auto"].includes(Bo(e))}var qr=u0;function s0(e){return e?e.replace(/\r\n/g,`
9
+ `).replace(/\u00A0/g," ").replace(/[\s]{2,}/g," ").trim():""}var ae=s0,id=function(){return ue.get("sectioningContentSelector",function(){return No("sectioning").map(function(t){return"".concat(t,":not([role])")}).join(", ")+" , [role=article], [role=complementary], [role=navigation], [role=region]"})},od=function(){return ue.get("sectioningContentPlusMainSelector",function(){return id()+" , main:not([role]), [role=main]"})};function Lo(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.checkTitle,a=r===void 0?!1:r;return!!(ae(Ea(e))||ae(Aa(e))||a&&e?.props.nodeType===1&&ae(e.attr("title")))}var l0={a:function(t){return t.hasAttr("href")?"link":null},area:function(t){return t.hasAttr("href")?"link":null},article:"article",aside:function(t){return ct(t.parent,id())&&!Lo(t,{checkTitle:!0})?null:"complementary"},body:"document",button:"button",datalist:"listbox",dd:"definition",dfn:"term",details:"group",dialog:"dialog",dt:"term",fieldset:"group",figure:"figure",footer:function(t){var r=ct(t,od());return r?null:"contentinfo"},form:function(t){return Lo(t)?"form":null},h1:"heading",h2:"heading",h3:"heading",h4:"heading",h5:"heading",h6:"heading",header:function(t){var r=ct(t,od());return r?null:"banner"},hr:"separator",img:function(t){var r=t.hasAttr("alt")&&!t.attr("alt"),a=Dr().find(function(n){return t.hasAttr(n)});return r&&!a&&!Be(t)?"presentation":"img"},input:function(t){var r;if(t.hasAttr("list")){var a=Pt(t.actualNode,"list").filter(function(n){return!!n})[0];r=a&&a.nodeName.toLowerCase()==="datalist"}switch(t.props.type){case"checkbox":return"checkbox";case"number":return"spinbutton";case"radio":return"radio";case"range":return"slider";case"search":return r?"combobox":"searchbox";case"button":case"image":case"reset":case"submit":return"button";case"text":case"tel":case"url":case"email":case"":return r?"combobox":"textbox";default:return"textbox"}},li:"listitem",main:"main",math:"math",menu:"list",meter:"meter",nav:"navigation",ol:"list",optgroup:"group",option:"option",output:"status",progress:"progressbar",search:"search",section:function(t){return Lo(t)?"region":null},select:function(t){return t.hasAttr("multiple")||parseInt(t.attr("size"))>1?"listbox":"combobox"},summary:"button",table:"table",tbody:"rowgroup",td:function(t){var r=ct(t,"table"),a=pe(r);return["grid","treegrid"].includes(a)?"gridcell":"cell"},textarea:"textbox",tfoot:"rowgroup",th:function(t){if(Lr(t))return"columnheader";if(qr(t))return"rowheader"},thead:"rowgroup",tr:"row",ul:"list"},qo=l0;function c0(e,t){var r=P(t);if(Array.isArray(t)&&typeof e<"u")return t.includes(e);if(r==="function")return!!t(e);if(e!=null){if(t instanceof RegExp)return t.test(e);if(/^\/.*\/$/.test(t)){var a=t.substring(1,t.length-1);return new RegExp(a).test(e)}}return t===e}var wr=c0;function d0(e,t){return wr(!!Ue(e),t)}var ud=d0;function f0(e,t){var r=P(t);if(r!=="object"||Array.isArray(t)||t instanceof RegExp)throw new Error("Expect matcher to be an object");return Object.keys(t).every(function(a){return wr(e(a),t[a])})}var jo=f0;function p0(e,t){return e=ye(e).vNode,jo(function(r){return e.attr(r)},t)}var sd=p0;function ld(e,t){return!!t(e)}function m0(e,t){return wr(pe(e),t)}var cd=m0;function h0(e,t){return wr(It(e),t)}var dd=h0;function v0(e,t){return e=ye(e).vNode,wr(e.props.nodeName,t)}var fd=v0;function g0(e,t){return e=ye(e).vNode,jo(function(r){return e.props[r]},t)}var pd=g0;function b0(e,t){return wr(le(e),t)}var md=b0,hd={hasAccessibleName:ud,attributes:sd,condition:ld,explicitRole:cd,implicitRole:dd,nodeName:fd,properties:pd,semanticRole:md};function vd(e,t){return e=ye(e).vNode,Array.isArray(t)?t.some(function(r){return vd(e,r)}):typeof t=="string"?iu(e,t):Object.keys(t).every(function(r){if(!hd[r])throw new Error('Unknown matcher type "'.concat(r,'"'));var a=hd[r],n=t[r];return a(e,n)})}var gd=vd;function y0(e,t){return gd(e,t)}var lt=y0;lt.hasAccessibleName=ud,lt.attributes=sd,lt.condition=ld,lt.explicitRole=cd,lt.fromDefinition=gd,lt.fromFunction=jo,lt.fromPrimative=wr,lt.implicitRole=dd,lt.nodeName=fd,lt.properties=pd,lt.semanticRole=md;var Ca=lt;function D0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.noMatchAccessibleName,a=r===void 0?!1:r,n=ve.htmlElms[e.props.nodeName];if(!n)return{};if(!n.variant)return n;var i=n.variant,o=qe(n,jp);for(var u in i)if(!(!i.hasOwnProperty(u)||u==="default")){for(var s=i[u],l=s.matches,c=qe(s,$p),d=Array.isArray(l)?l:[l],f=0;f<d.length&&a;f++)if(d[f].hasOwnProperty("hasAccessibleName"))return n;if(Ca(e,l))for(var p in c)c.hasOwnProperty(p)&&(o[p]=c[p])}for(var m in i.default)i.default.hasOwnProperty(m)&&typeof o[m]>"u"&&(o[m]=i.default[m]);return o}var _r=D0;function w0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.chromium,a=e instanceof He?e:ce(e);if(e=a.actualNode,!a)throw new ReferenceError("Cannot get implicit role of a node outside the current scope.");var n=a.props.nodeName,i=qo[n];if(!i&&r){var o=_r(a),u=o.chromiumRole;return u||null}return typeof i=="function"?i(a):i||null}var It=w0,_0={td:["tr"],th:["tr"],tr:["thead","tbody","tfoot","table"],thead:["table"],tbody:["table"],tfoot:["table"],li:["ol","ul"],dt:["dl","div"],dd:["dl","div"],div:["dl"]};function bd(e,t){var r=_0[e.props.nodeName];if(!r)return null;if(!e.parent){if(!e.actualNode)return null;throw new ReferenceError("Cannot determine role presentational inheritance of a required parent outside the current scope.")}if(!r.includes(e.parent.props.nodeName))return null;var a=pe(e.parent,t);return["none","presentation"].includes(a)&&!Dd(e.parent)?a:a?null:bd(e.parent,t)}function yd(e,t){var r=t.chromium,a=qe(t,zp),n=It(e,{chromium:r});if(!n)return null;var i=bd(e,a);return i||n}function Dd(e){var t=Dr().some(function(r){return e.hasAttr(r)});return t||Be(e)}function x0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.noImplicit,a=qe(t,Vp),n=ye(e),i=n.vNode;if(i.props.nodeType!==1)return null;var o=pe(i,a);return o?["presentation","none"].includes(o)&&Dd(i)?r?null:yd(i,a):o:r?null:yd(i,a)}function E0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.noPresentational,a=qe(t,Hp),n=x0(e,a);return r&&["presentation","none"].includes(n)?null:n}var le=E0,A0=["iframe"];function F0(e){var t=ye(e),r=t.vNode;return r.props.nodeType!==1||!e.hasAttr("title")||!lt(r,A0)&&["none","presentation"].includes(le(r))?"":r.attr("title")}var zn=F0;function C0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.strict;if(e=e instanceof He?e:ce(e),e.props.nodeType!==1)return!1;var a=le(e),n=ve.ariaRoles[a];return n&&n.nameFromContent?!0:r?!1:!n||["presentation","none"].includes(a)}var wd=C0;function R0(e){var t=e.actualNode,r=e.children;if(!r)throw new Error("getOwnedVirtual requires a virtual node");if(e.hasAttr("aria-owns")){var a=Pt(t,"aria-owns").filter(function(n){return!!n}).map(function(n){return x.utils.getNodeFromTree(n)});return[].concat(re(r),re(a))}return re(r)}var Ra=R0,_d={accessibleNameFromFieldValue:["progressbar"]};function Te(e){return e=ye(e).vNode,$o(e)}var $o=Re(function(t,r){return Fc(t)||qn(t,{skipAncestors:!0,isAncestor:r})?!1:t.actualNode&&t.props.nodeName==="area"?!wo(t,$o):or(t,{skipAncestors:!0,isAncestor:r})?!1:t.parent?$o(t.parent,!0):!0});function xd(e,t,r){var a=ye(e),n=a.vNode,i=t?Te:st,o=!e.actualNode||e.actualNode&&i(e),u=n.children.map(function(s){var l=s.props,c=l.nodeType,d=l.nodeValue;if(c===3){if(d&&o)return d}else if(!r)return xd(s,t)}).join("");return ae(u)}var Nt=xd,T0=["button","checkbox","color","file","hidden","image","password","radio","reset","submit"];function S0(e){e=e instanceof He?e:ce(e);var t=e.props.nodeName;return t==="textarea"||t==="input"&&!T0.includes((e.attr("type")||"").toLowerCase())}var Ed=S0;function k0(e){e=e instanceof He?e:ce(e);var t=e.props.nodeName;return t==="select"}var Ad=k0;function O0(e){var t=pe(e);return t==="textbox"}var Fd=O0;function M0(e){var t=pe(e);return t==="listbox"}var Cd=M0;function P0(e){var t=pe(e);return t==="combobox"}var Rd=P0,I0=["progressbar","scrollbar","slider","spinbutton"];function N0(e){var t=pe(e);return I0.includes(t)}var Td=N0,Sd=["textbox","progressbar","scrollbar","slider","spinbutton","combobox","listbox"],zo={nativeTextboxValue:L0,nativeSelectValue:q0,ariaTextboxValue:j0,ariaListboxValue:kd,ariaComboboxValue:$0,ariaRangeValue:z0};function B0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=e.actualNode,a=_d.accessibleNameFromFieldValue||[],n=le(e);if(t.startNode===e||!Sd.includes(n)||a.includes(n))return"";var i=Object.keys(zo).map(function(u){return zo[u]}),o=i.reduce(function(u,s){return u||s(e,t)},"");return t.debug&&br(o||"{empty-value}",r,t),o}function L0(e){var t=ye(e),r=t.vNode;return Ed(r)&&r.props.value||""}function q0(e){var t=ye(e),r=t.vNode;if(!Ad(r))return"";var a=ft(r,"option"),n=a.filter(function(i){return i.props.selected});return n.length||n.push(a[0]),n.map(function(i){return Nt(i)}).join(" ")||""}function j0(e){var t=ye(e),r=t.vNode,a=t.domNode;return Fd(r)?!a||a&&!or(a)?Nt(r,!0):a.textContent:""}function kd(e,t){var r=ye(e),a=r.vNode;if(!Cd(a))return"";var n=Ra(a).filter(function(i){return le(i)==="option"&&i.attr("aria-selected")==="true"});return n.length===0?"":Ue(n[0],t)}function $0(e,t){var r=ye(e),a=r.vNode;if(!Rd(a))return"";var n=Ra(a).filter(function(i){return le(i)==="listbox"})[0];return n?kd(n,t):""}function z0(e){var t=ye(e),r=t.vNode;if(!Td(r)||!r.hasAttr("aria-valuenow"))return"";var a=+r.attr("aria-valuenow");return isNaN(a)?"0":String(a)}var Od=B0;function V0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=Ue.alreadyProcessed;t.startNode=t.startNode||e;var a=t,n=a.strict,i=a.inControlContext,o=a.inLabelledByContext,u=le(e),s=_r(e,{noMatchAccessibleName:!0}),l=s.contentTypes;if(r(e,t)||e.props.nodeType!==1||l!=null&&l.includes("embedded")||Sd.includes(u)||!t.subtreeDescendant&&!t.inLabelledByContext&&!wd(e,{strict:n}))return"";if(!n){var c=!i&&!o;t=de({subtreeDescendant:c},t)}return Ra(e).reduce(function(d,f){return G0(d,f,t)},"")}var H0=No("phrasing").concat(["#text"]);function G0(e,t,r){var a=t.props.nodeName,n=Ue(t,r);return n?(H0.includes(a)||(n[0]!==" "&&(n+=" "),e&&e[e.length-1]!==" "&&(n=" "+n)),e+n):e}var ur=V0;function U0(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=Ue.alreadyProcessed;if(t.inControlContext||t.inLabelledByContext||r(e,t))return"";t.startNode||(t.startNode=e);var a=de({inControlContext:!0},t),n=W0(e),i=ct(e,"label"),o;return i?(o=[].concat(re(n),[i.actualNode]),o.sort(Ou)):o=n,o.map(function(u){return yr(u,a)}).filter(function(u){return u!==""}).join(" ")}function W0(e){if(!e.attr("id"))return[];if(!e.actualNode)throw new TypeError("Cannot resolve explicit label reference for non-DOM nodes");return Dc({elm:"label",attr:"for",value:e.attr("id"),context:e.actualNode})}var Vo=U0,Y0={submit:"Submit",image:"Submit",reset:"Reset",button:""},K0={valueText:function(t){return t.props.value||""},buttonDefaultText:function(t){return Y0[t.props.type]||""},tableCaptionText:Vn.bind(null,"caption"),figureText:Vn.bind(null,"figcaption"),svgTitleText:Vn.bind(null,"title"),fieldsetLegendText:Vn.bind(null,"legend"),altText:Ho.bind(null,"alt"),tableSummaryText:Ho.bind(null,"summary"),titleText:zn,subtreeText:ur,labelText:Vo,singleSpace:function(){return" "},placeholderText:Ho.bind(null,"placeholder")};function Ho(e,t){return t.attr(e)||""}function Vn(e,t,r){var a=t.actualNode;e=e.toLowerCase();var n=[e,a.nodeName.toLowerCase()].join(","),i=a.querySelector(n);return!i||i.nodeName.toLowerCase()!==e?"":yr(i,r)}var Md=K0;function Pd(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=e.actualNode;if(e.props.nodeType!==1||["presentation","none"].includes(le(e)))return"";var a=X0(e),n=a.reduce(function(i,o){return i||o(e,t)},"");return t.debug&&x.log(n||"{empty-value}",r,t),n}function X0(e){var t=_r(e,{noMatchAccessibleName:!0}),r=t.namingMethods||[];return r.map(function(a){return Md[a]})}function Id(){return/[\u1D00-\u1D7F\u1D80-\u1DBF\u1DC0-\u1DFF\u20A0-\u20CF\u20D0-\u20FF\u2100-\u214F\u2150-\u218F\u2190-\u21FF\u2200-\u22FF\u2300-\u23FF\u2400-\u243F\u2440-\u245F\u2460-\u24FF\u2500-\u257F\u2580-\u259F\u25A0-\u25FF\u2600-\u26FF\u2700-\u27BF\uE000-\uF8FF]/g}function Nd(){return/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&\xa3\xa2\xa5\xa7\u20ac()*+,\-.\/:;<=>?@\[\]^_`{|}~\xb1]/g}function Bd(){return/[\uDB80-\uDBBF][\uDC00-\uDFFF]/g}function Ld(){return/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD80D[\uDC30-\uDC38]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/g}function Z0(e,t){var r=t.emoji,a=t.nonBmp,n=t.punctuations,i=!1;return r&&(i||(i=Wi().test(e))),a&&(i||(i=Id().test(e)||Bd().test(e)||Ld().test(e))),n&&(i||(i=Nd().test(e))),i}var Go=Z0;function Uo(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:.15,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:3,a=e.actualNode.nodeValue.trim();if(!ae(a)||Go(a,{emoji:!0,nonBmp:!0}))return!1;var n=ue.get("canvasContext",function(){return M.createElement("canvas").getContext("2d",{willReadFrequently:!0})}),i=n.canvas,o=ue.get("fonts",function(){return{}}),u=E.getComputedStyle(e.parent.actualNode),s=u.getPropertyValue("font-family");o[s]||(o[s]={occurrences:0,numLigatures:0});var l=o[s];if(l.occurrences>=r){if(l.numLigatures/l.occurrences===1)return!0;if(l.numLigatures===0)return!1}l.occurrences++;var c=30,d="".concat(c,"px ").concat(s);n.font=d;var f=a.charAt(0),p=n.measureText(f).width;if(p===0)return l.numLigatures++,!0;if(p<30){var m=30/p;p*=m,c*=m,d="".concat(c,"px ").concat(s)}i.width=p,i.height=c,n.font=d,n.textAlign="left",n.textBaseline="top",n.fillText(f,0,0);var h=new Uint32Array(n.getImageData(0,0,p,c).data.buffer);if(!h.some(function(C){return C}))return l.numLigatures++,!0;n.clearRect(0,0,p,c),n.fillText(a,0,0);var v=new Uint32Array(n.getImageData(0,0,p,c).data.buffer),g=h.reduce(function(C,T,O){return T===0&&v[O]===0||T!==0&&v[O]!==0?C:++C},0),b=a.split("").reduce(function(C,T){return C+n.measureText(T).width},0),w=n.measureText(a).width,D=g/h.length,_=1-w/b;return D>=t&&_>=t?(l.numLigatures++,!0):!1}function Ue(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(t=t2(e,t),Q0(e,t)||e2(e,t))return"";var r=[Ea,Aa,Pd,Od,ur,J0,zn],a=r.reduce(function(n,i){return t.startNode===e&&(n=ae(n)),n!==""?n:i(e,t)},"");return t.debug&&x.log(a||"{empty-value}",e.actualNode,t),a}function J0(e){return e.props.nodeType!==3?"":e.props.nodeValue}function Q0(e,t){return!e||e.props.nodeType!==1||t.includeHidden?!1:!Te(e)}function e2(e,t){var r,a=t.ignoreIconLigature,n=t.pixelThreshold,i=(r=t.occurrenceThreshold)!==null&&r!==void 0?r:t.occuranceThreshold;return e.props.nodeType!==3||!a?!1:Uo(e,n,i)}function t2(e,t){return t.startNode||(t=de({startNode:e},t)),e.props.nodeType===1&&t.inLabelledByContext&&t.includeHidden===void 0&&(t=de({includeHidden:!Te(e)},t)),t}Ue.alreadyProcessed=function(t,r){return r.processed=r.processed||[],r.processed.includes(t)?!0:(r.processed.push(t),!1)};function r2(e,t){var r=t.emoji,a=t.nonBmp,n=t.punctuations;return r&&(e=e.replace(Wi(),"")),a&&(e=e.replace(Id(),"").replace(Bd(),"").replace(Ld(),"")),n&&(e=e.replace(Nd(),"")),e}var Ta=r2;function a2(e){return n2(e)||i2(e)||o2(e)||u2(e)?0:1}function n2(e){return ae(e).length===0}function i2(e){return e.length===1&&e.match(/\D/)}function o2(e){var t=["aa","abc"];return t.includes(e.toLowerCase())}function u2(e){var t=Ta(e,{emoji:!0,nonBmp:!0,punctuations:!0});return!ae(t)}var Wo=a2,xr={stateTerms:["on","off"],standaloneTerms:["name","honorific-prefix","given-name","additional-name","family-name","honorific-suffix","nickname","username","new-password","current-password","organization-title","organization","street-address","address-line1","address-line2","address-line3","address-level4","address-level3","address-level2","address-level1","country","country-name","postal-code","cc-name","cc-given-name","cc-additional-name","cc-family-name","cc-number","cc-exp","cc-exp-month","cc-exp-year","cc-csc","cc-type","transaction-currency","transaction-amount","language","bday","bday-day","bday-month","bday-year","sex","url","photo","one-time-code"],qualifiers:["home","work","mobile","fax","pager"],qualifiedTerms:["tel","tel-country-code","tel-national","tel-area-code","tel-local","tel-local-prefix","tel-local-suffix","tel-extension","email","impp"],locations:["billing","shipping"]};function s2(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.looseTyped,a=r===void 0?!1:r,n=t.stateTerms,i=n===void 0?[]:n,o=t.locations,u=o===void 0?[]:o,s=t.qualifiers,l=s===void 0?[]:s,c=t.standaloneTerms,d=c===void 0?[]:c,f=t.qualifiedTerms,p=f===void 0?[]:f,m=t.ignoredValues,h=m===void 0?[]:m;if(e=e.toLowerCase().trim(),i=i.concat(xr.stateTerms),i.includes(e)||e==="")return!0;l=l.concat(xr.qualifiers),u=u.concat(xr.locations),d=d.concat(xr.standaloneTerms),p=p.concat(xr.qualifiedTerms);var v=e.split(/\s+/g);if(v[v.length-1]==="webauthn"&&(v.pop(),v.length===0)||!a&&(v[0].length>8&&v[0].substr(0,8)==="section-"&&v.shift(),u.includes(v[0])&&v.shift(),l.includes(v[0])&&(v.shift(),d=[]),v.length!==1))return!1;var g=v[v.length-1];if(!h.includes(g))return d.includes(g)||p.includes(g)}var qd=s2;function l2(e){var t,r;return e.attr("aria-labelledby")&&(t=Pt(e.actualNode,"aria-labelledby"),r=t.map(function(a){var n=ce(a);return n?Nt(n):""}).join(" ").trim(),r)||(r=e.attr("aria-label"),r&&(r=ae(r),r))?r:null}var Hn=l2;function c2(e,t,r){return e=ce(e),Nt(e,t,r)}var jd=c2;function d2(e){var t,r,a;if(r=Hn(e),r)return r;if(e.attr("id")){if(!e.actualNode)throw new TypeError("Cannot resolve explicit label reference for non-DOM nodes");var n=Oe(e.attr("id"));if(a=Xe(e.actualNode),t=a.querySelector('label[for="'+n+'"]'),r=t&&jd(t,!0),r)return r}return t=ct(e,"label"),r=t&&Nt(t,!0),r||null}var Gn=d2;function f2(e){return e=ce(e),Gn(e)}var p2=f2,m2=[{matches:[{nodeName:"textarea"},{nodeName:"input",properties:{type:["text","password","search","tel","email","url"]}}],namingMethods:"labelText"},{matches:{nodeName:"input",properties:{type:["button","submit","reset"]}},namingMethods:["valueText","titleText","buttonDefaultText"]},{matches:{nodeName:"input",properties:{type:"image"}},namingMethods:["altText","valueText","labelText","titleText","buttonDefaultText"]},{matches:"button",namingMethods:"subtreeText"},{matches:"fieldset",namingMethods:"fieldsetLegendText"},{matches:"OUTPUT",namingMethods:"subtreeText"},{matches:[{nodeName:"select"},{nodeName:"input",properties:{type:/^(?!text|password|search|tel|email|url|button|submit|reset)/}}],namingMethods:"labelText"},{matches:"summary",namingMethods:"subtreeText"},{matches:"figure",namingMethods:["figureText","titleText"]},{matches:"img",namingMethods:"altText"},{matches:"table",namingMethods:["tableCaptionText","tableSummaryText"]},{matches:["hr","br"],namingMethods:["titleText","singleSpace"]}],h2=m2;function $d(e){var t=st(e),r=[];return e.children.forEach(function(a){a.actualNode.nodeType===3?t&&r.push(a):r=r.concat($d(a))}),r}var v2=$d,g2=Re(function(t){var r=ce(t),a=r.boundingClientRect,n=[],i=Da(r);return t.childNodes.forEach(function(o){if(!(o.nodeType!==3||ae(o.nodeValue)==="")){var u=b2(o);y2(u,a)||n.push.apply(n,re(zd(u,i)))}}),n.length?n:zd([a],i)}),Yo=g2;function b2(e){var t=M.createRange();return t.selectNodeContents(e),Array.from(t.getClientRects())}function y2(e,t){return e.some(function(r){var a=wa(r);return!Pn(a,t)})}function zd(e,t){var r=[];return e.forEach(function(a){if(!(a.width<1||a.height<1)){var n=t.reduce(function(i,o){return i&&In(i,o.boundingClientRect)},a);n&&r.push(n)}}),r}function D2(e){var t=Bn(e);if(!t)return[];var r=Yo(e);return r.map(function(a){return Mo(t,a)})}var Ko=D2,w2=["checkbox","img","meter","progressbar","scrollbar","radio","slider","spinbutton","textbox"];function _2(e){var t=ye(e),r=t.vNode,a=x.commons.aria.getExplicitRole(r);if(a)return w2.indexOf(a)!==-1;switch(r.props.nodeName){case"img":case"iframe":case"object":case"video":case"audio":case"canvas":case"svg":case"math":case"button":case"select":case"textarea":case"keygen":case"progress":case"meter":return!0;case"input":return r.props.type!=="hidden";default:return!1}}var Xo=_2,x2=["head","title","template","script","style","iframe","object","video","audio","noscript"];function Zo(e){return x2.includes(e.props.nodeName)?!1:e.children.some(function(t){var r=t.props;return r.nodeType===3&&r.nodeValue.trim()})}function Vd(e,t,r){return Zo(e)||Xo(e.actualNode)||!r&&!!Hn(e)||!t&&e.children.some(function(a){return a.actualNode.nodeType===1&&Vd(a)})}var Sa=Vd;function E2(e,t,r){return e=ce(e),Sa(e,t,r)}var Un=E2;function Jo(e){return typeof e.children>"u"||Zo(e)?!0:e.props.nodeType===1&&Xo(e)?!!x.commons.text.accessibleTextVirtual(e):e.children.some(function(t){return!t.attr("lang")&&Jo(t)&&!or(t)})}function A2(e){var t=qt(e.getAttribute("tabindex"));return t>-1&&Be(e)&&!Po(e)}var Hd=A2;function Gd(e,t){var r=ye(e),a=r.vNode,n=r.domNode;return a?(a._isHiddenWithCSS===void 0&&(a._isHiddenWithCSS=Ud(n,t)),a._isHiddenWithCSS):Ud(n,t)}function Ud(e,t){if(e.nodeType===9||(e.nodeType===11&&(e=e.host),["STYLE","SCRIPT"].includes(e.nodeName.toUpperCase())))return!1;var r=E.getComputedStyle(e,null);if(!r)throw new Error("Style does not exist for the given element.");var a=r.getPropertyValue("display");if(a==="none")return!0;var n=["hidden","collapse"],i=r.getPropertyValue("visibility");if(n.includes(i)&&!t||n.includes(i)&&t&&n.includes(t))return!0;var o=Ge(e);return o&&!n.includes(i)?Gd(o,i):!1}var F2=Gd;function C2(e){var t=e.doctype;return t===null?!1:t.name==="html"&&!t.publicId&&!t.systemId}var Wd=C2;function R2(e){var t;(e instanceof He||(t=E)!==null&&t!==void 0&&t.Node&&e instanceof E.Node)&&(e=x.commons.aria.getRole(e));var r=ve.ariaRoles[e];return r?.type||null}var St=R2;function Yd(e,t){t(e.actualNode)!==!1&&e.children.forEach(function(r){return Yd(r,t)})}var T2=["block","list-item","table","flex","grid","inline-block"];function Kd(e){var t=E.getComputedStyle(e).getPropertyValue("display");return T2.includes(t)||t.substr(0,6)==="table-"}function S2(e){for(var t=Ge(e);t&&!Kd(t);)t=Ge(t);return ce(t)}function k2(e,t){if(Kd(e))return!1;var r=S2(e),a="",n="",i=0;return Yd(r,function(o){if(i===2)return!1;if(o.nodeType===3&&(a+=o.nodeValue),o.nodeType===1){var u=(o.nodeName||"").toUpperCase();if(o===e&&(i=1),["BR","HR"].includes(u))i===0?(a="",n=""):i=2;else{if(o.style.display==="none"||o.style.overflow==="hidden"||!["",null,"none"].includes(o.style.float)||!["",null,"relative"].includes(o.style.position))return!1;if(St(o)==="widget")return n+=o.textContent,!1}}}),a=ae(a),t!=null&&t.noLengthCompare?a.length!==0:(n=ae(n),a.length>n.length)}var Qo=k2;function O2(e){e=e||{};var t=e.modalPercent||.75;if(ue.get("isModalOpen"))return ue.get("isModalOpen");var r=jt(x._tree[0],"dialog, [role=dialog], [aria-modal=true]",st);if(r.length)return ue.set("isModalOpen",!0),!0;for(var a=kn(E),n=a.width*t,i=a.height*t,o=(a.width-n)/2,u=(a.height-i)/2,s=[{x:o,y:u},{x:a.width-o,y:u},{x:a.width/2,y:a.height/2},{x:o,y:a.height-u},{x:a.width-o,y:a.height-u}],l=s.map(function(p){return Array.from(M.elementsFromPoint(p.x,p.y))}),c=function(){var m=l[f].find(function(h){var v=E.getComputedStyle(h);return parseInt(v.width,10)>=n&&parseInt(v.height,10)>=i&&v.getPropertyValue("pointer-events")!=="none"&&(v.position==="absolute"||v.position==="fixed")});if(m&&l.every(function(h){return h.includes(m)}))return ue.set("isModalOpen",!0),{v:!0}},d,f=0;f<l.length;f++)if(d=c(),d)return d.v;ue.set("isModalOpen",void 0)}var ka=O2;function Xd(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:2,r=e.ownerDocument.createRange();r.setStart(e,0),r.setEnd(e,e.childNodes.length);var a=0,n=0,i=xe(r.getClientRects()),o;try{for(i.s();!(o=i.n()).done;){var u=o.value;if(!(u.height<=t))if(a>u.top+t)a=Math.max(a,u.bottom);else if(n===0)a=u.bottom,n++;else return!0}}catch(s){i.e(s)}finally{i.f()}return!1}function M2(e){return e instanceof E.Node}var P2=M2,eu="color.incompleteData",I2={set:function(t,r){if(typeof t!="string")throw new Error("Incomplete data: key must be a string");var a=ue.get(eu,function(){return{}});return r&&(a[t]=r),a[t]},get:function(t){var r=ue.get(eu);return r?.[t]},clear:function(){ue.set(eu,{})}},We=I2;function N2(e,t){var r=["IMG","CANVAS","OBJECT","IFRAME","VIDEO","SVG"],a=e.nodeName.toUpperCase();if(r.includes(a))return We.set("bgColor","imgNode"),!0;t=t||E.getComputedStyle(e);var n=t.getPropertyValue("background-image"),i=n!=="none";if(i){var o=/gradient/.test(n);We.set("bgColor",o?"bgGradient":"bgImage")}return i}var Wn=N2,B2=/^#[0-9a-f]{3,8}$/i,L2=/hsl\(\s*([-\d.]+)(rad|turn)/,Oa=(_e=new WeakMap,Ie=new WeakMap,Ke=new WeakMap,pt=new WeakMap,Ve=new WeakMap,rt=new WeakMap,ta=new WeakSet,(function(){function e(t,r,a){var n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:1;if(_t(this,e),ss(this,ta),Zt(this,_e,void 0),Zt(this,Ie,void 0),Zt(this,Ke,void 0),Zt(this,pt,void 0),Zt(this,Ve,void 0),Zt(this,rt,void 0),t instanceof Oa){var i=t.r,o=t.g,u=t.b;this.r=i,this.g=o,this.b=u,this.alpha=t.alpha;return}this.red=t,this.green=r,this.blue=a,this.alpha=n}return xt(e,[{key:"r",get:function(){return wt(_e,this)},set:function(r){at(_e,this,r),at(pt,this,Math.round(jr(r,0,1)*255))}},{key:"g",get:function(){return wt(Ie,this)},set:function(r){at(Ie,this,r),at(Ve,this,Math.round(jr(r,0,1)*255))}},{key:"b",get:function(){return wt(Ke,this)},set:function(r){at(Ke,this,r),at(rt,this,Math.round(jr(r,0,1)*255))}},{key:"red",get:function(){return wt(pt,this)},set:function(r){at(_e,this,r/255),at(pt,this,jr(r,0,255))}},{key:"green",get:function(){return wt(Ve,this)},set:function(r){at(Ie,this,r/255),at(Ve,this,jr(r,0,255))}},{key:"blue",get:function(){return wt(rt,this)},set:function(r){at(Ke,this,r/255),at(rt,this,jr(r,0,255))}},{key:"toHexString",value:function(){var r=Math.round(this.red).toString(16),a=Math.round(this.green).toString(16),n=Math.round(this.blue).toString(16);return"#"+(this.red>15.5?r:"0"+r)+(this.green>15.5?a:"0"+a)+(this.blue>15.5?n:"0"+n)}},{key:"toJSON",value:function(){var r=this.red,a=this.green,n=this.blue,i=this.alpha;return{red:r,green:a,blue:n,alpha:i}}},{key:"parseString",value:function(r){r=r.replace(L2,function(i,o,u){var s=o+u;switch(u){case"rad":return i.replace(s,j2(o));case"turn":return i.replace(s,$2(o))}});try{var a;"Prototype"in E&&"Version"in E.Prototype&&(a=Array.from,Array.from=pc.default);var n=new Ee(r).to("srgb");a&&(Array.from=a,a=null),this.r=n.r,this.g=n.g,this.b=n.b,this.alpha=+n.alpha}catch{throw new Error('Unable to parse color "'.concat(r,'"'))}return this}},{key:"parseRgbString",value:function(r){this.parseString(r)}},{key:"parseHexString",value:function(r){!r.match(B2)||[6,8].includes(r.length)||this.parseString(r)}},{key:"parseColorFnString",value:function(r){this.parseString(r)}},{key:"getRelativeLuminance",value:function(){var r=this.r,a=this.g,n=this.b,i=r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4),o=a<=.03928?a/12.92:Math.pow((a+.055)/1.055,2.4),u=n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4);return .2126*i+.7152*o+.0722*u}},{key:"getLuminosity",value:function(){return .3*this.r+.59*this.g+.11*this.b}},{key:"setLuminosity",value:function(r){var a=r-this.getLuminosity();return Tr(ta,this,q2).call(this,a).clip()}},{key:"getSaturation",value:function(){return Math.max(this.r,this.g,this.b)-Math.min(this.r,this.g,this.b)}},{key:"setSaturation",value:function(r){var a=new Oa(this),n=[{name:"r",value:a.r},{name:"g",value:a.g},{name:"b",value:a.b}],i=n.sort(function(c,d){return c.value-d.value}),o=H(i,3),u=o[0],s=o[1],l=o[2];return l.value>u.value?(s.value=(s.value-u.value)*r/(l.value-u.value),l.value=r):s.value=l.value=0,u.value=0,a[l.name]=l.value,a[u.name]=u.value,a[s.name]=s.value,a}},{key:"clip",value:function(){var r=new Oa(this),a=r.getLuminosity(),n=Math.min(r.r,r.g,r.b),i=Math.max(r.r,r.g,r.b);return n<0&&(r.r=a+(r.r-a)*a/(a-n),r.g=a+(r.g-a)*a/(a-n),r.b=a+(r.b-a)*a/(a-n)),i>1&&(r.r=a+(r.r-a)*(1-a)/(i-a),r.g=a+(r.g-a)*(1-a)/(i-a),r.b=a+(r.b-a)*(1-a)/(i-a)),r}}])})());function q2(e){var t=new Oa(this);return t.r+=e,t.g+=e,t.b+=e,t}var Se=Oa;function jr(e,t,r){return Math.min(Math.max(t,e),r)}function j2(e){return e*180/Math.PI}function $2(e){return e*360}function z2(e){var t=new Se;if(t.parseString(e.getPropertyValue("background-color")),t.alpha!==0){var r=e.getPropertyValue("opacity");t.alpha=t.alpha*r}return t}var Er=z2;function V2(e){var t=E.getComputedStyle(e);return Wn(e,t)||Er(t).alpha===1}var H2=V2;function tu(e){if(!e.href)return!1;var t=ue.get("firstPageLink",G2);return t?e.compareDocumentPosition(t.actualNode)===e.DOCUMENT_POSITION_FOLLOWING:!0}function G2(){var e;return E.location.origin?e=ft(x._tree,'a[href]:not([href^="javascript:"])').find(function(t){return!So(t.actualNode)}):e=ft(x._tree,'a:not([href^="#"]):not([href^="/#"]):not([href^="javascript:"])')[0],e||null}var U2=/rect\s*\(([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px\s*\)/,W2=/(\w+)\((\d+)/;function Y2(e){var t=e.getPropertyValue("clip").match(U2),r=e.getPropertyValue("clip-path").match(W2);if(t&&t.length===5){var a=e.getPropertyValue("position");if(["fixed","absolute"].includes(a))return t[3]-t[1]<=0&&t[2]-t[4]<=0}if(r){var n=r[1],i=parseInt(r[2],10);switch(n){case"inset":return i>=50;case"circle":return i===0}}return!1}function K2(e,t,r){var a=Nr(e,"map");if(!a)return!1;var n=a.getAttribute("name");if(!n)return!1;var i=Xe(e);if(!i||i.nodeType!==9)return!1;var o=ft(x._tree,'img[usemap="#'.concat(Oe(n),'"]'));return!o||!o.length?!1:o.some(function(u){var s=u.actualNode;return Yn(s,t,r)})}function Yn(e,t,r){var a;if(!e)throw new TypeError("Cannot determine if element is visible for non-DOM nodes");var n=e instanceof He?e:ce(e);e=n?n.actualNode:e;var i="_isVisible"+(t?"ScreenReader":""),o=(a=E.Node)!==null&&a!==void 0?a:{},u=o.DOCUMENT_NODE,s=o.DOCUMENT_FRAGMENT_NODE,l=n?n.props.nodeType:e.nodeType,c=n?n.props.nodeName:e.nodeName.toLowerCase();if(n&&typeof n[i]<"u")return n[i];if(l===u)return!0;if(["style","script","noscript","template"].includes(c))return!1;if(e&&l===s&&(e=e.host),t){var d=n?n.attr("aria-hidden"):e.getAttribute("aria-hidden");if(d==="true")return!1}if(!e){var f=n.parent,p=!0;return f&&(p=Yn(f,t,!0)),n&&(n[i]=p),p}var m=E.getComputedStyle(e,null);if(m===null)return!1;if(c==="area")return K2(e,t,r);if(m.getPropertyValue("display")==="none")return!1;var h=parseInt(m.getPropertyValue("height")),v=parseInt(m.getPropertyValue("width")),g=Kt(e),b=g&&h===0,w=g&&v===0,D=m.getPropertyValue("position")==="absolute"&&(h<2||v<2)&&m.getPropertyValue("overflow")==="hidden";if(!t&&(Y2(m)||m.getPropertyValue("opacity")==="0"||b||w||D)||!r&&(m.getPropertyValue("visibility")==="hidden"||!t&&On(e)))return!1;var _=e.assignedSlot?e.assignedSlot:e.parentNode,C=!1;return _&&(C=Yn(_,t,!0)),n&&(n[i]=C),C}var X2=Yn;function Z2(e,t){for(var r=["fixed","sticky"],a=[],n=!1,i=0;i<e.length;++i){var o=e[i];o===t&&(n=!0);var u=E.getComputedStyle(o);if(!n&&r.indexOf(u.position)!==-1){a=[];continue}a.push(o)}return a}var Zd=Z2;function Jd(e,t){var r=Qd(t);do{var a=Qd(e);if(a===r||a===t)return J2(e,t);e=a}while(e);return!1}function Qd(e){for(var t=ce(e),r=t.parent;r;){if(Kt(r.actualNode))return r.actualNode;r=r.parent}}function J2(e,t){var r=E.getComputedStyle(t),a=r.getPropertyValue("overflow");if(r.getPropertyValue("display")==="inline")return!0;var n=Array.from(e.getClientRects()),i=t.getBoundingClientRect(),o={left:i.left,top:i.top,width:i.width,height:i.height};return(["scroll","auto"].includes(a)||t instanceof E.HTMLHtmlElement)&&(o.width=t.scrollWidth,o.height=t.scrollHeight),n.length===1&&a==="hidden"&&r.getPropertyValue("white-space")==="nowrap"&&(n[0]=o),n.some(function(u){return!(Math.ceil(u.left)<Math.floor(o.left)||Math.ceil(u.top)<Math.floor(o.top)||Math.floor(u.left+u.width)>Math.ceil(o.left+o.width)||Math.floor(u.top+u.height)>Math.ceil(o.top+o.height))})}function e1(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:M,a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0;if(a>999)throw new Error("Infinite loop detected");return Array.from(r.elementsFromPoint(e,t)||[]).filter(function(n){return Xe(n)===r}).reduce(function(n,i){if(ai(i)){var o=e1(e,t,i.shadowRoot,a+1);n=n.concat(o),n.length&&Jd(n[0],i)&&n.push(i)}else n.push(i);return n},[])}var Q2=e1;function eD(e,t){if(e.hasAttribute(t)){var r=e.nodeName.toUpperCase(),a=e;(!["A","AREA"].includes(r)||e.ownerSVGElement)&&(a=M.createElement("a"),a.href=e.getAttribute(t));var n=["https:","ftps:"].includes(a.protocol)?a.protocol.replace(/s:$/,":"):a.protocol,i=/^\//.test(a.pathname)?a.pathname:"/".concat(a.pathname),o=rD(i),u=o.pathname,s=o.filename;return{protocol:n,hostname:a.hostname,port:tD(a.port),pathname:/\/$/.test(u)?u:"".concat(u,"/"),search:aD(a.search),hash:nD(a.hash),filename:s}}}function tD(e){var t=["443","80"];return t.includes(e)?"":e}function rD(e){var t=e.split("/").pop();return!t||t.indexOf(".")===-1?{pathname:e,filename:""}:{pathname:e.replace(t,""),filename:/index./.test(t)?"":t}}function aD(e){var t={};if(!e||!e.length)return t;var r=e.substring(1).split("&");if(!r||!r.length)return t;for(var a=0;a<r.length;a++){var n=r[a],i=n.split("="),o=H(i,2),u=o[0],s=o[1],l=s===void 0?"":s;t[decodeURIComponent(u)]=decodeURIComponent(l)}return t}function nD(e){if(!e)return"";var t=/#!?\/?/g,r=e.match(t);if(!r)return"";var a=H(r,1),n=a[0];return n==="#"?"":e}var iD=eD;function oD(e,t){var r=t.getBoundingClientRect(),a=r.top,n=r.left,i={top:a-t.scrollTop,bottom:a-t.scrollTop+t.scrollHeight,left:n-t.scrollLeft,right:n-t.scrollLeft+t.scrollWidth};if(e.left>i.right&&e.left>r.right||e.top>i.bottom&&e.top>r.bottom||e.right<i.left&&e.right<r.left||e.bottom<i.top&&e.bottom<r.top)return!1;var o=E.getComputedStyle(t);return e.left>r.right||e.top>r.bottom?o.overflow==="scroll"||o.overflow==="auto"||t instanceof E.HTMLBodyElement||t instanceof E.HTMLHtmlElement:!0}var ru=oD,t1=0,uD=(function(e){function t(r,a,n){var i;if(_t(this,t),i=Wa(this,t),i.shadowId=n,i.children=[],i.actualNode=r,i.parent=a,a||(t1=0),i.nodeIndex=t1++,i._isHidden=null,i._cache={},i._isXHTML=Rn(r.ownerDocument),r.nodeName.toLowerCase()==="input"){var o=r.getAttribute("type");o=i._isXHTML?o:(o||"").toLowerCase(),mi().includes(o)||(o="text"),i._type=o}return ue.get("nodeMap")&&ue.get("nodeMap").set(r,i),i}return Ya(t,e),xt(t,[{key:"props",get:function(){if(!this._cache.hasOwnProperty("props")){var a=this.actualNode,n=a.nodeType,i=a.nodeName,o=a.id,u=a.nodeValue;this._cache.props={nodeType:n,nodeName:this._isXHTML?i:i.toLowerCase(),id:o,type:this._type,nodeValue:u},n===1&&(this._cache.props.multiple=this.actualNode.multiple,this._cache.props.value=this.actualNode.value,this._cache.props.selected=this.actualNode.selected,this._cache.props.checked=this.actualNode.checked,this._cache.props.indeterminate=this.actualNode.indeterminate)}return this._cache.props}},{key:"attr",value:function(a){return typeof this.actualNode.getAttribute!="function"?null:this.actualNode.getAttribute(a)}},{key:"hasAttr",value:function(a){return typeof this.actualNode.hasAttribute!="function"?!1:this.actualNode.hasAttribute(a)}},{key:"attrNames",get:function(){if(!this._cache.hasOwnProperty("attrNames")){var a;this.actualNode.attributes instanceof E.NamedNodeMap?a=this.actualNode.attributes:a=this.actualNode.cloneNode(!1).attributes,this._cache.attrNames=Array.from(a).map(function(n){return n.name})}return this._cache.attrNames}},{key:"getComputedStylePropertyValue",value:function(a){var n="computedStyle_"+a;return this._cache.hasOwnProperty(n)||(this._cache.hasOwnProperty("computedStyle")||(this._cache.computedStyle=E.getComputedStyle(this.actualNode)),this._cache[n]=this._cache.computedStyle.getPropertyValue(a)),this._cache[n]}},{key:"isFocusable",get:function(){return this._cache.hasOwnProperty("isFocusable")||(this._cache.isFocusable=Be(this.actualNode)),this._cache.isFocusable}},{key:"tabbableElements",get:function(){return this._cache.hasOwnProperty("tabbableElements")||(this._cache.tabbableElements=ed(this)),this._cache.tabbableElements}},{key:"clientRects",get:function(){return this._cache.hasOwnProperty("clientRects")||(this._cache.clientRects=Array.from(this.actualNode.getClientRects()).filter(function(a){return a.width>0})),this._cache.clientRects}},{key:"boundingClientRect",get:function(){return this._cache.hasOwnProperty("boundingClientRect")||(this._cache.boundingClientRect=this.actualNode.getBoundingClientRect()),this._cache.boundingClientRect}}])})(He),Kn=uD,r1="DqElm.RunOptions";function a1(e){var t=e.outerHTML;return!t&&typeof E.XMLSerializer=="function"&&(t=new E.XMLSerializer().serializeToString(e)),t||""}function sD(e){var t=300,r=20,a=a1(e),n=ce(e);n||(n=new Kn(e));var i=n.props.nodeName;if(a.length<t)return a;var o=[],u=e.cloneNode(!1),s=la(u),l=a1(u);if(l.length<t){var c="",d=xe(s),f;try{for(d.s();!(f=d.n()).done;){var p=f.value,m=p.name,h=p.value,v={name:m,value:h};c+=" ".concat(v.name,'="').concat(v.value,'"')}}catch(I){d.e(I)}finally{d.f()}return l="<".concat(i).concat(c,">"),l}var g="<".concat(i,">").length,b=xe(s),w;try{for(b.s();!(w=b.n()).done;){var D=w.value,_=D.name,C=D.value;if(g>t)break;var T={name:_,value:C},O=T.name,$=T.value;O=O.length>r?O.substring(0,r)+"...":O,$=$.length>r?$.substring(0,r)+"...":$;var k="".concat(O,'="').concat($,'"');g+=(" "+k).length,o.push(k)}}catch(I){b.e(I)}finally{b.f()}return l="<".concat(i," ").concat(o.join(" "),">"),l.length>t?l=l.substring(0,t)+" ...>":o.length<s.length&&(l=l.substring(0,l.length-1)+" ...>"),l}function lD(e){return e?sD(e):""}var Ar=Re(function(t,r,a){var n,i;if(r??(r=null),a??(a={}),!r){var o;r=(o=ue.get(r1))!==null&&o!==void 0?o:{}}if(this.spec=a,t instanceof He?(this._virtualNode=t,this._element=t.actualNode):(this._element=t,this._virtualNode=ce(t)),this.fromFrame=((n=this.spec.selector)===null||n===void 0?void 0:n.length)>1,this._includeElementInJson=r.elementRef,r.absolutePaths&&(this._options={toRoot:!0}),this.nodeIndexes=[],Array.isArray(this.spec.nodeIndexes)?this.nodeIndexes=this.spec.nodeIndexes:typeof((i=this._virtualNode)===null||i===void 0?void 0:i.nodeIndex)=="number"&&(this.nodeIndexes=[this._virtualNode.nodeIndex]),this.source=null,!x._audit.noHtml){var u;this.source=(u=this.spec.source)!==null&&u!==void 0?u:lD(this._element)}return this});Ar.prototype={get selector(){return this.spec.selector||[bo(this.element,this._options)]},get ancestry(){return this.spec.ancestry||[Sn(this.element)]},get xpath(){return this.spec.xpath||[yc(this.element)]},get element(){return this._element},toJSON:function(){var t={selector:this.selector,source:this.source,xpath:this.xpath,ancestry:this.ancestry,nodeIndexes:this.nodeIndexes,fromFrame:this.fromFrame};return this._includeElementInJson&&(t.element=this._element),t}},Ar.fromFrame=function(t,r,a){var n=Ar.mergeSpecs(t,a);return new Ar(a.element,r,n)},Ar.mergeSpecs=function(t,r){return de({},t,{selector:[].concat(re(r.selector),re(t.selector)),ancestry:[].concat(re(r.ancestry),re(t.ancestry)),xpath:[].concat(re(r.xpath),re(t.xpath)),nodeIndexes:[].concat(re(r.nodeIndexes),re(t.nodeIndexes)),fromFrame:!0})},Ar.setRunOptions=function(t){var r=t.elementRef,a=t.absolutePaths;ue.set(r1,{elementRef:r,absolutePaths:a})};var yt=Ar;function cD(e,t,r,a){return{isAsync:!1,async:function(){return this.isAsync=!0,function(i){i instanceof Error?a(i):(e.result=i,r(e))}},data:function(i){e.data=i},relatedNodes:function(i){E.Node&&(i instanceof E.Node||i instanceof He?i=[i]:i=tl(i),e.relatedNodes=[],i.forEach(function(o){if(o instanceof He&&(o=o.actualNode),o instanceof E.Node){var u=new yt(o);e.relatedNodes.push(u)}}))}}}var au=cD;function Wt(e){return nu(e,new Map)}function nu(e,t){var r,a;if(e===null||P(e)!=="object"||(r=E)!==null&&r!==void 0&&r.Node&&e instanceof E.Node||(a=E)!==null&&a!==void 0&&a.HTMLCollection&&e instanceof E.HTMLCollection||"nodeName"in e&&"nodeType"in e&&"ownerDocument"in e)return e;if(t.has(e))return t.get(e);if(Array.isArray(e)){var n=[];return t.set(e,n),e.forEach(function(u){n.push(nu(u,t))}),n}var i={};t.set(e,i);for(var o in e)i[o]=nu(e[o],t);return i}var Ma=new nl.CssSelectorParser;Ma.registerSelectorPseudos("not"),Ma.registerSelectorPseudos("is"),Ma.registerNestingOperators(">"),Ma.registerAttrEqualityMods("^","$","*","~");var n1=Ma;function iu(e,t){var r=Xn(t);return r.some(function(a){return $r(e,a)})}function dD(e,t){return e.props.nodeType===1&&(t.tag==="*"||e.props.nodeName===t.tag)}function fD(e,t){return!t.classes||t.classes.every(function(r){return e.hasClass(r.value)})}function pD(e,t){return!t.attributes||t.attributes.every(function(r){var a=e.attr(r.key);return a!==null&&r.test(a)})}function mD(e,t){return!t.id||e.props.id===t.id}function hD(e,t){return!!(!t.pseudos||t.pseudos.every(function(r){if(r.name==="not")return!r.expressions.some(function(a){return $r(e,a)});if(r.name==="is")return r.expressions.some(function(a){return $r(e,a)});throw new Error("the pseudo selector "+r.name+" has not yet been implemented")}))}function i1(e,t){return dD(e,t)&&fD(e,t)&&pD(e,t)&&mD(e,t)&&hD(e,t)}var Pa=(function(){var e=/(?=[\-\[\]{}()*+?.\\\^$|,#\s])/g,t="\\";return function(r){return r.replace(e,t)}})(),ou=/\\/g;function vD(e){if(e)return e.map(function(t){var r=t.name.replace(ou,""),a=(t.value||"").replace(ou,""),n,i;switch(t.operator){case"^=":i=new RegExp("^"+Pa(a));break;case"$=":i=new RegExp(Pa(a)+"$");break;case"~=":i=new RegExp("(^|\\s)"+Pa(a)+"(\\s|$)");break;case"|=":i=new RegExp("^"+Pa(a)+"(-|$)");break;case"=":n=function(u){return a===u};break;case"*=":n=function(u){return u&&u.includes(a)};break;case"!=":n=function(u){return a!==u};break;default:n=function(u){return u!==null}}return a===""&&/^[*$^]=$/.test(t.operator)&&(n=function(){return!1}),n||(n=function(u){return u&&i.test(u)}),{key:r,value:a,type:typeof t.value>"u"?"attrExist":"attrValue",test:n}})}function gD(e){if(e)return e.map(function(t){return t=t.replace(ou,""),{value:t,regexp:new RegExp("(^|\\s)"+Pa(t)+"(\\s|$)")}})}function bD(e){if(e)return e.map(function(t){var r;return["is","not"].includes(t.name)&&(r=t.value,r=r.selectors?r.selectors:[r],r=o1(r)),{name:t.name,expressions:r,value:t.value}})}function o1(e){return e.map(function(t){for(var r=[],a=t.rule;a;)r.push({tag:a.tagName?a.tagName.toLowerCase():"*",combinator:a.nestingOperator?a.nestingOperator:" ",id:a.id,attributes:vD(a.attrs),classes:gD(a.classNames),pseudos:bD(a.pseudos)}),a=a.rule;return r})}function Xn(e){var t=n1.parse(e);return t=t.selectors?t.selectors:[t],o1(t)}function u1(e,t,r,a){if(!e)return!1;for(var n=Array.isArray(t),i=n?t[r]:t,o=i1(e,i);!o&&a&&e.parent;)e=e.parent,o=i1(e,i);if(r>0){if([" ",">"].includes(i.combinator)===!1)throw new Error("axe.utils.matchesExpression does not support the combinator: "+i.combinator);o=o&&u1(e.parent,t,r-1,i.combinator===" ")}return o}function $r(e,t,r){return u1(e,t,t.length-1,r)}function yD(e,t){for(;e;){if(iu(e,t))return e;if(typeof e.parent>"u")throw new TypeError("Cannot resolve parent for non-DOM nodes");e=e.parent}return null}var ct=yD;function Zn(){}function uu(e){if(typeof e!="function")throw new TypeError("Queue methods require functions as arguments")}function DD(){var e=[],t=0,r=0,a=Zn,n=!1,i,o=function(p){i=p,setTimeout(function(){i!=null&&br("Uncaught error (of queue)",i)},1)},u=o;function s(f){return function(p){e[f]=p,r-=1,!r&&a!==Zn&&(n=!0,a(e))}}function l(f){return a=Zn,u(f),e}function c(){for(var f=e.length;t<f;t++){var p=e[t];try{p.call(null,s(t),l)}catch(m){l(m)}}}var d={defer:function(p){if(P(p)==="object"&&p.then&&p.catch){var m=p;p=function(v,g){m.then(v).catch(g)}}if(uu(p),i===void 0){if(n)throw new Error("Queue already completed");return e.push(p),++r,c(),d}},then:function(p){if(uu(p),a!==Zn)throw new Error("queue `then` already set");return i||(a=p,r||(n=!0,a(e))),d},catch:function(p){if(uu(p),u!==o)throw new Error("queue `catch` already set");return i?(p(i),i=null):u=p,d},abort:l};return d}var Bt=DD,zr,Vr,su=E.crypto||E.msCrypto;if(!Vr&&su&&su.getRandomValues){var s1=new Uint8Array(16);Vr=function(){return su.getRandomValues(s1),s1}}if(!Vr){var l1=new Array(16);Vr=function(){for(var t=0,r;t<16;t++)(t&3)===0&&(r=Math.random()*4294967296),l1[t]=r>>>((t&3)<<3)&255;return l1}}for(var c1=typeof E.Buffer=="function"?E.Buffer:Array,lu=[],d1={},Hr=0;Hr<256;Hr++)lu[Hr]=(Hr+256).toString(16).substr(1),d1[lu[Hr]]=Hr;function wD(e,t,r){var a=t&&r||0,n=0;for(t=t||[],e.toLowerCase().replace(/[0-9a-f]{2}/g,function(i){n<16&&(t[a+n++]=d1[i])});n<16;)t[a+n++]=0;return t}function cu(e,t){var r=t||0,a=lu;return a[e[r++]]+a[e[r++]]+a[e[r++]]+a[e[r++]]+"-"+a[e[r++]]+a[e[r++]]+"-"+a[e[r++]]+a[e[r++]]+"-"+a[e[r++]]+a[e[r++]]+"-"+a[e[r++]]+a[e[r++]]+a[e[r++]]+a[e[r++]]+a[e[r++]]+a[e[r++]]}var sr=Vr(),_D=[sr[0]|1,sr[1],sr[2],sr[3],sr[4],sr[5]],f1=(sr[6]<<8|sr[7])&16383,du=0,fu=0;function p1(e,t,r){var a=t&&r||0,n=t||[];e=e||{};var i=e.clockseq!=null?e.clockseq:f1,o=e.msecs!=null?e.msecs:new Date().getTime(),u=e.nsecs!=null?e.nsecs:fu+1,s=o-du+(u-fu)/1e4;if(s<0&&e.clockseq==null&&(i=i+1&16383),(s<0||o>du)&&e.nsecs==null&&(u=0),u>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");du=o,fu=u,f1=i,o+=122192928e5;var l=((o&268435455)*1e4+u)%4294967296;n[a++]=l>>>24&255,n[a++]=l>>>16&255,n[a++]=l>>>8&255,n[a++]=l&255;var c=o/4294967296*1e4&268435455;n[a++]=c>>>8&255,n[a++]=c&255,n[a++]=c>>>24&15|16,n[a++]=c>>>16&255,n[a++]=i>>>8|128,n[a++]=i&255;for(var d=e.node||_D,f=0;f<6;f++)n[a+f]=d[f];return t||cu(n)}function Fr(e,t,r){var a=t&&r||0;typeof e=="string"&&(t=e=="binary"?new c1(16):null,e=null),e=e||{};var n=e.random||(e.rng||Vr)();if(n[6]=n[6]&15|64,n[8]=n[8]&63|128,t)for(var i=0;i<16;i++)t[a+i]=n[i];return t||cu(n)}zr=Fr,zr.v1=p1,zr.v4=Fr,zr.parse=wD,zr.unparse=cu,zr.BufferClass=c1,x._uuid=p1();var xD=Fr,ED=Object.freeze(["EvalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);function AD(e){var t=e.topic,r=e.channelId,a=e.message,n=e.messageId,i=e.keepalive,o={channelId:r,topic:t,messageId:n,keepalive:!!i,source:m1()};return a instanceof Error?o.error={name:a.name,message:a.message,stack:a.stack}:o.payload=a,JSON.stringify(o)}function FD(e){var t;try{t=JSON.parse(e)}catch{return}if(CD(t)){var r=t,a=r.topic,n=r.channelId,i=r.messageId,o=r.keepalive,u=P(t.error)==="object"?RD(t.error):t.payload;return{topic:a,message:u,messageId:i,channelId:n,keepalive:!!o}}}function CD(e){return e!==null&&P(e)==="object"&&typeof e.channelId=="string"&&e.source===m1()}function RD(e){var t=e.message||"Unknown error occurred",r=ED.includes(e.name)?e.name:"Error",a=E[r]||Error;return e.stack&&(t+=`
10
+ `+e.stack.replace(e.message,"")),new a(t)}function m1(){var e="axeAPI",t="";return typeof x<"u"&&x._audit&&x._audit.application&&(e=x._audit.application),typeof x<"u"&&(t=x.version),e+"."+t}function pu(e){v1(e),he(E.parent===e,"Source of the response must be the parent window.")}function h1(e){v1(e),he(e.parent===E,"Respondable target must be a frame in the current window")}function v1(e){he(E!==e,"Messages can not be sent to the same window.")}var Jn={};function TD(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;he(!Jn[e],"A replyHandler already exists for this message channel."),Jn[e]={replyHandler:t,sendToParent:r}}function SD(e){return Jn[e]}function kD(e){delete Jn[e]}var Qn=[];function mu(){var e="".concat(Fr(),":").concat(Fr());return Qn.includes(e)?mu():(Qn.push(e),e)}function OD(e){return Qn.includes(e)?!1:(Qn.push(e),!0)}function hu(e,t,r,a){if(r?pu(e):h1(e),t.message instanceof Error&&!r)return x.log(t.message),!1;var n=AD(de({messageId:mu()},t)),i=x._audit.allowedOrigins;return!i||!i.length?!1:(typeof a=="function"&&TD(t.channelId,a,r),i.forEach(function(o){try{e.postMessage(n,o)}catch(u){throw u instanceof e.DOMException?new Error('allowedOrigins value "'.concat(o,'" is not a valid origin')):u}}),!0)}function MD(e,t,r){if(!e.parent!==E)return x.log(t);try{hu(e,{topic:null,channelId:r,message:t,messageId:mu(),keepalive:!0},!0)}catch(a){return x.log(a)}}function g1(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;return function(n,i,o){var u={channelId:t,message:n,keepalive:i};hu(e,u,r,o)}}function PD(e){var t=x._audit.allowedOrigins;return t&&t.includes("*")||t.includes(e)}function ID(e,t){var r=e.origin,a=e.data,n=e.source;try{var i=FD(a)||{},o=i.channelId,u=i.message,s=i.messageId;if(!PD(r)||!OD(s))return;if(u instanceof Error&&n.parent!==E)return x.log(u),!1;try{if(i.topic){var l=g1(n,o);pu(n),t(i,l)}else ND(n,i)}catch(c){MD(n,c,o)}}catch(c){return x.log(c),!1}}function ND(e,t){var r=t.channelId,a=t.message,n=t.keepalive,i=SD(r)||{},o=i.replyHandler,u=i.sendToParent;if(o){u?pu(e):h1(e);var s=g1(e,r,u);!n&&r&&kD(r);try{o(a,n,s)}catch(l){x.log(l),s(l,n)}}}var BD={open:function(t){if(typeof E.addEventListener=="function"){var r=function(n){ID(n,t)};return E.addEventListener("message",r,!1),function(){E.removeEventListener("message",r,!1)}}},post:function(t,r,a){return typeof E.addEventListener!="function"?!1:hu(t,r,!1,a)}};function b1(e){e.updateMessenger(BD)}var ei,y1,vu={};function kt(e,t,r,a,n){var i={topic:t,message:r,channelId:"".concat(Fr(),":").concat(Fr()),keepalive:a};return y1(e,i,n)}function LD(e,t){var r=e.topic,a=e.message,n=e.keepalive,i=vu[r];if(i)try{i(a,n,t)}catch(o){x.log(o),t(o,n)}}kt.updateMessenger=function(t){var r=t.open,a=t.post;he(typeof r=="function","open callback must be a function"),he(typeof a=="function","post callback must be a function"),ei&&ei();var n=r(LD);n?(he(typeof n=="function","open callback must return a cleanup function"),ei=n):ei=null,y1=a},kt.subscribe=function(t,r){he(typeof r=="function","Subscriber callback must be a function"),he(!vu[t],"Topic ".concat(t," is already registered to.")),vu[t]=r},kt.isInFrame=function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:E;return!!t.frameElement},b1(kt);function D1(e,t,r,a){var n,i,o=e.contentWindow,u=(n=(i=t.options)===null||i===void 0?void 0:i.pingWaitTime)!==null&&n!==void 0?n:500;if(!o){br("Frame does not have a content window",e),r(null);return}if(u===0){w1(e,t,r,a);return}var s=setTimeout(function(){s=setTimeout(function(){t.debug?a(_1("No response from frame",e)):r(null)},0)},u);kt(o,"axe.ping",null,void 0,function(){clearTimeout(s),w1(e,t,r,a)})}function w1(e,t,r,a){var n,i,o=(n=(i=t.options)===null||i===void 0?void 0:i.frameWaitTime)!==null&&n!==void 0?n:6e4,u=e.contentWindow,s=setTimeout(function(){a(_1("Axe in frame timed out",e))},o);kt(u,"axe.start",t,void 0,function(l){clearTimeout(s),l instanceof Error?a(l):r(l)})}function _1(e,t){var r;return x._tree&&(r=bo(t)),new Error(e+": "+(r||t))}var Ia=null,Na={update:function(t){he(P(t)==="object","serializer must be an object"),Ia=t},toSpec:function(t){return Na.dqElmToSpec(new yt(t))},dqElmToSpec:function(t,r){var a;return t instanceof yt?(r&&(t=qD(t,r)),typeof((a=Ia)===null||a===void 0?void 0:a.toSpec)=="function"?Ia.toSpec(t):t.toJSON()):t},mergeSpecs:function(t,r){var a;return typeof((a=Ia)===null||a===void 0?void 0:a.mergeSpecs)=="function"?Ia.mergeSpecs(t,r):yt.mergeSpecs(t,r)},mapRawResults:function(t){return t.map(function(r){return de({},r,{nodes:Na.mapRawNodeResults(r.nodes)})})},mapRawNodeResults:function(t){return t?.map(function(r){var a=r.node,n=qe(r,Gp);n.node=Na.dqElmToSpec(a);for(var i=0,o=["any","all","none"];i<o.length;i++){var u=o[i];n[u]=n[u].map(function(s){var l=s.relatedNodes,c=qe(s,Up);return c.relatedNodes=l.map(Na.dqElmToSpec),c})}return n})}},Dt=Na;function qD(e,t){var r=e.fromFrame,a=t.ancestry,n=t.xpath,i=t.selectors!==!1||r;return e=new yt(e.element,t,{source:e.source,nodeIndexes:e.nodeIndexes,selector:i?e.selector:[":root"],ancestry:a?e.ancestry:[":root"],xpath:n?e.xpath:"/"}),e.fromFrame=r,e}function jD(e){var t=[];return t.concat(e.any||[]).concat(e.all||[]).concat(e.none||[])}var ti=jD;function $D(e,t,r){if(Array.isArray(e))return e.find(function(a){return a!==null&&P(a)==="object"&&Object.hasOwn(a,t)&&a[t]===r})}var Ba=$D;function zD(e,t,r){e.forEach(function(a){a.node=Dt.mergeSpecs(a.node,r);var n=ti(a);n.forEach(function(i){i.relatedNodes=i.relatedNodes.map(function(o){return Dt.mergeSpecs(o,r)})})})}function VD(e,t){for(var r=t[0].node,a,n=0;n<e.length;n++){a=e[n].node;var i=x1(a.nodeIndexes,r.nodeIndexes);if(i>0||i===0&&r.selector.length<a.selector.length){e.splice.apply(e,[n,0].concat(re(t)));return}}e.push.apply(e,re(t))}function HD(e){return!e||!e.results?null:Array.isArray(e.results)?e.results.length?e.results:null:[e.results]}function GD(e,t){var r=[];return e.forEach(function(a){var n=HD(a);if(!(!n||!n.length)){var i=UD(a);n.forEach(function(o){o.nodes&&i&&zD(o.nodes,t,i);var u=Ba(r,"id",o.id);if(!u)r.push(o);else if(o.nodes.length&&VD(u.nodes,o.nodes),o.error){var s;(s=u.error)!==null&&s!==void 0||(u.error=o.error)}})}}),r.forEach(function(a){a.nodes&&a.nodes.sort(function(n,i){return x1(n.node.nodeIndexes,i.node.nodeIndexes)})}),r}function x1(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],r=Math.max(e?.length,t?.length),a=0;a<r;a++){var n=e?.[a],i=t?.[a];if(typeof n!="number"||isNaN(n))return a===0?1:-1;if(typeof i!="number"||isNaN(i))return a===0?-1:1;if(n!==i)return n-i}return 0}var ri=GD;function UD(e){return e.frameElement?Dt.toSpec(e.frameElement):e.frameSpec?e.frameSpec:null}function E1(e,t,r,a,n,i){t=de({},t,{elementRef:!1});var o=Bt(),u=e.frames;u.forEach(function(s){var l=s.node,c=qe(s,Wp);o.defer(function(d,f){var p={options:t,command:r,parameter:a,context:c};function m(h){return d(h?{results:h,frameElement:l}:null)}D1(l,p,m,f)})}),o.then(function(s){n(ri(s,t))}).catch(i)}function Yt(e,t){if(!e.shadowId&&!t.shadowId&&e.actualNode&&typeof e.actualNode.contains=="function")return e.actualNode.contains(t.actualNode);do{if(e===t)return!0;if(t.nodeIndex<e.nodeIndex)return!1;t=t.parent}while(t);return!1}function A1(){for(var e={},t=arguments.length,r=new Array(t),a=0;a<t;a++)r[a]=arguments[a];return r.forEach(function(n){if(!(!n||P(n)!=="object"||Array.isArray(n)))for(var i=0,o=Object.keys(n);i<o.length;i++){var u=o[i];!e.hasOwnProperty(u)||P(n[u])!=="object"||Array.isArray(e[u])?e[u]=n[u]:e[u]=A1(e[u],n[u])}}),e}var gu=A1;function WD(e,t){Object.assign(e,t),Object.keys(t).filter(function(r){return typeof t[r]=="function"}).forEach(function(r){e[r]=null;try{e[r]=t[r](e)}catch{}})}var bu=WD,YD=["article","aside","blockquote","body","div","footer","h1","h2","h3","h4","h5","h6","header","main","nav","p","section","span"];function KD(e){if(e.shadowRoot){var t=e.nodeName.toLowerCase();if(YD.includes(t)||/^[a-z][a-z0-9_.-]*-[a-z0-9_.-]*$/.test(t))return!0}return!1}var ai=KD;function XD(e){return(e||"").trim().replace(/\s{2,}/g," ").split(" ")}var Ze=XD,Cr=" [idsMap]";function F1(e,t,r){var a=e[0]._selectorMap;if(a){for(var n=e[0].shadowId,i=0;i<t.length;i++)if(t[i].length>1&&t[i].some(function(s){return C1(s)}))return;var o=new Set;t.forEach(function(s){var l,c=ZD(s,a,n);c==null||(l=c.nodes)===null||l===void 0||l.forEach(function(d){c.isComplexSelector&&!$r(d,s)||o.add(d)})});var u=[];return o.forEach(function(s){return u.push(s)}),r&&(u=u.filter(r)),u.sort(function(s,l){return s.nodeIndex-l.nodeIndex})}}function ZD(e,t,r){var a=e[e.length-1],n=null,i=e.length>1||!!a.pseudos||!!a.classes;if(C1(a))n=t["*"];else{if(a.id){var o;if(!t[Cr]||!Object.hasOwn(t[Cr],a.id)||!((o=t[Cr][a.id])!==null&&o!==void 0&&o.length))return;n=t[Cr][a.id].filter(function(h){return h.shadowId===r})}if(a.tag&&a.tag!=="*"){var u;if(!((u=t[a.tag])!==null&&u!==void 0&&u.length))return;var s=t[a.tag];n=n?yu(s,n):s}if(a.classes){var l;if(!((l=t["[class]"])!==null&&l!==void 0&&l.length))return;var c=t["[class]"];n=n?yu(c,n):c}if(a.attributes)for(var d=0;d<a.attributes.length;d++){var f,p=a.attributes[d];if(p.type==="attrValue"&&(i=!0),!((f=t["[".concat(p.key,"]")])!==null&&f!==void 0&&f.length))return;var m=t["[".concat(p.key,"]")];n=n?yu(m,n):m}}return{nodes:n,isComplexSelector:i}}function C1(e){return e.tag==="*"&&!e.attributes&&!e.id&&!e.classes}function yu(e,t){return e.filter(function(r){return t.includes(r)})}function ni(e,t,r){Object.hasOwn(r,e)||(r[e]=[]),r[e].push(t)}function R1(e,t){e.props.nodeType===1&&(ni(e.props.nodeName,e,t),ni("*",e,t),e.attrNames.forEach(function(r){r==="id"&&(t[Cr]=t[Cr]||{},Ze(e.attr(r)).forEach(function(a){ni(a,e,t[Cr])})),ni("[".concat(r,"]"),e,t)}))}var Du;function wu(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:M.documentElement,t=arguments.length>1?arguments[1]:void 0;Du=!1;var r={};ue.set("nodeMap",new WeakMap),ue.set("selectorMap",r);var a=T1(e,t,null);return a[0]._selectorMap=r,a[0]._hasShadowRoot=Du,a}function JD(e){var t=[];for(e=e.firstChild;e;)t.push(e),e=e.nextSibling;return t}function _u(e,t,r){var a=new Kn(e,t,r);return R1(a,ue.get("selectorMap")),a}function ii(e,t,r){var a=[];return e.forEach(function(n){var i=T1(n,r,t);i&&a.push.apply(a,re(i))}),a}function T1(e,t,r){var a,n;e.documentElement&&(e=e.documentElement);var i=e.nodeName.toLowerCase();if(ai(e))return Du=!0,a=_u(e,r,t),t="a"+Math.random().toString().substring(2),n=Array.from(e.shadowRoot.childNodes),a.children=ii(n,a,t),[a];if(i==="content"&&typeof e.getDistributedNodes=="function")return n=Array.from(e.getDistributedNodes()),ii(n,r,t);if(i==="slot"&&typeof e.assignedNodes=="function")return n=Array.from(e.assignedNodes()),n.length||(n=JD(e)),E.getComputedStyle(e),ii(n,r,t);if(e.nodeType===M.ELEMENT_NODE)return a=_u(e,r,t),n=Array.from(e.childNodes),a.children=ii(n,a,t),[a];if(e.nodeType===M.TEXT_NODE)return[_u(e,r)]}function QD(e){return e?e.trim().split("-")[0].toLowerCase():""}var Rr=QD;function ew(e){var t={};return t.none=e.none.concat(e.all),t.any=e.any,Object.keys(t).map(function(r){if(t[r].length){var a=x._audit.data.failureSummaries[r];if(a&&typeof a.failureMessage=="function")return a.failureMessage(t[r].map(function(n){return n.message||""}))}}).filter(function(r){return r!==void 0}).join(`
11
11
 
12
- `)}var _u=QD;function xu(){var e=x._audit.data.incompleteFallbackMessage;return typeof e=="function"&&(e=e()),typeof e!="string"?"":e}var S1=se.resultGroups;function Na(e,t){var r=x.utils.aggregateResult(e);return S1.forEach(function(a){t.resultTypes&&!t.resultTypes.includes(a)&&(r[a]||[]).forEach(function(n){Array.isArray(n.nodes)&&n.nodes.length>0&&(n.nodes=[n.nodes[0]])}),r[a]=(r[a]||[]).map(function(n){return n=Object.assign({},n),Array.isArray(n.nodes)&&n.nodes.length>0&&(n.nodes=n.nodes.map(function(i){if(M(i.node)==="object"){var o=k1(i.node,t);Object.assign(i,o)}return delete i.result,delete i.node,ew(i,t),i})),S1.forEach(function(i){return delete n[i]}),delete n.pageLevel,delete n.result,n})}),r}function ew(e,t){["any","all","none"].forEach(function(r){Array.isArray(e[r])&&e[r].filter(function(a){return Array.isArray(a.relatedNodes)}).forEach(function(a){a.relatedNodes=a.relatedNodes.map(function(n){return k1(n,t)})})})}function k1(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;e=yt.dqElmToSpec(e,t);var r={};if(x._audit.noHtml)r.html=null;else{var a;r.html=(a=e.source)!==null&&a!==void 0?a:"Undefined"}if(t.elementRef&&!e.fromFrame){var n;r.element=(n=e.element)!==null&&n!==void 0?n:null}if(t.selectors!==!1||e.fromFrame){var i;r.target=(i=e.selector)!==null&&i!==void 0?i:[":root"]}if(t.ancestry){var o;r.ancestry=(o=e.ancestry)!==null&&o!==void 0?o:[":root"]}if(t.xpath){var u;r.xpath=(u=e.xpath)!==null&&u!==void 0?u:["/"]}return r}var tw=/\$\{\s?data\s?\}/g;function ni(e,t){if(typeof t=="string")return e.replace(tw,t);for(var r in t)if(t.hasOwnProperty(r)){var a=new RegExp("\\${\\s?data\\."+r+"\\s?}","g"),n=typeof t[r]>"u"?"":String(t[r]);e=e.replace(a,n)}return e}function O1(e,t){if(e){if(Array.isArray(t)){if(t.values=t.join(", "),typeof e.singular=="string"&&typeof e.plural=="string"){var r=t.length===1?e.singular:e.plural;return ni(r,t)}return ni(e,t)}if(typeof e=="string")return ni(e,t);if(typeof t=="string"){var a=e[t];return ni(a,t)}var n=e.default||xu();return t&&t.messageKey&&e[t.messageKey]&&(n=e[t.messageKey]),O1(n,t)}}var Eu=O1;function rw(e,t,r){var a=x._audit.data.checks[e];if(!a)throw new Error("Cannot get message for unknown check: ".concat(e,"."));if(!a.messages[t])throw new Error('Check "'.concat(e,'"" does not have a "').concat(t,'" message.'));return Eu(a.messages[t],r)}var aw=rw;function nw(e,t,r){var a=((r.rules&&r.rules[t]||{}).checks||{})[e.id],n=(r.checks||{})[e.id],i=e.enabled,o=e.options;return n&&(n.hasOwnProperty("enabled")&&(i=n.enabled),n.hasOwnProperty("options")&&(o=n.options)),a&&(a.hasOwnProperty("enabled")&&(i=a.enabled),a.hasOwnProperty("options")&&(o=a.options)),{enabled:i,options:o,absolutePaths:r.absolutePaths}}var ii=nw;function lr(){var e,t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:E;return t&&M(t)==="object"?t:M(r)!=="object"?{}:{testEngine:{name:"axe-core",version:x.version},testRunner:{name:x._audit.brand},testEnvironment:iw(r),timestamp:new Date().toISOString(),url:(e=r.location)===null||e===void 0?void 0:e.href}}function iw(e){if(!e.navigator||M(e.navigator)!=="object")return{};var t=e.navigator,r=e.innerHeight,a=e.innerWidth,n=ow(e)||{},i=n.angle,o=n.type;return{userAgent:t.userAgent,windowWidth:a,windowHeight:r,orientationAngle:i,orientationType:o}}function ow(e){var t=e.screen;return t.orientation||t.msOrientation||t.mozOrientation}function M1(e,t){var r=t.focusable,a=t.page;return{node:e,include:[],exclude:[],initiator:!1,focusable:r&&uw(e),size:sw(e),page:a}}function uw(e){var t=Lt(e.getAttribute("tabindex"));return t===null||t>=0}function sw(e){var t=parseInt(e.getAttribute("width"),10),r=parseInt(e.getAttribute("height"),10);if(isNaN(t)||isNaN(r)){var a=e.getBoundingClientRect();t=isNaN(t)?a.width:t,r=isNaN(r)?a.height:r}return{width:t,height:r}}function lw(e){if(Fu(e)){var t=" must be used inside include or exclude. It should not be on the same object.";cr(!Bt(e,"fromFrames"),"fromFrames"+t),cr(!Bt(e,"fromShadowDom"),"fromShadowDom"+t)}else if(ui(e))e={include:e,exclude:[]};else return{include:[N],exclude:[]};var r=P1(e.include);r.length===0&&r.push(N);var a=P1(e.exclude);return{include:r,exclude:a}}function P1(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],t=[];Au(e)||(e=[e]);for(var r=0;r<e.length;r++){var a=cw(e[r]);a&&t.push(a)}return t}function cw(e){return e instanceof E.Node?e:typeof e=="string"?[e]:(Cu(e)?(fw(e),e=e.fromFrames):si(e)&&(e=[e]),dw(e))}function dw(e){if(Array.isArray(e)){var t=[],r=xe(e),a;try{for(r.s();!(a=r.n()).done;){var n=a.value;if(si(n)&&(pw(n),n=n.fromShadowDom),typeof n!="string"&&!mw(n))return;t.push(n)}}catch(i){r.e(i)}finally{r.f()}return t}}function fw(e){cr(Array.isArray(e.fromFrames),"fromFrames property must be an array"),cr(e.fromFrames.every(function(t){return!Bt(t,"fromFrames")}),"Invalid context; fromFrames selector must be appended, rather than nested"),cr(!Bt(e,"fromShadowDom"),"fromFrames and fromShadowDom cannot be used on the same object")}function pw(e){cr(Array.isArray(e.fromShadowDom),"fromShadowDom property must be an array"),cr(e.fromShadowDom.every(function(t){return!Bt(t,"fromFrames")}),"shadow selector must be inside fromFrame instead"),cr(e.fromShadowDom.every(function(t){return!Bt(t,"fromShadowDom")}),"fromShadowDom selector must be appended, rather than nested")}function mw(e){return Array.isArray(e)&&e.every(function(t){return typeof t=="string"})}function cr(e,t){he(e,"Invalid context; ".concat(t,`
13
- See: https://github.com/dequelabs/axe-core/blob/master/doc/context.md`))}function I1(e,t){for(var r=[],a=0,n=e[t].length;a<n;a++){var i=e[t][a];if(i instanceof E.Node)i.documentElement instanceof E.Node?r.push(e.flatTree[0]):r.push(ce(i));else if(i&&i.length)if(i.length>1)hw(e,t,i);else{var o=Iu(i[0]);r.push.apply(r,re(o.map(function(u){return ce(u)})))}}return r.filter(function(u){return u})}function hw(e,t,r){e.frames=e.frames||[];var a=r.shift(),n=Iu(a);n.forEach(function(i){var o=e.frames.find(function(u){return u.node===i});o||(o=M1(i,e),e.frames.push(o)),o[t].push(r)})}function oi(e,t){var r,a,n,i,o=this;e=Wt(e),this.frames=[],this.page=typeof((r=e)===null||r===void 0?void 0:r.page)=="boolean"?e.page:void 0,this.initiator=typeof((a=e)===null||a===void 0?void 0:a.initiator)=="boolean"?e.initiator:!0,this.focusable=typeof((n=e)===null||n===void 0?void 0:n.focusable)=="boolean"?e.focusable:!0,this.size=M((i=e)===null||i===void 0?void 0:i.size)==="object"?e.size:{},e=lw(e),this.flatTree=t??Du(yw(e)),this.exclude=e.exclude,this.include=e.include,this.include=I1(this,"include"),this.exclude=I1(this,"exclude"),Pu("frame, iframe",this).forEach(function(u){Tu(u,o)&&vw(o,u.actualNode)}),typeof this.page>"u"&&(this.page=gw(this),this.frames.forEach(function(u){u.page=o.page})),bw(this),Array.isArray(this.include)||(this.include=Array.from(this.include)),this.include.sort(ku)}function vw(e,t){!Te(t)||Ia(e.frames,"node",t)||e.frames.push(M1(t,e))}function gw(e){var t=e.include;return t.length===1&&t[0].actualNode===N.documentElement}function bw(e){if(e.include.length===0&&e.frames.length===0){var t=St.isInFrame()?"frame":"page";throw new Error("No elements found for include in "+t+" Context")}}function yw(e){for(var t=e.include,r=e.exclude,a=Array.from(t).concat(Array.from(r)),n=0;n<a.length;n++){var i=a[n];if(i instanceof E.Element)return i.ownerDocument.documentElement;if(i instanceof E.Document)return i.documentElement}return N.documentElement}function Dw(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(t.iframes===!1)return[];var r=new oi(e),a=r.frames;return a.map(function(n){var i=n.node,o=qe(n,Wp);o.initiator=!1;var u=Rn(i);return{frameSelector:u,frameContext:o}})}function N1(e){var t=x._audit.rules.find(function(r){var a=r.id;return a===e});if(!t)throw new Error("Cannot find rule by id: ".concat(e));return t}function ww(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=e.scrollWidth>e.clientWidth+t,a=e.scrollHeight>e.clientHeight+t;if(r||a){var n=E.getComputedStyle(e),i=B1(n,"overflow-x"),o=B1(n,"overflow-y");if(r&&i||a&&o)return{elm:e,top:e.scrollTop,left:e.scrollLeft}}}function B1(e,t){var r=e.getPropertyValue(t);return["scroll","auto"].includes(r)}var Kt=Re(ww);function L1(e){return Array.from(e.children||e.childNodes||[]).reduce(function(t,r){var a=Kt(r);return a&&t.push(a),t.concat(L1(r))},[])}function _w(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:E,t=e.document.documentElement,r=[e.pageXOffset!==void 0?{elm:e,top:e.pageYOffset,left:e.pageXOffset}:{elm:t,top:t.scrollTop,left:t.scrollLeft}];return r.concat(L1(N.body))}var xw=_w;function Ew(){return Wt(ve)}function Aw(e){if(!e)throw new Error("axe.utils.getStyleSheetFactory should be invoked with an argument");return function(t){var r=t.data,a=t.isCrossOrigin,n=a===void 0?!1:a,i=t.shadowId,o=t.root,u=t.priority,s=t.isLink,l=s===void 0?!1:s,c=e.createElement("style");if(l){var d=e.createTextNode('@import "'.concat(r.href,'"'));c.appendChild(d)}else c.appendChild(e.createTextNode(r));return e.head.appendChild(c),{sheet:c.sheet,isCrossOrigin:n,shadowId:i,root:o,priority:u}}}var q1=Aw,ct;function Fw(e){if(ct&&ct.parentNode)return ct.styleSheet===void 0?ct.appendChild(N.createTextNode(e)):ct.styleSheet.cssText+=e,ct;if(e){var t=N.head||N.getElementsByTagName("head")[0];return ct=N.createElement("style"),ct.type="text/css",ct.styleSheet===void 0?ct.appendChild(N.createTextNode(e)):ct.styleSheet.cssText=e,t.appendChild(ct),ct}}var Cw=Fw;function Au(e){return!!e&&M(e)==="object"&&typeof e.length=="number"&&!(e instanceof E.Node)}function Bt(e,t){return!e||M(e)!=="object"?!1:Object.prototype.hasOwnProperty.call(e,t)}function j1(e){return Fu(e)||ui(e)}function Fu(e){return["include","exclude"].some(function(t){return Bt(e,t)&&ui(e[t])})}function ui(e){return typeof e=="string"||e instanceof E.Node||Cu(e)||si(e)||Au(e)}function Cu(e){return Bt(e,"fromFrames")}function si(e){return Bt(e,"fromShadowDom")}function $1(e,t){var r=ce(e);if(e.nodeType===9)return!1;if(e.nodeType===11&&(e=e.host),r&&r._isHidden!==null)return r._isHidden;var a=E.getComputedStyle(e,null);if(!a||!e.parentNode||a.getPropertyValue("display")==="none"||!t&&a.getPropertyValue("visibility")==="hidden"||e.getAttribute("aria-hidden")==="true")return!0;var n=e.assignedSlot?e.assignedSlot:e.parentNode,i=$1(n,!0);return r&&(r._isHidden=i),i}var Rw=$1;function Tw(e){var t,r,a=(t=(r=e.props)===null||r===void 0?void 0:r.nodeName)!==null&&t!==void 0?t:e.nodeName.toLowerCase();return e.namespaceURI==="http://www.w3.org/2000/svg"?!1:!!ve.htmlElms[a]}var Ru=Tw;function Tu(e,t){var r=t.include,a=r===void 0?[]:r,n=t.exclude,i=n===void 0?[]:n,o=a.filter(function(c){return Yt(c,e)});if(o.length===0)return!1;var u=i.filter(function(c){return Yt(c,e)});if(u.length===0)return!0;var s=z1(o),l=z1(u);return Yt(l,s)}function z1(e){var t,r=xe(e),a;try{for(r.s();!(a=r.n()).done;){var n=a.value;(!t||!Yt(n,t))&&(t=n)}}catch(i){r.e(i)}finally{r.f()}return t}function Su(e,t){return e.length!==t.length?!1:e.every(function(r,a){var n=t[a];return Array.isArray(r)?r.length!==n.length?!1:r.every(function(i,o){return n[o]===i}):r===n})}function Sw(e,t){return e=e.actualNode||e,t=t.actualNode||t,e===t?0:e.compareDocumentPosition(t)&4?-1:1}var ku=Sw;function ye(e){return e instanceof He?{vNode:e,domNode:e.actualNode}:{vNode:ce(e),domNode:e}}function kw(e,t,r,a){var n=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1,i=Array.from(e.cssRules);if(!i)return Promise.resolve();var o=i.filter(function(c){return c.type===3});if(!o.length)return Promise.resolve({isCrossOrigin:n,priority:r,root:t.rootNode,shadowId:t.shadowId,sheet:e});var u=o.filter(function(c){return c.href}).map(function(c){return c.href}).filter(function(c){return!a.includes(c)}),s=u.map(function(c,d){var f=[].concat(re(r),[d]),p=/^https?:\/\/|^\/\//i.test(c);return Mu(c,t,f,a,p)}),l=i.filter(function(c){return c.type!==3});return l.length&&s.push(Promise.resolve(t.convertDataToStylesheet({data:l.map(function(c){return c.cssText}).join(),isCrossOrigin:n,priority:r,root:t.rootNode,shadowId:t.shadowId}))),Promise.all(s)}var V1=kw;function Ow(e,t,r,a){var n=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1,i=Mw(e);return i?V1(e,t,r,a,n):Mu(e.href,t,r,a,!0)}function Mw(e){try{var t=e.cssRules;return!(!t&&e.href)}catch{return!1}}var Ou=Ow;function Pw(e,t,r,a,n){return a.push(e),new Promise(function(i,o){var u=new E.XMLHttpRequest;u.open("GET",e),u.timeout=se.preload.timeout,u.addEventListener("error",o),u.addEventListener("timeout",o),u.addEventListener("loadend",function(s){if(s.loaded&&u.responseText)return i(u.responseText);o(u.responseText)}),u.send()}).then(function(i){var o=t.convertDataToStylesheet({data:i,isCrossOrigin:n,priority:r,root:t.rootNode,shadowId:t.shadowId});return Ou(o.sheet,t,r,a,o.isCrossOrigin)})}var Mu=Pw;function Iw(e){if(typeof e!="string")return null;var t=e.trim().match(/^([-+]?\d+)/);return t?Number(t[1]):null}var Lt=Iw,Nw=(function(){function e(){if(E.performance&&E.performance)return E.performance.now()}var t=e(),r=!1;return{start:function(){this.reset(),r=!0,this.mark("mark_axe_start")},end:function(){this.mark("mark_axe_end"),this.measure("axe","mark_axe_start","mark_axe_end",!0),this.logMeasures("axe"),this.clearMark("mark_axe_start","mark_axe_end"),r=!1},auditStart:function(){r||this.reset(),this.mark("mark_audit_start")},auditEnd:function(){this.mark("mark_audit_end"),this.measure("audit_start_to_end","mark_audit_start","mark_audit_end",!0),this.logMeasures(),this.clearMark("mark_audit_start","mark_audit_end")},mark:function(n){var i;(i=E.performance)!==null&&i!==void 0&&i.mark&&E.performance.mark(n)},measure:function(n,i,o){var u,s=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;if((u=E.performance)!==null&&u!==void 0&&u.measure){try{E.performance.measure(n,i,o)}catch(l){this._log(l)}s||this.clearMark(i,o)}},logMeasures:function(n){var i=this,o,u,s=function(h){return Array.isArray(h)?h[h.length-1]:h},l=function(h){i._log("Measure "+h.name+" took "+h.duration+"ms")};if(!(!((o=E.performance)!==null&&o!==void 0&&o.getEntriesByType)||!((u=E.performance)!==null&&u!==void 0&&u.getEntriesByName))){var c=s(E.performance.getEntriesByName("mark_axe_start"))||s(E.performance.getEntriesByName("mark_audit_start"));if(!c){this._log("Axe must be started before using performanceTimer");return}for(var d=E.performance.getEntriesByType("measure").filter(function(m){return m.startTime>=c.startTime}),f=0;f<d.length;++f){var p=d[f];if(p.name===n){l(p);return}else n||l(p)}}},timeElapsed:function(){var n=e();return n-t},clearMark:function(){var n;if((n=E.performance)!==null&&n!==void 0&&n.clearMarks){for(var i=arguments.length,o=new Array(i),u=0;u<i;u++)o[u]=arguments[u];for(var s=0,l=o;s<l.length;s++){var c=l[s];E.performance.clearMarks(c)}}},reset:function(){t=e()},_log:function(n){gr(n)}}})(),ge=Nw;function H1(){if(N.elementsFromPoint)return N.elementsFromPoint;if(N.msElementsFromPoint)return N.msElementsFromPoint;var e=(function(){var n=N.createElement("x");return n.style.cssText="pointer-events:auto",n.style.pointerEvents==="auto"})(),t=e?"pointer-events":"visibility",r=e?"none":"hidden",a=N.createElement("style");return a.innerHTML=e?"* { pointer-events: all }":"* { visibility: visible }",function(n,i){var o,u,s,l=[],c=[];for(N.head.appendChild(a);(o=N.elementFromPoint(n,i))&&l.indexOf(o)===-1;)l.push(o),c.push({value:o.style.getPropertyValue(t),priority:o.style.getPropertyPriority(t)}),o.style.setProperty(t,r,"important");for(l.indexOf(N.documentElement)<l.length-1&&(l.splice(l.indexOf(N.documentElement),1),l.push(N.documentElement)),u=c.length;s=c[--u];)l[u].style.setProperty(t,s.value?s.value:"",s.priority);return N.head.removeChild(a),l}}typeof E.addEventListener=="function"&&(N.elementsFromPoint=H1());function Bw(e,t){return e.concat(t).filter(function(r,a,n){return n.indexOf(r)===a})}var Ba=Bw;function G1(e,t,r,a,n){var i=n||{};return i.vNodes=e,i.vNodesIndex=0,i.anyLevel=t,i.thisLevel=r,i.parentShadowId=a,i}function Lw(e,t,r){for(var a=ue.get("qsa.recycledLocalVariables",function(){return[]}),n=[],i=Array.isArray(e)?e:[e],o=G1(i,t,null,e[0].shadowId,a.pop()),u=[];o.vNodesIndex<o.vNodes.length;){for(var s,l,c=o.vNodes[o.vNodesIndex++],d=null,f=null,p=(((s=o.anyLevel)===null||s===void 0?void 0:s.length)||0)+(((l=o.thisLevel)===null||l===void 0?void 0:l.length)||0),m=!1,h=0;h<p;h++){var v,g,b,w=h<(((v=o.anyLevel)===null||v===void 0?void 0:v.length)||0)?o.anyLevel[h]:o.thisLevel[h-(((g=o.anyLevel)===null||g===void 0?void 0:g.length)||0)];if((!w[0].id||c.shadowId===o.parentShadowId)&&jr(c,w[0]))if(w.length===1)!m&&(!r||r(c))&&(u.push(c),m=!0);else{var D=w.slice(1);if([" ",">"].includes(D[0].combinator)===!1)throw new Error("axe.utils.querySelectorAll does not support the combinator: "+w[1].combinator);D[0].combinator===">"?(d=d||[]).push(D):(f=f||[]).push(D)}(!w[0].id||c.shadowId===o.parentShadowId)&&(b=o.anyLevel)!==null&&b!==void 0&&b.includes(w)&&(f=f||[]).push(w)}for(c.children&&c.children.length&&(n.push(o),o=G1(c.children,f,d,c.shadowId,a.pop()));o.vNodesIndex===o.vNodes.length&&n.length;)a.push(o),o=n.pop()}return u}function qw(e,t,r){e=Array.isArray(e)?e:[e];var a=Yn(t),n=F1(e,a,r);return n||Lw(e,a,r)}var qt=qw;function jw(e){var t=e.treeRoot,r=t===void 0?x._tree[0]:t,a=$w(r);if(!a.length)return Promise.resolve();var n=N.implementation.createHTMLDocument("Dynamic document for loading cssom"),i=q1(n);return zw(a,i).then(function(o){return W1(o)})}var U1=jw;function $w(e){var t=[],r=qt(e,"*",function(a){return t.includes(a.shadowId)?!1:(t.push(a.shadowId),!0)}).map(function(a){return{shadowId:a.shadowId,rootNode:ga(a.actualNode)}});return Ba(r,[])}function zw(e,t){var r=[];return e.forEach(function(a,n){var i=a.rootNode,o=a.shadowId,u=Vw(i,o,t);if(!u)return Promise.all(r);var s=n+1,l={rootNode:i,shadowId:o,convertDataToStylesheet:t,rootIndex:s},c=[],d=Promise.all(u.map(function(f,p){var m=[s,p];return Ou(f,l,m,c)}));r.push(d)}),Promise.all(r)}function W1(e){return e.reduce(function(t,r){return Array.isArray(r)?t.concat(W1(r)):t.concat(r)},[])}function Vw(e,t,r){var a;return e.nodeType===11&&t?a=Hw(e,r):a=Gw(e),Ww(a)}function Hw(e,t){return Array.from(e.children).filter(Uw).reduce(function(r,a){var n=a.nodeName.toUpperCase(),i=n==="STYLE"?a.textContent:a,o=n==="LINK",u=t({data:i,isLink:o,root:e});return u.sheet&&r.push(u.sheet),r},[])}function Gw(e){return Array.from(e.styleSheets).filter(function(t){return t.media?Y1(t.media.mediaText):!1})}function Uw(e){var t=e.nodeName.toUpperCase(),r=e.getAttribute("href"),a=e.getAttribute("rel"),n=t==="LINK"&&r&&a&&e.rel.toUpperCase().includes("STYLESHEET"),i=t==="STYLE";return i||n&&Y1(e.media)}function Y1(e){return e?!e.toUpperCase().includes("PRINT"):!0}function Ww(e){var t=[];return e.filter(function(r){return r.href?t.includes(r.href)?!1:(t.push(r.href),!0):!0})}function Yw(e){var t=e.treeRoot,r=t===void 0?x._tree[0]:t,a=qt(r,"video[autoplay], audio[autoplay]",function(n){var i=n.actualNode;if(i.preload==="none"&&i.readyState===0&&i.networkState!==i.NETWORK_LOADING||i.hasAttribute("paused")||i.hasAttribute("muted"))return!1;if(i.hasAttribute("src"))return!!i.getAttribute("src");var o=Array.from(i.getElementsByTagName("source")).filter(function(u){return!!u.getAttribute("src")});return!(o.length<=0)});return Promise.all(a.map(function(n){var i=n.actualNode;return Kw(i)}))}var K1=Yw;function Kw(e){return new Promise(function(t){e.readyState>0&&t(e);function r(){e.removeEventListener("loadedmetadata",r),t(e)}e.addEventListener("loadedmetadata",r)})}function X1(e){var t={cssom:U1,media:K1};return Z1(e)?new Promise(function(r,a){var n=J1(e),i=n.assets,o=n.timeout,u=setTimeout(function(){return a(new Error("Preload assets timed out."))},o);Promise.all(i.map(function(s){return t[s](e).then(function(l){return Xr({},s,l)})})).then(function(s){var l=s.reduce(function(c,d){return de({},c,d)},{});clearTimeout(u),r(l)}).catch(function(s){clearTimeout(u),a(s)})}):Promise.resolve()}function Xw(e){return M(e)==="object"&&Array.isArray(e.assets)}function Z1(e){return!e||e.preload===void 0||e.preload===null?!0:typeof e.preload=="boolean"?e.preload:Xw(e.preload)}function J1(e){var t=se.preload,r=t.assets,a=t.timeout,n={assets:r,timeout:a};if(!e.preload||typeof e.preload=="boolean")return n;var i=e.preload.assets.every(function(o){return r.includes(o.toLowerCase())});if(!i)throw new Error("Requested assets, not supported. Supported assets are: ".concat(r.join(", "),"."));return n.assets=Ba(e.preload.assets.map(function(o){return o.toLowerCase()}),[]),e.preload.timeout&&typeof e.preload.timeout=="number"&&!isNaN(e.preload.timeout)&&(n.timeout=e.preload.timeout),n}function li(e){var t=x._audit.data.checks||{},r=x._audit.data.rules||{},a=Ia(x._audit.rules,"id",e.id)||{};e.tags=Wt(a.tags||[]);var n=Q1(t,!0,a),i=Q1(t,!1,a);e.nodes.forEach(function(o){o.any.forEach(n),o.all.forEach(n),o.none.forEach(i)}),gu(e,Wt(r[e.id]||{}))}function Zw(e,t){function r(n){return n.incomplete&&n.incomplete.default?n.incomplete.default:xu()}if(e&&e.missingData)try{var a=t.incomplete[e.missingData[0].reason];if(!a)throw new Error;return a}catch{return typeof e.missingData=="string"?t.incomplete[e.missingData]:r(t)}else return e&&e.messageKey?t.incomplete[e.messageKey]:r(t)}function Q1(e,t,r){return function(a){var n=e[a.id]||{},i=n.messages||{},o=Object.assign({},n);delete o.messages,!r.reviewOnFail&&a.result===void 0?(M(i.incomplete)==="object"&&!Array.isArray(a.data)&&(o.message=Zw(a.data,i)),o.message||(o.message=i.incomplete)):o.message=a.result===t?i.pass:i.fail,typeof o.message!="function"&&(o.message=Eu(o.message,a.data)),gu(a,o)}}function Jw(e,t){return qt(e,t)}var dt=Jw;function ef(e,t){var r,a,n=x._audit&&x._audit.tagExclude?x._audit.tagExclude:[];t.hasOwnProperty("include")||t.hasOwnProperty("exclude")?(r=t.include||[],r=Array.isArray(r)?r:[r],a=t.exclude||[],a=Array.isArray(a)?a:[a],a=a.concat(n.filter(function(o){return r.indexOf(o)===-1}))):(r=Array.isArray(t)?t:[t],a=n.filter(function(o){return r.indexOf(o)===-1}));var i=r.some(function(o){return e.tags.indexOf(o)!==-1});return i||r.length===0&&e.enabled!==!1?a.every(function(o){return e.tags.indexOf(o)===-1}):!1}function Qw(e,t,r){var a=r.runOnly||{},n=(r.rules||{})[e.id];return e.pageLevel&&!t.page?!1:a.type==="rule"?a.values.indexOf(e.id)!==-1:n&&typeof n.enabled=="boolean"?n.enabled:a.type==="tag"&&a.values?ef(e,a.values):ef(e,[])}var tf=Qw;function rf(e,t){if(!t)return e;var r=e.cloneNode(!1),a=ua(r);if(r.nodeType===1){var n=r.outerHTML;r=ue.get(n,function(){return af(r,a,e,t)})}else r=af(r,a,e,t);return Array.from(e.childNodes).forEach(function(i){r.appendChild(rf(i,t))}),r}function af(e,t,r,a){return t&&(e=N.createElement(e.nodeName),Array.from(t).forEach(function(n){e_(r,n.name,a)||e.setAttribute(n.name,n.value)})),e}function e_(e,t,r){return typeof r[t]>"u"?!1:r[t]===!0?!0:kr(e,r[t])}function Pu(e,t){var r=[],a;if(x._selectCache)for(var n=0,i=x._selectCache.length;n<i;n++){var o=x._selectCache[n];if(o.selector===e)return o.result}for(var u=t_(t.include),s=r_(t),l=0;l<u.length;l++){a=u[l];var c=qt(a,e,s);r=a_(r,c)}return x._selectCache&&x._selectCache.push({selector:e,result:r}),r}function t_(e){return e.reduce(function(t,r){return(!t.length||!Yt(t[t.length-1],r))&&t.push(r),t},[])}function r_(e){return!e.exclude||e.exclude.length===0?null:function(t){return Tu(t,e)}}function a_(e,t){if(e.length===0)return t;if(e.length<t.length){var r=e;e=t,t=r}for(var a=0,n=t.length;a<n;a++)e.includes(t[a])||e.push(t[a]);return e}function ci(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;if(M(e)!=="object"||e===null)return{message:String(e)};var r={},a=xe(se.serializableErrorProps),n;try{for(a.s();!(n=a.n()).done;){var i=n.value;["string","number","boolean"].includes(M(e[i]))&&(r[i]=e[i])}}catch(o){a.e(o)}finally{a.f()}return e.cause&&(r.cause=t<10?ci(e.cause,t+1):"..."),r}var n_=(function(e){function t(r){var a,n,i=r.error,o=r.ruleId,u=r.method,s=r.errorNode;return wt(this,t),n=Ga(this,t),n.name=(a=i.name)!==null&&a!==void 0?a:"RuleError",n.message=i.message,n.stack=i.stack,i.cause&&(n.cause=ci(i.cause)),o&&(n.ruleId=o,n.message+=" Skipping ".concat(n.ruleId," rule.")),u&&(n.method=u),s&&(n.errorNode=s),n}return Ua(t,e),_t(t)})(Ci(Error)),di=n_;function i_(e,t,r){if(e===E)return e.scroll(r,t);e.scrollTop=t,e.scrollLeft=r}function o_(e){e.forEach(function(t){var r=t.elm,a=t.top,n=t.left;return i_(r,a,n)})}var u_=o_;function s_(e){var t=Array.isArray(e)?re(e):[e];return nf(t,N)}function nf(e,t){var r=e.shift(),a=r?t.querySelector(r):null;return e.length===0?a:a!=null&&a.shadowRoot?nf(e,a.shadowRoot):null}function Iu(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:N,r=Array.isArray(e)?re(e):[e];return e.length===0?[]:of(r,t)}function of(e,t){var r=Qp(e),a=r[0],n=r.slice(1),i=t.querySelectorAll(a);if(n.length===0)return Array.from(i);var o=[],u=xe(i),s;try{for(u.s();!(s=u.n()).done;){var l=s.value;l!=null&&l.shadowRoot&&o.push.apply(o,re(of(n,l.shadowRoot)))}}catch(c){u.e(c)}finally{u.f()}return o}function l_(){return["hidden","text","search","tel","url","email","password","date","month","week","time","datetime-local","number","range","color","checkbox","radio","file","submit","image","reset","button"]}var fi=l_,uf=[,[,[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,,,,,,1,1,1,1,,,1,1,1,,1,,1,,1,1],[1,1,1,,1,1,,1,1,1,,1,,,1,1,1,,,1,1,1,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,,,,1,1,1,,1,1,1,1,1,1,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1],[,1,,,,,,1,,1,,,,,1,,1,,,,1,1,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,1,1,1,1,,,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,,,1,,,,,1,1,1,,1,,1,,1,,,,,,1],[1,,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,,1,,1,,,,,1,,1,1,1,1,1,,,,1,1,1,1],[,1,1,1,1,1,,1,1,1,,1,,1,1,1,,,1,1,1,1,1,1,1,1],[,,1,,,1,,1,,,,1,1,1,,,,,,,,,,,1],[1,1,1,1,1,1,,1,1,1,,1,1,,1,1,1,1,1,1,1,1,,,1,1,1],[1,1,1,1,1,,,1,,,1,,,1,1,1,,,,,1,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,,1,1,,1,1,1,1,1,1,1,,1],[,1,,1,1,1,,1,1,,1,,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,,,1,1,1,,,1,1,,,,,,1,1],[1,1,1,,,,,1,,,,1,1,,1,,,,,,1,,,,,1],[,1,,,1,,,1,,,,,,1],[,1,,1,,,,1,,,,1],[1,,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,,1,,,1,1,1,1],[,1,1,1,1,1,,,1,,,1,,1,1,,1,,1,,,,,1,,1],[,1,,,,1,,,1,1,,1,,1,1,1,1,,1,1,,,1,,,1],[,1,1,,,,,,1,,,,1,1,1,1,,1,1,1,1,1,1,,1,1,1],[,1,,1,1,1,,,1,1,1,1,1,1,,1,,,,,1,1,,1,,1],[,1,,1,,1,,1,,1,,1,1,1,1,1,,,1,1,1],[,1,1,1,,,,1,1,1,,1,1,,,1,1,,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1],[,1,1,1,,1,1,1,,1,,,,,1,1,1,,,1,,1,,,1,1],[,,,,1,,,,,,,,,,,,,,,,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,,1,1,1,,1,1,,,,1,1,1,1,1,,,1,1,1,,,,,1],[1,1,1,1,,,,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,,,,,,,1,,,,,,,1],[,1,1,,1,1,,1,,,,,,,,,,,,,1],,[1,1,1,,,,,,,,,,,,,1],[,,,,,,,,1,,,1,,,1,1,,,,,1]],[,[1,1,,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,,1,1,1,1,,1,1,,1,1,1,1,1,1,1,,1,1,1,1,,1],[,,,1,,,,,,,,,,,,,,,1],[,1,,,1,1,,1,,1,1,,,,1,1,,,1,1,,,,1],[1,,,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1,,,1,,,,1],,[,1,1,1,1,1,,1,1,1,,1,1,,1,1,,,1,1,1,1,,1,1,,1],[,1,,,1,,,1,,1,,,1,1,1,1,,,1,1,,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,,,1,1,1,1,1,1,1,,,1,,,1,,1],[,1,,,,,,,,,,1,1,,,,,,1,1,,,,,1],[,,,,,,,1,,,,1,,1,1],[,1,1,1,1,1,1,1,,,,1,1,1,1,1,,,1,1,,1,1,1,1,1],[,1,,,1,1,,1,,1,1,1,,,1,1,,,1,,1,1,1,1,,1],[,1,1,1,,1,1,,1,1,,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1],[,,,,,,,,,,,,,,,,1],,[,1,1,1,1,1,,1,1,1,,,1,,1,1,,1,1,1,1,1,,1,,1],[,,1,,,1,,,1,1,,,1,,1,1,,1],[,1,1,,1,,,,1,1,,1,,1,1,1,1,,1,1,1,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[1,1],[,1,,,,,,,,,,1,1,,,,,,1,1,,1,,1,,1,1],,[,1,1,,1,,,1,,1,,,,1,1,1,,,,,,1,,,,1],[1,1,,,1,1,,1,,,,,1,,1]],[,[,1],[,,,1,,,,1,,,,1,,,,1,,,1,,,1],[,,,,,,,,,,,,,,,,,,1,1,,,,,,1],,[1,,,,,1],[,1,,,,1,,,,1],[,1,,,,,,,,,,,1,,,1,,,,,,,,,1,1],[,,,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,1,,,,1,,1],[,1],[,1,,1,,1,,1,,1,,1,1,1,,1,1,,1,,,,,,,1],[1,,,,,1,,,1,1,,1,,1,,1,1,,,,,1,,,1],[,1,1,,,1,,1,,1,,1,,1,1,1,1,,,1,,1,,1,1,1],[1,1,1,1,1,,1,,1,,,,1,1,1,1,,1,1,,,1,1,1,1],[1,,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,1],,[,1,,,,,,1,1,1,,1,,,,1,,,1,1,1,,,1],[1,,,,,1,,1,1,1,,1,1,1,1,1,,1,,1,,1,,,1,1],[1,,1,1,,,,,1,,,,,,1,1,,,1,1,1,1,,,1,,1],[1,,,,,,,,,,,,,,,,,1],[,,,,,1,,,1,,,,,,1],[,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,,1],[,1,,,,,,,,,,,,,,1],[,1,,,,1]],[,[1,1,1,,1,,1,1,1,1,1,1,1,1,1,,1,,1,,1,1,,,1,1,1],[,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1],,[,,,,,,,,,,,,,,,,,,1],[1,,,,,,,,,1,,,,1],[,,,,,,,,,,,,,,,,,,1],,[1,1,,,,1,1,,,,,,1,,,,1,,1,,1,1,,1],[1],[,,,,,,,,,,,1,,,,,,,,,,,1],[,1,,,,,,,1,1,,,1,,1,,,,1,,,,,,,1],[,,,,,,,,,,,,,,,,1,,,,,1],[,,1,,,,,1,,1],[1,,,,1,,,,,1,,,,1,1,,,,1,1,,,,,1],[,,,,,1],[,,,,,,,,,,,,,,,,,,,1],[1,,,1,1,,,,,,,1,,1,,1,1,1,1,1,1],[,,,,,1,,,,,,,1,,,,,,,1],,[,,1,1,1,1,1,,1,1,1,,,1,1,,,1,1,,1,1,1,,,1],[,,,,,,,,,,,,,,,,,,1],[,1,,,,1],,[1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[,,,1,1,1,1,,,,,,1,,1,,,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,,,,1,,1,,,1,1,1,1,1],[,,,,,,,,,,,1,,,,,,,,,1,,,,1],[,1,1,,1,1,,1,,,,1,1,,1,1,,,1,,1,1,,1],[,1,,1,,1,,,1,,,1,1,,1,1,,,1,1,1],[,1,1,1,1,1,,1,1,,,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,,,,,,,,,1,,1,,1,1,,,,1,,,1],[,1,,,1,1,,,,,,,,,1,1,1,,,,,1],[1,,,1,1,,,,1,1,1,1,1,,,1,,,1,,,1,,1,,1],[,1,1,,1,1,,1,1,,,,1,1,1,,,1,1,,,1,1,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,,1,1,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,,,,1,,,,,,,,,1],[,1,,,,,,,,1,,,,,1,,,,1,,,1],[,1,1,1,1,,,1,1,1,1,1,,1,,1,,1,1,1,1,1,1,1,1,1,1],[,,,,,1,,1,,,,,1,1,1,1,1,,,1,,,,1],[,1,,,,,,,,1,,,,,,,,,,,,1],[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,,1,,1,1,,,,1,,1,1,1,1,1,,1,1,,,,,,1],[,1,1,1,1,1,1,1,,1,1,,,1,1,,,,1,,1,1,,1,1],[,,,,,,,,,,,,,,,,,,,,,,,,1],[,1,1,,1,1,1,1,,1,,,1,1,1,1,,,1,,,,,,,1],[,1,,,,,,,,1,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1],[,1,1,,,,,,,,,,,,1,1,,,,,,1],[,1,,,,,,,1],[,,,,,,,,,,,,,,1,,,,,1,,,,,,1],[1,1,,,1,,,1,1,1,,,,1],,[,,,,,,,,,,,,,1,,,,,,,,,,1],[,,,,,,,,,1,,,,,,,,,1,,,,,,,1],[1,1,1,,1,,1,1,1,1,1,1,1,1,,1,,,1,,1,,,1,1],[,,,,,,,,,1],[,1,,,,1,,,,,,1,,,1,,,,,1],[,1,1,,1,1,,,,,,,,,,,,,,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,,,1,1,,1,1,1,1,,,,1,1,,,,1,,1],[1,1,1,1,1,1,,,1,1,1,1,1,1,,1,1,,1,1,1,,1,1,,1,1],[,,,,,,,,,,,,,,,1,,,,1],,[1,1,,1,,1,,,,,,1,,1,,1,1,,1,,1,1,,1,1,,1],[,,1,,,,,,1,,,,1,,1,,,,,1],[1,,,,,,,,,1,,,,,,1,,,,1,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,,,1,,1,,,,,,1,,,1,,,,,,,,1],[,1,,1,,,,,,,,,,,,1],,[1,1,,,,,,,,,,,,,,,,,,,,,,1,1],[1]],[,[1,,,,,,,,,1,,,,,1,,1,,1],[,1,1,,1,1,,1,1,1,,,1,1,1,,,,1,,,1,,,,1],[,1,,,,,,,1,,,,1,,,,,,1],[1,1,1,1,1,1,,,,1,,,,,,,,,1,1,1,1],[1],[,1,1,,,1,1,,,,,1,,1,,,,,,,,1,,,,1],[1,,1,,,1,,1,,,,,1,1,1,1,,,,1,,,,1],[,,1,,,,,,,1,,,,,,,1,,,,,,,1],[1,,,,,,,,,,,,,,1,,,,1],[,,,1,,1,,,,,1,,,,1,1,,,,1],[1,,,,,1,,,,1,,1,1,,,1,1,,1,1,1,,1,1,1,,1],[,1,1,,,,,1,,1,,1,1,1,,1,1,,,1,,1,1,1],[,1,,,,1,,,,1,,,1,,1,1,,,1,1,,,,,,1],[1,,1,1,,1,,1,1,,1,,1,1,1,1,1,,,1,1,,,,,,1],[1,,,,,,,,,,,,,,,,,,1,,,1,,1],[,,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,,,,1,,1],[,1,,,,1,,,1,1,,1,,,1,1,,,1,,,1,,,1,1],[1,1,,1,1,1,,1,1,1,,1,,1,1,1,,,1,,1,1],[1,,1,1,1,1,,,,1,,1,1,1,,1,,,1,1,1,,1,1,1,1,1],[1,,,,,,,,,,,,,1],[,,1,,,,,,,,,,,,,,,,,,,,1],[1,,,,,,,,,,,1,,1,,1,,,,1],[,,,1,,,,,,,,,1],[,1,,,,,,,,,,,,,,1,,,,,,,,,1],[,,,,,,,,1,1,,,,,,,,,1,,,,,,,,1]],[,[1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,,1,1,1,1,1,,,1,1,1],[,,,,,1,,,,1,1,1,,,1,1,,,1,,1,1,,1],[,,,,,,,,,,,,,,,,,,,1,1],[,1,,,,,,1,,,,,,,,,,,,,1],[,,1,,,1,,1,1,1,,1,1,,1,,,,1,,1,1],,[,,1,,,1,,,,,,1,,,,1],[,,,,,,,,,1,,,,,,,,,,1],[1,1,1,1,1,1,,1,1,1,,,1,1,,1,,1,,,1,1,1,,,1],[,,,,,1,,,,,,,,,,,,,1],[,1,,,,,,,,,,,,1,,1,1,,1,,,1],[,,,,,1,,,,,,,,,,,,,,1],[,1,1,1,1,,,,,1,,,1,,1,,,,1,1,,,,1,1],[,1,,,1,,,1,,1,1,,1,,,,,,,1],[,,1,,1,,,1,,,,,,,,,,,1,1,,,,1],[,1,,,,,,,,,,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,1],[,1,1,,,,,,,,,,,,,,,,1,,1,1],[,,,,,,,,,,,,1],,[,1,1,1,1,,,,1,1,,1,1,1,1,1,1,,1,1,1,1,,1,,1],[1,,,,1,,,,,,,,,,1],[1,,,,,,,,,1],,[,1,,,,1,,,,,,,,,,,,,,,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,,,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,,1,1,1,,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,,,1,1,1,,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1,,1,1,1,1],[1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,,,1,1,1,1,,1,,,,1,1,,,1,1,,1],[,1,1,,1,,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,,,,,,,,,,1],[1,1,1,,,,,1,1,1,,1,1,1,1,,,1,1,,1,1,,,,,1],[,1,,,,,,,1,1,,,1,1,1,,1,,,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,1],[,1,,,,1,,,,1,,,1,,,,1,,,,,,,1,1],[,1,1,1,1,1,,,1,1,1,,1,1,1,1,,,1,1,1,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1],[1,1,1,,1,,,1,1,1,1,,1,1,1,1,,,,1,,1,,1,,,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,1,,,,,,,,,1,1,,,,,,,,,1],,[,1,,1,,1,,1,,1,,1,1,1,1,1,,,1,,1,,1,,,,1],[,1,,,1,1,,1,1,1,,,1,1,1,1,1,,1,1,1,,1,,,1],[1,,,1,,,,1,1,1,,,,,1,1,,,,1,,1],[1,1,,1,1,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,,,,,,,,1,,1,,,,,,,,1,,1],[,1,,,,1,,1,1,,,,1,1,,1,,,,1,1,1,,1],,[,1,,,,,,1,,,,,,,1],[,,,,,,,,1,,,,1,,1,,,,,,,,,,,,1]],[,[,1,1,,1,1,1,1,,1,1,1,,1,1,,1,1,,1,1,1,1,1,1,,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,1,,,1,,,,,,,,1,,,,,,1,,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,,1,1,1,,1,1,1,1,,,1,1,1,1,,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,,1,,1,,1,,1,1,1,1,1,1,1,,1,1,,,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1],[,1,1,,,,,1,1,1,,,1,,1,1,,,,1,,1,,,1,1],[,,,,,,,1,,,,1,1,1,1,1,,1,,,,,,,,1],[1,1,1,1,,1,1,1,,1,,1,1,1,1,,1,,1,,1,1,,,1,,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,1,1,,1,,1,1,1,,1,,1,1,,1,1,,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,,,,,,,1,,,,,1,,1],[,1,1,1,,1,,1,,1,,,,1,,1,,,1,,,,,,1,1],[,1,,,1,1,,1,,1,,1,1,1,1,1,,1,1,,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,,,1,,1,,1,,,,,,1,,1,,,,1,1]],[,[,1,,1,,,,,,,,,,,,,,,1,,,,1],[,,,,,,,,,1,,1,1,1,,1,,,1,,1,1],[1,1,,,,,,,1,,,,,,,1,,,,,,1],[,1,,,,,,,,,,1,,,,,,,,,1,1],,[,,,,,,,,,,,,,,,1,,,,1,,1],[,,1,1,,1,,1,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,,,1,1],[,1,,,,,,,,,,,,,1],[1,,1,1,,,,1,,,,,,,,,1,,,1,,,1,1],[,1,1,,1,1,,1,1,1,1,1,1,1,1,1,,,1,1,,1,1,,1],[,1,,,1,1,,,,,,1,,1,,1,,,1,,1,1],[1,1,1,1,,1,,1,,1,,1,1,,1,1,1,1,1,,1,1,1,1,1],[,1,1,,,1,,1,,1,1,1,,,1,1,1,,1,1,1,1,,1,1],[,,,,1,,,1,,,,,,,1,,,,1,1],[,1,,,,,,,,,,1,,1,,1,,,,,1,,,,,1],,[1,1,,1,,1,,1,1,,,,,,1,1,,,1,1,1,1,1,1,1,1,1],[1,1,,1,,,,,,1,,,,,,1,1,,,,1,1,,,1],[,1,1,,1,1,,,,1,,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1],[,1,1,,,1,,,,1,,,,1,1],[,,,,1],[,,,,,,,,,1,,,1],,[,,1,,1,,,,,,,,,1,,,,,,,,,,,,1],[,,,,,,,,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,1,,1,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,,,,,1],[,1,,1,,,,,,1,,,,,1,1,,,,,1,1],[,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,,,1,,1,1,1],[,1,,,,1,,,,,,,1],[,1,,,1,,,1,,1,,1,1,,1,,,,,1,,1,,,,1,1],[,1,,,1,,,1,1,1,,1,1,1,1,1,,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1],[,,,,,,,,,,,,,,,,,,,,1],[,1,1,1,,,,1,1,,,,,,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,1,1,1,1,1,1,1,,1,,1,1,1,1,1,,1,1,,1,1,1,1,1],[,1,,,,1,,,,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,1,,,,,,,,1,,,,,,,,,,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,,1,1,1,,1,1,1,,,1,1,1,1,1,1,1,1,1,1,,1,,1],[1,1,,,,,,,1,1,,,,,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,,1,1,1,,1,,1,1,1,1,,1,1,,1,1,1,1],,[,1,1,,,,,1,,1,,,,1,1,1,,,1,,,,,1],[,,,,,,,,,,,,,1],[,,,,,1,,,,,,,,1,1,,,,,1,,1,,,1,1],[,,,,,,,,,,,,,,1]],[,[,1],,,,,,,,,,,,,,,,,,,,[1,1,1,1,1,,1,1,1,1,,1,1,1,1,,1,1,1,1,,,1,1,1,1,1],[,1,,1,,1,,,1,1,1,,1,1,1,1,1,,,1,,,,1,,1,1],[,1,,1,,1,,,1,,,,,1,,,,,,1,1],[,1,,1,,,,,1,,,,1,,1,1,1,1,1,1,1,1,,1],[,1,,,,,,,,,,,,,,,1]],[,[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,,,,,,,,,1,1,,,,1],[,,,,,,1],[,,1],[,1,1,,,1,,1,,1,1,,1,1,1,,,,1,1,1,,,,,1],,[,1,,,,1,,,,,,1,,,1,,,,1,1,,1],[,,,,,,,1,,,,,,,,,1],[,1,,,,1,1,,,,,,1,1,1,,,,1,,1,1],[,,,,,,,1,,1,,,,,,,,,,1],[,1,1,,,,,,1,1,,,,1,,,,,,,1,,,1],,[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,,1,,,1,,,,,1,,1,,1,,1,,,,,1],[1,1,1,1,1,1,1,1,,,,,1,1,,1,1,,1,,,1,,1],[,,,,,,,,,,,,,,1,,,,,,1],,[,,,,,,,,,1,,,,,,1,,,,,1],[,,1,,,,,,,1,,,1,1],[,,,1,,,,,1,,,,,1,,,,,,1,,,,1],[1,,1,1,,1,1,1,1,1,,1,,,,1,1,1,,,1,1,,,,1,1],,[1,1,,,,,,,,,,1,,1,,1,,,1],[,,,,1,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,1,,,,,1,,1],[,,,,,,,,1]],[,[1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,,1,1,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,,1,,,1,,,,,,,,1,,,,,,1,,,,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,,1,,,,1,1,1,1,1,1,,1,1,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1],[,,1,1,1,1,,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,,,,,,,1,,1,1,,1,1,1,,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,1,1,,1,,1,,1,1,1,1,1,,,,1,1,1,1,,1,1,1,1,1],[1,1,1,1,,1,,,,,,1,,1,,,,,1,1,,,,,1],[1,,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,1,,1,,1,,,,1,1,1,1,1,,,1,1,,1,,1],[,1,1,1,1,,,,,1,,1,1,1,1,1,,,1,1,,,,1,1,1],[,1,1,1,1,1,,1,,,,,1,,1,,1,,,1,,,1,1,,1]],[,[1,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,,,,,,1,,,,,1,1,,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,,,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,,1,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,,,,,,1,,1,1,,1,1,1,1,1,,,1,,1,,1],[1,1,1,,1,1,1,1,,,,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,,1,1,,1,1,1,1,1,,1,1,1,1,1,1],[,1,,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,,1,,,,,,,,,,1,1,1,1,1,1,1,,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,,,1,1,,,,,,1,1,1,1,1,,,,1,1,1,,1,1,1],[1,1,1,1,1,1,1,1,1,,,,1,1,1,1,1,1,1,,1,1,,1,1,1],[,1,1,1,,1,,1,1,1,1,,,1,1,1,,1,1,1,1,1,,,1,1],[1,1,,,,1,,,1,1,1,,1,,1,,1,,1,1,1,1,1,,1,,1],[,1,,,,,,,1,,1,,1,1,1,1,,,,,,,,,1]],[,[,,,,,,,,,,,,,1,1,,,,1],[,1,,,,,,,,1,,,1,,,,,,1,,,1,,,,1],,[,1,,,,1,,1,,1,1,,1,1,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,1],[1,1,1,,,1,,,,,,,,,1,1,,,,,,,,,,1],[,1,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1,,,1],[,,,,,,,,,1],[1,1,,,,,,1,1,1,,1,1,,,,1,1,,1,,1,1,1,,1],[,1,1,1,,1,1,,,1,,1,1,1,1,,,,,,,1,,1],[,1,1,1,1,,,1,,1,,,,1,1,1,1,,1,1,,1],[,1,,,1,1,,1,,,,1,,1,1,,1,,1,,,1,,,1,,1],[,,,,,,,,,,,1],[,,,,,,,,,1,,,,,,,,,,,,,1],,[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1],[,1,,,,,,,1,1,,1,,,,,1,,,1,,1],[,1,,,,1,,,1,,,,,,,,1,,1,,,1],[,,,,,,,,,,,,,1,1,,,,1,,,1],[,,,,,1,,,1,,,,1],[,1],,[,1],[1,,,,,,,,,,,,,,1,,,,,1]],[,[,1,,,,1,1,1,1,1,1,,1,1,1,1,1,,1,1,,1,1,,,1],[,,1,,,,,,,,,1],,,[1,,,1,1,,,,,,,,1,1,,1,1,,1],,[,,,,,,,,,,,,,,,,,,1,,1],,[1,,,1,1,,1,1,,,,,1,,1,,,,,1,1,,1],,[,1,,,,,,,,1,1,1,1,1,,1,1,,,,1,1],[,,,,,,,,,,,,,,,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,,1,1,1,1,1,1],[,,,,,,,,,,,1,,1,,,1],[1,,,,,,,,,,,,,,,,,,1,,1],,,[,1,,,,,,,,,,,,,,1,,,,1,1],[,,,,,,,,,1,,,1,,,,,,,,,,1],[,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,1,1,,,,,,1],,[,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,,1,1,,1,1,1,1,1,1,,,1,1,1,1,1,,1,1],[,1,,,,,,,,1],[,,,,1,,,1,,,1,1,,,,,,,,,,1,,,,1],[,1,,1,1,,,1,1,1,,,,1,1,1,1,,1,1,1,1,,1],[,,,,,,,1],[,1,1,,,,,1,,1,,,,,,1,,,,,,1,,1,,1],[,1,,,,,,1,,,,1,,,,,,,,,,1],[,,1,1,,1,1,1,1,1,1,1,1,1,1,,,,1,,1,1,1,1,,1],[,1,,,,,,,,1],[,1,1,,1,,,,,,,,1,,,,,,1,,,1,,1,,1],[,1,,1,,1,,1,1,1,,1,1,1,,1,,,1,1,,1,1,1,1,1],[,1,1,1,1,1,,,1,1,,,,1,1,1,,,,1,1,,,1,1],[,,1,1,1,1,,1,,1,,1,,1,1,1,1,,,,,1,,1,,1],[1,1,1,1,1,1,1,1,,1,,1,,1,1,1,,,1,1,,,,1,,1],[,,,1],,[,1,1,,1,,,1,1,1,,1,1,1,1,1,1,,1,1,,1,1,1,1,1,1],[,1,,,,,,1,,1,,1,,,,,,,1,1,,1,1],[,,,,,,1,,1,1,,1,,1,,,,,,,,,,1],[,1,1,,1,,,,1,,,,1,1,1,,,,1,,1,1,1,,1,1],,[,1,1,,,,,,,,,,,,,1,,,1,,,,,1],[,1,,,,,,,,,,,,,,,,,,,,,,1],[,1,1,,,,,,,1,,,,1,,,,,1,,,,,,,1]],[,[,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[,1,1,1,1,1,,1,,1,1,,,1,1,1,1,,1,,,,,1,1,1],[,,1,1,,1,,1,1,,,,1,1,1,1,,,1,,1,1,1,1,,1],[,1,,1,,,,,,,,1,,1,,1,,,,,,,,,,1],[,,1,,1,,,1,,,,,1,1,,,1,,1,1,1,1],[,1],[,1,1,,1,,1,1,,1,,,1,1,1,,,,1,,,1,,1],[1,1,,1,1,1,,,,,,,,,,,,,1,,1,1,1],[,1,1,,,,,,,1,,,1,,1,,1,,1,1,,,1,,,1],[,,1,,,,,,,,,,,,,,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,,1,,,,,1,1,1,,,1,,1,,,,1],[,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,1,1,1,,1,,1,1,1,,,1,1,1,1,,,,1,1],[,,,1,1,,,1,,1,,1,,1,1,1,1,,1,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,,,,,,,,,,,,,,,,1],[,1,1,,1,1,,1,,1,,,,1,1,,,1,1,,1,1,,1],[,1,1,1,1,1,,,1,1,1,,1,1,1,1,1,1,1,1,,1,1,,,1],[,1,1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,,1,,,1,,,1,,1,1,1,1,1,,1,,1,1],[,,,,,1,,,,1,,,,,1,1,,,,1],[,1,,1,1,1,,1,,,1,1,1,,,1,,,1,,1,,,1],[,,1,,,,,,,,,1,,1,,,,,1,,1],[,1,1,,,,,,,,1,1,1,,,,,,,,1,,,,,1],[,,,,,,,,1,,,,,1,,,1]],[,[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,,,1,1,1,1,1,1,1,1,,,,,,,,,1,1],[,,,,,,,,1,,,,1,,1,,1],[,1,,,1,1,,1,,,,1,,,,,,,,1],[,1,,1,,1,,,,1,1,,1,,1,,,,1,1,1,1,1,,,1],,[,1,,,,,,,,1,,,1,1,,,1,,1,1,,1,,1],[,1,,,1,,,,,,,,1,,,,,,,1],[1,1,,,,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1],,[,1,,,,,,1,,1,,1,1,1,1,1,,,1,,1,1,,,,1],[,1,1,,,1,,1,,1,,,1,1,1,1,,,1,,,1,,,,1],[,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,,,1,,1],[,1,,,1,1,,1,1,,,1,1,,1,1,,1,,1,,1],[1,,1,,,,,1,,1,,1,1,1,1,,,,,1,1,,,,1,1],[,1,1,,,,,1,1,,,1,,1,1,1,1,,,,,,,,,,1],,[,1,1,,,1,,,,1,,1,1,1,1,1,,,,1,,,,1,,1],[,,,1,1,,,1,,,,,1,,1,1,1,,1,1,,,,,,1],[,1,,,,,,,,,,,1,,,,1,,,,,,,1,,1],[,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,,1,1,,1,1,1,1],[,1,,,,,,,,,,,,,,,,,,,1],[,1,,,,,,1,,,,,1,,1,,,1,1,,1,1,,1],[,1,,,,,,1,,,,,1,1,,,,,,,,1,,,,1],[,,,,,,,,,,,,,,,,,,1,,,1,,,,,1],[,,,,,,,1,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,,1,,,,,,,1,,,,,,,,1,,,1],[,1,,,,,,,1],[,,,,,,,,,,1],[,1,,,,,,1,1,,,,,,1],,[,1,1,,,,,,1,,,,,1,1,,,,1],[1,,1,,1,,,,,1,,,,,1,,,,,,,,,1,1],[,1,1,,,,,,,,,1,1,1,1,,,,1,,,,,1,,,1],,[,1,1,,1,,,1,1,,,1,,,1,1,1,,1,,1,1,1,,,,1],[,,,,,1,,,,,1,,,1,1,,,1,,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,1,1,,1,,,,1,,,,,,,,1],[,,,1,,,,,1,,,,,1,,1,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,,1],[,1,,,,,,1,,,,,,,1,1,1,,,1],[,1,,,,,,,,,,1,1,1,,,,,1,,,1],[,,,,,1,,1,,,,,1,1,1,,1,1,,1,1,1,,,1,1],[1,1,,,,,,,1,,,,,1,1,,,,,,,,,,,1],,[,1],[,,,,,,,,,,,,,,,,,,,,,,,,1],[,,1,,,,,1,,,1,,,,1,,1],[,1,,,,,,,,,1]]];function c_(e){for(var t=uf;e.length<3;)e+="`";for(var r=0;r<=e.length-1;r++){var a=e.charCodeAt(r)-96;if(t=t[a],!t)return!1}return!0}function sf(e){e=Array.isArray(e)?e:uf;var t=[];return e.forEach(function(r,a){var n=String.fromCharCode(a+96).replace("`","");Array.isArray(r)?t=t.concat(sf(r).map(function(i){return n+i})):t.push(n)}),t}var pi=c_,d_=(function(e){function t(r){var a;return wt(this,t),a=Ga(this,t),a._props=p_(r),a._attrs=m_(r),a}return Ua(t,e),_t(t,[{key:"props",get:function(){return this._props}},{key:"attr",value:function(a){var n;return(n=this._attrs[a])!==null&&n!==void 0?n:null}},{key:"hasAttr",value:function(a){return this._attrs[a]!==void 0}},{key:"attrNames",get:function(){return Object.keys(this._attrs)}}])})(He),Nu={"#cdata-section":2,"#text":3,"#comment":8,"#document":9,"#document-fragment":11},lf={},f_=Object.keys(Nu);f_.forEach(function(e){lf[Nu[e]]=e});function p_(e){var t,r,a,n=(t=e.nodeName)!==null&&t!==void 0?t:lf[e.nodeType],i=(r=(a=e.nodeType)!==null&&a!==void 0?a:Nu[e.nodeName])!==null&&r!==void 0?r:1;he(typeof i=="number","nodeType has to be a number, got '".concat(i,"'")),he(typeof n=="string","nodeName has to be a string, got '".concat(n,"'")),n=n.toLowerCase();var o=null;n==="input"&&(o=(e.type||e.attributes&&e.attributes.type||"").toLowerCase(),fi().includes(o)||(o="text"));var u=de({},e,{nodeType:i,nodeName:n});return o&&(u.type=o),delete u.attributes,Object.freeze(u)}function m_(e){var t=e.attributes,r=t===void 0?{}:t,a={htmlFor:"for",className:"class"};return Object.keys(r).reduce(function(n,i){var o=r[i];if(he(M(o)!=="object"||o===null,"expects attributes not to be an object, '".concat(i,"' was")),o!==void 0){var u=a[i]||i;n[u]=o!==null?String(o):null}return n},{})}var cf=d_;function h_(e,t){if(e=e||function(){},t=t||x.log,!x._audit)throw new Error("No audit configured");var r=x.utils.queue(),a=[];Object.keys(x.plugins).forEach(function(i){r.defer(function(o){var u=function(l){a.push(l),o()};try{x.plugins[i].cleanup(o,u)}catch(s){u(s)}})});var n=x.utils.getFlattenedTree(N.body);x.utils.querySelectorAll(n,"iframe, frame").forEach(function(i){r.defer(function(o,u){return x.utils.sendCommandToFrame(i.actualNode,{command:"cleanup-plugin"},o,u)})}),r.then(function(i){a.length===0?e(i):t(a)}).catch(t)}var df=h_,La={},ff;function pf(e){return La.hasOwnProperty(e)}function Bu(e){return typeof e=="string"&&La[e]?La[e]:typeof e=="function"?e:ff}function v_(e,t,r){La[e]=t,r&&(ff=t)}function g_(e){var t=x._audit;if(!t)throw new Error("No audit configured");if(e.axeVersion||e.ver){var r=e.axeVersion||e.ver;if(!/^\d+\.\d+\.\d+(-canary)?/.test(r))throw new Error("Invalid configured version ".concat(r));var a=r.split("-"),n=H(a,2),i=n[0],o=n[1],u=i.split(".").map(Number),s=H(u,3),l=s[0],c=s[1],d=s[2],f=x.version.split("-"),p=H(f,2),m=p[0],h=p[1],v=m.split(".").map(Number),g=H(v,3),b=g[0],w=g[1],D=g[2];if(l!==b||w<c||w===c&&D<d||l===b&&c===w&&d===D&&o&&o!==h)throw new Error("Configured version ".concat(r," is not compatible with current axe version ").concat(x.version))}if(e.reporter&&(typeof e.reporter=="function"||pf(e.reporter))&&(t.reporter=e.reporter),e.checks){if(!Array.isArray(e.checks))throw new TypeError("Checks property must be an array");e.checks.forEach(function(C){if(!C.id)throw new TypeError("Configured check ".concat(JSON.stringify(C)," is invalid. Checks must be an object with at least an id property"));t.addCheck(C)})}var _=[];if(e.rules){if(!Array.isArray(e.rules))throw new TypeError("Rules property must be an array");e.rules.forEach(function(C){if(!C.id)throw new TypeError("Configured rule ".concat(JSON.stringify(C)," is invalid. Rules must be an object with at least an id property"));_.push(C.id),t.addRule(C)})}if(e.disableOtherRules&&t.rules.forEach(function(C){_.includes(C.id)===!1&&(C.enabled=!1)}),typeof e.branding<"u"?t.setBranding(e.branding):t._constructHelpUrls(),e.tagExclude&&(t.tagExclude=e.tagExclude),e.locale&&t.applyLocale(e.locale),e.standards&&Xy(e.standards),e.noHtml&&(t.noHtml=!0),e.allowedOrigins){if(!Array.isArray(e.allowedOrigins))throw new TypeError("Allowed origins property must be an array");if(e.allowedOrigins.includes("*"))throw new Error('"*" is not allowed. Use "'.concat(se.allOrigins,'" instead'));t.setAllowedOrigins(e.allowedOrigins)}}var b_=g_;function y_(e){St.updateMessenger(e)}function D_(e){e=e||[];var t=e.length?x._audit.rules.filter(function(a){return!!e.filter(function(n){return a.tags.indexOf(n)!==-1}).length}):x._audit.rules,r=x._audit.data.rules||{};return t.map(function(a){var n=r[a.id]||{};return{ruleId:a.id,description:n.description,help:n.help,helpUrl:n.helpUrl,tags:a.tags,actIds:a.actIds}})}var w_=D_;function __(e,t,r){var a=["SCRIPT","HEAD","TITLE","NOSCRIPT","STYLE","TEMPLATE"];if(!a.includes(e.nodeName.toUpperCase())&&Ra(r)){var n=E.getComputedStyle(e);if(n.getPropertyValue("display")==="none")return;if(n.getPropertyValue("visibility")==="hidden"){var i=Ge(e),o=i&&E.getComputedStyle(i);if(!o||o.getPropertyValue("visibility")!=="hidden")return}}return!0}var x_=__,mf={};xt(mf,{getAllCells:function(){return Lu},getCellPosition:function(){return qn},getHeaders:function(){return mi},getScope:function(){return No},isColumnHeader:function(){return Br},isDataCell:function(){return vf},isDataTable:function(){return hi},isHeader:function(){return T_},isRowHeader:function(){return Lr},toArray:function(){return Ut},toGrid:function(){return Ut},traverse:function(){return qu}});function E_(e){var t,r,a,n,i=[];for(t=0,a=e.rows.length;t<a;t++)for(r=0,n=e.rows[t].cells.length;r<n;r++)i.push(e.rows[t].cells[r]);return i}var Lu=E_;function hf(e,t,r){for(var a=e==="row"?"_rowHeaders":"_colHeaders",n=e==="row"?Lr:Br,i=r[t.y][t.x],o=i.colSpan-1,u=i.getAttribute("rowspan"),s=parseInt(u)===0||i.rowspan===0?r.length:i.rowSpan,l=s-1,c=t.y+l,d=t.x+o,f=e==="row"?t.y:0,p=e==="row"?0:t.x,m,h=[],v=c;v>=f&&!m;v--)for(var g=d;g>=p;g--){var b=r[v]?r[v][g]:void 0;if(b){var w=x.utils.getNodeFromTree(b);if(w[a]){m=w[a];break}h.push(b)}}return m=(m||[]).concat(h.filter(n)),h.forEach(function(D){var _=x.utils.getNodeFromTree(D);_[a]=m}),m}function A_(e,t){if(e.getAttribute("headers")){var r=Mt(e,"headers");if(r.filter(function(o){return o}).length)return r}t||(t=Ut(Ir(e,"table")));var a=qn(e,t),n=hf("row",a,t),i=hf("col",a,t);return[].concat(n,i).reverse()}var mi=A_;function F_(e){if(!e.children.length&&!e.textContent.trim())return!1;var t=pe(e);return t?["cell","gridcell"].includes(t):e.nodeName.toUpperCase()==="TD"}var vf=F_;function C_(e){var t=pe(e);if((t==="presentation"||t==="none")&&!Be(e))return!1;if(e.getAttribute("contenteditable")==="true"||Ir(e,'[contenteditable="true"]')||t==="grid"||t==="treegrid"||t==="table"||Tt(t)==="landmark")return!0;if(e.getAttribute("datatable")==="0")return!1;if(e.getAttribute("summary")||e.tHead||e.tFoot||e.caption)return!0;for(var r=0,a=e.children.length;r<a;r++)if(e.children[r].nodeName.toUpperCase()==="COLGROUP")return!0;for(var n=0,i=e.rows.length,o,u,s=!1,l=0;l<i;l++){o=e.rows[l];for(var c=0,d=o.cells.length;c<d;c++){if(u=o.cells[c],u.nodeName.toUpperCase()==="TH"||(!s&&(u.offsetWidth!==u.clientWidth||u.offsetHeight!==u.clientHeight)&&(s=!0),u.getAttribute("scope")||u.getAttribute("headers")||u.getAttribute("abbr"))||["columnheader","rowheader"].includes(pe(u))||u.children.length===1&&u.children[0].nodeName.toUpperCase()==="ABBR")return!0;n++}}if(e.getElementsByTagName("table").length||i<2)return!1;var f=e.rows[Math.ceil(i/2)];if(f.cells.length===1&&f.cells[0].colSpan===1)return!1;if(f.cells.length>=5||s)return!0;for(var p,m,h=0;h<i;h++){if(o=e.rows[h],p&&p!==E.getComputedStyle(o).getPropertyValue("background-color")||(p=E.getComputedStyle(o).getPropertyValue("background-color"),m&&m!==E.getComputedStyle(o).getPropertyValue("background-image")))return!0;m=E.getComputedStyle(o).getPropertyValue("background-image")}return i>=20?!0:!(wo(e).width>Tn(E).width*.95||n<10||e.querySelector("object, embed, iframe, applet"))}var hi=C_;function R_(e){if(Br(e)||Lr(e))return!0;if(e.getAttribute("id")){var t=Oe(e.getAttribute("id"));return!!N.querySelector('[headers~="'.concat(t,'"]'))}return!1}var T_=R_;function gf(e,t,r,a){var n,i=r[t.y]?r[t.y][t.x]:void 0;return i?typeof a=="function"&&(n=a(i,t,r),n===!0)?[i]:(n=gf(e,{x:t.x+e.x,y:t.y+e.y},r,a),n.unshift(i),n):[]}function S_(e,t,r,a){if(Array.isArray(t)&&(a=r,r=t,t={x:0,y:0}),typeof e=="string")switch(e){case"left":e={x:-1,y:0};break;case"up":e={x:0,y:-1};break;case"right":e={x:1,y:0};break;case"down":e={x:0,y:1};break}return gf(e,{x:t.x+e.x,y:t.y+e.y},r,a)}var qu=S_,bf={};xt(bf,{allowedAttr:function(){return yf},arialabelText:function(){return xa},arialabelledbyText:function(){return _a},getAccessibleRefs:function(){return ju},getElementUnallowedRoles:function(){return _f},getExplicitRole:function(){return pe},getImplicitRole:function(){return Pt},getOwnedVirtual:function(){return Fa},getRole:function(){return le},getRoleType:function(){return Tt},getRolesByType:function(){return z_},getRolesWithNameFromContents:function(){return G_},implicitNodes:function(){return W_},implicitRole:function(){return Pt},isAccessibleRef:function(){return vi},isAriaRoleAllowedOnElement:function(){return wf},isComboboxPopup:function(){return zu},isUnsupportedRole:function(){return Po},isValidRole:function(){return Ea},label:function(){return Ff},labelVirtual:function(){return zn},lookupTable:function(){return Ef},namedFromContents:function(){return wd},requiredAttr:function(){return Cf},requiredContext:function(){return Vu},requiredOwned:function(){return Hu},validateAttr:function(){return gi},validateAttrValue:function(){return Rf}});function k_(e){var t=ve.ariaRoles[e],r=re(yr());return t&&(t.allowedAttrs&&r.push.apply(r,re(t.allowedAttrs)),t.requiredAttrs&&r.push.apply(r,re(t.requiredAttrs))),r}var yf=k_,O_=/^idrefs?$/;function Df(e,t,r){if(e.hasAttribute){if(e.nodeName.toUpperCase()==="LABEL"&&e.hasAttribute("for")){var a=e.getAttribute("for");t.has(a)?t.get(a).push(e):t.set(a,[e])}for(var n=0;n<r.length;++n){var i=r[n],o=ae(e.getAttribute(i)||"");if(o){var u=xe(Ze(o)),s;try{for(u.s();!(s=u.n()).done;){var l=s.value;t.has(l)?t.get(l).push(e):t.set(l,[e])}}catch(d){u.e(d)}finally{u.f()}}}}for(var c=0;c<e.childNodes.length;c++)e.childNodes[c].nodeType===1&&Df(e.childNodes[c],t,r)}function M_(e){var t;e=e.actualNode||e;var r=Xe(e);r=r.documentElement||r;var a=ue.get("idRefsByRoot",function(){return new Map}),n=a.get(r);if(!n){n=new Map,a.set(r,n);var i=Object.keys(ve.ariaAttrs).filter(function(o){var u=ve.ariaAttrs[o].type;return O_.test(u)});Df(r,n,i)}return(t=n.get(e.id))!==null&&t!==void 0?t:[]}var ju=M_;function P_(e,t){var r=e instanceof He?e:ce(e),a=Pt(r),n=wr(r);return Array.isArray(n.allowedRoles)?n.allowedRoles.includes(t):t===a?!1:!!n.allowedRoles}var wf=P_,I_=["doc-backlink","doc-biblioentry","doc-biblioref","doc-cover","doc-endnote","doc-glossref","doc-noteref"],N_={header:"banner",footer:"contentinfo"};function B_(e){var t=[];if(!e)return t;if(e.hasAttr("role")){var r=Ze(e.attr("role").toLowerCase());t=t.concat(r)}return t.filter(function(a){return Ea(a)})}function L_(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,r=ye(e),a=r.vNode;if(!Ru(a))return[];var n=a.props.nodeName,i=Pt(a)||N_[n],o=B_(a);return o.filter(function(u){return!q_(u,a,t,i)})}function q_(e,t,r,a){return r&&e===a?!0:I_.includes(e)&&Tt(e)!==a?!1:wf(t,e)}var _f=L_;function j_(e){return Object.keys(ve.ariaRoles).filter(function(t){return ve.ariaRoles[t].type===e})}var Hr=j_;function $_(e){return Hr(e)}var z_=$_;function V_(){return ue.get("ariaRolesNameFromContent",function(){return Object.keys(ve.ariaRoles).filter(function(e){return ve.ariaRoles[e].nameFromContent})})}var $u=V_;function H_(){return $u()}var G_=H_,xf=function(t){return t===null},Je=function(t){return t!==null},Xt={};Xt.attributes={"aria-activedescendant":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-atomic":{type:"boolean",values:["true","false"],unsupported:!1},"aria-autocomplete":{type:"nmtoken",values:["inline","list","both","none"],unsupported:!1},"aria-busy":{type:"boolean",values:["true","false"],unsupported:!1},"aria-checked":{type:"nmtoken",values:["true","false","mixed","undefined"],unsupported:!1},"aria-colcount":{type:"int",unsupported:!1},"aria-colindex":{type:"int",unsupported:!1},"aria-colspan":{type:"int",unsupported:!1},"aria-controls":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-current":{type:"nmtoken",allowEmpty:!0,values:["page","step","location","date","time","true","false"],unsupported:!1},"aria-describedby":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-describedat":{unsupported:!0,unstandardized:!0},"aria-details":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-disabled":{type:"boolean",values:["true","false"],unsupported:!1},"aria-dropeffect":{type:"nmtokens",values:["copy","move","reference","execute","popup","none"],unsupported:!1},"aria-errormessage":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-expanded":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-flowto":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-grabbed":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-haspopup":{type:"nmtoken",allowEmpty:!0,values:["true","false","menu","listbox","tree","grid","dialog"],unsupported:!1},"aria-hidden":{type:"boolean",values:["true","false"],unsupported:!1},"aria-invalid":{type:"nmtoken",allowEmpty:!0,values:["true","false","spelling","grammar"],unsupported:!1},"aria-keyshortcuts":{type:"string",allowEmpty:!0,unsupported:!1},"aria-label":{type:"string",allowEmpty:!0,unsupported:!1},"aria-labelledby":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-level":{type:"int",unsupported:!1},"aria-live":{type:"nmtoken",values:["off","polite","assertive"],unsupported:!1},"aria-modal":{type:"boolean",values:["true","false"],unsupported:!1},"aria-multiline":{type:"boolean",values:["true","false"],unsupported:!1},"aria-multiselectable":{type:"boolean",values:["true","false"],unsupported:!1},"aria-orientation":{type:"nmtoken",values:["horizontal","vertical"],unsupported:!1},"aria-owns":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-placeholder":{type:"string",allowEmpty:!0,unsupported:!1},"aria-posinset":{type:"int",unsupported:!1},"aria-pressed":{type:"nmtoken",values:["true","false","mixed","undefined"],unsupported:!1},"aria-readonly":{type:"boolean",values:["true","false"],unsupported:!1},"aria-relevant":{type:"nmtokens",values:["additions","removals","text","all"],unsupported:!1},"aria-required":{type:"boolean",values:["true","false"],unsupported:!1},"aria-roledescription":{type:"string",allowEmpty:!0,unsupported:!1},"aria-rowcount":{type:"int",unsupported:!1},"aria-rowindex":{type:"int",unsupported:!1},"aria-rowspan":{type:"int",unsupported:!1},"aria-selected":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-setsize":{type:"int",unsupported:!1},"aria-sort":{type:"nmtoken",values:["ascending","descending","other","none"],unsupported:!1},"aria-valuemax":{type:"decimal",unsupported:!1},"aria-valuemin":{type:"decimal",unsupported:!1},"aria-valuenow":{type:"decimal",unsupported:!1},"aria-valuetext":{type:"string",unsupported:!1}},Xt.globalAttributes=["aria-atomic","aria-busy","aria-controls","aria-current","aria-describedby","aria-details","aria-disabled","aria-dropeffect","aria-flowto","aria-grabbed","aria-haspopup","aria-hidden","aria-invalid","aria-keyshortcuts","aria-label","aria-labelledby","aria-live","aria-owns","aria-relevant","aria-roledescription"],Xt.role={alert:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},alertdialog:{type:"widget",attributes:{allowed:["aria-expanded","aria-modal","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["dialog","section"]},application:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage","aria-activedescendant"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["article","audio","embed","iframe","object","section","svg","video"]},article:{type:"structure",attributes:{allowed:["aria-expanded","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["article"],unsupported:!1},banner:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["header"],unsupported:!1,allowedElements:["section"]},button:{type:"widget",attributes:{allowed:["aria-expanded","aria-pressed","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["button",'input[type="button"]','input[type="image"]','input[type="reset"]','input[type="submit"]',"summary"],unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Je}}]},cell:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-rowindex","aria-rowspan","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["td","th"],unsupported:!1},checkbox:{type:"widget",attributes:{allowed:["aria-checked","aria-required","aria-readonly","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:['input[type="checkbox"]'],unsupported:!1,allowedElements:["button"]},columnheader:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-required","aria-readonly","aria-selected","aria-sort","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["th"],unsupported:!1},combobox:{type:"composite",attributes:{allowed:["aria-autocomplete","aria-required","aria-activedescendant","aria-orientation","aria-errormessage"],required:["aria-expanded"]},owned:{all:["listbox","tree","grid","dialog","textbox"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:"input",properties:{type:["text","search","tel","url","email"]}}]},command:{nameFrom:["author"],type:"abstract",unsupported:!1},complementary:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["aside"],unsupported:!1,allowedElements:["section"]},composite:{nameFrom:["author"],type:"abstract",unsupported:!1},contentinfo:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["footer"],unsupported:!1,allowedElements:["section"]},definition:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["dd","dfn"],unsupported:!1},dialog:{type:"widget",attributes:{allowed:["aria-expanded","aria-modal","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["dialog"],unsupported:!1,allowedElements:["section"]},directory:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:["ol","ul"]},document:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["body"],unsupported:!1,allowedElements:["article","embed","iframe","object","section","svg"]},"doc-abstract":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-acknowledgments":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-afterword":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-appendix":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-backlink":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Je}}]},"doc-biblioentry":{type:"listitem",attributes:{allowed:["aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author"],context:["doc-bibliography"],unsupported:!1,allowedElements:["li"]},"doc-bibliography":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["doc-biblioentry"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-biblioref":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Je}}]},"doc-chapter":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-colophon":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-conclusion":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-cover":{type:"img",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1},"doc-credit":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-credits":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-dedication":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-endnote":{type:"listitem",attributes:{allowed:["aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,namefrom:["author"],context:["doc-endnotes"],unsupported:!1,allowedElements:["li"]},"doc-endnotes":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["doc-endnote"]},namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-epigraph":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1},"doc-epilogue":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-errata":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-example":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","section"]},"doc-footnote":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","footer","header"]},"doc-foreword":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-glossary":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:["term","definition"],namefrom:["author"],context:null,unsupported:!1,allowedElements:["dl"]},"doc-glossref":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Je}}]},"doc-index":{type:"navigation",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},"doc-introduction":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-noteref":{type:"link",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Je}}]},"doc-notice":{type:"note",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-pagebreak":{type:"separator",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["hr"]},"doc-pagelist":{type:"navigation",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},"doc-part":{type:"landmark",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-preface":{type:"landmark",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-prologue":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-pullquote":{type:"none",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","section"]},"doc-qna":{type:"section",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-subtitle":{type:"sectionhead",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["h1","h2","h3","h4","h5","h6"]}},"doc-tip":{type:"note",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside"]},"doc-toc":{type:"navigation",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},feed:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["article"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["article","aside","section"]},figure:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["figure"],unsupported:!1},form:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["form"],unsupported:!1},grid:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-colcount","aria-level","aria-multiselectable","aria-readonly","aria-rowcount","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author"],context:null,implicit:["table"],unsupported:!1},gridcell:{type:"widget",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-selected","aria-readonly","aria-required","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["td","th"],unsupported:!1},group:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["details","optgroup"],unsupported:!1,allowedElements:["dl","figcaption","fieldset","figure","footer","header","ol","ul"]},heading:{type:"structure",attributes:{required:["aria-level"],allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["h1","h2","h3","h4","h5","h6"],unsupported:!1},img:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["img"],unsupported:!1,allowedElements:["embed","iframe","object","svg"]},input:{nameFrom:["author"],type:"abstract",unsupported:!1},landmark:{nameFrom:["author"],type:"abstract",unsupported:!1},link:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["a[href]","area[href]"],unsupported:!1,allowedElements:["button",{nodeName:"input",properties:{type:["image","button"]}}]},list:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{all:["listitem"]},nameFrom:["author"],context:null,implicit:["ol","ul","dl"],unsupported:!1},listbox:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-multiselectable","aria-readonly","aria-required","aria-expanded","aria-orientation","aria-errormessage"]},owned:{all:["option"]},nameFrom:["author"],context:null,implicit:["select"],unsupported:!1,allowedElements:["ol","ul"]},listitem:{type:"structure",attributes:{allowed:["aria-level","aria-posinset","aria-setsize","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["list"],implicit:["li","dt"],unsupported:!1},log:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},main:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["main"],unsupported:!1,allowedElements:["article","section"]},marquee:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},math:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["math"],unsupported:!1},menu:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:{one:["menuitem","menuitemradio","menuitemcheckbox"]},nameFrom:["author"],context:null,implicit:['menu[type="context"]'],unsupported:!1,allowedElements:["ol","ul"]},menubar:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:{one:["menuitem","menuitemradio","menuitemcheckbox"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},menuitem:{type:"widget",attributes:{allowed:["aria-posinset","aria-setsize","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="command"]'],unsupported:!1,allowedElements:["button","li",{nodeName:"iput",properties:{type:["image","button"]}},{nodeName:"a",attributes:{href:Je}}]},menuitemcheckbox:{type:"widget",attributes:{allowed:["aria-checked","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="checkbox"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["checkbox","image","button"]}},{nodeName:"a",attributes:{href:Je}}]},menuitemradio:{type:"widget",attributes:{allowed:["aria-checked","aria-selected","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="radio"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["image","button","radio"]}},{nodeName:"a",attributes:{href:Je}}]},navigation:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["nav"],unsupported:!1,allowedElements:["section"]},none:{type:"structure",attributes:null,owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:["article","aside","dl","embed","figcaption","fieldset","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hr","iframe","li","ol","section","ul"]},{nodeName:"img",attributes:{alt:Je}}]},note:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["aside"]},option:{type:"widget",attributes:{allowed:["aria-selected","aria-posinset","aria-setsize","aria-checked","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["listbox"],implicit:["option"],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["checkbox","button"]}},{nodeName:"a",attributes:{href:Je}}]},presentation:{type:"structure",attributes:null,owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:["article","aside","dl","embed","figcaption","fieldset","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hr","iframe","li","ol","section","ul"]},{nodeName:"img",attributes:{alt:Je}}]},progressbar:{type:"widget",attributes:{allowed:["aria-valuetext","aria-valuenow","aria-valuemax","aria-valuemin","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["progress"],unsupported:!1},radio:{type:"widget",attributes:{allowed:["aria-selected","aria-posinset","aria-setsize","aria-required","aria-errormessage","aria-checked"]},owned:null,nameFrom:["author","contents"],context:null,implicit:['input[type="radio"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["image","button"]}}]},radiogroup:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-required","aria-expanded","aria-readonly","aria-errormessage","aria-orientation"]},owned:{all:["radio"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["ol","ul","fieldset"]}},range:{nameFrom:["author"],type:"abstract",unsupported:!1},region:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["section[aria-label]","section[aria-labelledby]","section[title]"],unsupported:!1,allowedElements:{nodeName:["article","aside"]}},roletype:{type:"abstract",unsupported:!1},row:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-colindex","aria-expanded","aria-level","aria-selected","aria-rowindex","aria-errormessage"]},owned:{one:["cell","columnheader","rowheader","gridcell"]},nameFrom:["author","contents"],context:["rowgroup","grid","treegrid","table"],implicit:["tr"],unsupported:!1},rowgroup:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-errormessage"]},owned:{all:["row"]},nameFrom:["author","contents"],context:["grid","table","treegrid"],implicit:["tbody","thead","tfoot"],unsupported:!1},rowheader:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-required","aria-readonly","aria-selected","aria-sort","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["th"],unsupported:!1},scrollbar:{type:"widget",attributes:{required:["aria-controls","aria-valuenow"],allowed:["aria-valuetext","aria-orientation","aria-errormessage","aria-valuemax","aria-valuemin"]},owned:null,nameFrom:["author"],context:null,unsupported:!1},search:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["aside","form","section"]}},searchbox:{type:"widget",attributes:{allowed:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-readonly","aria-required","aria-placeholder","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="search"]'],unsupported:!1,allowedElements:{nodeName:"input",properties:{type:"text"}}},section:{nameFrom:["author","contents"],type:"abstract",unsupported:!1},sectionhead:{nameFrom:["author","contents"],type:"abstract",unsupported:!1},select:{nameFrom:["author"],type:"abstract",unsupported:!1},separator:{type:"structure",attributes:{allowed:["aria-expanded","aria-orientation","aria-valuenow","aria-valuemax","aria-valuemin","aria-valuetext","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["hr"],unsupported:!1,allowedElements:["li"]},slider:{type:"widget",attributes:{allowed:["aria-valuetext","aria-orientation","aria-readonly","aria-errormessage","aria-valuemax","aria-valuemin"],required:["aria-valuenow"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="range"]'],unsupported:!1},spinbutton:{type:"widget",attributes:{allowed:["aria-valuetext","aria-required","aria-readonly","aria-errormessage","aria-valuemax","aria-valuemin"],required:["aria-valuenow"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="number"]'],unsupported:!1,allowedElements:{nodeName:"input",properties:{type:["text","tel"]}}},status:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["output"],unsupported:!1,allowedElements:["section"]},structure:{type:"abstract",unsupported:!1},switch:{type:"widget",attributes:{allowed:["aria-errormessage"],required:["aria-checked"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:["button",{nodeName:"input",properties:{type:["checkbox","image","button"]}},{nodeName:"a",attributes:{href:Je}}]},tab:{type:"widget",attributes:{allowed:["aria-selected","aria-expanded","aria-setsize","aria-posinset","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["tablist"],unsupported:!1,allowedElements:[{nodeName:["button","h1","h2","h3","h4","h5","h6","li"]},{nodeName:"input",properties:{type:"button"}},{nodeName:"a",attributes:{href:Je}}]},table:{type:"structure",attributes:{allowed:["aria-colcount","aria-rowcount","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author","contents"],context:null,implicit:["table"],unsupported:!1},tablist:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-level","aria-multiselectable","aria-orientation","aria-errormessage"]},owned:{all:["tab"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},tabpanel:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},term:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["dt"],unsupported:!1},textbox:{type:"widget",attributes:{allowed:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-readonly","aria-required","aria-placeholder","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="text"]','input[type="email"]','input[type="password"]','input[type="tel"]','input[type="url"]',"input:not([type])","textarea"],unsupported:!1},timer:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1},toolbar:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['menu[type="toolbar"]'],unsupported:!1,allowedElements:["ol","ul"]},tooltip:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1},tree:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-multiselectable","aria-required","aria-expanded","aria-orientation","aria-errormessage"]},owned:{all:["treeitem"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},treegrid:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-colcount","aria-expanded","aria-level","aria-multiselectable","aria-readonly","aria-required","aria-rowcount","aria-orientation","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author"],context:null,unsupported:!1},treeitem:{type:"widget",attributes:{allowed:["aria-checked","aria-selected","aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["group","tree"],unsupported:!1,allowedElements:["li",{nodeName:"a",attributes:{href:Je}}]},widget:{type:"abstract",unsupported:!1},window:{nameFrom:["author"],type:"abstract",unsupported:!1}},Xt.implicitHtmlRole=Lo,Xt.elementsAllowedNoRole=[{nodeName:["base","body","caption","col","colgroup","datalist","dd","details","dt","head","html","keygen","label","legend","main","map","math","meta","meter","noscript","optgroup","param","picture","progress","script","source","style","template","textarea","title","track"]},{nodeName:"area",attributes:{href:Je}},{nodeName:"input",properties:{type:["color","data","datatime","file","hidden","month","number","password","range","reset","submit","time","week"]}},{nodeName:"link",attributes:{href:Je}},{nodeName:"menu",attributes:{type:"context"}},{nodeName:"menuitem",attributes:{type:["command","checkbox","radio"]}},{nodeName:"select",condition:function(t){return t instanceof x.AbstractVirtualNode||(t=x.utils.getNodeFromTree(t)),Number(t.attr("size"))>1},properties:{multiple:!0}},{nodeName:["clippath","cursor","defs","desc","feblend","fecolormatrix","fecomponenttransfer","fecomposite","feconvolvematrix","fediffuselighting","fedisplacementmap","fedistantlight","fedropshadow","feflood","fefunca","fefuncb","fefuncg","fefuncr","fegaussianblur","feimage","femerge","femergenode","femorphology","feoffset","fepointlight","fespecularlighting","fespotlight","fetile","feturbulence","filter","hatch","hatchpath","lineargradient","marker","mask","meshgradient","meshpatch","meshrow","metadata","mpath","pattern","radialgradient","solidcolor","stop","switch","view"]}],Xt.elementsAllowedAnyRole=[{nodeName:"a",attributes:{href:xf}},{nodeName:"img",attributes:{alt:xf}},{nodeName:["abbr","address","canvas","div","p","pre","blockquote","ins","del","output","span","table","tbody","thead","tfoot","td","em","strong","small","s","cite","q","dfn","abbr","time","code","var","samp","kbd","sub","sup","i","b","u","mark","ruby","rt","rp","bdi","bdo","br","wbr","th","tr"]}],Xt.evaluateRoleForElement={A:function(t){var r=t.node,a=t.out;return r.namespaceURI==="http://www.w3.org/2000/svg"?!0:r.href.length?a:!0},AREA:function(t){var r=t.node;return!r.href},BUTTON:function(t){var r=t.node,a=t.role,n=t.out;return r.getAttribute("type")==="menu"?a==="menuitem":n},IMG:function(t){var r=t.node,a=t.role,n=t.out;switch(r.alt){case null:return n;case"":return a==="presentation"||a==="none";default:return a!=="presentation"&&a!=="none"}},INPUT:function(t){var r=t.node,a=t.role,n=t.out;switch(r.type){case"button":case"image":return n;case"checkbox":return a==="button"&&r.hasAttribute("aria-pressed")?!0:n;case"radio":return a==="menuitemradio";case"text":return a==="combobox"||a==="searchbox"||a==="spinbutton";case"tel":return a==="combobox"||a==="spinbutton";case"url":case"search":case"email":return a==="combobox";default:return!1}},LI:function(t){var r=t.node,a=t.out,n=x.utils.matchesSelector(r,"ol li, ul li");return n?a:!0},MENU:function(t){var r=t.node;return r.getAttribute("type")!=="context"},OPTION:function(t){var r=t.node,a=x.utils.matchesSelector(r,"select > option, datalist > option, optgroup > option");return!a},SELECT:function(t){var r=t.node,a=t.role;return!r.multiple&&r.size<=1&&a==="menu"},SVG:function(t){var r=t.node,a=t.out;return r.parentNode&&r.parentNode.namespaceURI==="http://www.w3.org/2000/svg"?!0:a}},Xt.rolesOfType={widget:["button","checkbox","dialog","gridcell","link","log","marquee","menuitem","menuitemcheckbox","menuitemradio","option","progressbar","radio","scrollbar","searchbox","slider","spinbutton","status","switch","tab","tabpanel","textbox","timer","tooltip","tree","treeitem"]};var Ef=Xt;function U_(e){var t=null,r=Ef.role[e];return r&&r.implicit&&(t=Wt(r.implicit)),t}var W_=U_;function Y_(e){return!!ju(e).length}var vi=Y_;function zu(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.popupRoles,a=le(e);if(r??(r=rd["aria-haspopup"].values),!r.includes(a))return!1;var n=K_(e);if(Af(n))return!0;var i=e.props.id;if(!i)return!1;if(!e.actualNode)throw new Error("Unable to determine combobox popup without an actualNode");var o=ga(e.actualNode),u=o.querySelectorAll('[aria-owns~="'.concat(i,`"][role~="combobox"]:not(select),
14
- [aria-controls~="`).concat(i,'"][role~="combobox"]:not(select)'));return Array.from(u).some(Af)}var Af=function(t){return t&&le(t)==="combobox"};function K_(e){for(;e=e.parent;)if(le(e,{noPresentational:!0})!==null)return e;return null}function X_(e){return e=ce(e),zn(e)}var Ff=X_;function Z_(e){var t=ve.ariaRoles[e];return!t||!Array.isArray(t.requiredAttrs)?[]:re(t.requiredAttrs)}var Cf=Z_;function J_(e){var t=ve.ariaRoles[e];return!t||!Array.isArray(t.requiredContext)?null:re(t.requiredContext)}var Vu=J_;function Q_(e){var t=ve.ariaRoles[e];return!t||!Array.isArray(t.requiredOwned)?null:re(t.requiredOwned)}var Hu=Q_;function ex(e,t){e=e instanceof He?e:ce(e);var r,a,n=e.attr(t),i=ve.ariaAttrs[t];if(!i||i.allowEmpty&&(!n||n.trim()===""))return!0;switch(i.type){case"boolean":return["true","false"].includes(n.toLowerCase());case"nmtoken":return typeof n=="string"&&i.values.includes(n.toLowerCase());case"nmtokens":return a=Ze(n),a.reduce(function(s,l){return s&&i.values.includes(l)},a.length!==0);case"idref":try{var o=Xe(e.actualNode);return!!(n&&o.getElementById(n))}catch{throw new TypeError("Cannot resolve id references for partial DOM")}case"idrefs":return Mt(e,t).some(function(s){return!!s});case"string":return n.trim()!=="";case"decimal":return r=n.match(/^[-+]?([0-9]*)\.?([0-9]*)$/),!!(r&&(r[1]||r[2]));case"int":var u=typeof i.minValue<"u"?i.minValue:-1/0;return/^[-+]?[0-9]+$/.test(n)&&parseInt(n)>=u}}var Rf=ex;function tx(e){var t=ve.ariaAttrs[e];return!!t}var gi=tx;function rx(e){var t=Lu(e),r=this,a=[];t.forEach(function(u){var s=u.getAttribute("headers");s&&(a=a.concat(s.split(/\s+/)));var l=u.getAttribute("aria-labelledby");l&&(a=a.concat(l.split(/\s+/)))});var n=t.filter(function(u){return ae(u.textContent)===""?!1:u.nodeName.toUpperCase()==="TH"||["rowheader","columnheader"].indexOf(pe(u))!==-1}),i=Ut(e),o=!0;return n.forEach(function(u){if(!(u.getAttribute("id")&&a.includes(u.getAttribute("id")))){var s=qn(u,i),l=!1;Br(u)&&(l=qu("down",s,i).find(function(c){return!Br(c)&&mi(c,i).includes(u)})),!l&&Lr(u)&&(l=qu("right",s,i).find(function(c){return!Lr(c)&&mi(c,i).includes(u)})),l||r.relatedNodes(u),o=o&&l}}),o?!0:void 0}var ax=rx,qa=["cell-header-not-in-table","cell-header-not-th","header-refs-self","empty-hdrs"],Tf=qa[0],Sf=qa[1],kf=qa[2],Gu=qa[3];function nx(e){for(var t=[],r={},a=0;a<e.rows.length;a++)for(var n=e.rows[a],i=0;i<n.cells.length;i++){var o=n.cells[i];t.push(o);var u=o.getAttribute("id");u&&(r[u]=le(o))}var s=Xr(Xr(Xr(Xr({},kf,new Set),Tf,new Set),Sf,new Set),Gu,new Set);t.forEach(function(f){if(!(!f.hasAttribute("headers")||!Te(f))){var p=f.getAttribute("headers").trim();if(!p){s[Gu].add(f);return}var m=f.getAttribute("id"),h=Ze(p);h.forEach(function(v){m&&v===m?s[kf].add(f):r[v]?["columnheader","rowheader"].includes(r[v])||s[Sf].add(f):s[Tf].add(f)})}});var l=xe(qa),c;try{for(l.s();!(c=l.n()).done;){var d=c.value;if(s[d].size>0)return this.relatedNodes(re(s[d])),d===Gu?void 0:(this.data({messageKey:d}),!1)}}catch(f){l.e(f)}finally{l.f()}return!0}function ix(e){var t=[],r=Lu(e),a=Ut(e);return r.forEach(function(n){if(Hn(n)&&vf(n)&&!Ff(n)){var i=mi(n,a).some(function(o){return o!==null&&!!Hn(o)});i||t.push(n)}}),t.length?(this.relatedNodes(t),!1):!0}var ox=ix;function ux(e,t){var r=e.getAttribute("scope").toLowerCase();return t.values.indexOf(r)!==-1}var sx=ux,lx=cx;function cx(e,t,r){if(r.children!==void 0){var a=r.attr("summary"),n=r.children.find(dx),i=n?ae(ur(n)):!1;return!i||!a?!1:ae(a).toLowerCase()===ae(i).toLowerCase()}}function dx(e){return e.props.nodeName==="caption"}function fx(e){return Wd(N)?e.nodeName.toUpperCase()==="TH":!0}var px=fx;function mx(e){var t=Ut(e),r=t[0];return t.length<=1||r.length<=1||e.rows.length<=1?!0:r.reduce(function(a,n,i){return a||n!==r[i+1]&&r[i+1]!==void 0},!1)}var hx=mx;function vx(e,t,r){if(r.children){var a=r.children.find(function(i){var o=i.props;return o.nodeName==="title"});if(!a)return this.data({messageKey:"noTitle"}),!1;try{var n=ur(a,{includeHidden:!0}).trim();if(n==="")return this.data({messageKey:"emptyTitle"}),!1}catch{return}return!0}}var gx=vx,Of={};xt(Of,{getAriaRolesByType:function(){return Hr},getAriaRolesSupportingNameFromContent:function(){return $u},getElementSpec:function(){return wr},getElementsByContentType:function(){return Io},getGlobalAriaAttrs:function(){return yr},implicitHtmlRoles:function(){return Lo}});function bx(e,t,r){var a=pe(r);if(["presentation","none"].includes(a)&&["iframe","frame"].includes(r.props.nodeName)&&r.hasAttr("title"))return this.data({messageKey:"iframe",nodeName:r.props.nodeName}),!1;var n=le(r);if(["presentation","none"].includes(n))return this.data({role:n}),!0;if(!["presentation","none"].includes(a))return!1;var i=yr().some(function(s){return r.hasAttr(s)}),o=Be(r),u;return i&&!o?u="globalAria":!i&&o?u="focusable":u="both",this.data({messageKey:u,role:n}),!1}function yx(e,t,r){var a=r.props.nodeName,n=(r.attr("type")||"").toLowerCase(),i=r.attr("value");return i&&this.data({messageKey:"has-label"}),a==="input"&&["submit","reset"].includes(n)?i===null:!1}var Dx=yx;function wx(e){return ut(e)}var _x=wx;function xx(e,t){var r=t.cssProperty,a=t.absoluteValues,n=t.minValue,i=t.maxValue,o=t.normalValue,u=o===void 0?0:o,s=t.noImportant,l=t.multiLineOnly;if(!s&&e.style.getPropertyPriority(r)!=="important"||l&&!Xd(e))return!0;var c={};typeof n=="number"&&(c.minValue=n),typeof i=="number"&&(c.maxValue=i);var d=e.style.getPropertyValue(r);if(["inherit","unset","revert","revert-layer"].includes(d))return this.data(de({value:d},c)),!0;var f=Ex(e,{absoluteValues:a,cssProperty:r,normalValue:u});if(this.data(de({value:f},c)),typeof f=="number")return(typeof n!="number"||f>=n)&&(typeof i!="number"||f<=i)}function Ex(e,t){var r=t.cssProperty,a=t.absoluteValues,n=t.normalValue,i=E.getComputedStyle(e),o=i.getPropertyValue(r);if(o==="normal")return n;var u=parseFloat(o);if(a)return u;var s=parseFloat(i.getPropertyValue("font-size")),l=Math.round(u/s*100)/100;return isNaN(l)?o:l}function Ax(e,t,r){var a=r.props.nodeName;return["img","input","area"].includes(a)?r.hasAttr("alt"):!1}var Fx=Ax;function Cx(){}var Rx=Cx;function Tx(){var e=N.title;return!!ae(e)}var Sx=Tx;function kx(e,t){var r=t.cssProperties.filter(function(a){if(e.style.getPropertyPriority(a)==="important")return a});return r.length>0?(this.data(r),!1):!0}var Ox=kx;function Mx(e,t,r){try{return!!ae(_a(r))}catch{return}}var Px=Mx;function Ix(e,t,r){return!!ae(xa(r))}var Nx=Ix;function Bx(e){var t=e.getAttribute("id").trim();if(!t)return!0;var r=Xe(e),a=Array.from(r.querySelectorAll('[id="'.concat(Oe(t),'"]'))).filter(function(n){return n!==e});return a.length&&this.relatedNodes(a),this.data(t),a.length===0}var Lx=Bx;function qx(e){var t=[];return e.filter(function(r){return t.indexOf(r.data)===-1?(t.push(r.data),!0):!1})}var jx=qx;function $x(e,t,r){var a=ae(r.attr("title")).toLowerCase();return this.data(a),!0}var zx=$x;function Vx(e){var t={};return e.forEach(function(r){t[r.data]=t[r.data]!==void 0?++t[r.data]:0}),e.forEach(function(r){r.result=!!t[r.data]}),e}var Hx=Vx;function Gx(e){var t=So(e,"href");return t?Te(t)||void 0:!1}var Ux=Gx,Wx=["alert","log","status"];function Yx(e,t,r){this.data({isIframe:["iframe","frame"].includes(r.props.nodeName)});var a=ue.get("regionlessNodes",function(){return Kx(t)});return!a.includes(r)}function Kx(e){var t=Mf(x._tree[0],e).map(function(r){for(;r.parent&&!r.parent._hasRegionDescendant&&r.parent.actualNode!==N.body;)r=r.parent;return r}).filter(function(r,a,n){return n.indexOf(r)===a});return t}function Mf(e,t){var r=e.actualNode;if(le(e)==="button"||Zx(e,t)||["iframe","frame"].includes(e.props.nodeName)||eu(e.actualNode)&&So(e.actualNode,"href")||!Te(r)){for(var a=e;a;)a._hasRegionDescendant=!0,a=a.parent;return["iframe","frame"].includes(e.props.nodeName)?[e]:[]}else return r!==N.body&&Hn(r,!0)&&!Xx(e)?[e]:e.children.filter(function(n){var i=n.actualNode;return i.nodeType===1}).map(function(n){return Mf(n,t)}).reduce(function(n,i){return n.concat(i)},[])}function Xx(e){return["none","presentation"].includes(le(e))&&!Xo(e)}function Zx(e,t){var r=e.actualNode,a=le(e),n=(r.getAttribute("aria-live")||"").toLowerCase().trim(),i=Hr("landmark");return!!(["assertive","polite"].includes(n)||Wx.includes(a)||i.includes(a)||t.regionMatcher&&Aa(e,t.regionMatcher))}function Jx(e){var t=e.filter(function(r){return r.data.isIframe});return e.forEach(function(r){if(!(r.result||r.node.ancestry.length===1)){var a=r.node.ancestry.slice(0,-1),n=xe(t),i;try{for(n.s();!(i=n.n()).done;){var o=i.value;if(Su(a,o.node.ancestry)){r.result=o.result;break}}}catch(u){n.e(u)}finally{n.f()}}}),t.forEach(function(r){r.result||(r.result=!0)}),e}var Qx=Jx;function eE(e){switch(e){case"lighter":return 100;case"normal":return 400;case"bold":return 700;case"bolder":return 900}return e=parseInt(e),isNaN(e)?400:e}function tE(e){for(var t=e,r=e.textContent.trim(),a=r;a===r&&t!==void 0;){var n=-1;if(e=t,e.children.length===0)return e;do n++,a=e.children[n].textContent.trim();while(a===""&&n+1<e.children.length);t=e.children[n]}return e}function Uu(e){var t=E.getComputedStyle(tE(e));return{fontWeight:eE(t.getPropertyValue("font-weight")),fontSize:parseInt(t.getPropertyValue("font-size")),isItalic:t.getPropertyValue("font-style")==="italic"}}function Pf(e,t,r){return r.reduce(function(a,n){return a||(!n.size||e.fontSize/n.size>t.fontSize)&&(!n.weight||e.fontWeight-n.weight>t.fontWeight)&&(!n.italic||e.isItalic&&!t.isItalic)},!1)}function rE(e,t,r){var a=Array.from(e.parentNode.children),n=a.indexOf(e);t=t||{};var i=t.margins||[],o=a.slice(n+1).find(function(v){return v.nodeName.toUpperCase()==="P"}),u=a.slice(0,n).reverse().find(function(v){return v.nodeName.toUpperCase()==="P"}),s=Uu(e),l=o?Uu(o):null,c=u?Uu(u):null,d=t.passLength,f=t.failLength,p=e.textContent.trim().length,m=o?.textContent.trim().length;if(p>m*d||!l||!Pf(s,l,i))return!0;var h=Pr(r,"blockquote");if(!(h&&h.nodeName.toUpperCase()==="BLOCKQUOTE")&&!(c&&!Pf(s,c,i))&&!(p>m*f))return!1}var aE=rE,nE=/[;,\s]/,iE=/^[0-9.]+$/;function oE(e,t,r){var a=t||{},n=a.minDelay,i=a.maxDelay,o=(r.attr("content")||"").trim(),u=o.split(nE),s=H(u,1),l=s[0];if(!l.match(iE))return!0;var c=parseFloat(l);return this.data({redirectDelay:c}),typeof n=="number"&&c<=t.minDelay||typeof i=="number"&&c>t.maxDelay}function uE(e,t,r){var a=dt(r,"a[href]");return a.some(function(n){return/^#[^/!]/.test(n.attr("href"))})}var sE=uE,If={};xt(If,{aria:function(){return bf},color:function(){return Nf},dom:function(){return bo},forms:function(){return Yf},matches:function(){return Aa},math:function(){return Nc},standards:function(){return Of},table:function(){return mf},text:function(){return wa},utils:function(){return Hi}});var Nf={};xt(Nf,{Color:function(){return Se},centerPointOfRect:function(){return cE},elementHasImage:function(){return Gn},elementIsDistinct:function(){return Lf},filteredRectStack:function(){return mE},flattenColors:function(){return jt},flattenShadowColors:function(){return Yu},getBackgroundColor:function(){return $a},getBackgroundStack:function(){return Ku},getContrast:function(){return Gr},getForegroundColor:function(){return Di},getOwnBackgroundColor:function(){return xr},getRectStack:function(){return qf},getStackingContext:function(){return Zu},getStrokeColorsFromShadows:function(){return Xu},getTextShadowColors:function(){return yi},hasValidContrastRatio:function(){return NE},incompleteData:function(){return We},parseTextShadows:function(){return zf},stackingContextToColor:function(){return ja}});function lE(e){if(!(e.left>E.innerWidth)&&!(e.top>E.innerHeight)){var t=Math.min(Math.ceil(e.left+e.width/2),E.innerWidth-1),r=Math.min(Math.ceil(e.top+e.height/2),E.innerHeight-1);return{x:t,y:r}}}var cE=lE;function Bf(e){return e.getPropertyValue("font-family").split(/[,;]/g).map(function(t){return t.trim().toLowerCase()})}function dE(e,t){var r=E.getComputedStyle(e);if(r.getPropertyValue("background-image")!=="none")return!0;var a=["border-bottom","border-top","outline"].reduce(function(u,s){var l=new Se;return l.parseString(r.getPropertyValue(s+"-color")),u||r.getPropertyValue(s+"-style")!=="none"&&parseFloat(r.getPropertyValue(s+"-width"))>0&&l.alpha!==0},!1);if(a)return!0;var n=E.getComputedStyle(t);if(Bf(r)[0]!==Bf(n)[0])return!0;var i=["text-decoration-line","text-decoration-style","font-weight","font-style","font-size"].reduce(function(u,s){return u||r.getPropertyValue(s)!==n.getPropertyValue(s)},!1),o=r.getPropertyValue("text-decoration");return o.split(" ").length<3&&(i=i||o!==n.getPropertyValue("text-decoration")),i}var Lf=dE;function fE(e){var t=Qc(e),r=Yo(e);return!r||r.length<=1?[t]:r.some(function(a){return a===void 0})?null:(r.splice(0,0,t),r)}var qf=fE;function pE(e){var t=qf(e);if(t&&t.length===1)return t[0];if(t&&t.length>1){var r=t.shift(),a;return t.forEach(function(n,i){if(i!==0){var o=t[i-1],u=t[i];a=o.every(function(s,l){return s===u[l]})||r.includes(e)}}),a?t[0]:(We.set("bgColor","elmPartiallyObscuring"),null)}return We.set("bgColor","outsideViewport"),null}var mE=pE,hE=["hue","saturation","color","luminosity"],jf={normal:function(t,r){return r},multiply:function(t,r){return r*t},screen:function(t,r){return t+r-t*r},overlay:function(t,r){return this["hard-light"](r,t)},darken:function(t,r){return Math.min(t,r)},lighten:function(t,r){return Math.max(t,r)},"color-dodge":function(t,r){return t===0?0:r===1?1:Math.min(1,t/(1-r))},"color-burn":function(t,r){return t===1?1:r===0?0:1-Math.min(1,(1-t)/r)},"hard-light":function(t,r){return r<=.5?this.multiply(t,2*r):this.screen(t,2*r-1)},"soft-light":function(t,r){if(r<=.5)return t-(1-2*r)*t*(1-t);var a=t<=.25?((16*t-12)*t+4)*t:Math.sqrt(t);return t+(2*r-1)*(a-t)},difference:function(t,r){return Math.abs(t-r)},exclusion:function(t,r){return t+r-2*t*r},hue:function(t,r){return r.setSaturation(t.getSaturation()).setLuminosity(t.getLuminosity())},saturation:function(t,r){return t.setSaturation(r.getSaturation()).setLuminosity(t.getLuminosity())},color:function(t,r){return r.setLuminosity(t.getLuminosity())},luminosity:function(t,r){return t.setLuminosity(r.getLuminosity())}};function jt(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"normal",a=gE(t,e,r),n=Wu(e.red,e.alpha,t.red,t.alpha,a.r*255),i=Wu(e.green,e.alpha,t.green,t.alpha,a.g*255),o=Wu(e.blue,e.alpha,t.blue,t.alpha,a.b*255),u=vE(e.alpha+t.alpha*(1-e.alpha),0,1);if(u===0)return new Se(n,i,o,u);var s=Math.round(n/u),l=Math.round(i/u),c=Math.round(o/u);return new Se(s,l,c,u)}function Wu(e,t,r,a,n){return t*(1-a)*e+t*a*n+(1-t)*a*r}function vE(e,t,r){return Math.min(Math.max(t,e),r)}function gE(e,t,r){if(hE.includes(r))return jf[r](e,t);var a=new Se;return["r","g","b"].forEach(function(n){a[n]=jf[r](e[n],t[n])}),a}function Yu(e,t){var r=e.alpha,a=(1-r)*t.red+r*e.red,n=(1-r)*t.green+r*e.green,i=(1-r)*t.blue+r*e.blue,o=e.alpha+t.alpha*(1-e.alpha);return new Se(a,n,i,o)}function Ku(e){for(var t=Yo(e).map(function(n){return n=Zd(n,e),n=bE(n),n}),r=0;r<t.length;r++){var a=t[r];if(a[0]!==e)return We.set("bgColor","bgOverlap"),null;if(r!==0&&!yE(a,t[0]))return We.set("bgColor","elmPartiallyObscuring"),null}return t[0]||null}function bE(e){var t=e.indexOf(N.body),r=e,a=xr(E.getComputedStyle(N.documentElement));if(t>1&&a.alpha===0&&!Gn(N.documentElement)){t>1&&(r.splice(t,1),r.push(N.body));var n=r.indexOf(N.documentElement);n>0&&(r.splice(n,1),r.push(N.documentElement))}return r}function yE(e,t){if(e===t)return!0;if(e===null||t===null||e.length!==t.length)return!1;for(var r=0;r<e.length;++r)if(e[r]!==t[r])return!1;return!0}var DE=.54,bi=.5,wE=1.5,$f=["top","right","bottom","left"];function Xu(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.ignoreEdgeCount,a=r===void 0?!1:r,n=_E(e),i=Object.entries(n).map(function(o){var u=H(o,2),s=u[0],l=u[1],c=$f.filter(function(d){return l[d].length!==0}).length;return{colorStr:s,sides:l,edgeCount:c}});return!a&&i.some(function(o){var u=o.edgeCount;return u>1&&u<4})?null:i.map(xE).filter(function(o){return o!==null})}function _E(e){var t={},r=xe(e),a;try{for(r.s();!(a=r.n()).done;){var n,i=a.value,o=i.colorStr,u=i.pixels;(n=t[o])!==null&&n!==void 0||(t[o]={top:[],right:[],bottom:[],left:[]});var s=t[o],l=H(u,2),c=l[0],d=l[1];c>bi?s.right.push(c):-c>bi&&s.left.push(-c),d>bi?s.bottom.push(d):-d>bi&&s.top.push(-d)}}catch(f){r.e(f)}finally{r.f()}return t}function xE(e){var t=e.colorStr,r=e.sides,a=e.edgeCount;if(a!==4)return null;var n=new Se;n.parseString(t);var i=0,o=!0;return $f.forEach(function(u){i+=r[u].length/4,o&&(o=r[u].every(function(s){return s>wE}))}),o||(n.alpha=1-Math.pow(DE,i)),n}function zf(e){var t={pixels:[]},r=e.trim(),a=[t];if(!r)return[];for(;r;){var n=r.match(/^[a-z]+(\([^)]+\))?/i)||r.match(/^#[0-9a-f]+/i),i=r.match(/^([0-9.-]+)px/i)||r.match(/^(0)/);if(n)he(!t.colorStr,"Multiple colors identified in text-shadow: ".concat(e)),r=r.replace(n[0],"").trim(),t.colorStr=n[0];else if(i){he(t.pixels.length<3,"Too many pixel units in text-shadow: ".concat(e)),r=r.replace(i[0],"").trim();var o=parseFloat((i[1][0]==="."?"0":"")+i[1]);t.pixels.push(o)}else if(r[0]===",")he(t.pixels.length>=2,"Missing pixel value in text-shadow: ".concat(e)),t={pixels:[]},a.push(t),r=r.substr(1).trim();else throw new Error("Unable to process text-shadows: ".concat(r))}return a.forEach(function(u){var s=u.pixels;s.length===2&&s.push(0)}),a}function yi(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.minRatio,a=t.maxRatio,n=t.ignoreEdgeCount,i=[],o=E.getComputedStyle(e),u=o.getPropertyValue("text-shadow");if(u==="none")return i;var s=o.getPropertyValue("font-size"),l=parseInt(s);he(isNaN(l)===!1,"Unable to determine font-size value ".concat(s));var c=[],d=zf(u),f=xe(d),p;try{for(f.s();!(p=f.n()).done;){var m=p.value,h=m.colorStr||o.getPropertyValue("color"),v=H(m.pixels,3),g=v[0],b=v[1],w=v[2],D=w===void 0?0:w;if(!(a&&D>=l*a)){if(r&&D<l*r){c.push({colorStr:h,pixels:m.pixels});continue}if(c.length>0){var _=Xu(c,{ignoreEdgeCount:n});if(_===null)return null;i.push.apply(i,re(_)),c.splice(0,c.length)}var C=EE({colorStr:h,offsetX:g,offsetY:b,blurRadius:D,fontSize:l});i.push(C)}}}catch(O){f.e(O)}finally{f.f()}if(c.length>0){var T=Xu(c,{ignoreEdgeCount:n});if(T===null)return null;i.push.apply(i,re(T))}return i}function EE(e){var t=e.colorStr,r=e.offsetX,a=e.offsetY,n=e.blurRadius,i=e.fontSize;if(r>n||a>n)return new Se(0,0,0,0);var o=new Se;return o.parseString(t),o.alpha*=AE(n,i),o}function AE(e,t){if(e===0)return 1;var r=e/t;return .185/(r+.4)}function Zu(e,t){var r=ce(e);if(r._stackingContext)return r._stackingContext;var a=[],n=new Map;return t=t??Ku(e),t.forEach(function(i){var o,u=ce(i),s=RE(u),l=u._stackingOrder.filter(function(f){var p=f.vNode;return!!p});l.forEach(function(f,p){var m,h=f.vNode,v=(m=l[p-1])===null||m===void 0?void 0:m.vNode,g=Hf(n,h,v);p===0&&!n.get(h)&&a.unshift(g),n.set(h,g)});var c=(o=l[l.length-1])===null||o===void 0?void 0:o.vNode,d=Hf(n,u,c);l.length||a.unshift(d),d.bgColor=s}),r._stackingContext=a,a}function ja(e){var t;if(!((t=e.descendants)!==null&&t!==void 0&&t.length)){var r=e.bgColor;return r.alpha*=e.opacity,{color:r,blendMode:e.blendMode}}var a=e.descendants.reduce(FE,Vf()),n=jt(a,e.bgColor,e.descendants[0].blendMode);return n.alpha*=e.opacity,{color:n,blendMode:e.blendMode}}function FE(e,t){var r;e instanceof Se?r=e:r=ja(e).color;var a=ja(t).color;return jt(a,r,t.blendMode)}function Vf(e,t){var r;return{vNode:e,ancestor:t,opacity:parseFloat((r=e?.getComputedStylePropertyValue("opacity"))!==null&&r!==void 0?r:1),bgColor:new Se(0,0,0,0),blendMode:CE(e?.getComputedStylePropertyValue("mix-blend-mode")),descendants:[]}}function CE(e){return e||void 0}function Hf(e,t,r){var a,n=e.get(r),i=(a=e.get(t))!==null&&a!==void 0?a:Vf(t,n);return n&&r!==t&&!n.descendants.includes(i)&&n.descendants.unshift(i),i}function RE(e){var t=new Se;return t.parseString(e.getComputedStylePropertyValue("background-color")),t}function $a(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:.1,a=ce(e),n=a._cache.getBackgroundColor;if(n)return t.push.apply(t,re(n.bgElms)),We.set("bgColor",n.incompleteData),n.bgColor;var i=TE(e,t,r);return a._cache.getBackgroundColor={bgColor:i,bgElms:t,incompleteData:We.get("bgColor")},i}function TE(e,t,r){var a,n,i=Ku(e);if(!i)return null;var o=Wo(e),u=(a=yi(e,{minRatio:r,ignoreEdgeCount:!0}))!==null&&a!==void 0?a:[];u.length&&(u=[{color:u.reduce(Yu)}]);for(var s=0;s<i.length;s++){var l=i[s],c=E.getComputedStyle(l);if(Gn(l,c))return t.push(l),null;var d=xr(c);if(d.alpha!==0){if(c.getPropertyValue("display")!=="inline"&&!Gf(l,o))return t.push(l),We.set("bgColor","elmPartiallyObscured"),null;if(t.push(l),d.alpha===1)break}}var f=Zu(e,i);u=f.map(ja).concat(u);var p=SE(e,i.includes(N.body));if((n=u).unshift.apply(n,re(p)),u.length===0)return new Se(255,255,255,1);var m=u.reduce(function(h,v){return jt(v.color,h.color instanceof Se?h.color:h,v.blendMode)});return jt(m.color instanceof Se?m.color:m,new Se(255,255,255,1))}function Gf(e,t){t=Array.isArray(t)?t:[t];var r=e.getBoundingClientRect(),a=r.right,n=r.bottom,i=E.getComputedStyle(e),o=i.getPropertyValue("overflow");return(["scroll","auto"].includes(o)||e instanceof E.HTMLHtmlElement)&&(a=r.left+e.scrollWidth,n=r.top+e.scrollHeight),t.every(function(u){return u.top>=r.top&&u.bottom<=n&&u.left>=r.left&&u.right<=a})}function Uf(e){return e||void 0}function SE(e,t){var r=[];if(!t){var a=N.documentElement,n=N.body,i=E.getComputedStyle(a),o=E.getComputedStyle(n),u=xr(i),s=xr(o),l=s.alpha!==0&&Gf(n,e.getBoundingClientRect());(s.alpha!==0&&u.alpha===0||l&&s.alpha!==1)&&r.unshift({color:s,blendMode:Uf(o.getPropertyValue("mix-blend-mode"))}),u.alpha!==0&&(!l||l&&s.alpha!==1)&&r.unshift({color:u,blendMode:Uf(i.getPropertyValue("mix-blend-mode"))})}return r}function kE(e,t){if(!t||!e)return null;t.alpha<1&&(t=jt(t,e));var r=e.getRelativeLuminance(),a=t.getRelativeLuminance();return(Math.max(a,r)+.05)/(Math.min(a,r)+.05)}var Gr=kE;function Di(e,t,r){for(var a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},n=E.getComputedStyle(e),i=[function(){return ME(n,a)},function(){return OE(n)},function(){return yi(e,{minRatio:0})}],o=[],u=0,s=i;u<s.length;u++){var l=s[u],c=l();if(c&&(o=o.concat(c),c.alpha===1))break}var d=o.reduce(function(h,v){return jt(h,v)});if(r??(r=$a(e,[])),r===null){var f=We.get("bgColor");return We.set("fgColor",f),null}var p=Zu(e),m=Wf(p,e);return jt(PE(d,m,p),new Se(255,255,255,1))}function OE(e){return new Se().parseString(e.getPropertyValue("-webkit-text-fill-color")||e.getPropertyValue("color"))}function ME(e,t){var r=t.textStrokeEmMin,a=r===void 0?0:r,n=parseFloat(e.getPropertyValue("-webkit-text-stroke-width"));if(n===0)return null;var i=e.getPropertyValue("font-size"),o=n/parseFloat(i);if(isNaN(o)||o<a)return null;var u=e.getPropertyValue("-webkit-text-stroke-color");return new Se().parseString(u)}function PE(e,t,r){for(;t;){var a;if(t.opacity===1&&t.ancestor){t=t.ancestor;continue}e.alpha*=t.opacity;var n=((a=t.ancestor)===null||a===void 0?void 0:a.descendants)||r;t.opacity!==1&&(n=n.slice(0,n.indexOf(t)));var i=n.map(ja);if(!i.length){t=t.ancestor;continue}var o=i.reduce(function(u,s){return jt(s.color,u.color instanceof Se?u.color:u)},{color:new Se(0,0,0,0),blendMode:"normal"});e=jt(e,o),t=t.ancestor}return e}function Wf(e,t){var r=xe(e),a;try{for(r.s();!(a=r.n()).done;){var n,i=a.value;if(((n=i.vNode)===null||n===void 0?void 0:n.actualNode)===t)return i;var o=Wf(i.descendants,t);if(o)return o}}catch(u){r.e(u)}finally{r.f()}}function IE(e,t,r,a){var n=Gr(e,t),i=a&&Math.ceil(r*72)/96<14||!a&&Math.ceil(r*72)/96<18,o=i?4.5:3;return{isValid:n>o,contrastRatio:n,expectedContrastRatio:o}}var NE=IE,Yf={};xt(Yf,{isAriaCombobox:function(){return Rd},isAriaListbox:function(){return Cd},isAriaRange:function(){return Td},isAriaTextbox:function(){return Fd},isDisabled:function(){return za},isNativeSelect:function(){return Ad},isNativeTextbox:function(){return Ed}});var BE=["fieldset","button","select","input","textarea"];function Kf(e){var t=e._isDisabled;if(typeof t=="boolean")return t;var r=e.props.nodeName,a=e.attr("aria-disabled");return BE.includes(r)&&e.hasAttr("disabled")?t=!0:a?t=a.toLowerCase()==="true":e.parent?t=Kf(e.parent):t=!1,e._isDisabled=t,t}var za=Kf;function LE(e,t,r){var a=wa.accessibleTextVirtual(r),n=wa.sanitize(wa.removeUnicode(a,{emoji:!0,nonBmp:!0,punctuations:!0})).toLowerCase();if(n){var i={name:n,urlProps:bo.urlPropsFromAttribute(e,"href")};return this.data(i),this.relatedNodes([e]),!0}}var qE=LE;function Xf(e,t){if(!e||!t)return!1;var r=Object.getOwnPropertyNames(e),a=Object.getOwnPropertyNames(t);if(r.length!==a.length)return!1;var n=r.every(function(i){var o=e[i],u=t[i];return M(o)!==M(u)?!1:M(o)==="object"||M(u)==="object"?Xf(o,u):o===u});return n}function jE(e){if(e.length<2)return e;for(var t=e.filter(function(o){var u=o.result;return u!==void 0}),r=[],a={},n=function(u){var s,l=t[u],c=l.data,d=c.name,f=c.urlProps;if(a[d])return 1;var p=t.filter(function(h,v){var g=h.data;return g.name===d&&v!==u}),m=p.every(function(h){var v=h.data;return Xf(v.urlProps,f)});p.length&&!m&&(l.result=void 0),l.relatedNodes=[],(s=l.relatedNodes).push.apply(s,re(p.map(function(h){return h.relatedNodes[0]}))),a[d]=p,r.push(l)},i=0;i<t.length;i++)n(i);return r}var $E=jE;function zE(e){var t=le(e),r=t&&t.includes("heading"),a=e.attr("aria-level"),n=parseInt(a,10),i=e.props.nodeName.match(/h(\d)/)||[],o=H(i,2),u=o[1];return r?u&&!a?parseInt(u,10):isNaN(n)||n<1?u?parseInt(u,10):2:n||-1:-1}function VE(){var e=ue.get("headingOrder");if(e)return!0;var t="h1, h2, h3, h4, h5, h6, [role=heading], iframe, frame",r=qt(x._tree[0],t,Te);return e=r.map(function(a){return{ancestry:[Rn(a.actualNode)],level:zE(a)}}),this.data({headingOrder:e}),ue.set("headingOrder",r),!0}var HE=VE;function GE(e){var t=WE(e);return e.forEach(function(r){r.result=UE(r,t)}),e}function UE(e,t){var r,a,n,i,o=Zf(t,e.node.ancestry),u=(r=(a=t[o])===null||a===void 0?void 0:a.level)!==null&&r!==void 0?r:-1,s=(n=(i=t[o-1])===null||i===void 0?void 0:i.level)!==null&&n!==void 0?n:-1;if(o===0)return!0;if(u!==-1)return u-s<=1}function WE(e){e=re(e),e.sort(function(r,a){var n=r.node,i=a.node;return n.ancestry.length-i.ancestry.length});var t=e.reduce(YE,[]);return t.filter(function(r){var a=r.level;return a!==-1})}function YE(e,t){var r,a=(r=t.data)===null||r===void 0?void 0:r.headingOrder,n=Jf(t.node.ancestry,1);if(!a)return e;var i=a.map(function(u){return XE(u,n)}),o=KE(e,n);return o===-1?e.push.apply(e,re(i)):e.splice.apply(e,[o,0].concat(re(i))),e}function KE(e,t){for(;t.length;){var r=Zf(e,t);if(r!==-1)return r;t=Jf(t,1)}return-1}function Zf(e,t){return e.findIndex(function(r){return Su(r.ancestry,t)})}function XE(e,t){var r=t.concat(e.ancestry);return de({},e,{ancestry:r})}function Jf(e,t){return e.slice(0,e.length-t)}function ZE(e,t,r){var a=t?.minSize||24,n=r.boundingClientRect;if(Gt(a*10,n))return this.data({messageKey:"large",minSize:a}),!0;var i=Gt.bind(null,a),o=Nn(r),u=JE(r,o),s=QE(r,o),l=s.fullyObscuringElms,c=s.partialObscuringElms;if(u.length&&(l.length||!i(n))){this.data({minSize:a,messageKey:"contentOverflow"}),this.relatedNodes(Va(u));return}if(l.length)return this.relatedNodes(Va(l)),this.data({messageKey:"obscured"}),!0;var d=gt(r)?!1:void 0;if(!i(n))return this.data(de({minSize:a},wi(n))),d;var f=r5(c);if(!f.length)return this.data(de({minSize:a},wi(n))),!0;var p=e5(r,f);if(!p){this.data({minSize:a,messageKey:"tooManyRects"});return}if(!i(p)){if(u.length){this.data({minSize:a,messageKey:"contentOverflow"}),this.relatedNodes(Va(u));return}var m=f.every(gt),h="partiallyObscured".concat(m?"":"NonTabbable");return this.data(de({messageKey:h,minSize:a},wi(p))),this.relatedNodes(Va(f)),m?d:void 0}return this.data(de({minSize:a},wi(p||n))),this.relatedNodes(Va(f)),!0}function JE(e,t){return t.filter(function(r){return!Qf(r,e)&&ep(e,r)})}function QE(e,t){var r=[],a=[],n=xe(t),i;try{for(n.s();!(i=n.n()).done;){var o=i.value;!ep(e,o)&&xo(e,o)&&a5(o)!=="none"&&(Qf(e,o)?r.push(o):a.push(o))}}catch(u){n.e(u)}finally{n.f()}return{fullyObscuringElms:r,partialObscuringElms:a}}function e5(e,t){var r=e.boundingClientRect,a=t.map(function(i){var o=i.boundingClientRect;return o}),n;try{n=Eo(r,a)}catch{return null}return t5(n)}function t5(e,t){return e.reduce(function(r,a){var n=Gt(t,r),i=Gt(t,a);if(n!==i)return n?r:a;var o=r.width*r.height,u=a.width*a.height;return o>u?r:a})}function r5(e){return e.filter(function(t){return Tt(t)==="widget"&&Be(t)})}function Qf(e,t){var r=e.boundingClientRect,a=t.boundingClientRect;return r.top>=a.top&&r.left>=a.left&&r.bottom<=a.bottom&&r.right<=a.right}function a5(e){return e.getComputedStylePropertyValue("pointer-events")}function wi(e){return{width:Math.round(e.width*10)/10,height:Math.round(e.height*10)/10}}function ep(e,t){return Yt(e,t)&&!gt(t)}function Va(e){return e.map(function(t){var r=t.actualNode;return r})}var n5=.05;function i5(e,t,r){var a=t?.minOffset||24;if(Gt(a*10,r.boundingClientRect))return this.data({messageKey:"large",minOffset:a}),!0;var n=[],i=a,o=xe(Nn(r,a)),u;try{for(o.s();!(u=o.n()).done;){var s=u.value;if(!(Tt(s)!=="widget"||!Be(s))){var l=null;try{l=Lc(r,s,a/2)}catch(c){if(c.message.startsWith("splitRects")){this.data({messageKey:"tooManyRects",closestOffset:0,minOffset:a});return}throw c}l!==null&&(l=o5(l)*2,!(l+n5>=a)&&(i=Math.min(i,l),n.push(s)))}}}catch(c){o.e(c)}finally{o.f()}if(n.length===0)return this.data({closestOffset:i,minOffset:a}),!0;if(this.relatedNodes(n.map(function(c){var d=c.actualNode;return d})),!n.some(gt)){this.data({messageKey:"nonTabbableNeighbor",closestOffset:i,minOffset:a});return}return this.data({closestOffset:i,minOffset:a}),gt(r)?!1:void 0}function o5(e){return Math.round(e*10)/10}function u5(e,t,r){var a=t||{},n=a.scaleMinimum,i=n===void 0?2:n,o=a.lowerBound,u=o===void 0?!1:o,s=r.attr("content")||"";if(!s)return!0;var l=s.split(/[;,]/).reduce(function(d,f){var p=f.trim();if(!p)return d;var m=p.split("="),h=H(m,2),v=h[0],g=h[1];if(!v||!g)return d;var b=v.toLowerCase().trim(),w=g.toLowerCase().trim();return b==="maximum-scale"&&w==="yes"&&(w=1),b==="maximum-scale"&&parseFloat(w)<0||(d[b]=w),d},{});if(u&&l["maximum-scale"]&&parseFloat(l["maximum-scale"])<u)return!0;if(!u&&l["user-scalable"]==="no")return this.data("user-scalable=no"),!1;var c=parseFloat(l["user-scalable"]);return!u&&l["user-scalable"]&&(c||c===0)&&c>-1&&c<1?(this.data("user-scalable"),!1):l["maximum-scale"]&&parseFloat(l["maximum-scale"])<i?(this.data("maximum-scale"),!1):!0}var s5=u5;function l5(e,t,r,a){var n=a||{},i=n.cssom,o=i===void 0?void 0:i,u=t||{},s=u.degreeThreshold,l=s===void 0?0:s;if(!o||!o.length)return;for(var c=!1,d=[],f=v(o),p=function(){var P=h[m],z=f[P],V=z.root,Q=z.rules,ie=Q.filter(g);if(!ie.length)return 1;ie.forEach(function(K){var te=K.cssRules;Array.from(te).forEach(function(q){var J=b(q);if(J&&q.selectorText.toUpperCase()!=="HTML"){var A=Array.from(V.querySelectorAll(q.selectorText))||[];d=d.concat(A)}c=c||J})})},m=0,h=Object.keys(f);m<h.length;m++)p();if(!c)return!0;return d.length&&this.relatedNodes(d),!1;function v(k){return k.reduce(function(P,z){var V=z.sheet,Q=z.root,ie=z.shadowId,K=ie||"topDocument";if(P[K]||(P[K]={root:Q,rules:[]}),!V||!V.cssRules)return P;var te=Array.from(V.cssRules);return P[K].rules=P[K].rules.concat(te),P},{})}function g(k){var P=k.type,z=k.cssText;return P!==4?!1:/orientation:\s*landscape/i.test(z)||/orientation:\s*portrait/i.test(z)}function b(k){var P=k.selectorText,z=k.style;if(!P||z.length<=0)return!1;var V=z.transform||z.webkitTransform||z.msTransform||!1;if(!V&&!z.rotate)return!1;var Q=w(V),ie=D("rotate",z.rotate),K=Q+ie;return!K||(K=Math.abs(K),Math.abs(K-180)%180<=l)?!1:Math.abs(K-90)%90<=l}function w(k){if(!k)return 0;var P=k.match(/(rotate|rotateZ|rotate3d|matrix|matrix3d)\(([^)]+)\)(?!.*(rotate|rotateZ|rotate3d|matrix|matrix3d))/);if(!P)return 0;var z=H(P,3),V=z[1],Q=z[2];return D(V,Q)}function D(k,P){switch(k){case"rotate":case"rotateZ":return _(P);case"rotate3d":var z=P.split(",").map(function(K){return K.trim()}),V=H(z,4),Q=V[2],ie=V[3];return parseInt(Q)===0?void 0:_(ie);case"matrix":case"matrix3d":return C(P);default:return 0}}function _(k){var P=k.match(/(deg|grad|rad|turn)/)||[],z=H(P,1),V=z[0];if(!V)return 0;var Q=parseFloat(k.replace(V,""));switch(V){case"rad":return T(Q);case"grad":return O(Q);case"turn":return $(Q);case"deg":default:return parseInt(Q)}}function C(k){var P=k.split(",");if(P.length<=6){var z=H(P,2),V=z[0],Q=z[1],ie=Math.atan2(parseFloat(Q),parseFloat(V));return T(ie)}var K=parseFloat(P[8]),te=Math.asin(K),q=Math.cos(te),J=Math.acos(parseFloat(P[0])/q);return T(J)}function T(k){return Math.round(k*(180/Math.PI))}function O(k){return k=k%400,k<0&&(k+=400),Math.round(k/400*360)}function $(k){return Math.round(360/(1/k))}}var c5=l5;function d5(e,t){var r=e.hasAttribute("controls");if(e.hasAttribute("loop"))return r;if(!e.duration){console.warn("axe.utils.preloadMedia did not load metadata");return}var a=t.allowedDuration,n=a===void 0?3:a,i=o(e);if(i<=n)return!0;if(!r)return!1;return!0;function o(l){if(!l.currentSrc)return 0;var c=u(l.currentSrc);return c?c.length===1?Math.abs(l.duration-c[0]):Math.abs(c[1]-c[0]):Math.abs(l.duration-(l.currentTime||0))}function u(l){var c=l.match(/#t=(.*)/);if(c){var d=H(c,2),f=d[1],p=f.split(",");return p.map(function(m){return/:/.test(m)?s(m):parseFloat(m)})}}function s(l){for(var c=l.split(":"),d=0,f=1;c.length>0;)d+=f*parseInt(c.pop(),10),f*=60;return parseFloat(d)}}var f5=d5;function p5(e,t){return t.isViolation?!1:void 0}var m5=p5,tp=" > ";function h5(e){var t={};return e.filter(function(r){var a=r.node.ancestry[r.node.ancestry.length-1]!=="html";if(a){var n=r.node.ancestry.flat(1/0).join(tp);return t[n]=r,!0}var i=r.node.ancestry.slice(0,r.node.ancestry.length-1).flat(1/0).join(tp);return t[i]&&(t[i].result=!0),!1})}var v5=h5;function g5(e,t,r){var a=dt(r,"track"),n=a.some(function(i){return(i.attr("kind")||"").toLowerCase()==="captions"});return n?!1:void 0}var b5=g5;function y5(e,t,r){var a=r.children;if(!a||!a.length)return!1;for(var n=!1,i=!1,o,u=0;u<a.length;u++){if(o=a[u].props.nodeName.toUpperCase(),o==="DT"&&(n=!0),n&&o==="DD")return!1;o==="DD"&&(i=!0)}return n||i}var D5=y5;function w5(e,t,r){var a=!1,n=!1,i=!0,o=[],u=[],s=[];return r.children.forEach(function(l){var c=l.actualNode;if(c.nodeType===3&&c.nodeValue.trim()!==""){a=!0;return}if(!(c.nodeType!==1||!Te(c))){i=!1;var d=c.nodeName.toUpperCase()==="LI",f=le(l),p=f==="listitem";!d&&!p&&o.push(c),d&&!p&&(u.push(c),s.includes(f)||s.push(f)),p&&(n=!0)}}),a||o.length?(this.relatedNodes(o),!0):i||n?!1:(this.relatedNodes(u),this.data({messageKey:"roleNotValid",roles:s.join(", ")}),!0)}var _5=w5;function x5(e,t,r){var a=["definition","term","list"],n={badNodes:[],hasNonEmptyTextNode:!1},i=r.children.reduce(function(u,s){var l=s.actualNode;return l.nodeName.toUpperCase()==="DIV"&&le(l)===null?u.concat(s.children):u.concat(s)},[]),o=i.reduce(function(u,s){var l=s.actualNode,c=l.nodeName.toUpperCase();if(l.nodeType===1&&Te(l)){var d=pe(l);(c!=="DT"&&c!=="DD"||d)&&(a.includes(d)||u.badNodes.push(l))}else l.nodeType===3&&l.nodeValue.trim()!==""&&(u.hasNonEmptyTextNode=!0);return u},n);return o.badNodes.length&&this.relatedNodes(o.badNodes),!!o.badNodes.length||o.hasNonEmptyTextNode}function E5(e,t,r){var a=r.parent;if(a){var n=a.props.nodeName,i=pe(a);return["presentation","none","list"].includes(i)?!0:i&&Ea(i)?(this.data({messageKey:"roleNotValid"}),!1):["ul","ol","menu"].includes(n)}}function A5(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,a=[],n=[];if(r.children){for(var i=rp(r.children);i.length;){var o,u=i.shift(),s=u.vChild,l=u.nested;if(t.divGroups&&!l&&C5(s)){if(!s.children)return;var c=rp(s.children,!0);i.push.apply(i,re(c));continue}var d=F5(s,l,t);d&&(n.includes(d)||n.push(d),(s==null||(o=s.actualNode)===null||o===void 0?void 0:o.nodeType)===1&&a.push(s.actualNode))}return n.length===0?!1:(this.data({values:n.join(", ")}),this.relatedNodes(a),!0)}}function F5(e,t,r){var a=r.validRoles,n=a===void 0?[]:a,i=r.validNodeNames,o=i===void 0?[]:i,u=e.props,s=u.nodeName,l=u.nodeType,c=u.nodeValue,d=t?"div > ":"";if(l===3&&c.trim()!=="")return d+"#text";if(l!==1||!Te(e))return!1;var f=pe(e);return f?n.includes(f)?!1:d+"[role=".concat(f,"]"):o.includes(s)?!1:d+s}function C5(e){return e.props.nodeName==="div"&&pe(e)===null}function rp(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;return e.map(function(r){return{vChild:r,nested:t}})}function R5(e){var t=Ge(e),r=t.nodeName.toUpperCase(),a=pe(t);return r==="DIV"&&["presentation","none",null].includes(a)&&(t=Ge(t),r=t.nodeName.toUpperCase(),a=pe(t)),r!=="DL"?!1:!!(!a||["presentation","none","list"].includes(a))}var T5=R5;function S5(e,t,r){var a=Cr(r.attr("lang")),n=Cr(r.attr("xml:lang"));return a===n}var k5=S5;function O5(e,t,r){var a=[];return t.attributes.forEach(function(n){var i=r.attr(n);if(typeof i=="string"){var o=Cr(i),u=t.value?!t.value.map(Cr).includes(o):!pi(o);(o!==""&&u||i!==""&&!ae(i))&&a.push(n+'="'+r.attr(n)+'"')}}),!a.length||r.props.nodeName!=="html"&&!Zo(r)?!1:(this.data(a),!0)}var M5=O5;function Ju(e){return(e||"").trim()!==""}function P5(e,t,r){var a=typeof N<"u"?Fn(N):!1;if(t.attributes.includes("xml:lang")&&t.attributes.includes("lang")&&Ju(r.attr("xml:lang"))&&!Ju(r.attr("lang"))&&!a)return this.data({messageKey:"noXHTML"}),!1;var n=t.attributes.some(function(i){return Ju(r.attr(i))});return n?!0:(this.data({messageKey:"noLang"}),!1)}var I5=P5;function N5(e,t,r){var a=le(e),n=Ue(r);return n=n?n.toLowerCase():null,this.data({role:a,accessibleText:n}),this.relatedNodes([e]),!0}var B5=N5;function L5(e){var t=[];return e.filter(function(r){var a=function(o){return r.data.role===o.data.role&&r.data.accessibleText===o.data.accessibleText},n=t.find(a);return n?(n.result=!1,n.relatedNodes.push(r.relatedNodes[0]),!1):(t.push(r),r.relatedNodes=[],!0)})}var q5=L5;function j5(e,t,r){var a=Vn(r),n=jn(r),i=r.attr("aria-describedby");return!a&&!!(n||i)}var $5=j5;function z5(e){var t=Oe(e.getAttribute("id")),r=e.parentNode,a=Xe(e);a=a.documentElement||a;var n=Array.from(a.querySelectorAll('label[for="'.concat(t,'"]')));for(n.length&&(n=n.filter(function(u){return!or(u)}));r;)r.nodeName.toUpperCase()==="LABEL"&&n.indexOf(r)===-1&&n.push(r),r=r.parentNode;if(this.relatedNodes(n),n.length>1){var i=n.filter(function(u){return Te(u)});if(i.length>1)return;var o=Mt(e,"aria-labelledby");return o.includes(i[0])?!1:void 0}return!1}var V5=z5;function H5(e,t){var r=ap(t),a=ap(e);return!r||!a?!1:r.includes(a)}function ap(e){var t=Ca(e,{emoji:!0,nonBmp:!0,punctuations:!0});return ae(t)}function G5(e,t,r){var a,n=t?.pixelThreshold,i=(a=t?.occurrenceThreshold)!==null&&a!==void 0?a:t?.occuranceThreshold,o=br(e).toLowerCase(),u=ae(ur(r,{subtreeDescendant:!0,ignoreIconLigature:!0,pixelThreshold:n,occurrenceThreshold:i})).toLowerCase();if(!u)return!0;if(!(Uo(o)<1||Uo(u)<1))return H5(u,o)}var U5=G5;function W5(e,t,r){try{var a=lt(r,"label");if(a){var n=ae(Ue(a,{inControlContext:!0,startNode:r}));return a.actualNode&&this.relatedNodes([a.actualNode]),this.data({implicitLabel:n}),!!n}return!1}catch{return}}var Y5=W5;function K5(e,t,r){if(r.hasAttr("id")){if(!r.actualNode)return;var a=Xe(e),n=Oe(e.getAttribute("id")),i=a.querySelector('label[for="'.concat(n,'"]'));if(i&&!Te(i)){var o;try{o=Ue(r).trim()}catch{return}var u=o==="";return u}}return!1}var X5=K5;function Z5(e,t,r){var a=Vn(r),n=e.getAttribute("title");if(!a)return!1;if(!n&&(n="",e.getAttribute("aria-describedby"))){var i=Mt(e,"aria-describedby");n=i.map(function(o){return o?br(o):""}).join("")}return ae(n)===ae(a)}var J5=Z5;function Q5(e,t,r){var a=this;if(!r.attr("id"))return!1;if(r.actualNode){var n=Xe(r.actualNode),i=Oe(r.attr("id")),o=Array.from(n.querySelectorAll('label[for="'.concat(i,'"]')));if(this.relatedNodes(o),!o.length)return!1;try{return o.some(function(u){if(ut(u)){var s=ae(br(u,{inControlContext:!0,startNode:r}));return a.data({explicitLabel:s}),!!s}else return!0})}catch{return}}}var eA=Q5;function tA(e,t,r){if(["none","presentation"].includes(le(r)))return!1;var a=lt(r,t.parentSelector);if(!a)return!1;var n=It(a,!0).toLowerCase();return n===""?!1:n===Ue(r).toLowerCase()}var rA=tA;function aA(e,t,r){var a=r.attr("alt"),n=/^\s+$/;return typeof a=="string"&&n.test(a)}var nA=aA;function iA(e,t,r){var a=Lt(r.attr("tabindex"));return a===null||a<=0}var oA=iA;function uA(e,t,r){if(r.children)try{var a=np(r);if(!a.length)return!0;var n=a.filter(sA);return n.length>0?(this.data({messageKey:"notHidden"}),this.relatedNodes(n)):this.relatedNodes(a),!1}catch{return}}function np(e){if(!e.children){if(e.props.nodeType===1)throw new Error("Cannot determine children");return[]}var t=[];return e.children.forEach(function(r){Tt(r)==="widget"&&Be(r)?t.push(r):t.push.apply(t,re(np(r)))}),t}function sA(e){var t=Lt(e.attr("tabindex"));return t!==null&&t<0}function lA(e){var t=Hr("landmark"),r=Ge(e),a=le(e);for(this.data({role:a});r;){var n=pe(r);if(!n&&r.nodeName.toUpperCase()!=="FORM"&&(n=Pt(r)),n&&t.includes(n)&&!(n==="main"&&a==="complementary"))return!1;r=Ge(r)}return!0}var cA=lA;function dA(e,t,r){if(r.children)try{return!r.children.some(function(a){return ip(a)})}catch{return}}function ip(e){if(gt(e))return!0;if(!e.children){if(e.props.nodeType===1)throw new Error("Cannot determine children");return!1}return e.children.some(function(t){return ip(t)})}function fA(e,t,r){var a=["button","fieldset","input","select","textarea"],n=r.tabbableElements;if(!n||!n.length)return!0;var i=n.filter(function(o){return!a.includes(o.props.nodeName)});return this.relatedNodes(i.map(function(o){return o.actualNode})),i.length===0||Ta()?!0:i.every(function(o){var u=o.getComputedStylePropertyValue("pointer-events"),s=parseInt(o.getComputedStylePropertyValue("width")),l=parseInt(o.getComputedStylePropertyValue("height"));return o.actualNode.onfocus||(s===0||l===0)&&u==="none"})?void 0:!1}var pA=fA;function mA(e,t,r){if(!gt(r))return!1;try{return!Ue(r)}catch{return}}var hA=mA;function vA(e,t,r){var a=r.tabbableElements.map(function(n){var i=n.actualNode;return i});if(!a||!a.length)return!0;if(Ta()){this.relatedNodes(a);return}return!0}var gA=vA;function bA(e,t,r){if(r.hasAttr("contenteditable")&&a(r))return!0;return gt(r);function a(n){var i=n.attr("contenteditable");if(i==="true"||i==="")return!0;if(i==="false")return!1;var o=lt(r.parent,"[contenteditable]");return o?a(o):!1}}var yA=bA;function DA(e,t,r){var a=["button","fieldset","input","select","textarea"],n=r.tabbableElements;if(!n||!n.length)return!0;var i=n.filter(function(o){return a.includes(o.props.nodeName)});return this.relatedNodes(i.map(function(o){return o.actualNode})),i.length===0||Ta()?!0:i.every(function(o){var u=o.getComputedStylePropertyValue("pointer-events"),s=parseInt(o.getComputedStylePropertyValue("width")),l=parseInt(o.getComputedStylePropertyValue("height"));return o.actualNode.onfocus||(s===0||l===0)&&u==="none"})?void 0:!1}var wA=DA;function _A(e,t,r){var a=r.tabbableElements;if(!a)return!1;var n=a.filter(function(i){return i!==r});return n.length>0}var xA=_A;function EA(e,t,r){return or(r)||(this.data(r.attr("accesskey")),this.relatedNodes([e])),!0}var AA=EA;function FA(e){var t={};return e.filter(function(r){if(!r.data)return!1;var a=r.data.toUpperCase();return t[a]?(t[a].relatedNodes.push(r.relatedNodes[0]),!1):(t[a]=r,r.relatedNodes=[],!0)}).map(function(r){return r.result=!!r.relatedNodes.length,r})}var CA=FA;function RA(e,t,r){if(!t||!t.selector||typeof t.selector!="string")throw new TypeError("page-no-duplicate requires options.selector to be a string");var a="page-no-duplicate;"+t.selector;if(ue.get(a)){this.data("ignored");return}ue.set(a,!0);var n=qt(x._tree[0],t.selector,function(i){return Te(i)});return typeof t.nativeScopeFilter=="string"&&(n=n.filter(function(i){return i.actualNode.hasAttribute("role")||!Pr(i,t.nativeScopeFilter)})),typeof t.role=="string"&&(n=n.filter(function(i){return le(i)===t.role})),this.relatedNodes(n.filter(function(i){return i!==r}).map(function(i){return i.actualNode})),n.length<=1}var TA=RA;function SA(e){return e.filter(function(t){return t.data!=="ignored"})}var kA=SA;function OA(e,t,r){return Aa(r,t.matcher)}var MA=OA;function PA(e,t,r){try{return ae(ur(r))!==""}catch{return}}function IA(e,t,r){if(!t||!t.selector||typeof t.selector!="string")throw new TypeError("has-descendant requires options.selector to be a string");if(t.passForModal&&Ta())return!0;var a=qt(r,t.selector,function(n){return Te(n)});return this.relatedNodes(a.map(function(n){return n.actualNode})),a.length>0}var NA=IA;function BA(e){var t=e.some(function(r){return r.result===!0});return t&&e.forEach(function(r){r.result=!0}),e}var LA=BA;function qA(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;if(!t.attribute||typeof t.attribute!="string")throw new TypeError("attr-non-space-content requires options.attribute to be a string");if(!r.hasAttr(t.attribute))return this.data({messageKey:"noAttr"}),!1;var a=r.attr(t.attribute),n=!ae(a);return n?(this.data({messageKey:"emptyAttr"}),!1):!0}var jA=qA;function $A(e,t,r){var a=r.attr("autocomplete")||"";return qd(a,t)}var zA=$A;function VA(e,t,r){if(r.props.nodeName!=="input")return!0;var a=["text","search","number","tel"],n=["text","search","url"],i={bday:["text","search","date"],email:["text","search","email"],username:["text","search","email"],"street-address":["text"],tel:["text","search","tel"],"tel-country-code":["text","search","tel"],"tel-national":["text","search","tel"],"tel-area-code":["text","search","tel"],"tel-local":["text","search","tel"],"tel-local-prefix":["text","search","tel"],"tel-local-suffix":["text","search","tel"],"tel-extension":["text","search","tel"],"cc-number":a,"cc-exp":["text","search","month","tel"],"cc-exp-month":a,"cc-exp-year":a,"cc-csc":a,"transaction-amount":a,"bday-day":a,"bday-month":a,"bday-year":a,"new-password":["text","search","password"],"current-password":["text","search","password"],url:n,photo:n,impp:n};M(t)==="object"&&Object.keys(t).forEach(function(d){i[d]||(i[d]=[]),i[d]=i[d].concat(t[d])});var o=r.attr("autocomplete"),u=o.split(/\s+/g).map(function(d){return d.toLowerCase()}),s=u[u.length-1];if(_r.stateTerms.includes(s))return!0;var l=i[s],c=r.hasAttr("type")?ae(r.attr("type")).toLowerCase():"text";return c=fi().includes(c)?c:"text",typeof l>"u"?c==="text":l.includes(c)}var HA=VA,GA=["block","list-item","table","flex","grid","inline-block"];function UA(e){if(op(e))return!1;for(var t=Ge(e);t&&t.nodeType===1&&!op(t);)t=Ge(t);if(t){if(this.relatedNodes([t]),Lf(e,t))return!0;if(WA(e)){this.data({messageKey:"pseudoContent"});return}return!1}}function op(e){var t=E.getComputedStyle(e).getPropertyValue("display");return GA.indexOf(t)!==-1||t.substr(0,6)==="table-"}function WA(e){for(var t=0,r=["before","after"];t<r.length;t++){var a=r[t],n=E.getComputedStyle(e,":".concat(a)),i=n.getPropertyValue("content");if(i!=="none")return!0}return!1}function up(e,t){var r=e.getRelativeLuminance(),a=t.getRelativeLuminance();return(Math.max(r,a)+.05)/(Math.min(r,a)+.05)}var YA=["block","list-item","table","flex","grid","inline-block"];function sp(e){var t=E.getComputedStyle(e).getPropertyValue("display");return YA.indexOf(t)!==-1||t.substr(0,6)==="table-"}function KA(e,t){var r=t.requiredContrastRatio,a=t.allowSameColor;if(sp(e))return!1;for(var n=Ge(e);n&&n.nodeType===1&&!sp(n);)n=Ge(n);if(n){this.relatedNodes([n]);var i=Di(e),o=Di(n),u=$a(e),s=$a(n),l=i&&o?up(i,o):void 0;if(l&&(l=Math.floor(l*100)/100),l&&l>=r)return!0;var c=u&&s?up(u,s):void 0;if(c&&(c=Math.floor(c*100)/100),c&&c>=r)return!0;if(!c){var d,f=(d=We.get("bgColor"))!==null&&d!==void 0?d:"bgContrast";this.data({messageKey:f}),We.clear();return}if(l)return a&&l===1&&c===1?!0:l===1&&c>1?(this.data({messageKey:"bgContrast",contrastRatio:c,requiredContrastRatio:r,nodeBackgroundColor:u?u.toHexString():void 0,parentBackgroundColor:s?s.toHexString():void 0}),!1):(this.data({messageKey:"fgContrast",contrastRatio:l,requiredContrastRatio:r,nodeColor:i?i.toHexString():void 0,parentColor:o?o.toHexString():void 0}),!1)}}var XA=KA;function ZA(e,t,r){var a=t.ignoreUnicode,n=t.ignoreLength,i=t.ignorePseudo,o=t.boldValue,u=t.boldTextPt,s=t.largeTextPt,l=t.contrastRatio,c=t.shadowOutlineEmMax,d=t.pseudoSizeThreshold;if(!ut(e))return this.data({messageKey:"hidden"}),!0;var f=It(r,!1,!0);if(a&&QA(f)){this.data({messageKey:"nonBmp"});return}var p=E.getComputedStyle(e),m=parseFloat(p.getPropertyValue("font-size")),h=p.getPropertyValue("font-weight"),v=parseFloat(h)>=o||h==="bold",g=Math.ceil(m*72)/96,b=v&&g<u||!v&&g<s,w=b?l.normal:l.large,D=w.expected,_=w.minThreshold,C=w.maxThreshold,T=JA(r,{ignorePseudo:i,pseudoSizeThreshold:d});if(T){this.data({fontSize:"".concat((m*72/96).toFixed(1),"pt (").concat(m,"px)"),fontWeight:v?"bold":"normal",messageKey:"pseudoContent",expectedContrastRatio:D+":1"}),this.relatedNodes(T.actualNode);return}var O=yi(e,{minRatio:.001,maxRatio:c});if(O===null){this.data({messageKey:"complexTextShadows"});return}var $=[],k=$a(e,$,c),P=Di(e,!1,k,t),z=null,V=null,Q=null;if(O.length===0)z=Gr(k,P);else if(P&&k){Q=[].concat(re(O),[k]).reduce(Yu);var ie=Gr(k,P),K=Gr(k,Q),te=Gr(Q,P);z=Math.max(ie,K,te),z!==ie&&(V=K>te?"shadowOnBgColor":"fgOnShadowColor")}var q=z>D;if(typeof _=="number"&&(typeof z!="number"||z<_)||typeof C=="number"&&(typeof z!="number"||z>C))return this.data({contrastRatio:z}),!0;var J=Math.floor(z*100)/100,A;k===null?A=We.get("bgColor"):q||(A=V);var U=J===1,B=f.length===1;if(U?A=We.set("bgColor","equalRatio"):!q&&B&&!n&&(A="shortTextContent"),this.data({fgColor:P?P.toHexString():void 0,bgColor:k?k.toHexString():void 0,contrastRatio:J,fontSize:"".concat((m*72/96).toFixed(1),"pt (").concat(m,"px)"),fontWeight:v?"bold":"normal",messageKey:A,expectedContrastRatio:D+":1",shadowColor:Q?Q.toHexString():void 0}),P===null||k===null||U||B&&!n&&!q){A=null,We.clear(),this.relatedNodes($);return}return q||this.relatedNodes($),q}function JA(e,t){var r=t.pseudoSizeThreshold,a=r===void 0?.25:r,n=t.ignorePseudo,i=n===void 0?!1:n;if(!i){var o=e.boundingClientRect,u=o.width*o.height*a;do{var s=lp(e.actualNode,":before"),l=lp(e.actualNode,":after");if(s+l>u)return e}while(e=e.parent)}}var lp=Re(function(t,r){var a=E.getComputedStyle(t,r),n=function(s,l){return a.getPropertyValue(s)===l};if(n("content","none")||n("display","none")||n("visibility","hidden")||n("position","absolute")===!1||xr(a).alpha===0&&n("background-image","none"))return 0;var i=cp(a.getPropertyValue("width")),o=cp(a.getPropertyValue("height"));return i.unit!=="px"||o.unit!=="px"?i.value===0||o.value===0?0:1/0:i.value*o.value});function QA(e){var t={nonBmp:!0},r=Ho(e,t),a=ae(Ca(e,t))==="";return r&&a}function cp(e){var t=/^([0-9.]+)([a-z]+)$/i,r=e.match(t)||[],a=H(r,3),n=a[1],i=n===void 0?"":n,o=a[2],u=o===void 0?"":o;return{value:parseFloat(i),unit:u.toLowerCase()}}var eF={ARTICLE:!0,ASIDE:!0,NAV:!0,SECTION:!0},tF={alert:!0,alertdialog:!0,application:!0,article:!0,banner:!1,complementary:!0,contentinfo:!0,dialog:!0,form:!0,log:!0,main:!0,navigation:!0,region:!0,search:!1,status:!0,tabpanel:!0};function rF(e){var t=e.nodeName.toUpperCase();return eF[t]||!1}function aF(e,t){var r=pe(e);return r&&(tF[r]||t.roles.includes(r))||!1}function nF(e,t){return aF(e,t)||rF(e)}var iF=nF;function oF(e,t,r){var a=le(r,{dpub:!0,fallback:!0}),n=Po(a);return n&&this.data(a),n}var uF=oF;function sF(e,t,r){var a=le(r,{noImplicit:!0});this.data(a);var n,i;try{n=ae(zo(r)).toLowerCase(),i=ae(Ue(r)).toLowerCase()}catch{return}if(!i&&!n)return!1;if(!(!i&&n)&&i.includes(n))return!1}var lF=sF;function cF(e,t,r){return Be(r)}var dF=cF;function fF(e,t,r){var a=Ze(r.attr("role")),n=a.every(function(i){return!Ea(i.toLowerCase(),{allowAbstract:!0})});return n?(this.data(a),!0):!1}var pF=fF;function mF(e,t,r){var a=pe(r);if(a===null)return!1;var n=Tt(a);return n==="widget"||n==="composite"}var hF=mF;function vF(e,t,r){var a=yr().filter(function(n){return r.hasAttr(n)});return this.data(a),a.length>0}var gF=vF;function bF(e,t){var r=Pt(e);return!r&&t.length===2&&t.includes("none")&&t.includes("presentation")}function yF(e,t,r){var a=Ze(r.attr("role"));return a.length<=1?!1:bF(r,a)?void 0:!0}var DF=yF;function wF(e,t,r){var a=le(r,{dpub:!0,fallback:!0}),n=ve.ariaRoles[a];return n!=null&&n.deprecated?(this.data(a),!0):!1}function _F(e,t,r){var a,n=(a=r.attr("aria-brailleroledescription"))!==null&&a!==void 0?a:"";if(ae(n)==="")return!0;var i=r.attr("aria-roledescription");return typeof i!="string"?(this.data({messageKey:"noRoleDescription"}),!1):ae(i)===""?(this.data({messageKey:"emptyRoleDescription"}),!1):!0}function xF(e,t,r){var a,n=(a=r.attr("aria-braillelabel"))!==null&&a!==void 0?a:"";if(!n.trim())return!0;try{return ae(Ue(r))!==""}catch{return}}function EF(e,t,r){t=Array.isArray(t.value)?t.value:[];var a="",n="",i=[],o=/^aria-/,u=["aria-errormessage"],s={"aria-controls":function(){var c=["false",null].includes(r.attr("aria-haspopup"))===!1;return c&&(a='aria-controls="'.concat(r.attr("aria-controls"),'"'),n="controlsWithinPopup"),r.attr("aria-expanded")!=="false"&&r.attr("aria-selected")!=="false"&&c===!1},"aria-current":function(c){c||(a='aria-current="'.concat(r.attr("aria-current"),'"'),n="ariaCurrent")},"aria-owns":function(){return r.attr("aria-expanded")!=="false"},"aria-describedby":function(c){c||(a='aria-describedby="'.concat(r.attr("aria-describedby"),'"'),n=x._tree&&x._tree[0]._hasShadowRoot?"noIdShadow":"noId")},"aria-labelledby":function(c){c||(a='aria-labelledby="'.concat(r.attr("aria-labelledby"),'"'),n=x._tree&&x._tree[0]._hasShadowRoot?"noIdShadow":"noId")}};if(r.attrNames.forEach(function(l){if(!(u.includes(l)||t.includes(l)||!o.test(l))){var c,d=r.attr(l);try{c=Rf(r,l)}catch{a="".concat(l,'="').concat(d,'"'),n="idrefs";return}(!s[l]||s[l](c))&&!c&&(d===""&&!AF(l)?(a=l,n="empty"):i.push("".concat(l,'="').concat(d,'"')))}}),i.length)return this.data(i),!1;if(a){this.data({messageKey:n,needsReview:a});return}return!0}function AF(e){var t;return((t=ve.ariaAttrs[e])===null||t===void 0?void 0:t.type)==="string"}function FF(e,t,r){t=Array.isArray(t.value)?t.value:[];var a=[],n=/^aria-/;return r.attrNames.forEach(function(i){t.indexOf(i)===-1&&n.test(i)&&!gi(i)&&a.push(i)}),a.length?(this.data(a),!1):!0}var CF=FF;function RF(e,t,r){var a=r.attrNames.filter(function(n){var i=ve.ariaAttrs[n];if(!gi(n))return!1;var o=i.unsupported;return M(o)!=="object"?!!o:!Aa(e,o.exceptions)});return a.length?(this.data(a),!0):!1}var TF=RF;function SF(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,a=le(r),n=t.supportedRoles||[];if(n.includes(a))return!0;if(!(a&&a!=="presentation"&&a!=="none"))return!1}var kF=SF;function dp(e,t,r,a){var n=pe(e);if(r||(r=Vu(n)),!r)return null;for(var i=r.includes("group"),o=a?e:e.parent;o;){var u=le(o,{noPresentational:!0});if(!u)o=o.parent;else if(u==="group"&&i)t.includes(n)&&r.push(n),r=r.filter(function(s){return s!=="group"}),o=o.parent;else return r.includes(u)?null:r}return r}function OF(e){for(var t=[],r=null;e;){if(e.getAttribute("id")){var a=Oe(e.getAttribute("id")),n=Xe(e);r=n.querySelector("[aria-owns~=".concat(a,"]")),r&&t.push(r)}e=e.parentElement}return t.length?t:null}function MF(e,t,r){var a=t&&Array.isArray(t.ownGroupRoles)?t.ownGroupRoles:[],n=dp(r,a);if(!n)return!0;var i=OF(e);if(i){for(var o=0,u=i.length;o<u;o++)if(n=dp(ce(i[o]),a,n,!0),!n)return!0}return this.data(n),!1}var PF=MF;function IF(e,t,r){var a=t&&Array.isArray(t.reviewEmpty)?t.reviewEmpty:[],n=pe(r,{dpub:!0}),i=Hu(n);if(i===null)return!0;var o=NF(r,i),u=o.filter(function(s){var l=s.role,c=s.vNode;return c.props.nodeType===1&&!i.includes(l)});if(u.length)return this.relatedNodes(u.map(function(s){var l=s.vNode;return l})),this.data({messageKey:"unallowed",values:u.map(function(s){var l=s.vNode,c=s.attr;return qF(l,c)}).filter(function(s,l,c){return c.indexOf(s)===l}).join(", ")}),!1;if(BF(i,o))return!0;if(r.attr("aria-busy")==="true")return this.data({messageKey:"aria-busy"}),!0;if(this.data(i),!(a.includes(n)&&!o.some(jF)))return!1}function NF(e,t){for(var r,a=[],n=Fa(e),i=function(){if(r.props.nodeType===3&&a.push({vNode:r,role:null}),r.props.nodeType!==1||!Te(r))return 1;var u=le(r,{noPresentational:!0}),s=LF(r),l=!!s||Be(r);if(!u&&!l||["group","rowgroup"].includes(u)&&t.some(function(d){return d===u}))n.push.apply(n,re(r.children));else if(u||l){var c=s||"tabindex";a.push({role:u,attr:c,vNode:r})}};r=n.shift();)i();return a}function BF(e,t){return t.some(function(r){var a=r.role;return a&&e.includes(a)})}function LF(e){return yr().find(function(t){return e.hasAttr(t)})}function qF(e,t){var r=e.props,a=r.nodeName,n=r.nodeType;if(n===3)return"#text";var i=pe(e,{dpub:!0});return i?"[role=".concat(i,"]"):t?a+"[".concat(t,"]"):a}function jF(e){var t=e.vNode;return t.props.nodeType===3?t.props.nodeValue.trim().length>0:Ra(t,!1,!0)}function $F(e){var t,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},a=arguments.length>2?arguments[2]:void 0,n=pe(a),i=a.attrNames,o=Cf(n);if(Array.isArray(r[n])&&(o=Ba(r[n],o)),!n||!i.length||!o.length||zF(a,n)||HF(a,n)||n==="slider"&&(t=a.attr("aria-valuetext"))!==null&&t!==void 0&&t.trim())return!0;var u=wr(a),s=o.filter(function(l){return!a.attr(l)&&!VF(u,l)});return s.length?(this.data(s),!1):!0}function zF(e,t){return t==="separator"&&!Be(e)}function VF(e,t){var r;return((r=e.implicitAttrs)===null||r===void 0?void 0:r[t])!==void 0}function HF(e,t){return t==="combobox"&&e.attr("aria-expanded")==="false"}function GF(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,a=t?.elementsAllowedAriaLabel||[],n=r.props.nodeName,i=le(r,{chromium:!0,fallback:!0}),o=UF(r,i,n,a),u=o.filter(function(c){return r.attrNames.includes(c)?ae(r.attr(c))!=="":!1});if(u.length===0)return!1;var s=i!==null?"hasRole":"noRole";s+=u.length>1?"Plural":"Singular",this.data({role:i,nodeName:n,messageKey:s,prohibited:u});var l=ur(r,{subtreeDescendant:!0});if(ae(l)==="")return!0}function UF(e,t,r,a){var n=ve.ariaRoles[t];return n?n.prohibitedAttrs||[]:t||a.includes(r)||fp(e)==="widget"?[]:["aria-label","aria-labelledby"]}var fp=Re(function(t){if(t){var r=le(t,{noPresentational:!0,chromium:!0});return r?Tt(r):fp(t.parent)}});function WF(e,t,r){var a=r.attr("aria-level"),n=parseInt(a,10);if(!(n>6))return!0}var YF=WF;function KF(e,t,r){return r.attr("aria-hidden")!=="true"}var XF=KF;function ZF(e,t,r){t=Array.isArray(t)?t:[];var a=r.attr("aria-errormessage"),n=r.hasAttr("aria-errormessage"),i=r.attr("aria-invalid"),o=r.hasAttr("aria-invalid");if(!o||i==="false")return!0;function u(s){if(s.trim()==="")return ve.ariaAttrs["aria-errormessage"].allowEmpty;var l;try{l=s&&Mt(r,"aria-errormessage")[0]}catch{this.data({messageKey:"idrefs",values:Ze(s)});return}if(l)return Te(l)?pe(l)==="alert"||l.getAttribute("aria-live")==="assertive"||l.getAttribute("aria-live")==="polite"||Ze(r.attr("aria-describedby")).indexOf(s)>-1:(this.data({messageKey:"hidden",values:Ze(s)}),!1)}return t.indexOf(a)===-1&&n?(this.data(Ze(a)),u.call(this,a)):!0}function pp(e){var t,r,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=a.invalidTableRowAttrs,i=arguments.length>2?arguments[2]:void 0,o=(t=n==null||(r=n.filter)===null||r===void 0?void 0:r.call(n,function(c){return i.hasAttr(c)}))!==null&&t!==void 0?t:[];if(o.length===0)return!0;var u=JF(i),s=u&&le(u);if(!s||s==="treegrid")return!0;var l="row".concat(o.length>1?"Plural":"Singular");return this.data({messageKey:l,invalidAttrs:o,ownerRole:s}),!1}function JF(e){if(e.parent){var t='table:not([role]), [role~="treegrid"], [role~="table"], [role~="grid"]';return lt(e,t)}}function mp(e,t,r){var a=r.props,n=a.nodeName,i=a.type,o=eC(r.attr("aria-checked"));if(n!=="input"||i!=="checkbox"||!o)return!0;var u=QF(r);return o===u?!0:(this.data({messageKey:"checkbox",checkState:u}),!1)}function QF(e){return e.props.indeterminate?"mixed":e.props.checked?"true":"false"}function eC(e){return e?(e=e.toLowerCase(),["mixed","true"].includes(e)?e:"false"):""}var hp={row:pp,checkbox:mp};function tC(e,t,r){var a=le(r);return hp[a]?hp[a].call(this,e,t,r):!0}function rC(e,t,r){return r.attr("aria-busy")==="true"}function aC(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,a=t.allowImplicit,n=a===void 0?!0:a,i=t.ignoredTags,o=i===void 0?[]:i,u=r.props.nodeName;if(o.map(function(l){return l.toLowerCase()}).includes(u))return!0;var s=_f(r,n);return s.length?(this.data(s),Te(r)?!1:void 0):!0}var nC=aC;function iC(e,t,r){var a=[],n=le(r),i=yf(n);Array.isArray(t[n])&&(i=Ba(t[n].concat(i)));var o=xe(r.attrNames),u;try{for(o.s();!(u=o.n()).done;){var s=u.value;gi(s)&&!i.includes(s)&&!oC(s,r.attr(s),r)&&a.push(s)}}catch(l){o.e(l)}finally{o.f()}if(!a.length)return!0;if(this.data(a.map(function(l){return l+'="'+r.attr(l)+'"'})),!(!n&&!Ru(r)&&!Be(r)))return!1}function oC(e,t,r){return!!(e==="aria-required"&&t==="false"||e==="aria-multiline"&&t==="false"&&r.hasAttr("contenteditable"))}function uC(e,t,r){var a=Ze(r.attr("role")).filter(function(n){return Tt(n)==="abstract"});return a.length>0?(this.data(a),!0):!1}var sC=uC;function lC(e){var t=Cr(e.getAttribute("lang")),r=Cr(e.getAttribute("xml:lang"));return pi(t)&&pi(r)}var cC=lC;function dC(e){return e.ownerDocument.defaultView.self===e.ownerDocument.defaultView.top}var fC=dC;function pC(e,t){try{var r=t.props.nodeName;return r==="svg"?!0:!!lt(t,"svg")}catch{return!1}}var Qu=pC;function mC(e,t){return hC.every(function(r){return r(e,t)})}var hC=[function(e,t){return vp(t)},function(e,t){return vC(t)},function(e,t){return!Qu(e,t)},function(e,t){return Be(t)},function(e,t){return gt(t)||!gC(t)},function(e){return!Jo(e,{noLengthCompare:!0})}];function vp(e){return Tt(e)==="widget"}function vC(e){return e.props.nodeName!=="area"}var gC=Re(function e(t){return t!=null&&t.parent?vp(t.parent)&&gt(t.parent)?!0:e(t.parent):!1});function bC(e,t){var r=le(t);return["treegrid","grid","table"].includes(r)}function yC(e,t){var r=t.parent;if(r.props.nodeName!=="details"||DC(t))return!1;var a=r.children.find(function(n){return n.props.nodeName==="summary"});return a===t}function DC(e){var t,r=(t=e.actualNode)===null||t===void 0?void 0:t.parentElement;return r&&r!==e.parent.actualNode}function wC(e){return eu(e)&&Sn(e)}var _C=wC;function xC(e,t){return Kt(e,13)!==void 0&&zu(t)===!1&&EC(t)}function EC(e){return dt(e,"*").some(function(t){return Ra(t,!0,!0)})}function AC(e,t){return Pt(t,{chromiumRoles:!0})!==null}var FC=AC;function CC(e){var t=Array.from(e.parentNode.childNodes),r=e.textContent.trim(),a=/[.!?:;](?![.!?:;])/g;if(r.length===0||(r.match(a)||[]).length>=2)return!1;var n=t.slice(t.indexOf(e)+1).filter(function(i){return i.nodeName.toUpperCase()==="P"&&i.textContent.trim()!==""});return n.length!==0}var RC=CC;function TC(e,t){var r=pe(t);if(!r||["none","presentation"].includes(r))return!0;var a=ad[r]||{},n=a.accessibleNameRequired;return!!(n||Be(t))}var gp=TC,SC=function(t,r){return[gp,kC].every(function(a){return a(t,r)})};function kC(e){var t;if(!(e!=null&&(t=e.ownerDocument)!==null&&t!==void 0&&t.createRange))return!0;var r=e.ownerDocument.createRange();return r.setStart(e,0),r.setEnd(e,e.childNodes.length),r.getClientRects().length===0}function OC(e,t){return t.props.nodeName!=="html"}var MC=OC;function PC(e,t){return!t.attr("role")}var IC=PC;function NC(e,t){var r=Lt(t.attr("tabindex"));return r===null||r>=0}var BC=NC;function LC(e,t){var r=wr(t),a=r.namingMethods;return!(a&&a.length!==0||pe(t)==="combobox"&&dt(t,'input:not([type="hidden"])').length||zu(t,{popupRoles:["listbox"]}))}var qC=LC;function jC(e,t){return!(!t.hasAttr("role")||!t.attr("role").trim())}var $C=jC;function zC(e){return!(!e.currentSrc||e.hasAttribute("paused")||e.hasAttribute("muted"))}var VC=zC;function HC(e,t){var r=le(t);return r?!!ve.ariaRoles[r].childrenPresentational:!1}var GC=HC;function UC(e){var t=ae(e.innerText),r=pe(e);return r&&r!=="link"||!t||!ut(e)?!1:Jo(e)}var WC=UC;function YC(e){return!hi(e)&&!Be(e)}var KC=YC;function XC(e,t){return ZC(t)&&Te(t)}function ZC(e){var t=Hr("landmark"),r=le(e);if(!r)return!1;var a=e.props.nodeName;if(a==="section"||a==="form"){var n=Ue(e);return!!n}return t.indexOf(r)>=0||r==="region"}function JC(e,t){var r="article, aside, main, nav, section";return e.hasAttribute("role")||!Pr(t,r)}var QC=JC;function e3(e,t){if(t.props.nodeName!=="input"||t.hasAttr("type")===!1)return!0;var r=t.attr("type").toLowerCase();return["hidden","image","button","submit","reset"].includes(r)===!1}var t3=e3;function r3(e,t){var r=le(e);if(!r)return!1;var a=Hr("widget"),n=a.includes(r);if(!n)return!1;var i=$u();return!(!i.includes(r)||!ae(xa(t))&&!ae(_a(e))||!ae(It(t)))}var a3=r3;function n3(e,t){return ut(t)}function i3(e){return ut(e)}function o3(e,t,r){return r.initiator}var bp=o3;function u3(e){return Hd(e)}var s3=u3;function l3(e,t){var r=!!Ue(t);if(!r)return!1;var a=le(e);return!(a&&a!=="link")}var c3=l3;function d3(e,t){return!Qu(e,t)}var f3=d3;function p3(e,t){return le(t)==="heading"}function m3(e,t){return Pt(t,{chromium:!0})!==null}var h3=m3;function v3(e){var t=e.getAttribute("title");return!!ae(t)}var g3=v3;function b3(e,t,r){var a,n;return!r.initiator&&!r.focusable&&((a=r.size)===null||a===void 0?void 0:a.width)*((n=r.size)===null||n===void 0?void 0:n.height)>1}var y3=b3;function D3(e){var t=e.getAttribute("id").trim(),r='*[id="'.concat(Oe(t),'"]'),a=Array.from(Xe(e).querySelectorAll(r));return!vi(e)&&a.every(function(n){return!Be(n)})}var w3=D3;function _3(e){return vi(e)}var x3=_3;function E3(e){var t=e.getAttribute("id").trim(),r='*[id="'.concat(Oe(t),'"]'),a=Array.from(Xe(e).querySelectorAll(r));return!vi(e)&&a.some(Be)}var A3=E3;function F3(e){return hi(e)}var C3=F3;function R3(e){if(hi(e)){var t=Ut(e);return t.length>=3&&t[0].length>=3&&t[1].length>=3&&t[2].length>=3}return!1}var T3=R3;function S3(e,t){var r=t.props,a=r.nodeName,n=r.type;if(a==="option"||a==="select"&&!e.options.length)return!1;var i=["hidden","range","color","checkbox","radio","image"];if(a==="input"&&i.includes(n)||za(t)||Bn(t))return!1;var o=["input","select","textarea"];if(o.includes(a)){var u=E.getComputedStyle(e),s=parseInt(u.getPropertyValue("text-indent"),10);if(s){var l=e.getBoundingClientRect();if(l={top:l.top,bottom:l.bottom,left:l.left+s,right:l.right+s},!tu(l,e))return!1}return!0}var c=Pr(t,"label");if(a==="label"||c){var d=c||e,f=c?ce(c):t;if(d.htmlFor){var p=Xe(d),m=p.getElementById(d.htmlFor),h=m&&ce(m);if(h&&za(h))return!1}var v='input:not([type="hidden"],[type="image"],[type="button"],[type="submit"],[type="reset"]), select, textarea',g=dt(f,v)[0];if(g&&za(g))return!1}for(var b=[],w=t;w;){if(w.props.id){var D=ju(w).filter(function(P){return Ze(P.getAttribute("aria-labelledby")||"").includes(w.props.id)}).map(function(P){return ce(P)});b.push.apply(b,re(D))}w=w.parent}if(b.length>0&&b.every(za)||!M3(t)||!parseFloat(t.getComputedStylePropertyValue("font-size")))return!1;for(var _=N.createRange(),C=t.children,T=0;T<C.length;T++){var O=C[T];O.actualNode.nodeType===3&&ae(O.actualNode.nodeValue)!==""&&_.selectNodeContents(O.actualNode)}var $=Array.from(_.getClientRects()),k=ba(t);return $.some(function(P){var z=tu(P,e);if(!k.length)return z;var V=k.some(function(Q){return yo(P,Q.boundingClientRect)});return z&&V})}var k3=S3,O3={emoji:!0,nonBmp:!1,punctuations:!0};function M3(e){var t=It(e,!1,!0);return t===""||Ca(t,O3)===""?!1:e.children.some(function(r){return r.props.nodeName==="#text"&&!Go(r)})}function P3(e,t,r){return bp(e,t,r)?!!e.querySelector("a[href]"):!0}var I3=P3;function N3(e,t){var r=t.attr("autocomplete");if(!r||ae(r)==="")return!1;var a=t.props.nodeName;if(["textarea","input","select"].includes(a)===!1)return!1;var n=t.attr("aria-readonly")||"false";if(t.hasAttr("readonly")||n.toLowerCase()==="true")return!1;var i=["submit","reset","button","hidden"];if(a==="input"&&i.includes(t.props.type))return!1;var o=t.attr("aria-disabled")||"false";if(t.hasAttr("disabled")||o.toLowerCase()==="true")return!1;var u=pe(t),s=Lt(t.attr("tabindex"));if(s<0&&t.hasAttr("role")){var l=ve.ariaRoles[u];if(l===void 0||l.type!=="widget")return!1}return!(s<0&&t.actualNode&&!ut(t)&&!Te(t))}var B3=N3;function L3(e,t){var r=pe(t);return!!Vu(r)}var q3=L3;function j3(e,t){var r=pe(t,{dpub:!0});return!!Hu(r)}var $3=j3;function yp(e){return e?e.getAttribute("aria-hidden")==="true"?!1:yp(Ge(e)):!0}function z3(e){return yp(Ge(e))}var V3=z3;function H3(e,t){var r=/^aria-/;return t.attrNames.some(function(a){return r.test(a)})}var G3=H3;function U3(e,t){return pe(t,{dpub:!0,fallback:!0})!==null}var W3=U3;function Y3(e,t){var r=/^aria-/,a=t.attrNames;if(a.length){for(var n=0,i=a.length;n<i;n++)if(r.test(a[n]))return!0}return!1}var K3=Y3,X3={"abstractrole-evaluate":sC,"accesskeys-after":CA,"accesskeys-evaluate":AA,"alt-space-value-evaluate":nA,"aria-allowed-attr-evaluate":iC,"aria-allowed-attr-matches":K3,"aria-allowed-role-evaluate":nC,"aria-allowed-role-matches":W3,"aria-busy-evaluate":rC,"aria-conditional-attr-evaluate":tC,"aria-conditional-checkbox-attr-evaluate":mp,"aria-conditional-row-attr-evaluate":pp,"aria-errormessage-evaluate":ZF,"aria-has-attr-matches":G3,"aria-hidden-body-evaluate":XF,"aria-hidden-focus-matches":V3,"aria-label-evaluate":Nx,"aria-labelledby-evaluate":Px,"aria-level-evaluate":YF,"aria-prohibited-attr-evaluate":GF,"aria-required-attr-evaluate":$F,"aria-required-children-evaluate":IF,"aria-required-children-matches":$3,"aria-required-parent-evaluate":PF,"aria-required-parent-matches":q3,"aria-roledescription-evaluate":kF,"aria-unsupported-attr-evaluate":TF,"aria-valid-attr-evaluate":CF,"aria-valid-attr-value-evaluate":EF,"attr-non-space-content-evaluate":jA,"autocomplete-appropriate-evaluate":HA,"autocomplete-matches":B3,"autocomplete-valid-evaluate":zA,"avoid-inline-spacing-evaluate":Ox,"braille-label-equivalent-evaluate":xF,"braille-roledescription-equivalent-evaluate":_F,"bypass-matches":I3,"caption-evaluate":b5,"caption-faked-evaluate":hx,"color-contrast-evaluate":ZA,"color-contrast-matches":k3,"css-orientation-lock-evaluate":c5,"data-table-large-matches":T3,"data-table-matches":C3,"deprecatedrole-evaluate":wF,"dlitem-evaluate":T5,"doc-has-title-evaluate":Sx,"duplicate-id-active-matches":A3,"duplicate-id-after":jx,"duplicate-id-aria-matches":x3,"duplicate-id-evaluate":Lx,"duplicate-id-misc-matches":w3,"duplicate-img-label-evaluate":rA,"exists-evaluate":Rx,"explicit-evaluate":eA,"fallbackrole-evaluate":DF,"focusable-content-evaluate":xA,"focusable-disabled-evaluate":wA,"focusable-element-evaluate":yA,"focusable-modal-open-evaluate":gA,"focusable-no-name-evaluate":hA,"focusable-not-tabbable-evaluate":pA,"frame-focusable-content-evaluate":dA,"frame-focusable-content-matches":y3,"frame-tested-after":v5,"frame-tested-evaluate":m5,"frame-title-has-text-matches":g3,"has-alt-evaluate":Fx,"has-descendant-after":LA,"has-descendant-evaluate":NA,"has-global-aria-attribute-evaluate":gF,"has-implicit-chromium-role-matches":h3,"has-lang-evaluate":I5,"has-text-content-evaluate":PA,"has-widget-role-evaluate":hF,"heading-matches":p3,"heading-order-after":GE,"heading-order-evaluate":HE,"help-same-as-label-evaluate":J5,"hidden-content-evaluate":x_,"hidden-explicit-label-evaluate":X5,"html-namespace-matches":f3,"html5-scope-evaluate":px,"identical-links-same-purpose-after":$E,"identical-links-same-purpose-evaluate":qE,"identical-links-same-purpose-matches":c3,"implicit-evaluate":Y5,"inline-style-property-evaluate":xx,"inserted-into-focus-order-matches":s3,"internal-link-present-evaluate":sE,"invalid-children-evaluate":A5,"invalidrole-evaluate":pF,"is-element-focusable-evaluate":dF,"is-initiator-matches":bp,"is-on-screen-evaluate":_x,"is-visible-matches":i3,"is-visible-on-screen-matches":n3,"label-content-name-mismatch-evaluate":U5,"label-content-name-mismatch-matches":a3,"label-matches":t3,"landmark-has-body-context-matches":QC,"landmark-is-top-level-evaluate":cA,"landmark-is-unique-after":q5,"landmark-is-unique-evaluate":B5,"landmark-unique-matches":XC,"layout-table-matches":KC,"link-in-text-block-evaluate":XA,"link-in-text-block-matches":WC,"link-in-text-block-style-evaluate":UA,"listitem-evaluate":E5,"matches-definition-evaluate":MA,"meta-refresh-evaluate":oE,"meta-viewport-scale-evaluate":s5,"multiple-label-evaluate":V5,"nested-interactive-matches":GC,"no-autoplay-audio-evaluate":f5,"no-autoplay-audio-matches":VC,"no-empty-role-matches":$C,"no-explicit-name-required-matches":gp,"no-focusable-content-evaluate":uA,"no-implicit-explicit-label-evaluate":lF,"no-naming-method-matches":qC,"no-negative-tabindex-matches":BC,"no-role-matches":IC,"non-empty-if-present-evaluate":Dx,"not-html-matches":MC,"object-is-loaded-matches":SC,"only-dlitems-evaluate":x5,"only-listitems-evaluate":_5,"p-as-heading-evaluate":aE,"p-as-heading-matches":RC,"page-no-duplicate-after":kA,"page-no-duplicate-evaluate":TA,"presentation-role-conflict-matches":FC,"presentational-role-evaluate":bx,"region-after":Qx,"region-evaluate":Yx,"same-caption-summary-evaluate":lx,"scope-value-evaluate":sx,"scrollable-region-focusable-matches":xC,"skip-link-evaluate":Ux,"skip-link-matches":_C,"structured-dlitems-evaluate":D5,"summary-interactive-matches":yC,"svg-namespace-matches":Qu,"svg-non-empty-title-evaluate":gx,"tabindex-evaluate":oA,"table-or-grid-role-matches":bC,"target-offset-evaluate":i5,"target-size-evaluate":ZE,"td-has-header-evaluate":ox,"td-headers-attr-evaluate":nx,"th-has-data-cells-evaluate":ax,"title-only-evaluate":$5,"unique-frame-title-after":Hx,"unique-frame-title-evaluate":zx,"unsupportedrole-evaluate":uF,"valid-lang-evaluate":M5,"valid-scrollable-semantics-evaluate":iF,"widget-not-inline-matches":mC,"window-is-top-matches":fC,"xml-lang-mismatch-evaluate":k5,"xml-lang-mismatch-matches":cC},_i=X3;function Z3(e){this.id=e.id,this.data=null,this.relatedNodes=[],this.result=null}var es=Z3;function ts(e){if(typeof e=="string"){if(_i[e])return _i[e];if(/^\s*function[\s\w]*\(/.test(e))return new Function("return "+e+";")();throw new ReferenceError("Function ID does not exist in the metadata-function-map: ".concat(e))}return e}function Dp(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return(Array.isArray(e)||M(e)!=="object")&&(e={value:e}),e}function Ur(e){e&&(this.id=e.id,this.configure(e))}Ur.prototype.enabled=!0,Ur.prototype.run=function(t,r,a,n,i){r=r||{};var o=r.hasOwnProperty("enabled")?r.enabled:this.enabled,u=this.getOptions(r.options);if(o){var s=new es(this),l=ru(s,r,n,i),c;try{c=this.evaluate.call(l,t.actualNode,u,t,a)}catch(d){t&&t.actualNode&&(d.errorNode=yt.toSpec(t)),i(d);return}l.isAsync||(s.result=c,n(s))}else n(null)},Ur.prototype.runSync=function(t,r,a){r=r||{};var n=r,i=n.enabled,o=i===void 0?this.enabled:i;if(!o)return null;var u=this.getOptions(r.options),s=new es(this),l=ru(s);l.async=function(){throw new Error("Cannot run async check while in a synchronous run")};var c;try{c=this.evaluate.call(l,t.actualNode,u,t,a)}catch(d){throw t&&t.actualNode&&(d.errorNode=yt.toSpec(t)),d}return s.result=c,s},Ur.prototype.configure=function(t){var r=this;(!t.evaluate||_i[t.evaluate])&&(this._internalCheck=!0),t.hasOwnProperty("enabled")&&(this.enabled=t.enabled),t.hasOwnProperty("options")&&(this._internalCheck?this.options=Dp(t.options):this.options=t.options),["evaluate","after"].filter(function(a){return t.hasOwnProperty(a)}).forEach(function(a){return r[a]=ts(t[a])})},Ur.prototype.getOptions=function(t){return this._internalCheck?vu(this.options,Dp(t||{})):t||this.options};var wp=Ur;function J3(e){this.id=e.id,this.result=se.NA,this.pageLevel=e.pageLevel,this.impact=null,this.nodes=[]}var xi=J3;function it(e,t){this._audit=t,this.id=e.id,this.selector=e.selector||"*",e.impact&&(he(se.impact.includes(e.impact),"Impact ".concat(e.impact," is not a valid impact")),this.impact=e.impact),this.excludeHidden=typeof e.excludeHidden=="boolean"?e.excludeHidden:!0,this.enabled=typeof e.enabled=="boolean"?e.enabled:!0,this.pageLevel=typeof e.pageLevel=="boolean"?e.pageLevel:!1,this.reviewOnFail=typeof e.reviewOnFail=="boolean"?e.reviewOnFail:!1,this.any=e.any||[],this.all=e.all||[],this.none=e.none||[],this.tags=e.tags||[],this.preload=!!e.preload,this.actIds=e.actIds,e.matches&&(this.matches=ts(e.matches))}it.prototype.matches=function(){return!0},it.prototype.gather=function(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},a="mark_gather_start_"+this.id,n="mark_gather_end_"+this.id,i="mark_isVisibleToScreenReaders_start_"+this.id,o="mark_isVisibleToScreenReaders_end_"+this.id;r.performanceTimer&&ge.mark(a);var u=Pu(this.selector,t);return this.excludeHidden&&(r.performanceTimer&&ge.mark(i),u=u.filter(function(s){return Te(s)}),r.performanceTimer&&(ge.mark(o),ge.measure("rule_"+this.id+"#gather_axe.utils.isVisibleToScreenReaders",i,o))),r.performanceTimer&&(ge.mark(n),ge.measure("rule_"+this.id+"#gather",a,n)),u},it.prototype.runChecks=function(t,r,a,n,i,o){var u=this,s=Nt();this[t].forEach(function(l){var c=u._audit.checks[l.id||l],d=ii(c,u.id,a);s.defer(function(f,p){c.run(r,d,n,f,function(m){p(new di({ruleId:u.id,method:"".concat(c.id,"#evaluate"),errorNode:new bt(r),error:m}))})})}),s.then(function(l){l=l.filter(function(c){return c}),i({type:t,results:l})}).catch(o)},it.prototype.runChecksSync=function(t,r,a,n){var i=this,o=[];return this[t].forEach(function(u){var s=i._audit.checks[u.id||u],l=ii(s,i.id,a);o.push(s.runSync(r,l,n))}),o=o.filter(function(u){return u}),{type:t,results:o}},it.prototype.run=function(t){var r=this,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0,i=arguments.length>3?arguments[3]:void 0;a.performanceTimer&&this._trackPerformance();var o=Nt(),u=new xi(this),s;try{s=this.gatherAndMatchNodes(t,a)}catch(l){i(l);return}a.performanceTimer&&this._logGatherPerformance(s),s.forEach(function(l){o.defer(function(c,d){var f=Nt();["any","all","none"].forEach(function(p){f.defer(function(m,h){r.runChecks(p,l,a,t,m,h)})}),f.then(function(p){var m=_p(p);m&&(m.node=new bt(l),u.nodes.push(m),r.reviewOnFail&&(["any","all"].forEach(function(h){m[h].forEach(function(v){v.result===!1&&(v.result=void 0)})}),m.none.forEach(function(h){h.result===!0&&(h.result=void 0)}))),c()}).catch(function(p){return d(p)})})}),o.then(function(){a.performanceTimer&&r._logRulePerformance(),setTimeout(function(){n(u)},0)}).catch(function(l){a.performanceTimer&&r._logRulePerformance(),i(l)})},it.prototype.runSync=function(t){var r=this,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};a.performanceTimer&&this._trackPerformance();var n=new xi(this),i=this.gatherAndMatchNodes(t,a);return a.performanceTimer&&this._logGatherPerformance(i),i.forEach(function(o){var u=[];["any","all","none"].forEach(function(l){u.push(r.runChecksSync(l,o,a,t))});var s=_p(u);s&&(s.node=o.actualNode?new bt(o):null,n.nodes.push(s),r.reviewOnFail&&(["any","all"].forEach(function(l){s[l].forEach(function(c){c.result===!1&&(c.result=void 0)})}),s.none.forEach(function(l){l.result===!0&&(l.result=void 0)})))}),a.performanceTimer&&this._logRulePerformance(),n},it.prototype._trackPerformance=function(){this._markStart="mark_rule_start_"+this.id,this._markEnd="mark_rule_end_"+this.id,this._markChecksStart="mark_runchecks_start_"+this.id,this._markChecksEnd="mark_runchecks_end_"+this.id},it.prototype._logGatherPerformance=function(t){gr("gather for ".concat(this.id," (").concat(t.length," nodes): ").concat(ge.timeElapsed(),"ms")),ge.mark(this._markChecksStart)},it.prototype._logRulePerformance=function(){ge.mark(this._markChecksEnd),ge.mark(this._markEnd),ge.measure("runchecks_"+this.id,this._markChecksStart,this._markChecksEnd),ge.measure("rule_"+this.id,this._markStart,this._markEnd)};function _p(e){if(e.length){var t=!1,r={};return e.forEach(function(a){var n=a.results.filter(function(i){return i});r[a.type]=n,n.length&&(t=!0)}),t?r:null}}it.prototype.gatherAndMatchNodes=function(t,r){var a=this,n="mark_matches_start_"+this.id,i="mark_matches_end_"+this.id,o=this.gather(t,r);return r.performanceTimer&&ge.mark(n),o=o.filter(function(u){try{return a.matches(u.actualNode,u,t)}catch(s){throw new di({ruleId:a.id,method:"#matches",errorNode:new bt(u),error:s})}}),r.performanceTimer&&(ge.mark(i),ge.measure("rule_"+this.id+"#matches",n,i)),o};function Q3(e){return Qn(e).map(function(t){var r=e._audit.checks[t.id||t];return r&&typeof r.after=="function"?r:null}).filter(Boolean)}function eR(e,t){var r=[];return e.forEach(function(a){var n=Qn(a);n.forEach(function(i){i.id===t&&(i.node=a.node,r.push(i))})}),r}function tR(e){return e.filter(function(t){return t.filtered!==!0})}function rR(e){var t=["any","all","none"],r=e.nodes.filter(function(a){var n=0;return t.forEach(function(i){a[i]=tR(a[i]),n+=a[i].length}),n>0});return e.pageLevel&&r.length&&(r=[r.reduce(function(a,n){if(a)return t.forEach(function(i){a[i].push.apply(a[i],n[i])}),a})]),r}it.prototype.after=function(t,r){var a=this,n=Q3(this);return n.forEach(function(i){var o=eR(t.nodes,i.id),u=ii(i,a.id,r),s;try{s=i.after(o,u.options)}catch(c){var l;throw new di({ruleId:a.id,method:"".concat(i.id,"#after"),errorNode:(l=t.nodes)===null||l===void 0||(l=l[0])===null||l===void 0?void 0:l.node,error:c})}a.reviewOnFail&&s.forEach(function(c){var d=(a.any.includes(c.id)||a.all.includes(c.id))&&c.result===!1,f=a.none.includes(c.id)&&c.result===!0;(d||f)&&(c.result=void 0)}),o.forEach(function(c){delete c.node,s.indexOf(c)===-1&&(c.filtered=!0)})}),t.nodes=rR(t),t},it.prototype.configure=function(t){t.hasOwnProperty("selector")&&(this.selector=t.selector),t.hasOwnProperty("excludeHidden")&&(this.excludeHidden=typeof t.excludeHidden=="boolean"?t.excludeHidden:!0),t.hasOwnProperty("enabled")&&(this.enabled=typeof t.enabled=="boolean"?t.enabled:!0),t.hasOwnProperty("pageLevel")&&(this.pageLevel=typeof t.pageLevel=="boolean"?t.pageLevel:!1),t.hasOwnProperty("reviewOnFail")&&(this.reviewOnFail=typeof t.reviewOnFail=="boolean"?t.reviewOnFail:!1),t.hasOwnProperty("any")&&(this.any=t.any),t.hasOwnProperty("all")&&(this.all=t.all),t.hasOwnProperty("none")&&(this.none=t.none),t.hasOwnProperty("tags")&&(this.tags=t.tags),t.hasOwnProperty("actIds")&&(this.actIds=t.actIds),t.hasOwnProperty("matches")&&(this.matches=ts(t.matches)),t.impact&&(he(se.impact.includes(t.impact),"Impact ".concat(t.impact," is not a valid impact")),this.impact=t.impact)};var Wr=/\{\{.+?\}\}/g,aR=(function(){function e(t){wt(this,e),this.lang="en",this.defaultConfig=t,this.standards=ve,this._init(),this._defaultLocale=null}return _t(e,[{key:"_setDefaultLocale",value:function(){if(!this._defaultLocale){for(var r={checks:{},rules:{},failureSummaries:{},incompleteFallbackMessage:"",lang:this.lang},a=Object.keys(this.data.checks),n=0;n<a.length;n++){var i=a[n],o=this.data.checks[i],u=o.messages,s=u.pass,l=u.fail,c=u.incomplete;r.checks[i]={pass:s,fail:l,incomplete:c}}for(var d=Object.keys(this.data.rules),f=0;f<d.length;f++){var p=d[f],m=this.data.rules[p],h=m.description,v=m.help;r.rules[p]={description:h,help:v}}for(var g=Object.keys(this.data.failureSummaries),b=0;b<g.length;b++){var w=g[b],D=this.data.failureSummaries[w],_=D.failureMessage;r.failureSummaries[w]={failureMessage:_}}r.incompleteFallbackMessage=this.data.incompleteFallbackMessage,this._defaultLocale=r}}},{key:"_resetLocale",value:function(){var r=this._defaultLocale;r&&this.applyLocale(r)}},{key:"_applyCheckLocale",value:function(r){for(var a=Object.keys(r),n=0;n<a.length;n++){var i=a[n];if(!this.data.checks[i])throw new Error('Locale provided for unknown check: "'.concat(i,'"'));this.data.checks[i]=iR(this.data.checks[i],r[i])}}},{key:"_applyRuleLocale",value:function(r){for(var a=Object.keys(r),n=0;n<a.length;n++){var i=a[n];if(!this.data.rules[i])throw new Error('Locale provided for unknown rule: "'.concat(i,'"'));this.data.rules[i]=oR(this.data.rules[i],r[i])}}},{key:"_applyFailureSummaries",value:function(r){for(var a=Object.keys(r),n=0;n<a.length;n++){var i=a[n];if(!this.data.failureSummaries[i])throw new Error('Locale provided for unknown failureMessage: "'.concat(i,'"'));this.data.failureSummaries[i]=uR(this.data.failureSummaries[i],r[i])}}},{key:"applyLocale",value:function(r){this._setDefaultLocale(),r.checks&&this._applyCheckLocale(r.checks),r.rules&&this._applyRuleLocale(r.rules),r.failureSummaries&&this._applyFailureSummaries(r.failureSummaries,"failureSummaries"),r.incompleteFallbackMessage&&(this.data.incompleteFallbackMessage=sR(this.data.incompleteFallbackMessage,r.incompleteFallbackMessage)),r.lang&&(this.lang=r.lang)}},{key:"setAllowedOrigins",value:function(r){var a=Ep();this.allowedOrigins=[];var n=xe(r),i;try{for(n.s();!(i=n.n()).done;){var o=i.value;if(o===se.allOrigins){this.allowedOrigins=["*"];return}else o!==se.sameOrigin?this.allowedOrigins.push(o):a&&this.allowedOrigins.push(a)}}catch(u){n.e(u)}finally{n.f()}}},{key:"_init",value:function(){var r=nR(this.defaultConfig);this.lang=r.lang||"en",this.reporter=r.reporter,this.commands={},this.rules=[],this.checks={},this.brand="axe",this.application="axeAPI",this.tagExclude=["experimental","deprecated"],this.noHtml=r.noHtml,this.allowedOrigins=r.allowedOrigins,Ap(r.rules,this,"addRule"),Ap(r.checks,this,"addCheck"),this.data={},this.data.checks=r.data&&r.data.checks||{},this.data.rules=r.data&&r.data.rules||{},this.data.failureSummaries=r.data&&r.data.failureSummaries||{},this.data.incompleteFallbackMessage=r.data&&r.data.incompleteFallbackMessage||"",this._constructHelpUrls()}},{key:"registerCommand",value:function(r){this.commands[r.id]=r.callback}},{key:"addRule",value:function(r){r.metadata&&(this.data.rules[r.id]=r.metadata);var a=this.getRule(r.id);a?a.configure(r):this.rules.push(new it(r,this))}},{key:"addCheck",value:function(r){var a=r.metadata;M(a)==="object"&&(this.data.checks[r.id]=a,M(a.messages)==="object"&&Object.keys(a.messages).filter(function(n){return a.messages.hasOwnProperty(n)&&typeof a.messages[n]=="string"}).forEach(function(n){a.messages[n].indexOf("function")===0&&(a.messages[n]=new Function("return "+a.messages[n]+";")())})),this.checks[r.id]?this.checks[r.id].configure(r):this.checks[r.id]=new wp(r)}},{key:"run",value:function(r,a,n,i){this.normalizeOptions(a),bt.setRunOptions(a),x._selectCache=[];var o=lR(this.rules,r,a),u=o.now,s=o.later,l=Nt();u.forEach(function(f){l.defer(Fp(f,r,a))});var c=Nt();s.length&&c.defer(function(f){X1(a).then(function(p){return f(p)}).catch(function(p){console.warn("Couldn't load preload assets: ",p),f(void 0)})});var d=Nt();d.defer(l),d.defer(c),d.then(function(f){var p=f.pop();if(p&&p.length){var m=p[0];m&&(r=de({},r,m))}var h=f[0];if(!s.length){x._selectCache=void 0,n(h.filter(function(g){return!!g}));return}var v=Nt();s.forEach(function(g){var b=Fp(g,r,a);v.defer(b)}),v.then(function(g){x._selectCache=void 0,n(h.concat(g).filter(function(b){return!!b}))}).catch(i)}).catch(i)}},{key:"after",value:function(r,a){var n=this.rules;return r.map(function(i){if(i.error)return i;var o=Ia(n,"id",i.id);if(!o)throw new Error("Result for unknown rule. You may be running mismatch axe-core versions");try{return o.after(i,a)}catch(u){if(a.debug)throw u;return Cp(o,u)}})}},{key:"getRule",value:function(r){return this.rules.find(function(a){return a.id===r})}},{key:"normalizeOptions",value:function(r){var a=this,n=[],i=[];if(a.rules.forEach(function(c){i.push(c.id),c.tags.forEach(function(d){n.includes(d)||n.push(d)})}),["object","string"].includes(M(r.runOnly))){if(typeof r.runOnly=="string"&&(r.runOnly=[r.runOnly]),Array.isArray(r.runOnly)){var o=r.runOnly.find(function(c){return n.includes(c)}),u=r.runOnly.find(function(c){return i.includes(c)});if(o&&u)throw new Error("runOnly cannot be both rules and tags");u?r.runOnly={type:"rule",values:r.runOnly}:r.runOnly={type:"tag",values:r.runOnly}}var s=r.runOnly;if(s.value&&!s.values&&(s.values=s.value,delete s.value),!Array.isArray(s.values)||s.values.length===0)throw new Error("runOnly.values must be a non-empty array");if(["rule","rules"].includes(s.type))s.type="rule",s.values.forEach(function(c){if(!i.includes(c))throw new Error("unknown rule `"+c+"` in options.runOnly")});else if(["tag","tags",void 0].includes(s.type)){s.type="tag";var l=s.values.filter(function(c){return!n.includes(c)&&!/wcag2[1-3]a{1,3}/.test(c)});l.length!==0&&x.log("Could not find tags `"+l.join("`, `")+"`")}else throw new Error("Unknown runOnly type '".concat(s.type,"'"))}return M(r.rules)==="object"&&Object.keys(r.rules).forEach(function(c){if(!i.includes(c))throw new Error("unknown rule `"+c+"` in options.rules")}),r}},{key:"setBranding",value:function(r){var a={brand:this.brand,application:this.application};typeof r=="string"&&(this.application=r),r&&r.hasOwnProperty("brand")&&r.brand&&typeof r.brand=="string"&&(this.brand=r.brand),r&&r.hasOwnProperty("application")&&r.application&&typeof r.application=="string"&&(this.application=r.application),this._constructHelpUrls(a)}},{key:"_constructHelpUrls",value:function(){var r=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,n=(x.version.match(/^[1-9][0-9]*\.[0-9]+/)||["x.y"])[0];this.rules.forEach(function(i){r.data.rules[i.id]||(r.data.rules[i.id]={});var o=r.data.rules[i.id];(typeof o.helpUrl!="string"||a&&o.helpUrl===Rp(a,i.id,n))&&(o.helpUrl=Rp(r,i.id,n))})}},{key:"resetRulesAndChecks",value:function(){this._init(),this._resetLocale()}}])})(),xp=aR;function Ep(){if(E.origin&&E.origin!=="null")return E.origin;if(E.location&&E.location.origin&&E.location.origin!=="null")return E.location.origin}function nR(e){var t;if(e?(t=Wt(e),t.commons=e.commons):t={},t.reporter=t.reporter||null,t.noHtml=t.noHtml||!1,!t.allowedOrigins){var r=Ep();t.allowedOrigins=r?[r]:[]}return t.rules=t.rules||[],t.checks=t.checks||[],t.data=de({checks:{},rules:{}},t.data),t}function Ap(e,t,r){var a,n;for(a=0,n=e.length;a<n;a++)t[r](e[a])}var iR=function(t,r){var a=r.pass,n=r.fail;return typeof a=="string"&&Wr.test(a)&&(a=er.default.compile(a)),typeof n=="string"&&Wr.test(n)&&(n=er.default.compile(n)),de({},t,{messages:{pass:a||t.messages.pass,fail:n||t.messages.fail,incomplete:M(t.messages.incomplete)==="object"?de({},t.messages.incomplete,r.incomplete):r.incomplete}})},oR=function(t,r){var a=r.help,n=r.description;return typeof a=="string"&&Wr.test(a)&&(a=er.default.compile(a)),typeof n=="string"&&Wr.test(n)&&(n=er.default.compile(n)),de({},t,{help:a||t.help,description:n||t.description})},uR=function(t,r){var a=r.failureMessage;return typeof a=="string"&&Wr.test(a)&&(a=er.default.compile(a)),de({},t,{failureMessage:a||t.failureMessage})},sR=function(t,r){return typeof r=="string"&&Wr.test(r)&&(r=er.default.compile(r)),r||t};function lR(e,t,r){var a={now:[],later:[]},n=e.reduce(function(i,o){return tf(o,t,r)?o.preload?(i.later.push(o),i):(i.now.push(o),i):i},a);return n}function Fp(e,t,r){return r.performanceTimer&&ge.mark("mark_rule_start_"+e.id),function(a,n){e.run(t,r,function(i){return a(i)},function(i){r.debug?n(i):a(Cp(e,i))})}}function Cp(e,t){var r=t.errorNode,a=ci(t),n=[{id:"error-occurred",result:void 0,data:a,relatedNodes:[]}],i=r||new bt(N.documentElement);return Object.assign(new xi(e),{error:a,result:se.CANTTELL,nodes:[{any:[],all:[],none:n,node:i}]})}function Rp(e,t,r){var a=e.brand,n=e.application,i=e.lang;return se.helpUrlBase+a+"/"+(r||x.version.substring(0,x.version.lastIndexOf(".")))+"/"+t+"?application="+encodeURIComponent(n)+(i&&i!=="en"?"&lang="+encodeURIComponent(i):"")}function Tp(e){var t=E&&"Node"in E&&"NodeList"in E,r=!!N;if(!(t&&r)){if(!e||!e.ownerDocument)throw new Error('Required "window" or "document" globals not defined and cannot be deduced from the context. Either set the globals before running or pass in a valid Element.');r||(ue.set("globalDocumentSet",!0),N=e.ownerDocument),t||(ue.set("globalWindowSet",!0),E=N.defaultView)}}function cR(){ue.get("globalDocumentSet")&&(ue.set("globalDocumentSet",!1),N=null),ue.get("globalWindowSet")&&(ue.set("globalWindowSet",!1),E=null)}function dR(){cR(),x._memoizedFns.forEach(function(e){return e.clear()}),ue.clear(),x._tree=void 0,x._selectorData=void 0,x._selectCache=void 0}var dr=dR;function Sp(e,t,r,a){try{e=new oi(e),x._tree=e.flatTree,x._selectorData=Cn(e.flatTree)}catch(o){return dr(),a(o)}var n=Nt(),i=x._audit;t.performanceTimer&&ge.auditStart(),e.frames.length&&t.iframes!==!1&&n.defer(function(o,u){E1(e,t,"rules",null,o,u)}),n.defer(function(o,u){i.run(e,t,o,u)}),n.then(function(o){try{t.performanceTimer&&ge.auditEnd();var u=ei(o.map(function(s){return{results:s}}));e.initiator&&(t.performanceTimer&&ge.mark("auditAfterStart"),u=i.after(u,t),t.performanceTimer&&(ge.mark("auditAfterEnd"),ge.measure("audit.after","auditAfterStart","auditAfterEnd"),ge.logMeasures("audit.after")),u.forEach(li),u=u.map(na));try{r(u,dr)}catch(s){dr(),gr(s)}}catch(s){dr(),a(s)}}).catch(function(o){dr(),a(o)})}function fR(e){x._audit=new xp(e)}function pR(e,t,r){var a=r,n=function(s){s instanceof Error||(s=new Error(s)),r(s)},i=e&&e.context||{};i.hasOwnProperty("include")&&!i.include.length&&(i.include=[N]);var o=e&&e.options||{};switch(e.command){case"rules":return Sp(i,o,function(u,s){u=yt.mapRawResults(u),a(u),s()},n);case"cleanup-plugin":return df(a,n);default:if(x._audit&&x._audit.commands&&x._audit.commands[e.command])return x._audit.commands[e.command](e,r)}}E.top!==E&&(St.subscribe("axe.start",pR),St.subscribe("axe.ping",function(e,t,r){r({axe:!0})}));function Ha(e){this._run=e.run,this._collect=e.collect,this._registry={},e.commands.forEach(function(t){x._audit.registerCommand(t)})}Ha.prototype.run=function(){return this._run.apply(this,arguments)},Ha.prototype.collect=function(){return this._collect.apply(this,arguments)},Ha.prototype.cleanup=function(t){var r=x.utils.queue(),a=this;Object.keys(this._registry).forEach(function(n){r.defer(function(i){a._registry[n].cleanup(i)})}),r.then(t)},Ha.prototype.add=function(t){this._registry[t.id]=t};function mR(e){x.plugins[e.id]=new Ha(e)}var hR=mR;function vR(){var e=x._audit;if(!e)throw new Error("No audit configured");e.resetRulesAndChecks(),Zy()}var gR=vR;function bR(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};r.reporter=r.reporter||x._audit.reporter||"v1",x._selectorData={},t instanceof He||(t=new cf(t));var a=N1(e);if(!a)throw new Error("unknown rule `"+e+"`");a=Object.create(a,{excludeHidden:{value:!1}});var n={initiator:!0,include:[t],exclude:[],frames:[],page:!1,focusable:!0,size:{},flatTree:[]},i=a.runSync(n,r);li(i),na(i);var o=Qs([i]);return o.violations.forEach(function(u){return u.nodes.forEach(function(s){s.failureSummary=_u(s)})}),de({},lr(),o,{toolOptions:r})}function kp(e){var t,r,a,n=H(e,3),i=n[0],o=n[1],u=n[2],s=new TypeError("axe.run arguments are invalid");if(!j1(i)){if(u!==void 0)throw s;u=o,o=i,i=N}if(M(o)!=="object"){if(u!==void 0)throw s;u=o,o={}}if(typeof u!="function"&&u!==void 0)throw s;return o=Wt(o),o.reporter=(t=(r=o.reporter)!==null&&r!==void 0?r:(a=x._audit)===null||a===void 0?void 0:a.reporter)!==null&&t!==void 0?t:"v1",{context:i,options:o,callback:u}}var rs=function(){};function yR(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];Tp(t[0]);var a=kp(t),n=a.context,i=a.options,o=a.callback,u=o===void 0?rs:o,s=DR(u),l=s.thenable,c=s.resolve,d=s.reject;try{he(x._audit,"No audit configured"),he(!x._running,"Axe is already running. Use `await axe.run()` to wait for the previous run to finish before starting a new run.")}catch(m){return _R(m,u)}x._running=!0,i.performanceTimer&&ge.start();function f(m,h){var v=function(w){i.performanceTimer&&(ge.mark("reporterEnd"),ge.measure("reporter","reporterStart","reporterEnd"),ge.logMeasures("reporter"),ge.end()),x._running=!1,h();try{c(w)}catch(D){x.log(D)}},g=function(w){x._running=!1,h();try{d(w)}catch(D){x.log(D)}};try{i.performanceTimer&&ge.mark("reporterStart"),wR(m,i,v,g)}catch(b){g(b)}}function p(m){i.performanceTimer&&ge.end(),x._running=!1,u(m),d(m)}return x._runRules(n,i,f,p),l}function DR(e){var t,r,a;return typeof Promise=="function"&&e===rs?t=new Promise(function(n,i){r=i,a=n}):(a=function(i){return e(null,i)},r=function(i){return e(i)}),{thenable:t,reject:r,resolve:a}}function wR(e,t,r,a){var n=Bu(t.reporter),i=n(e,t,r,a);i!==void 0&&r(i)}function _R(e,t){if(typeof t=="function"&&t!==rs){t(e.message);return}throw e}function xR(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var a=kp(t),n=a.options,i=a.context;he(x._audit,"Axe is not configured. Audit is missing."),he(!x._running,"Axe is already running. Use `await axe.run()` to wait for the previous run to finish before starting a new run.");var o=new oi(i,x._tree);return x._tree=o.flatTree,x._selectorData=Cn(o.flatTree),x._running=!0,n.elementRef=!1,new Promise(function(u,s){x._audit.run(o,n,u,s)}).then(function(u){u=yt.mapRawResults(u);var s=o.frames.map(function(c){var d=c.node;return yt.toSpec(d)}),l;return o.initiator&&(l=lr()),x._running=!1,dr(),{results:u,frames:s,environmentData:l}}).catch(function(u){return x._running=!1,dr(),Promise.reject(u)})}function ER(e){var t,r,a,n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};n=Wt(n);var i=e.find(function(s){return s.environmentData})||{},o=i.environmentData;x._audit.normalizeOptions(n),n.reporter=(t=(r=n.reporter)!==null&&r!==void 0?r:(a=x._audit)===null||a===void 0?void 0:a.reporter)!==null&&t!==void 0?t:"v1",AR(e);var u=ei(e);return u=x._audit.after(u,n),u.forEach(li),u=u.map(na),CR(u,de({environmentData:o},n))}function AR(e){var t=[],r=xe(e),a;try{for(r.s();!(a=r.n()).done;){var n=a.value,i=t.shift();if(n){n.frameSpec=i??null;var o=FR(n);t.unshift.apply(t,re(o))}}}catch(u){r.e(u)}finally{r.f()}}function FR(e){var t=e.frames,r=e.frameSpec;return r?t.map(function(a){return yt.mergeSpecs(a,r)}):t}function CR(e,t){return new Promise(function(r,a){var n=Bu(t.reporter);n(e,t,r,a)})}function RR(e){if(x._tree)throw new Error("Axe is already setup. Call `axe.teardown()` before calling `axe.setup` again.");return e&&M(e.documentElement)==="object"&&M(e.defaultView)==="object"&&(e=e.documentElement),Tp(e),x._tree=Du(e),x._selectorData=Cn(x._tree),x._tree[0]}var TR=RR,SR=function(t,r,a){console.warn('"na" reporter will be deprecated in axe v4.0. Use the "v2" reporter instead.'),typeof r=="function"&&(a=r,r={});var n=r,i=n.environmentData,o=qe(n,Yp);a(de({},lr(i),{toolOptions:o},Na(t,r)))},kR=SR,OR=function(t,r,a){typeof r=="function"&&(a=r,r={});var n=r,i=n.environmentData,o=qe(n,Kp);r.resultTypes=["violations"];var u=Na(t,r),s=u.violations;a(de({},lr(i),{toolOptions:o,violations:s}))},MR=OR,PR=function(t,r,a){if(typeof r=="function"&&(a=r,r={}),!t||!Array.isArray(t))return a(t);var n=t.map(function(i){for(var o=de({},i),u=["passes","violations","incomplete","inapplicable"],s=0,l=u;s<l.length;s++){var c=l[s];o[c]=yt.mapRawNodeResults(o[c])}return o});a(n)},Op=PR,IR=function(t,r,a){typeof r=="function"&&(a=r,r={});var n=r,i=n.environmentData,o=qe(n,Xp);Op(t,o,function(u){var s=lr(i);a({raw:u,env:s})})},NR=IR,BR=function(t,r,a){typeof r=="function"&&(a=r,r={});var n=r,i=n.environmentData,o=qe(n,Zp),u=Na(t,r),s=function(c){c.nodes.forEach(function(d){d.failureSummary=_u(d)})};u.incomplete.forEach(s),u.violations.forEach(s),a(de({},lr(i),{toolOptions:o},u))},LR=BR,qR=function(t,r,a){typeof r=="function"&&(a=r,r={});var n=r,i=n.environmentData,o=qe(n,Jp),u=Na(t,r);a(de({},lr(i),{toolOptions:o},u))},jR=qR,$R={base:{Audit:xp,CheckResult:es,Check:wp,Context:oi,RuleResult:xi,Rule:it,metadataFunctionMap:_i},public:{reporters:La},helpers:{failureSummary:_u,incompleteFallbackMessage:xu,processAggregate:Na},utils:{setDefaultFrameMessenger:b1,cacheNodeSelectors:R1,getNodesMatchingExpression:F1,convertSelector:Yn},commons:{dom:{nativelyHidden:_c,displayHidden:xc,visibilityHidden:Ec,contentVisibiltyHidden:Ac,ariaHidden:Fc,opacityHidden:Cc,scrollHidden:Rc,overflowHidden:Tc,clipHidden:Sc,areaHidden:Do,detailsHidden:kc}}},zR=$R;x._thisWillBeDeletedDoNotUse=zR,x.constants=se,x.log=gr,x.AbstractVirtualNode=He,x.SerialVirtualNode=cf,x.VirtualNode=Wn,x._cache=ue,x.imports=al,x.cleanup=df,x.configure=b_,x.frameMessenger=y_,x.getRules=w_,x._load=fR,x.plugins={},x.registerPlugin=hR,x.hasReporter=pf,x.getReporter=Bu,x.addReporter=v_,x.reset=gR,x._runRules=Sp,x.runVirtualRule=bR,x.run=yR,x.setup=TR,x.teardown=dr,x.runPartial=xR,x.finishRun=ER,x.commons=If,x.utils=Hi,x.addReporter("na",kR),x.addReporter("no-passes",MR),x.addReporter("rawEnv",NR),x.addReporter("raw",Op),x.addReporter("v1",LR),x.addReporter("v2",jR,!0)})(),x._load({lang:"en",data:{rules:{accesskeys:{description:"Ensure every accesskey attribute value is unique",help:"accesskey attribute value should be unique"},"area-alt":{description:"Ensure <area> elements of image maps have alternative text",help:"Active <area> elements must have alternative text"},"aria-allowed-attr":{description:"Ensure an element's role supports its ARIA attributes",help:"Elements must only use supported ARIA attributes"},"aria-allowed-role":{description:"Ensure role attribute has an appropriate value for the element",help:"ARIA role should be appropriate for the element"},"aria-braille-equivalent":{description:"Ensure aria-braillelabel and aria-brailleroledescription have a non-braille equivalent",help:"aria-braille attributes must have a non-braille equivalent"},"aria-command-name":{description:"Ensure every ARIA button, link and menuitem has an accessible name",help:"ARIA commands must have an accessible name"},"aria-conditional-attr":{description:"Ensure ARIA attributes are used as described in the specification of the element's role",help:"ARIA attributes must be used as specified for the element's role"},"aria-deprecated-role":{description:"Ensure elements do not use deprecated roles",help:"Deprecated ARIA roles must not be used"},"aria-dialog-name":{description:"Ensure every ARIA dialog and alertdialog node has an accessible name",help:"ARIA dialog and alertdialog nodes should have an accessible name"},"aria-hidden-body":{description:'Ensure aria-hidden="true" is not present on the document body.',help:'aria-hidden="true" must not be present on the document body'},"aria-hidden-focus":{description:"Ensure aria-hidden elements are not focusable nor contain focusable elements",help:"ARIA hidden element must not be focusable or contain focusable elements"},"aria-input-field-name":{description:"Ensure every ARIA input field has an accessible name",help:"ARIA input fields must have an accessible name"},"aria-meter-name":{description:"Ensure every ARIA meter node has an accessible name",help:"ARIA meter nodes must have an accessible name"},"aria-progressbar-name":{description:"Ensure every ARIA progressbar node has an accessible name",help:"ARIA progressbar nodes must have an accessible name"},"aria-prohibited-attr":{description:"Ensure ARIA attributes are not prohibited for an element's role",help:"Elements must only use permitted ARIA attributes"},"aria-required-attr":{description:"Ensure elements with ARIA roles have all required ARIA attributes",help:"Required ARIA attributes must be provided"},"aria-required-children":{description:"Ensure elements with an ARIA role that require child roles contain them",help:"Certain ARIA roles must contain particular children"},"aria-required-parent":{description:"Ensure elements with an ARIA role that require parent roles are contained by them",help:"Certain ARIA roles must be contained by particular parents"},"aria-roledescription":{description:"Ensure aria-roledescription is only used on elements with an implicit or explicit role",help:"aria-roledescription must be on elements with a semantic role"},"aria-roles":{description:"Ensure all elements with a role attribute use a valid value",help:"ARIA roles used must conform to valid values"},"aria-text":{description:'Ensure role="text" is used on elements with no focusable descendants',help:'"role=text" should have no focusable descendants'},"aria-toggle-field-name":{description:"Ensure every ARIA toggle field has an accessible name",help:"ARIA toggle fields must have an accessible name"},"aria-tooltip-name":{description:"Ensure every ARIA tooltip node has an accessible name",help:"ARIA tooltip nodes must have an accessible name"},"aria-treeitem-name":{description:"Ensure every ARIA treeitem node has an accessible name",help:"ARIA treeitem nodes should have an accessible name"},"aria-valid-attr-value":{description:"Ensure all ARIA attributes have valid values",help:"ARIA attributes must conform to valid values"},"aria-valid-attr":{description:"Ensure attributes that begin with aria- are valid ARIA attributes",help:"ARIA attributes must conform to valid names"},"audio-caption":{description:"Ensure <audio> elements have captions",help:"<audio> elements must have a captions track"},"autocomplete-valid":{description:"Ensure the autocomplete attribute is correct and suitable for the form field",help:"autocomplete attribute must be used correctly"},"avoid-inline-spacing":{description:"Ensure that text spacing set through style attributes can be adjusted with custom stylesheets",help:"Inline text spacing must be adjustable with custom stylesheets"},blink:{description:"Ensure <blink> elements are not used",help:"<blink> elements are deprecated and must not be used"},"button-name":{description:"Ensure buttons have discernible text",help:"Buttons must have discernible text"},bypass:{description:"Ensure each page has at least one mechanism for a user to bypass navigation and jump straight to the content",help:"Page must have means to bypass repeated blocks"},"color-contrast-enhanced":{description:"Ensure the contrast between foreground and background colors meets WCAG 2 AAA enhanced contrast ratio thresholds",help:"Elements must meet enhanced color contrast ratio thresholds"},"color-contrast":{description:"Ensure the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds",help:"Elements must meet minimum color contrast ratio thresholds"},"css-orientation-lock":{description:"Ensure content is not locked to any specific display orientation, and the content is operable in all display orientations",help:"CSS Media queries must not lock display orientation"},"definition-list":{description:"Ensure <dl> elements are structured correctly",help:"<dl> elements must only directly contain properly-ordered <dt> and <dd> groups, <script>, <template> or <div> elements"},dlitem:{description:"Ensure <dt> and <dd> elements are contained by a <dl>",help:"<dt> and <dd> elements must be contained by a <dl>"},"document-title":{description:"Ensure each HTML document contains a non-empty <title> element",help:"Documents must have <title> element to aid in navigation"},"duplicate-id-active":{description:"Ensure every id attribute value of active elements is unique",help:"IDs of active elements must be unique"},"duplicate-id-aria":{description:"Ensure every id attribute value used in ARIA and in labels is unique",help:"IDs used in ARIA and labels must be unique"},"duplicate-id":{description:"Ensure every id attribute value is unique",help:"id attribute value must be unique"},"empty-heading":{description:"Ensure headings have discernible text",help:"Headings should not be empty"},"empty-table-header":{description:"Ensure table headers have discernible text",help:"Table header text should not be empty"},"focus-order-semantics":{description:"Ensure elements in the focus order have a role appropriate for interactive content",help:"Elements in the focus order should have an appropriate role"},"form-field-multiple-labels":{description:"Ensure form field does not have multiple label elements",help:"Form field must not have multiple label elements"},"frame-focusable-content":{description:"Ensure <frame> and <iframe> elements with focusable content do not have tabindex=-1",help:"Frames with focusable content must not have tabindex=-1"},"frame-tested":{description:"Ensure <iframe> and <frame> elements contain the axe-core script",help:"Frames should be tested with axe-core"},"frame-title-unique":{description:"Ensure <iframe> and <frame> elements contain a unique title attribute",help:"Frames must have a unique title attribute"},"frame-title":{description:"Ensure <iframe> and <frame> elements have an accessible name",help:"Frames must have an accessible name"},"heading-order":{description:"Ensure the order of headings is semantically correct",help:"Heading levels should only increase by one"},"hidden-content":{description:"Inform users about hidden content.",help:"Hidden content on the page should be analyzed"},"html-has-lang":{description:"Ensure every HTML document has a lang attribute",help:"<html> element must have a lang attribute"},"html-lang-valid":{description:"Ensure the lang attribute of the <html> element has a valid value",help:"<html> element must have a valid value for the lang attribute"},"html-xml-lang-mismatch":{description:"Ensure that HTML elements with both valid lang and xml:lang attributes agree on the base language of the page",help:"HTML elements with lang and xml:lang must have the same base language"},"identical-links-same-purpose":{description:"Ensure that links with the same accessible name serve a similar purpose",help:"Links with the same name must have a similar purpose"},"image-alt":{description:"Ensure <img> elements have alternative text or a role of none or presentation",help:"Images must have alternative text"},"image-redundant-alt":{description:"Ensure image alternative is not repeated as text",help:"Alternative text of images should not be repeated as text"},"input-button-name":{description:"Ensure input buttons have discernible text",help:"Input buttons must have discernible text"},"input-image-alt":{description:'Ensure <input type="image"> elements have alternative text',help:"Image buttons must have alternative text"},"label-content-name-mismatch":{description:"Ensure that elements labelled through their content must have their visible text as part of their accessible name",help:"Elements must have their visible text as part of their accessible name"},"label-title-only":{description:"Ensure that every form element has a visible label and is not solely labeled using hidden labels, or the title or aria-describedby attributes",help:"Form elements should have a visible label"},label:{description:"Ensure every form element has a label",help:"Form elements must have labels"},"landmark-banner-is-top-level":{description:"Ensure the banner landmark is at top level",help:"Banner landmark should not be contained in another landmark"},"landmark-complementary-is-top-level":{description:"Ensure the complementary landmark or aside is at top level",help:"Aside should not be contained in another landmark"},"landmark-contentinfo-is-top-level":{description:"Ensure the contentinfo landmark is at top level",help:"Contentinfo landmark should not be contained in another landmark"},"landmark-main-is-top-level":{description:"Ensure the main landmark is at top level",help:"Main landmark should not be contained in another landmark"},"landmark-no-duplicate-banner":{description:"Ensure the document has at most one banner landmark",help:"Document should not have more than one banner landmark"},"landmark-no-duplicate-contentinfo":{description:"Ensure the document has at most one contentinfo landmark",help:"Document should not have more than one contentinfo landmark"},"landmark-no-duplicate-main":{description:"Ensure the document has at most one main landmark",help:"Document should not have more than one main landmark"},"landmark-one-main":{description:"Ensure the document has a main landmark",help:"Document should have one main landmark"},"landmark-unique":{description:"Ensure landmarks are unique",help:"Landmarks should have a unique role or role/label/title (i.e. accessible name) combination"},"link-in-text-block":{description:"Ensure links are distinguished from surrounding text in a way that does not rely on color",help:"Links must be distinguishable without relying on color"},"link-name":{description:"Ensure links have discernible text",help:"Links must have discernible text"},list:{description:"Ensure that lists are structured correctly",help:"<ul> and <ol> must only directly contain <li>, <script> or <template> elements"},listitem:{description:"Ensure <li> elements are used semantically",help:"<li> elements must be contained in a <ul> or <ol>"},marquee:{description:"Ensure <marquee> elements are not used",help:"<marquee> elements are deprecated and must not be used"},"meta-refresh-no-exceptions":{description:'Ensure <meta http-equiv="refresh"> is not used for delayed refresh',help:"Delayed refresh must not be used"},"meta-refresh":{description:'Ensure <meta http-equiv="refresh"> is not used for delayed refresh',help:"Delayed refresh under 20 hours must not be used"},"meta-viewport-large":{description:'Ensure <meta name="viewport"> can scale a significant amount',help:"Users should be able to zoom and scale the text up to 500%"},"meta-viewport":{description:'Ensure <meta name="viewport"> does not disable text scaling and zooming',help:"Zooming and scaling must not be disabled"},"nested-interactive":{description:"Ensure interactive controls are not nested as they are not always announced by screen readers or can cause focus problems for assistive technologies",help:"Interactive controls must not be nested"},"no-autoplay-audio":{description:"Ensure <video> or <audio> elements do not autoplay audio for more than 3 seconds without a control mechanism to stop or mute the audio",help:"<video> or <audio> elements must not play automatically"},"object-alt":{description:"Ensure <object> elements have alternative text",help:"<object> elements must have alternative text"},"p-as-heading":{description:"Ensure bold, italic text and font-size is not used to style <p> elements as a heading",help:"Styled <p> elements must not be used as headings"},"page-has-heading-one":{description:"Ensure that the page, or at least one of its frames contains a level-one heading",help:"Page should contain a level-one heading"},"presentation-role-conflict":{description:"Ensure elements marked as presentational do not have global ARIA or tabindex so that all screen readers ignore them",help:"Elements marked as presentational should be consistently ignored"},region:{description:"Ensure all page content is contained by landmarks",help:"All page content should be contained by landmarks"},"role-img-alt":{description:'Ensure [role="img"] elements have alternative text',help:'[role="img"] elements must have alternative text'},"scope-attr-valid":{description:"Ensure the scope attribute is used correctly on tables",help:"scope attribute should be used correctly"},"scrollable-region-focusable":{description:"Ensure elements that have scrollable content are accessible by keyboard",help:"Scrollable region must have keyboard access"},"select-name":{description:"Ensure select element has an accessible name",help:"Select element must have an accessible name"},"server-side-image-map":{description:"Ensure that server-side image maps are not used",help:"Server-side image maps must not be used"},"skip-link":{description:"Ensure all skip links have a focusable target",help:"The skip-link target should exist and be focusable"},"summary-name":{description:"Ensure summary elements have discernible text",help:"Summary elements must have discernible text"},"svg-img-alt":{description:"Ensure <svg> elements with an img, graphics-document or graphics-symbol role have accessible text",help:"<svg> elements with an img role must have alternative text"},tabindex:{description:"Ensure tabindex attribute values are not greater than 0",help:"Elements should not have tabindex greater than zero"},"table-duplicate-name":{description:"Ensure the <caption> element does not contain the same text as the summary attribute",help:"Tables should not have the same summary and caption"},"table-fake-caption":{description:"Ensure that tables with a caption use the <caption> element.",help:"Data or header cells must not be used to give caption to a data table."},"target-size":{description:"Ensure touch targets have sufficient size and space",help:"All touch targets must be 24px large, or leave sufficient space"},"td-has-header":{description:"Ensure that each non-empty data cell in a <table> larger than 3 by 3 has one or more table headers",help:"Non-empty <td> elements in larger <table> must have an associated table header"},"td-headers-attr":{description:"Ensure that each cell in a table that uses the headers attribute refers only to other <th> elements in that table",help:"Table cell headers attributes must refer to other <th> elements in the same table"},"th-has-data-cells":{description:"Ensure that <th> elements and elements with role=columnheader/rowheader have data cells they describe",help:"Table headers in a data table must refer to data cells"},"valid-lang":{description:"Ensure lang attributes have valid values",help:"lang attribute must have a valid value"},"video-caption":{description:"Ensure <video> elements have captions",help:"<video> elements must have captions"}},checks:{abstractrole:{impact:"serious",messages:{pass:"Abstract roles are not used",fail:{singular:"Abstract role cannot be directly used: ${data.values}",plural:"Abstract roles cannot be directly used: ${data.values}"}}},"aria-allowed-attr":{impact:"critical",messages:{pass:"ARIA attributes are used correctly for the defined role",fail:{singular:"ARIA attribute is not allowed: ${data.values}",plural:"ARIA attributes are not allowed: ${data.values}"},incomplete:"Check that there is no problem if the ARIA attribute is ignored on this element: ${data.values}"}},"aria-allowed-role":{impact:"minor",messages:{pass:"ARIA role is allowed for given element",fail:{singular:"ARIA role ${data.values} is not allowed for given element",plural:"ARIA roles ${data.values} are not allowed for given element"},incomplete:{singular:"ARIA role ${data.values} must be removed when the element is made visible, as it is not allowed for the element",plural:"ARIA roles ${data.values} must be removed when the element is made visible, as they are not allowed for the element"}}},"aria-busy":{impact:"serious",messages:{pass:"Element has an aria-busy attribute",fail:'Element uses aria-busy="true" while showing a loader'}},"aria-conditional-attr":{impact:"serious",messages:{pass:"ARIA attribute is allowed",fail:{checkbox:'Remove aria-checked, or set it to "${data.checkState}" to match the real checkbox state',rowSingular:"This attribute is supported with treegrid rows, but not ${data.ownerRole}: ${data.invalidAttrs}",rowPlural:"These attributes are supported with treegrid rows, but not ${data.ownerRole}: ${data.invalidAttrs}"}}},"aria-errormessage":{impact:"critical",messages:{pass:"aria-errormessage exists and references elements visible to screen readers that use a supported aria-errormessage technique",fail:{singular:"aria-errormessage value `${data.values}` must use a technique to announce the message (e.g., aria-live, aria-describedby, role=alert, etc.)",plural:"aria-errormessage values `${data.values}` must use a technique to announce the message (e.g., aria-live, aria-describedby, role=alert, etc.)",hidden:"aria-errormessage value `${data.values}` cannot reference a hidden element"},incomplete:{singular:"Ensure aria-errormessage value `${data.values}` references an existing element",plural:"Ensure aria-errormessage values `${data.values}` reference existing elements",idrefs:"Unable to determine if aria-errormessage element exists on the page: ${data.values}"}}},"aria-hidden-body":{impact:"critical",messages:{pass:"No aria-hidden attribute is present on document body",fail:"aria-hidden=true should not be present on the document body"}},"aria-level":{impact:"serious",messages:{pass:"aria-level values are valid",incomplete:"aria-level values greater than 6 are not supported in all screenreader and browser combinations"}},"aria-prohibited-attr":{impact:"serious",messages:{pass:"ARIA attribute is allowed",fail:{hasRolePlural:'${data.prohibited} attributes cannot be used with role "${data.role}".',hasRoleSingular:'${data.prohibited} attribute cannot be used with role "${data.role}".',noRolePlural:"${data.prohibited} attributes cannot be used on a ${data.nodeName} with no valid role attribute.",noRoleSingular:"${data.prohibited} attribute cannot be used on a ${data.nodeName} with no valid role attribute."},incomplete:{hasRoleSingular:'${data.prohibited} attribute is not well supported with role "${data.role}".',hasRolePlural:'${data.prohibited} attributes are not well supported with role "${data.role}".',noRoleSingular:"${data.prohibited} attribute is not well supported on a ${data.nodeName} with no valid role attribute.",noRolePlural:"${data.prohibited} attributes are not well supported on a ${data.nodeName} with no valid role attribute."}}},"aria-required-attr":{impact:"critical",messages:{pass:"All required ARIA attributes are present",fail:{singular:"Required ARIA attribute not present: ${data.values}",plural:"Required ARIA attributes not present: ${data.values}"}}},"aria-required-children":{impact:"critical",messages:{pass:{default:"Required ARIA children are present","aria-busy":"Element has an aria-busy attribute, so it is allowed to omit required children"},fail:{singular:"Required ARIA child role not present: ${data.values}",plural:"Required ARIA children role not present: ${data.values}",unallowed:"Element has children which are not allowed: ${data.values}"},incomplete:{singular:"Expecting ARIA child role to be added: ${data.values}",plural:"Expecting ARIA children role to be added: ${data.values}"}}},"aria-required-parent":{impact:"critical",messages:{pass:"Required ARIA parent role present",fail:{singular:"Required ARIA parent role not present: ${data.values}",plural:"Required ARIA parents role not present: ${data.values}"}}},"aria-roledescription":{impact:"serious",messages:{pass:"aria-roledescription used on a supported semantic role",incomplete:"Check that the aria-roledescription is announced by supported screen readers",fail:"Give the element a role that supports aria-roledescription"}},"aria-unsupported-attr":{impact:"critical",messages:{pass:"ARIA attribute is supported",fail:"ARIA attribute is not widely supported in screen readers and assistive technologies: ${data.values}"}},"aria-valid-attr-value":{impact:"critical",messages:{pass:"ARIA attribute values are valid",fail:{singular:"Invalid ARIA attribute value: ${data.values}",plural:"Invalid ARIA attribute values: ${data.values}"},incomplete:{noId:"ARIA attribute element ID does not exist on the page: ${data.needsReview}",noIdShadow:"ARIA attribute element ID does not exist on the page or is a descendant of a different shadow DOM tree: ${data.needsReview}",ariaCurrent:'ARIA attribute value is invalid and will be treated as "aria-current=true": ${data.needsReview}',idrefs:"Unable to determine if ARIA attribute element ID exists on the page: ${data.needsReview}",empty:"ARIA attribute value is ignored while empty: ${data.needsReview}",controlsWithinPopup:"Unable to determine if aria-controls referenced ID exists on the page while using aria-haspopup: ${data.needsReview}"}}},"aria-valid-attr":{impact:"critical",messages:{pass:"ARIA attribute name is valid",fail:{singular:"Invalid ARIA attribute name: ${data.values}",plural:"Invalid ARIA attribute names: ${data.values}"}}},"braille-label-equivalent":{impact:"serious",messages:{pass:"aria-braillelabel is used on an element with accessible text",fail:"aria-braillelabel is used on an element with no accessible text",incomplete:"Unable to compute accessible text"}},"braille-roledescription-equivalent":{impact:"serious",messages:{pass:"aria-brailleroledescription is used on an element with aria-roledescription",fail:{noRoleDescription:"aria-brailleroledescription is used on an element with no aria-roledescription",emptyRoleDescription:"aria-brailleroledescription is used on an element with an empty aria-roledescription"}}},deprecatedrole:{impact:"minor",messages:{pass:"ARIA role is not deprecated",fail:"The role used is deprecated: ${data}"}},fallbackrole:{impact:"serious",messages:{pass:"Only one role value used",fail:"Use only one role value, since fallback roles are not supported in older browsers",incomplete:"Use only role 'presentation' or 'none' since they are synonymous."}},"has-global-aria-attribute":{impact:"minor",messages:{pass:{singular:"Element has global ARIA attribute: ${data.values}",plural:"Element has global ARIA attributes: ${data.values}"},fail:"Element does not have global ARIA attribute"}},"has-widget-role":{impact:"minor",messages:{pass:"Element has a widget role.",fail:"Element does not have a widget role."}},invalidrole:{impact:"critical",messages:{pass:"ARIA role is valid",fail:{singular:"Role must be one of the valid ARIA roles: ${data.values}",plural:"Roles must be one of the valid ARIA roles: ${data.values}"}}},"is-element-focusable":{impact:"minor",messages:{pass:"Element is focusable.",fail:"Element is not focusable."}},"no-implicit-explicit-label":{impact:"serious",messages:{pass:"There is no mismatch between a <label> and accessible name",incomplete:"Check that the <label> does not need be part of the ARIA ${data} field's name"}},unsupportedrole:{impact:"critical",messages:{pass:"ARIA role is supported",fail:"The role used is not widely supported in screen readers and assistive technologies: ${data}"}},"valid-scrollable-semantics":{impact:"minor",messages:{pass:"Element has valid semantics for an element in the focus order.",fail:"Element has invalid semantics for an element in the focus order."}},"color-contrast-enhanced":{impact:"serious",messages:{pass:"Element has sufficient color contrast of ${data.contrastRatio}",fail:{default:"Element has insufficient color contrast of ${data.contrastRatio} (foreground color: ${data.fgColor}, background color: ${data.bgColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}",fgOnShadowColor:"Element has insufficient color contrast of ${data.contrastRatio} between the foreground and shadow color (foreground color: ${data.fgColor}, text-shadow color: ${data.shadowColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}",shadowOnBgColor:"Element has insufficient color contrast of ${data.contrastRatio} between the shadow color and background color (text-shadow color: ${data.shadowColor}, background color: ${data.bgColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}"},incomplete:{default:"Unable to determine contrast ratio",bgImage:"Element's background color could not be determined due to a background image",bgGradient:"Element's background color could not be determined due to a background gradient",imgNode:"Element's background color could not be determined because element contains an image node",bgOverlap:"Element's background color could not be determined because it is overlapped by another element",fgAlpha:"Element's foreground color could not be determined because of alpha transparency",elmPartiallyObscured:"Element's background color could not be determined because it's partially obscured by another element",elmPartiallyObscuring:"Element's background color could not be determined because it partially overlaps other elements",outsideViewport:"Element's background color could not be determined because it's outside the viewport",equalRatio:"Element has a 1:1 contrast ratio with the background",shortTextContent:"Element content is too short to determine if it is actual text content",nonBmp:"Element content contains only non-text characters",pseudoContent:"Element's background color could not be determined due to a pseudo element"}}},"color-contrast":{impact:"serious",messages:{pass:{default:"Element has sufficient color contrast of ${data.contrastRatio}",hidden:"Element is hidden"},fail:{default:"Element has insufficient color contrast of ${data.contrastRatio} (foreground color: ${data.fgColor}, background color: ${data.bgColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}",fgOnShadowColor:"Element has insufficient color contrast of ${data.contrastRatio} between the foreground and shadow color (foreground color: ${data.fgColor}, text-shadow color: ${data.shadowColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}",shadowOnBgColor:"Element has insufficient color contrast of ${data.contrastRatio} between the shadow color and background color (text-shadow color: ${data.shadowColor}, background color: ${data.bgColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}"},incomplete:{default:"Unable to determine contrast ratio",bgImage:"Element's background color could not be determined due to a background image",bgGradient:"Element's background color could not be determined due to a background gradient",imgNode:"Element's background color could not be determined because element contains an image node",bgOverlap:"Element's background color could not be determined because it is overlapped by another element",complexTextShadows:"Element's contrast could not be determined because it uses complex text shadows",fgAlpha:"Element's foreground color could not be determined because of alpha transparency",elmPartiallyObscured:"Element's background color could not be determined because it's partially obscured by another element",elmPartiallyObscuring:"Element's background color could not be determined because it partially overlaps other elements",outsideViewport:"Element's background color could not be determined because it's outside the viewport",equalRatio:"Element has a 1:1 contrast ratio with the background",shortTextContent:"Element content is too short to determine if it is actual text content",nonBmp:"Element content contains only non-text characters",pseudoContent:"Element's background color could not be determined due to a pseudo element"}}},"link-in-text-block-style":{impact:"serious",messages:{pass:"Links can be distinguished from surrounding text by visual styling",incomplete:{default:"Check if the link needs styling to distinguish it from nearby text",pseudoContent:"Check if the link's pseudo style is sufficient to distinguish it from the surrounding text"},fail:"The link has no styling (such as underline) to distinguish it from the surrounding text"}},"link-in-text-block":{impact:"serious",messages:{pass:"Links can be distinguished from surrounding text in some way other than by color",fail:{fgContrast:"The link has insufficient color contrast of ${data.contrastRatio}:1 with the surrounding text. (Minimum contrast is ${data.requiredContrastRatio}:1, link text: ${data.nodeColor}, surrounding text: ${data.parentColor})",bgContrast:"The link background has insufficient color contrast of ${data.contrastRatio} (Minimum contrast is ${data.requiredContrastRatio}:1, link background color: ${data.nodeBackgroundColor}, surrounding background color: ${data.parentBackgroundColor})"},incomplete:{default:"Element's foreground contrast ratio could not be determined",bgContrast:"Element's background contrast ratio could not be determined",bgImage:"Element's contrast ratio could not be determined due to a background image",bgGradient:"Element's contrast ratio could not be determined due to a background gradient",imgNode:"Element's contrast ratio could not be determined because element contains an image node",bgOverlap:"Element's contrast ratio could not be determined because of element overlap"}}},"autocomplete-appropriate":{impact:"serious",messages:{pass:"The autocomplete value is on an appropriate element",fail:"The autocomplete value is inappropriate for this type of input"}},"autocomplete-valid":{impact:"serious",messages:{pass:"the autocomplete attribute is correctly formatted",fail:"the autocomplete attribute is incorrectly formatted",incomplete:"the autocomplete attribute has a non-standard value. Check whether any standard value could be used instead."}},accesskeys:{impact:"serious",messages:{pass:"Accesskey attribute value is unique",fail:"Document has multiple elements with the same accesskey"}},"focusable-content":{impact:"serious",messages:{pass:"Element contains focusable elements",fail:"Element should have focusable content"}},"focusable-disabled":{impact:"serious",messages:{pass:"No focusable elements contained within element",incomplete:"Check if the focusable elements immediately move the focus indicator",fail:"Focusable content should be disabled or be removed from the DOM"}},"focusable-element":{impact:"serious",messages:{pass:"Element is focusable",fail:"Element should be focusable"}},"focusable-modal-open":{impact:"serious",messages:{pass:"No focusable elements while a modal is open",incomplete:"Check that focusable elements are not tabbable in the current state"}},"focusable-no-name":{impact:"serious",messages:{pass:"Element is not in tab order or has accessible text",fail:"Element is in tab order and does not have accessible text",incomplete:"Unable to determine if element has an accessible name"}},"focusable-not-tabbable":{impact:"serious",messages:{pass:"No focusable elements contained within element",incomplete:"Check if the focusable elements immediately move the focus indicator",fail:'Focusable content should have tabindex="-1" or be removed from the DOM'}},"frame-focusable-content":{impact:"serious",messages:{pass:"Element does not have focusable descendants",fail:"Element has focusable descendants",incomplete:"Could not determine if element has descendants"}},"landmark-is-top-level":{impact:"moderate",messages:{pass:"The ${data.role} landmark is at the top level.",fail:"The ${data.role} landmark is contained in another landmark."}},"no-focusable-content":{impact:"serious",messages:{pass:"Element does not have focusable descendants",fail:{default:"Element has focusable descendants",notHidden:'Using a negative tabindex on an element inside an interactive control does not prevent assistive technologies from focusing the element (even with aria-hidden="true")'},incomplete:"Could not determine if element has descendants"}},"page-has-heading-one":{impact:"moderate",messages:{pass:"Page has at least one level-one heading",fail:"Page must have a level-one heading"}},"page-has-main":{impact:"moderate",messages:{pass:"Document has at least one main landmark",fail:"Document does not have a main landmark"}},"page-no-duplicate-banner":{impact:"moderate",messages:{pass:"Document does not have more than one banner landmark",fail:"Document has more than one banner landmark"}},"page-no-duplicate-contentinfo":{impact:"moderate",messages:{pass:"Document does not have more than one contentinfo landmark",fail:"Document has more than one contentinfo landmark"}},"page-no-duplicate-main":{impact:"moderate",messages:{pass:"Document does not have more than one main landmark",fail:"Document has more than one main landmark"}},tabindex:{impact:"serious",messages:{pass:"Element does not have a tabindex greater than 0",fail:"Element has a tabindex greater than 0"}},"alt-space-value":{impact:"critical",messages:{pass:"Element has a valid alt attribute value",fail:"Element has an alt attribute containing only a space character, which is not ignored by all screen readers"}},"duplicate-img-label":{impact:"minor",messages:{pass:"Element does not duplicate existing text in <img> alt text",fail:"Element contains <img> element with alt text that duplicates existing text"}},"explicit-label":{impact:"critical",messages:{pass:"Element has an explicit <label>",fail:"Element does not have an explicit <label>",incomplete:"Unable to determine if form element has an explicit <label>"}},"help-same-as-label":{impact:"minor",messages:{pass:"Help text (title or aria-describedby) does not duplicate label text",fail:"Help text (title or aria-describedby) text is the same as the label text"}},"hidden-explicit-label":{impact:"critical",messages:{pass:"Form element has a visible explicit <label>",fail:"Form element has explicit <label> that is hidden",incomplete:"Unable to determine if form element has explicit <label> that is hidden"}},"implicit-label":{impact:"critical",messages:{pass:"Element has an implicit (wrapped) <label>",fail:"Element does not have an implicit (wrapped) <label>",incomplete:"Unable to determine if form element has an implicit (wrapped) <label>"}},"label-content-name-mismatch":{impact:"serious",messages:{pass:"Element contains visible text as part of it's accessible name",fail:"Text inside the element is not included in the accessible name"}},"multiple-label":{impact:"moderate",messages:{pass:"Form field does not have multiple label elements",incomplete:"Multiple label elements is not widely supported in assistive technologies. Ensure the first label contains all necessary information."}},"title-only":{impact:"serious",messages:{pass:"Form element does not solely use title attribute for its label",fail:"Only title used to generate label for form element"}},"landmark-is-unique":{impact:"moderate",messages:{pass:"Landmarks must have a unique role or role/label/title (i.e. accessible name) combination",fail:"The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable"}},"has-lang":{impact:"serious",messages:{pass:"The <html> element has a lang attribute",fail:{noXHTML:"The xml:lang attribute is not valid on HTML pages, use the lang attribute.",noLang:"The <html> element does not have a lang attribute"}}},"valid-lang":{impact:"serious",messages:{pass:"Value of lang attribute is included in the list of valid languages",fail:"Value of lang attribute not included in the list of valid languages"}},"xml-lang-mismatch":{impact:"moderate",messages:{pass:"Lang and xml:lang attributes have the same base language",fail:"Lang and xml:lang attributes do not have the same base language"}},dlitem:{impact:"serious",messages:{pass:"Description list item has a <dl> parent element",fail:"Description list item does not have a <dl> parent element"}},listitem:{impact:"serious",messages:{pass:'List item has a <ul>, <ol> or role="list" parent element',fail:{default:"List item does not have a <ul>, <ol> parent element",roleNotValid:'List item parent element has a role that is not role="list"'}}},"only-dlitems":{impact:"serious",messages:{pass:"dl element only has direct children that are allowed inside; <dt>, <dd>, or <div> elements",fail:"dl element has direct children that are not allowed: ${data.values}"}},"only-listitems":{impact:"serious",messages:{pass:"List element only has direct children that are allowed inside <li> elements",fail:"List element has direct children that are not allowed: ${data.values}"}},"structured-dlitems":{impact:"serious",messages:{pass:"When not empty, element has both <dt> and <dd> elements",fail:"When not empty, element does not have at least one <dt> element followed by at least one <dd> element"}},caption:{impact:"critical",messages:{pass:"The multimedia element has a captions track",incomplete:"Check that captions are available for the element"}},"frame-tested":{impact:"critical",messages:{pass:"The iframe was tested with axe-core",fail:"The iframe could not be tested with axe-core",incomplete:"The iframe still has to be tested with axe-core"}},"no-autoplay-audio":{impact:"moderate",messages:{pass:"<video> or <audio> does not output audio for more than allowed duration or has controls mechanism",fail:"<video> or <audio> outputs audio for more than allowed duration and does not have a controls mechanism",incomplete:"Check that the <video> or <audio> does not output audio for more than allowed duration or provides a controls mechanism"}},"css-orientation-lock":{impact:"serious",messages:{pass:"Display is operable, and orientation lock does not exist",fail:"CSS Orientation lock is applied, and makes display inoperable",incomplete:"CSS Orientation lock cannot be determined"}},"meta-viewport-large":{impact:"minor",messages:{pass:"<meta> tag does not prevent significant zooming on mobile devices",fail:"<meta> tag limits zooming on mobile devices"}},"meta-viewport":{impact:"critical",messages:{pass:"<meta> tag does not disable zooming on mobile devices",fail:"${data} on <meta> tag disables zooming on mobile devices"}},"target-offset":{impact:"serious",messages:{pass:{default:"Target has sufficient space from its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px which is at least ${data.minOffset}px.",large:"Target far exceeds the minimum size of ${data.minOffset}px."},fail:"Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px instead of at least ${data.minOffset}px.",incomplete:{default:"Element with negative tabindex has insufficient space to its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px instead of at least ${data.minOffset}px. Is this a target?",nonTabbableNeighbor:"Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px instead of at least ${data.minOffset}px. Is the neighbor a target?",tooManyRects:"Could not get the target size because there are too many overlapping elements"}}},"target-size":{impact:"serious",messages:{pass:{default:"Control has sufficient size (${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px)",obscured:"Control is ignored because it is fully obscured and thus not clickable",large:"Target far exceeds the minimum size of ${data.minSize}px."},fail:{default:"Target has insufficient size (${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px)",partiallyObscured:"Target has insufficient size because it is partially obscured (smallest space is ${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px)"},incomplete:{default:"Element with negative tabindex has insufficient size (${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px). Is this a target?",contentOverflow:"Element size could not be accurately determined due to overflow content",partiallyObscured:"Element with negative tabindex has insufficient size because it is partially obscured (smallest space is ${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px). Is this a target?",partiallyObscuredNonTabbable:"Target has insufficient size because it is partially obscured by a neighbor with negative tabindex (smallest space is ${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px). Is the neighbor a target?",tooManyRects:"Could not get the target size because there are too many overlapping elements"}}},"header-present":{impact:"serious",messages:{pass:"Page has a heading",fail:"Page does not have a heading"}},"heading-order":{impact:"moderate",messages:{pass:"Heading order valid",fail:"Heading order invalid",incomplete:"Unable to determine previous heading"}},"identical-links-same-purpose":{impact:"minor",messages:{pass:"There are no other links with the same name, that go to a different URL",incomplete:"Check that links have the same purpose, or are intentionally ambiguous."}},"internal-link-present":{impact:"serious",messages:{pass:"Valid skip link found",fail:"No valid skip link found"}},landmark:{impact:"serious",messages:{pass:"Page has a landmark region",fail:"Page does not have a landmark region"}},"meta-refresh-no-exceptions":{impact:"minor",messages:{pass:"<meta> tag does not immediately refresh the page",fail:"<meta> tag forces timed refresh of page"}},"meta-refresh":{impact:"critical",messages:{pass:"<meta> tag does not immediately refresh the page",fail:"<meta> tag forces timed refresh of page (less than 20 hours)"}},"p-as-heading":{impact:"serious",messages:{pass:"<p> elements are not styled as headings",fail:"Heading elements should be used instead of styled <p> elements",incomplete:"Unable to determine if <p> elements are styled as headings"}},region:{impact:"moderate",messages:{pass:"All page content is contained by landmarks",fail:"Some page content is not contained by landmarks"}},"skip-link":{impact:"moderate",messages:{pass:"Skip link target exists",incomplete:"Skip link target should become visible on activation",fail:"No skip link target"}},"unique-frame-title":{impact:"serious",messages:{pass:"Element's title attribute is unique",fail:"Element's title attribute is not unique"}},"duplicate-id-active":{impact:"serious",messages:{pass:"Document has no active elements that share the same id attribute",fail:"Document has active elements with the same id attribute: ${data}"}},"duplicate-id-aria":{impact:"critical",messages:{pass:"Document has no elements referenced with ARIA or labels that share the same id attribute",fail:"Document has multiple elements referenced with ARIA with the same id attribute: ${data}"}},"duplicate-id":{impact:"minor",messages:{pass:"Document has no static elements that share the same id attribute",fail:"Document has multiple static elements with the same id attribute: ${data}"}},"aria-label":{impact:"serious",messages:{pass:"aria-label attribute exists and is not empty",fail:"aria-label attribute does not exist or is empty"}},"aria-labelledby":{impact:"serious",messages:{pass:"aria-labelledby attribute exists and references elements that are visible to screen readers",fail:"aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty",incomplete:"Ensure aria-labelledby references an existing element"}},"avoid-inline-spacing":{impact:"serious",messages:{pass:"No inline styles with '!important' that affect text spacing has been specified",fail:{singular:"Remove '!important' from inline style ${data.values}, as overriding this is not supported by most browsers",plural:"Remove '!important' from inline styles ${data.values}, as overriding this is not supported by most browsers"}}},"button-has-visible-text":{impact:"critical",messages:{pass:"Element has inner text that is visible to screen readers",fail:"Element does not have inner text that is visible to screen readers",incomplete:"Unable to determine if element has children"}},"doc-has-title":{impact:"serious",messages:{pass:"Document has a non-empty <title> element",fail:"Document does not have a non-empty <title> element"}},"error-occurred":{messages:{pass:"",incomplete:"Axe encountered an error; test the page for this type of problem manually"}},exists:{impact:"minor",messages:{pass:"Element does not exist",incomplete:"Element exists"}},"has-alt":{impact:"critical",messages:{pass:"Element has an alt attribute",fail:"Element does not have an alt attribute"}},"has-visible-text":{impact:"minor",messages:{pass:"Element has text that is visible to screen readers",fail:"Element does not have text that is visible to screen readers",incomplete:"Unable to determine if element has children"}},"important-letter-spacing":{impact:"serious",messages:{pass:"Letter-spacing in the style attribute is not set to !important, or meets the minimum",fail:"letter-spacing in the style attribute must not use !important, or be at ${data.minValue}em (current ${data.value}em)"}},"important-line-height":{impact:"serious",messages:{pass:"line-height in the style attribute is not set to !important, or meets the minimum",fail:"line-height in the style attribute must not use !important, or be at ${data.minValue}em (current ${data.value}em)"}},"important-word-spacing":{impact:"serious",messages:{pass:"word-spacing in the style attribute is not set to !important, or meets the minimum",fail:"word-spacing in the style attribute must not use !important, or be at ${data.minValue}em (current ${data.value}em)"}},"is-on-screen":{impact:"serious",messages:{pass:"Element is not visible",fail:"Element is visible"}},"non-empty-alt":{impact:"critical",messages:{pass:"Element has a non-empty alt attribute",fail:{noAttr:"Element has no alt attribute",emptyAttr:"Element has an empty alt attribute"}}},"non-empty-if-present":{impact:"critical",messages:{pass:{default:"Element does not have a value attribute","has-label":"Element has a non-empty value attribute"},fail:"Element has a value attribute and the value attribute is empty"}},"non-empty-placeholder":{impact:"serious",messages:{pass:"Element has a placeholder attribute",fail:{noAttr:"Element has no placeholder attribute",emptyAttr:"Element has an empty placeholder attribute"}}},"non-empty-title":{impact:"serious",messages:{pass:"Element has a title attribute",fail:{noAttr:"Element has no title attribute",emptyAttr:"Element has an empty title attribute"}}},"non-empty-value":{impact:"critical",messages:{pass:"Element has a non-empty value attribute",fail:{noAttr:"Element has no value attribute",emptyAttr:"Element has an empty value attribute"}}},"presentational-role":{impact:"minor",messages:{pass:'Element\'s default semantics were overridden with role="${data.role}"',fail:{default:`Element's default semantics were not overridden with role="none" or role="presentation"`,globalAria:"Element's role is not presentational because it has a global ARIA attribute",focusable:"Element's role is not presentational because it is focusable",both:"Element's role is not presentational because it has a global ARIA attribute and is focusable",iframe:'Using the "title" attribute on an ${data.nodeName} element with a presentational role behaves inconsistently between screen readers'}}},"role-none":{impact:"minor",messages:{pass:`Element's default semantics were overridden with role="none"`,fail:`Element's default semantics were not overridden with role="none"`}},"role-presentation":{impact:"minor",messages:{pass:`Element's default semantics were overridden with role="presentation"`,fail:`Element's default semantics were not overridden with role="presentation"`}},"svg-non-empty-title":{impact:"serious",messages:{pass:"Element has a child that is a title",fail:{noTitle:"Element has no child that is a title",emptyTitle:"Element child title is empty"},incomplete:"Unable to determine element has a child that is a title"}},"caption-faked":{impact:"serious",messages:{pass:"The first row of a table is not used as a caption",fail:"The first child of the table should be a caption instead of a table cell"}},"html5-scope":{impact:"moderate",messages:{pass:"Scope attribute is only used on table header elements (<th>)",fail:"In HTML 5, scope attributes may only be used on table header elements (<th>)"}},"same-caption-summary":{impact:"minor",messages:{pass:"Content of summary attribute and <caption> are not duplicated",fail:"Content of summary attribute and <caption> element are identical",incomplete:"Unable to determine if <table> element has a caption"}},"scope-value":{impact:"critical",messages:{pass:"Scope attribute is used correctly",fail:"The value of the scope attribute may only be 'row' or 'col'"}},"td-has-header":{impact:"critical",messages:{pass:"All non-empty data cells have table headers",fail:"Some non-empty data cells do not have table headers"}},"td-headers-attr":{impact:"serious",messages:{pass:"The headers attribute is exclusively used to refer to other header cells in the table",incomplete:"The headers attribute is empty",fail:{"cell-header-not-in-table":"The headers attribute is not exclusively used to refer to other header cells in the table","cell-header-not-th":"The headers attribute must refer to header cells, not data cells","header-refs-self":"The element with headers attribute refers to itself"}}},"th-has-data-cells":{impact:"serious",messages:{pass:"All table header cells refer to data cells",fail:"Not all table header cells refer to data cells",incomplete:"Table data cells are missing or empty"}},"hidden-content":{impact:"minor",messages:{pass:"All content on the page has been analyzed.",fail:"There were problems analyzing the content on this page.",incomplete:"There is hidden content on the page that was not analyzed. You will need to trigger the display of this content in order to analyze it."}}},failureSummaries:{any:{failureMessage:function(S){var L="Fix any of the following:",G=S;if(G)for(var _e,Ie=-1,Ke=G.length-1;Ie<Ke;)_e=G[Ie+=1],L+=`
12
+ `)}var xu=ew;function Eu(){var e=x._audit.data.incompleteFallbackMessage;return typeof e=="function"&&(e=e()),typeof e!="string"?"":e}var S1=se.resultGroups;function La(e,t){var r=x.utils.aggregateResult(e);return S1.forEach(function(a){t.resultTypes&&!t.resultTypes.includes(a)&&(r[a]||[]).forEach(function(n){Array.isArray(n.nodes)&&n.nodes.length>0&&(n.nodes=[n.nodes[0]])}),r[a]=(r[a]||[]).map(function(n){return n=Object.assign({},n),Array.isArray(n.nodes)&&n.nodes.length>0&&(n.nodes=n.nodes.map(function(i){if(P(i.node)==="object"){var o=k1(i.node,t);Object.assign(i,o)}return delete i.result,delete i.node,tw(i,t),i})),S1.forEach(function(i){return delete n[i]}),delete n.pageLevel,delete n.result,n})}),r}function tw(e,t){["any","all","none"].forEach(function(r){Array.isArray(e[r])&&e[r].filter(function(a){return Array.isArray(a.relatedNodes)}).forEach(function(a){a.relatedNodes=a.relatedNodes.map(function(n){return k1(n,t)})})})}function k1(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;e=Dt.dqElmToSpec(e,t);var r={};if(x._audit.noHtml)r.html=null;else{var a;r.html=(a=e.source)!==null&&a!==void 0?a:"Undefined"}if(t.elementRef&&!e.fromFrame){var n;r.element=(n=e.element)!==null&&n!==void 0?n:null}if(t.selectors!==!1||e.fromFrame){var i;r.target=(i=e.selector)!==null&&i!==void 0?i:[":root"]}if(t.ancestry){var o;r.ancestry=(o=e.ancestry)!==null&&o!==void 0?o:[":root"]}if(t.xpath){var u;r.xpath=(u=e.xpath)!==null&&u!==void 0?u:["/"]}return r}var rw=/\$\{\s?data\s?\}/g;function oi(e,t){if(typeof t=="string")return e.replace(rw,t);for(var r in t)if(t.hasOwnProperty(r)){var a=new RegExp("\\${\\s?data\\."+r+"\\s?}","g"),n=typeof t[r]>"u"?"":String(t[r]);e=e.replace(a,n)}return e}function O1(e,t){if(e){if(Array.isArray(t)){if(t.values=t.join(", "),typeof e.singular=="string"&&typeof e.plural=="string"){var r=t.length===1?e.singular:e.plural;return oi(r,t)}return oi(e,t)}if(typeof e=="string")return oi(e,t);if(typeof t=="string"){var a=e[t];return oi(a,t)}var n=e.default||Eu();return t&&t.messageKey&&e[t.messageKey]&&(n=e[t.messageKey]),O1(n,t)}}var Au=O1;function aw(e,t,r){var a=x._audit.data.checks[e];if(!a)throw new Error("Cannot get message for unknown check: ".concat(e,"."));if(!a.messages[t])throw new Error('Check "'.concat(e,'"" does not have a "').concat(t,'" message.'));return Au(a.messages[t],r)}var nw=aw;function iw(e,t,r){var a=((r.rules&&r.rules[t]||{}).checks||{})[e.id],n=(r.checks||{})[e.id],i=e.enabled,o=e.options;return n&&(n.hasOwnProperty("enabled")&&(i=n.enabled),n.hasOwnProperty("options")&&(o=n.options)),a&&(a.hasOwnProperty("enabled")&&(i=a.enabled),a.hasOwnProperty("options")&&(o=a.options)),{enabled:i,options:o,absolutePaths:r.absolutePaths}}var ui=iw;function lr(){var e,t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:E;return t&&P(t)==="object"?t:P(r)!=="object"?{}:{testEngine:{name:"axe-core",version:x.version},testRunner:{name:x._audit.brand},testEnvironment:ow(r),timestamp:new Date().toISOString(),url:(e=r.location)===null||e===void 0?void 0:e.href}}function ow(e){if(!e.navigator||P(e.navigator)!=="object")return{};var t=e.navigator,r=e.innerHeight,a=e.innerWidth,n=uw(e)||{},i=n.angle,o=n.type;return{userAgent:t.userAgent,windowWidth:a,windowHeight:r,orientationAngle:i,orientationType:o}}function uw(e){var t=e.screen;return t.orientation||t.msOrientation||t.mozOrientation}function M1(e,t){var r=t.focusable,a=t.page;return{node:e,include:[],exclude:[],initiator:!1,focusable:r&&sw(e),size:lw(e),page:a}}function sw(e){var t=qt(e.getAttribute("tabindex"));return t===null||t>=0}function lw(e){var t=parseInt(e.getAttribute("width"),10),r=parseInt(e.getAttribute("height"),10);if(isNaN(t)||isNaN(r)){var a=e.getBoundingClientRect();t=isNaN(t)?a.width:t,r=isNaN(r)?a.height:r}return{width:t,height:r}}function cw(e){if(Cu(e)){var t=" must be used inside include or exclude. It should not be on the same object.";cr(!Lt(e,"fromFrames"),"fromFrames"+t),cr(!Lt(e,"fromShadowDom"),"fromShadowDom"+t)}else if(li(e))e={include:e,exclude:[]};else return{include:[M],exclude:[]};var r=P1(e.include);r.length===0&&r.push(M);var a=P1(e.exclude);return{include:r,exclude:a}}function P1(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],t=[];Fu(e)||(e=[e]);for(var r=0;r<e.length;r++){var a=dw(e[r]);a&&t.push(a)}return t}function dw(e){return e instanceof E.Node?e:typeof e=="string"?[e]:(Ru(e)?(pw(e),e=e.fromFrames):ci(e)&&(e=[e]),fw(e))}function fw(e){if(Array.isArray(e)){var t=[],r=xe(e),a;try{for(r.s();!(a=r.n()).done;){var n=a.value;if(ci(n)&&(mw(n),n=n.fromShadowDom),typeof n!="string"&&!hw(n))return;t.push(n)}}catch(i){r.e(i)}finally{r.f()}return t}}function pw(e){cr(Array.isArray(e.fromFrames),"fromFrames property must be an array"),cr(e.fromFrames.every(function(t){return!Lt(t,"fromFrames")}),"Invalid context; fromFrames selector must be appended, rather than nested"),cr(!Lt(e,"fromShadowDom"),"fromFrames and fromShadowDom cannot be used on the same object")}function mw(e){cr(Array.isArray(e.fromShadowDom),"fromShadowDom property must be an array"),cr(e.fromShadowDom.every(function(t){return!Lt(t,"fromFrames")}),"shadow selector must be inside fromFrame instead"),cr(e.fromShadowDom.every(function(t){return!Lt(t,"fromShadowDom")}),"fromShadowDom selector must be appended, rather than nested")}function hw(e){return Array.isArray(e)&&e.every(function(t){return typeof t=="string"})}function cr(e,t){he(e,"Invalid context; ".concat(t,`
13
+ See: https://github.com/dequelabs/axe-core/blob/master/doc/context.md`))}function I1(e,t){for(var r=[],a=0,n=e[t].length;a<n;a++){var i=e[t][a];if(i instanceof E.Node)i.documentElement instanceof E.Node?r.push(e.flatTree[0]):r.push(ce(i));else if(i&&i.length)if(i.length>1)vw(e,t,i);else{var o=Nu(i[0]);r.push.apply(r,re(o.map(function(u){return ce(u)})))}}return r.filter(function(u){return u})}function vw(e,t,r){e.frames=e.frames||[];var a=r.shift(),n=Nu(a);n.forEach(function(i){var o=e.frames.find(function(u){return u.node===i});o||(o=M1(i,e),e.frames.push(o)),o[t].push(r)})}function si(e,t){var r,a,n,i,o=this;e=Wt(e),this.frames=[],this.page=typeof((r=e)===null||r===void 0?void 0:r.page)=="boolean"?e.page:void 0,this.initiator=typeof((a=e)===null||a===void 0?void 0:a.initiator)=="boolean"?e.initiator:!0,this.focusable=typeof((n=e)===null||n===void 0?void 0:n.focusable)=="boolean"?e.focusable:!0,this.size=P((i=e)===null||i===void 0?void 0:i.size)==="object"?e.size:{},e=cw(e),this.flatTree=t??wu(Dw(e)),this.exclude=e.exclude,this.include=e.include,this.include=I1(this,"include"),this.exclude=I1(this,"exclude"),Iu("frame, iframe",this).forEach(function(u){Su(u,o)&&gw(o,u.actualNode)}),typeof this.page>"u"&&(this.page=bw(this),this.frames.forEach(function(u){u.page=o.page})),yw(this),Array.isArray(this.include)||(this.include=Array.from(this.include)),this.include.sort(Ou)}function gw(e,t){!Te(t)||Ba(e.frames,"node",t)||e.frames.push(M1(t,e))}function bw(e){var t=e.include;return t.length===1&&t[0].actualNode===M.documentElement}function yw(e){if(e.include.length===0&&e.frames.length===0){var t=kt.isInFrame()?"frame":"page";throw new Error("No elements found for include in "+t+" Context")}}function Dw(e){for(var t=e.include,r=e.exclude,a=Array.from(t).concat(Array.from(r)),n=0;n<a.length;n++){var i=a[n];if(i instanceof E.Element)return i.ownerDocument.documentElement;if(i instanceof E.Document)return i.documentElement}return M.documentElement}function ww(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(t.iframes===!1)return[];var r=new si(e),a=r.frames;return a.map(function(n){var i=n.node,o=qe(n,Yp);o.initiator=!1;var u=Sn(i);return{frameSelector:u,frameContext:o}})}function N1(e){var t=x._audit.rules.find(function(r){var a=r.id;return a===e});if(!t)throw new Error("Cannot find rule by id: ".concat(e));return t}function _w(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=e.scrollWidth>e.clientWidth+t,a=e.scrollHeight>e.clientHeight+t;if(r||a){var n=E.getComputedStyle(e),i=B1(n,"overflow-x"),o=B1(n,"overflow-y");if(r&&i||a&&o)return{elm:e,top:e.scrollTop,left:e.scrollLeft}}}function B1(e,t){var r=e.getPropertyValue(t);return["scroll","auto"].includes(r)}var Kt=Re(_w);function L1(e){return Array.from(e.children||e.childNodes||[]).reduce(function(t,r){var a=Kt(r);return a&&t.push(a),t.concat(L1(r))},[])}function xw(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:E,t=e.document.documentElement,r=[e.pageXOffset!==void 0?{elm:e,top:e.pageYOffset,left:e.pageXOffset}:{elm:t,top:t.scrollTop,left:t.scrollLeft}];return r.concat(L1(M.body))}var Ew=xw;function Aw(){return Wt(ve)}function Fw(e){if(!e)throw new Error("axe.utils.getStyleSheetFactory should be invoked with an argument");return function(t){var r=t.data,a=t.isCrossOrigin,n=a===void 0?!1:a,i=t.shadowId,o=t.root,u=t.priority,s=t.isLink,l=s===void 0?!1:s,c=e.createElement("style");if(l){var d=e.createTextNode('@import "'.concat(r.href,'"'));c.appendChild(d)}else c.appendChild(e.createTextNode(r));return e.head.appendChild(c),{sheet:c.sheet,isCrossOrigin:n,shadowId:i,root:o,priority:u}}}var q1=Fw,dt;function Cw(e){if(dt&&dt.parentNode)return dt.styleSheet===void 0?dt.appendChild(M.createTextNode(e)):dt.styleSheet.cssText+=e,dt;if(e){var t=M.head||M.getElementsByTagName("head")[0];return dt=M.createElement("style"),dt.type="text/css",dt.styleSheet===void 0?dt.appendChild(M.createTextNode(e)):dt.styleSheet.cssText=e,t.appendChild(dt),dt}}var Rw=Cw;function Fu(e){return!!e&&P(e)==="object"&&typeof e.length=="number"&&!(e instanceof E.Node)}function Lt(e,t){return!e||P(e)!=="object"?!1:Object.prototype.hasOwnProperty.call(e,t)}function j1(e){return Cu(e)||li(e)}function Cu(e){return["include","exclude"].some(function(t){return Lt(e,t)&&li(e[t])})}function li(e){return typeof e=="string"||e instanceof E.Node||Ru(e)||ci(e)||Fu(e)}function Ru(e){return Lt(e,"fromFrames")}function ci(e){return Lt(e,"fromShadowDom")}function $1(e,t){var r=ce(e);if(e.nodeType===9)return!1;if(e.nodeType===11&&(e=e.host),r&&r._isHidden!==null)return r._isHidden;var a=E.getComputedStyle(e,null);if(!a||!e.parentNode||a.getPropertyValue("display")==="none"||!t&&a.getPropertyValue("visibility")==="hidden"||e.getAttribute("aria-hidden")==="true")return!0;var n=e.assignedSlot?e.assignedSlot:e.parentNode,i=$1(n,!0);return r&&(r._isHidden=i),i}var Tw=$1;function Sw(e){var t,r,a=(t=(r=e.props)===null||r===void 0?void 0:r.nodeName)!==null&&t!==void 0?t:e.nodeName.toLowerCase();return e.namespaceURI==="http://www.w3.org/2000/svg"?!1:!!ve.htmlElms[a]}var Tu=Sw;function Su(e,t){var r=t.include,a=r===void 0?[]:r,n=t.exclude,i=n===void 0?[]:n,o=a.filter(function(c){return Yt(c,e)});if(o.length===0)return!1;var u=i.filter(function(c){return Yt(c,e)});if(u.length===0)return!0;var s=z1(o),l=z1(u);return Yt(l,s)}function z1(e){var t,r=xe(e),a;try{for(r.s();!(a=r.n()).done;){var n=a.value;(!t||!Yt(n,t))&&(t=n)}}catch(i){r.e(i)}finally{r.f()}return t}function ku(e,t){return e.length!==t.length?!1:e.every(function(r,a){var n=t[a];return Array.isArray(r)?r.length!==n.length?!1:r.every(function(i,o){return n[o]===i}):r===n})}function kw(e,t){return e=e.actualNode||e,t=t.actualNode||t,e===t?0:e.compareDocumentPosition(t)&4?-1:1}var Ou=kw;function ye(e){return e instanceof He?{vNode:e,domNode:e.actualNode}:{vNode:ce(e),domNode:e}}function Ow(e,t,r,a){var n=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1,i=Array.from(e.cssRules);if(!i)return Promise.resolve();var o=i.filter(function(c){return c.type===3});if(!o.length)return Promise.resolve({isCrossOrigin:n,priority:r,root:t.rootNode,shadowId:t.shadowId,sheet:e});var u=o.filter(function(c){return c.href}).map(function(c){return c.href}).filter(function(c){return!a.includes(c)}),s=u.map(function(c,d){var f=[].concat(re(r),[d]),p=/^https?:\/\/|^\/\//i.test(c);return Pu(c,t,f,a,p)}),l=i.filter(function(c){return c.type!==3});return l.length&&s.push(Promise.resolve(t.convertDataToStylesheet({data:l.map(function(c){return c.cssText}).join(),isCrossOrigin:n,priority:r,root:t.rootNode,shadowId:t.shadowId}))),Promise.all(s)}var V1=Ow;function Mw(e,t,r,a){var n=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1,i=Pw(e);return i?V1(e,t,r,a,n):Pu(e.href,t,r,a,!0)}function Pw(e){try{var t=e.cssRules;return!(!t&&e.href)}catch{return!1}}var Mu=Mw;function Iw(e,t,r,a,n){return a.push(e),new Promise(function(i,o){var u=new E.XMLHttpRequest;u.open("GET",e),u.timeout=se.preload.timeout,u.addEventListener("error",o),u.addEventListener("timeout",o),u.addEventListener("loadend",function(s){if(s.loaded&&u.responseText)return i(u.responseText);o(u.responseText)}),u.send()}).then(function(i){var o=t.convertDataToStylesheet({data:i,isCrossOrigin:n,priority:r,root:t.rootNode,shadowId:t.shadowId});return Mu(o.sheet,t,r,a,o.isCrossOrigin)})}var Pu=Iw;function Nw(e){if(typeof e!="string")return null;var t=e.trim().match(/^([-+]?\d+)/);return t?Number(t[1]):null}var qt=Nw,Bw=(function(){function e(){if(E.performance&&E.performance)return E.performance.now()}var t=e(),r=!1;return{start:function(){this.reset(),r=!0,this.mark("mark_axe_start")},end:function(){this.mark("mark_axe_end"),this.measure("axe","mark_axe_start","mark_axe_end",!0),this.logMeasures("axe"),this.clearMark("mark_axe_start","mark_axe_end"),r=!1},auditStart:function(){r||this.reset(),this.mark("mark_audit_start")},auditEnd:function(){this.mark("mark_audit_end"),this.measure("audit_start_to_end","mark_audit_start","mark_audit_end",!0),this.logMeasures(),this.clearMark("mark_audit_start","mark_audit_end")},mark:function(n){var i;(i=E.performance)!==null&&i!==void 0&&i.mark&&E.performance.mark(n)},measure:function(n,i,o){var u,s=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;if((u=E.performance)!==null&&u!==void 0&&u.measure){try{E.performance.measure(n,i,o)}catch(l){this._log(l)}s||this.clearMark(i,o)}},logMeasures:function(n){var i=this,o,u,s=function(h){return Array.isArray(h)?h[h.length-1]:h},l=function(h){i._log("Measure "+h.name+" took "+h.duration+"ms")};if(!(!((o=E.performance)!==null&&o!==void 0&&o.getEntriesByType)||!((u=E.performance)!==null&&u!==void 0&&u.getEntriesByName))){var c=s(E.performance.getEntriesByName("mark_axe_start"))||s(E.performance.getEntriesByName("mark_audit_start"));if(!c){this._log("Axe must be started before using performanceTimer");return}for(var d=E.performance.getEntriesByType("measure").filter(function(m){return m.startTime>=c.startTime}),f=0;f<d.length;++f){var p=d[f];if(p.name===n){l(p);return}else n||l(p)}}},timeElapsed:function(){var n=e();return n-t},clearMark:function(){var n;if((n=E.performance)!==null&&n!==void 0&&n.clearMarks){for(var i=arguments.length,o=new Array(i),u=0;u<i;u++)o[u]=arguments[u];for(var s=0,l=o;s<l.length;s++){var c=l[s];E.performance.clearMarks(c)}}},reset:function(){t=e()},_log:function(n){br(n)}}})(),ge=Bw;function H1(){if(M.elementsFromPoint)return M.elementsFromPoint;if(M.msElementsFromPoint)return M.msElementsFromPoint;var e=(function(){var n=M.createElement("x");return n.style.cssText="pointer-events:auto",n.style.pointerEvents==="auto"})(),t=e?"pointer-events":"visibility",r=e?"none":"hidden",a=M.createElement("style");return a.innerHTML=e?"* { pointer-events: all }":"* { visibility: visible }",function(n,i){var o,u,s,l=[],c=[];for(M.head.appendChild(a);(o=M.elementFromPoint(n,i))&&l.indexOf(o)===-1;)l.push(o),c.push({value:o.style.getPropertyValue(t),priority:o.style.getPropertyPriority(t)}),o.style.setProperty(t,r,"important");for(l.indexOf(M.documentElement)<l.length-1&&(l.splice(l.indexOf(M.documentElement),1),l.push(M.documentElement)),u=c.length;s=c[--u];)l[u].style.setProperty(t,s.value?s.value:"",s.priority);return M.head.removeChild(a),l}}typeof E.addEventListener=="function"&&(M.elementsFromPoint=H1());function Lw(e,t){return e.concat(t).filter(function(r,a,n){return n.indexOf(r)===a})}var qa=Lw;function G1(e,t,r,a,n){var i=n||{};return i.vNodes=e,i.vNodesIndex=0,i.anyLevel=t,i.thisLevel=r,i.parentShadowId=a,i}function qw(e,t,r){for(var a=ue.get("qsa.recycledLocalVariables",function(){return[]}),n=[],i=Array.isArray(e)?e:[e],o=G1(i,t,null,e[0].shadowId,a.pop()),u=[];o.vNodesIndex<o.vNodes.length;){for(var s,l,c=o.vNodes[o.vNodesIndex++],d=null,f=null,p=(((s=o.anyLevel)===null||s===void 0?void 0:s.length)||0)+(((l=o.thisLevel)===null||l===void 0?void 0:l.length)||0),m=!1,h=0;h<p;h++){var v,g,b,w=h<(((v=o.anyLevel)===null||v===void 0?void 0:v.length)||0)?o.anyLevel[h]:o.thisLevel[h-(((g=o.anyLevel)===null||g===void 0?void 0:g.length)||0)];if((!w[0].id||c.shadowId===o.parentShadowId)&&$r(c,w[0]))if(w.length===1)!m&&(!r||r(c))&&(u.push(c),m=!0);else{var D=w.slice(1);if([" ",">"].includes(D[0].combinator)===!1)throw new Error("axe.utils.querySelectorAll does not support the combinator: "+w[1].combinator);D[0].combinator===">"?(d=d||[]).push(D):(f=f||[]).push(D)}(!w[0].id||c.shadowId===o.parentShadowId)&&(b=o.anyLevel)!==null&&b!==void 0&&b.includes(w)&&(f=f||[]).push(w)}for(c.children&&c.children.length&&(n.push(o),o=G1(c.children,f,d,c.shadowId,a.pop()));o.vNodesIndex===o.vNodes.length&&n.length;)a.push(o),o=n.pop()}return u}function jw(e,t,r){e=Array.isArray(e)?e:[e];var a=Xn(t),n=F1(e,a,r);return n||qw(e,a,r)}var jt=jw;function $w(e){var t=e.treeRoot,r=t===void 0?x._tree[0]:t,a=zw(r);if(!a.length)return Promise.resolve();var n=M.implementation.createHTMLDocument("Dynamic document for loading cssom"),i=q1(n);return Vw(a,i).then(function(o){return W1(o)})}var U1=$w;function zw(e){var t=[],r=jt(e,"*",function(a){return t.includes(a.shadowId)?!1:(t.push(a.shadowId),!0)}).map(function(a){return{shadowId:a.shadowId,rootNode:ya(a.actualNode)}});return qa(r,[])}function Vw(e,t){var r=[];return e.forEach(function(a,n){var i=a.rootNode,o=a.shadowId,u=Hw(i,o,t);if(!u)return Promise.all(r);var s=n+1,l={rootNode:i,shadowId:o,convertDataToStylesheet:t,rootIndex:s},c=[],d=Promise.all(u.map(function(f,p){var m=[s,p];return Mu(f,l,m,c)}));r.push(d)}),Promise.all(r)}function W1(e){return e.reduce(function(t,r){return Array.isArray(r)?t.concat(W1(r)):t.concat(r)},[])}function Hw(e,t,r){var a;return e.nodeType===11&&t?a=Gw(e,r):a=Uw(e),Yw(a)}function Gw(e,t){return Array.from(e.children).filter(Ww).reduce(function(r,a){var n=a.nodeName.toUpperCase(),i=n==="STYLE"?a.textContent:a,o=n==="LINK",u=t({data:i,isLink:o,root:e});return u.sheet&&r.push(u.sheet),r},[])}function Uw(e){return Array.from(e.styleSheets).filter(function(t){return t.media?Y1(t.media.mediaText):!1})}function Ww(e){var t=e.nodeName.toUpperCase(),r=e.getAttribute("href"),a=e.getAttribute("rel"),n=t==="LINK"&&r&&a&&e.rel.toUpperCase().includes("STYLESHEET"),i=t==="STYLE";return i||n&&Y1(e.media)}function Y1(e){return e?!e.toUpperCase().includes("PRINT"):!0}function Yw(e){var t=[];return e.filter(function(r){return r.href?t.includes(r.href)?!1:(t.push(r.href),!0):!0})}function Kw(e){var t=e.treeRoot,r=t===void 0?x._tree[0]:t,a=jt(r,"video[autoplay], audio[autoplay]",function(n){var i=n.actualNode;if(i.preload==="none"&&i.readyState===0&&i.networkState!==i.NETWORK_LOADING||i.hasAttribute("paused")||i.hasAttribute("muted"))return!1;if(i.hasAttribute("src"))return!!i.getAttribute("src");var o=Array.from(i.getElementsByTagName("source")).filter(function(u){return!!u.getAttribute("src")});return!(o.length<=0)});return Promise.all(a.map(function(n){var i=n.actualNode;return Xw(i)}))}var K1=Kw;function Xw(e){return new Promise(function(t){e.readyState>0&&t(e);function r(){e.removeEventListener("loadedmetadata",r),t(e)}e.addEventListener("loadedmetadata",r)})}function X1(e){var t={cssom:U1,media:K1};return Z1(e)?new Promise(function(r,a){var n=J1(e),i=n.assets,o=n.timeout,u=setTimeout(function(){return a(new Error("Preload assets timed out."))},o);Promise.all(i.map(function(s){return t[s](e).then(function(l){return Jr({},s,l)})})).then(function(s){var l=s.reduce(function(c,d){return de({},c,d)},{});clearTimeout(u),r(l)}).catch(function(s){clearTimeout(u),a(s)})}):Promise.resolve()}function Zw(e){return P(e)==="object"&&Array.isArray(e.assets)}function Z1(e){return!e||e.preload===void 0||e.preload===null?!0:typeof e.preload=="boolean"?e.preload:Zw(e.preload)}function J1(e){var t=se.preload,r=t.assets,a=t.timeout,n={assets:r,timeout:a};if(!e.preload||typeof e.preload=="boolean")return n;var i=e.preload.assets.every(function(o){return r.includes(o.toLowerCase())});if(!i)throw new Error("Requested assets, not supported. Supported assets are: ".concat(r.join(", "),"."));return n.assets=qa(e.preload.assets.map(function(o){return o.toLowerCase()}),[]),e.preload.timeout&&typeof e.preload.timeout=="number"&&!isNaN(e.preload.timeout)&&(n.timeout=e.preload.timeout),n}function di(e){var t=x._audit.data.checks||{},r=x._audit.data.rules||{},a=Ba(x._audit.rules,"id",e.id)||{};e.tags=Wt(a.tags||[]);var n=Q1(t,!0,a),i=Q1(t,!1,a);e.nodes.forEach(function(o){o.any.forEach(n),o.all.forEach(n),o.none.forEach(i)}),bu(e,Wt(r[e.id]||{}))}function Jw(e,t){function r(n){return n.incomplete&&n.incomplete.default?n.incomplete.default:Eu()}if(e&&e.missingData)try{var a=t.incomplete[e.missingData[0].reason];if(!a)throw new Error;return a}catch{return typeof e.missingData=="string"?t.incomplete[e.missingData]:r(t)}else return e&&e.messageKey?t.incomplete[e.messageKey]:r(t)}function Q1(e,t,r){return function(a){var n=e[a.id]||{},i=n.messages||{},o=Object.assign({},n);delete o.messages,!r.reviewOnFail&&a.result===void 0?(P(i.incomplete)==="object"&&!Array.isArray(a.data)&&(o.message=Jw(a.data,i)),o.message||(o.message=i.incomplete)):o.message=a.result===t?i.pass:i.fail,typeof o.message!="function"&&(o.message=Au(o.message,a.data)),bu(a,o)}}function Qw(e,t){return jt(e,t)}var ft=Qw;function ef(e,t){var r,a,n=x._audit&&x._audit.tagExclude?x._audit.tagExclude:[];t.hasOwnProperty("include")||t.hasOwnProperty("exclude")?(r=t.include||[],r=Array.isArray(r)?r:[r],a=t.exclude||[],a=Array.isArray(a)?a:[a],a=a.concat(n.filter(function(o){return r.indexOf(o)===-1}))):(r=Array.isArray(t)?t:[t],a=n.filter(function(o){return r.indexOf(o)===-1}));var i=r.some(function(o){return e.tags.indexOf(o)!==-1});return i||r.length===0&&e.enabled!==!1?a.every(function(o){return e.tags.indexOf(o)===-1}):!1}function e_(e,t,r){var a=r.runOnly||{},n=(r.rules||{})[e.id];return e.pageLevel&&!t.page?!1:a.type==="rule"?a.values.indexOf(e.id)!==-1:n&&typeof n.enabled=="boolean"?n.enabled:a.type==="tag"&&a.values?ef(e,a.values):ef(e,[])}var tf=e_;function rf(e,t){if(!t)return e;var r=e.cloneNode(!1),a=la(r);if(r.nodeType===1){var n=r.outerHTML;r=ue.get(n,function(){return af(r,a,e,t)})}else r=af(r,a,e,t);return Array.from(e.childNodes).forEach(function(i){r.appendChild(rf(i,t))}),r}function af(e,t,r,a){return t&&(e=M.createElement(e.nodeName),Array.from(t).forEach(function(n){t_(r,n.name,a)||e.setAttribute(n.name,n.value)})),e}function t_(e,t,r){return typeof r[t]>"u"?!1:r[t]===!0?!0:Or(e,r[t])}function Iu(e,t){var r=[],a;if(x._selectCache)for(var n=0,i=x._selectCache.length;n<i;n++){var o=x._selectCache[n];if(o.selector===e)return o.result}for(var u=r_(t.include),s=a_(t),l=0;l<u.length;l++){a=u[l];var c=jt(a,e,s);r=n_(r,c)}return x._selectCache&&x._selectCache.push({selector:e,result:r}),r}function r_(e){return e.reduce(function(t,r){return(!t.length||!Yt(t[t.length-1],r))&&t.push(r),t},[])}function a_(e){return!e.exclude||e.exclude.length===0?null:function(t){return Su(t,e)}}function n_(e,t){if(e.length===0)return t;if(e.length<t.length){var r=e;e=t,t=r}for(var a=0,n=t.length;a<n;a++)e.includes(t[a])||e.push(t[a]);return e}function fi(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;if(P(e)!=="object"||e===null)return{message:String(e)};var r={},a=xe(se.serializableErrorProps),n;try{for(a.s();!(n=a.n()).done;){var i=n.value;["string","number","boolean"].includes(P(e[i]))&&(r[i]=e[i])}}catch(o){a.e(o)}finally{a.f()}return e.cause&&(r.cause=t<10?fi(e.cause,t+1):"..."),r}var i_=(function(e){function t(r){var a,n,i=r.error,o=r.ruleId,u=r.method,s=r.errorNode;return _t(this,t),n=Wa(this,t),n.name=(a=i.name)!==null&&a!==void 0?a:"RuleError",n.message=i.message,n.stack=i.stack,i.cause&&(n.cause=fi(i.cause)),o&&(n.ruleId=o,n.message+=" Skipping ".concat(n.ruleId," rule.")),u&&(n.method=u),s&&(n.errorNode=s),n}return Ya(t,e),xt(t)})(Ri(Error)),pi=i_;function o_(e,t,r){if(e===E)return e.scroll(r,t);e.scrollTop=t,e.scrollLeft=r}function u_(e){e.forEach(function(t){var r=t.elm,a=t.top,n=t.left;return o_(r,a,n)})}var s_=u_;function l_(e){var t=Array.isArray(e)?re(e):[e];return nf(t,M)}function nf(e,t){var r=e.shift(),a=r?t.querySelector(r):null;return e.length===0?a:a!=null&&a.shadowRoot?nf(e,a.shadowRoot):null}function Nu(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:M,r=Array.isArray(e)?re(e):[e];return e.length===0?[]:of(r,t)}function of(e,t){var r=em(e),a=r[0],n=r.slice(1),i=t.querySelectorAll(a);if(n.length===0)return Array.from(i);var o=[],u=xe(i),s;try{for(u.s();!(s=u.n()).done;){var l=s.value;l!=null&&l.shadowRoot&&o.push.apply(o,re(of(n,l.shadowRoot)))}}catch(c){u.e(c)}finally{u.f()}return o}function c_(){return["hidden","text","search","tel","url","email","password","date","month","week","time","datetime-local","number","range","color","checkbox","radio","file","submit","image","reset","button"]}var mi=c_,uf=[,[,[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,,,,,,1,1,1,1,,,1,1,1,,1,,1,,1,1],[1,1,1,,1,1,,1,1,1,,1,,,1,1,1,,,1,1,1,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,,,,1,1,1,,1,1,1,1,1,1,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1],[,1,,,,,,1,,1,,,,,1,,1,,,,1,1,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,1,1,1,1,,,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,,,1,,,,,1,1,1,,1,,1,,1,,,,,,1],[1,,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,,1,,1,,,,,1,,1,1,1,1,1,,,,1,1,1,1],[,1,1,1,1,1,,1,1,1,,1,,1,1,1,,,1,1,1,1,1,1,1,1],[,,1,,,1,,1,,,,1,1,1,,,,,,,,,,,1],[1,1,1,1,1,1,,1,1,1,,1,1,,1,1,1,1,1,1,1,1,,,1,1,1],[1,1,1,1,1,,,1,,,1,,,1,1,1,,,,,1,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,,1,1,,1,1,1,1,1,1,1,,1],[,1,,1,1,1,,1,1,,1,,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,,,1,1,1,,,1,1,,,,,,1,1],[1,1,1,,,,,1,,,,1,1,,1,,,,,,1,,,,,1],[,1,,,1,,,1,,,,,,1],[,1,,1,,,,1,,,,1],[1,,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,,1,,,1,1,1,1],[,1,1,1,1,1,,,1,,,1,,1,1,,1,,1,,,,,1,,1],[,1,,,,1,,,1,1,,1,,1,1,1,1,,1,1,,,1,,,1],[,1,1,,,,,,1,,,,1,1,1,1,,1,1,1,1,1,1,,1,1,1],[,1,,1,1,1,,,1,1,1,1,1,1,,1,,,,,1,1,,1,,1],[,1,,1,,1,,1,,1,,1,1,1,1,1,,,1,1,1],[,1,1,1,,,,1,1,1,,1,1,,,1,1,,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1],[,1,1,1,,1,1,1,,1,,,,,1,1,1,,,1,,1,,,1,1],[,,,,1,,,,,,,,,,,,,,,,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,,1,1,1,,1,1,,,,1,1,1,1,1,,,1,1,1,,,,,1],[1,1,1,1,,,,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,,,,,,,1,,,,,,,1],[,1,1,,1,1,,1,,,,,,,,,,,,,1],,[1,1,1,,,,,,,,,,,,,1],[,,,,,,,,1,,,1,,,1,1,,,,,1]],[,[1,1,,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,,1,1,1,1,,1,1,,1,1,1,1,1,1,1,,1,1,1,1,,1],[,,,1,,,,,,,,,,,,,,,1],[,1,,,1,1,,1,,1,1,,,,1,1,,,1,1,,,,1],[1,,,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1,,,1,,,,1],,[,1,1,1,1,1,,1,1,1,,1,1,,1,1,,,1,1,1,1,,1,1,,1],[,1,,,1,,,1,,1,,,1,1,1,1,,,1,1,,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,,,1,1,1,1,1,1,1,,,1,,,1,,1],[,1,,,,,,,,,,1,1,,,,,,1,1,,,,,1],[,,,,,,,1,,,,1,,1,1],[,1,1,1,1,1,1,1,,,,1,1,1,1,1,,,1,1,,1,1,1,1,1],[,1,,,1,1,,1,,1,1,1,,,1,1,,,1,,1,1,1,1,,1],[,1,1,1,,1,1,,1,1,,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1],[,,,,,,,,,,,,,,,,1],,[,1,1,1,1,1,,1,1,1,,,1,,1,1,,1,1,1,1,1,,1,,1],[,,1,,,1,,,1,1,,,1,,1,1,,1],[,1,1,,1,,,,1,1,,1,,1,1,1,1,,1,1,1,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[1,1],[,1,,,,,,,,,,1,1,,,,,,1,1,,1,,1,,1,1],,[,1,1,,1,,,1,,1,,,,1,1,1,,,,,,1,,,,1],[1,1,,,1,1,,1,,,,,1,,1]],[,[,1],[,,,1,,,,1,,,,1,,,,1,,,1,,,1],[,,,,,,,,,,,,,,,,,,1,1,,,,,,1],,[1,,,,,1],[,1,,,,1,,,,1],[,1,,,,,,,,,,,1,,,1,,,,,,,,,1,1],[,,,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,1,,,,1,,1],[,1],[,1,,1,,1,,1,,1,,1,1,1,,1,1,,1,,,,,,,1],[1,,,,,1,,,1,1,,1,,1,,1,1,,,,,1,,,1],[,1,1,,,1,,1,,1,,1,,1,1,1,1,,,1,,1,,1,1,1],[1,1,1,1,1,,1,,1,,,,1,1,1,1,,1,1,,,1,1,1,1],[1,,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,1],,[,1,,,,,,1,1,1,,1,,,,1,,,1,1,1,,,1],[1,,,,,1,,1,1,1,,1,1,1,1,1,,1,,1,,1,,,1,1],[1,,1,1,,,,,1,,,,,,1,1,,,1,1,1,1,,,1,,1],[1,,,,,,,,,,,,,,,,,1],[,,,,,1,,,1,,,,,,1],[,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,,1],[,1,,,,,,,,,,,,,,1],[,1,,,,1]],[,[1,1,1,,1,,1,1,1,1,1,1,1,1,1,,1,,1,,1,1,,,1,1,1],[,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1],,[,,,,,,,,,,,,,,,,,,1],[1,,,,,,,,,1,,,,1],[,,,,,,,,,,,,,,,,,,1],,[1,1,,,,1,1,,,,,,1,,,,1,,1,,1,1,,1],[1],[,,,,,,,,,,,1,,,,,,,,,,,1],[,1,,,,,,,1,1,,,1,,1,,,,1,,,,,,,1],[,,,,,,,,,,,,,,,,1,,,,,1],[,,1,,,,,1,,1],[1,,,,1,,,,,1,,,,1,1,,,,1,1,,,,,1],[,,,,,1],[,,,,,,,,,,,,,,,,,,,1],[1,,,1,1,,,,,,,1,,1,,1,1,1,1,1,1],[,,,,,1,,,,,,,1,,,,,,,1],,[,,1,1,1,1,1,,1,1,1,,,1,1,,,1,1,,1,1,1,,,1],[,,,,,,,,,,,,,,,,,,1],[,1,,,,1],,[1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[,,,1,1,1,1,,,,,,1,,1,,,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,,,,1,,1,,,1,1,1,1,1],[,,,,,,,,,,,1,,,,,,,,,1,,,,1],[,1,1,,1,1,,1,,,,1,1,,1,1,,,1,,1,1,,1],[,1,,1,,1,,,1,,,1,1,,1,1,,,1,1,1],[,1,1,1,1,1,,1,1,,,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,,,,,,,,,1,,1,,1,1,,,,1,,,1],[,1,,,1,1,,,,,,,,,1,1,1,,,,,1],[1,,,1,1,,,,1,1,1,1,1,,,1,,,1,,,1,,1,,1],[,1,1,,1,1,,1,1,,,,1,1,1,,,1,1,,,1,1,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,,1,1,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,,,,1,,,,,,,,,1],[,1,,,,,,,,1,,,,,1,,,,1,,,1],[,1,1,1,1,,,1,1,1,1,1,,1,,1,,1,1,1,1,1,1,1,1,1,1],[,,,,,1,,1,,,,,1,1,1,1,1,,,1,,,,1],[,1,,,,,,,,1,,,,,,,,,,,,1],[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,,1,,1,1,,,,1,,1,1,1,1,1,,1,1,,,,,,1],[,1,1,1,1,1,1,1,,1,1,,,1,1,,,,1,,1,1,,1,1],[,,,,,,,,,,,,,,,,,,,,,,,,1],[,1,1,,1,1,1,1,,1,,,1,1,1,1,,,1,,,,,,,1],[,1,,,,,,,,1,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1],[,1,1,,,,,,,,,,,,1,1,,,,,,1],[,1,,,,,,,1],[,,,,,,,,,,,,,,1,,,,,1,,,,,,1],[1,1,,,1,,,1,1,1,,,,1],,[,,,,,,,,,,,,,1,,,,,,,,,,1],[,,,,,,,,,1,,,,,,,,,1,,,,,,,1],[1,1,1,,1,,1,1,1,1,1,1,1,1,,1,,,1,,1,,,1,1],[,,,,,,,,,1],[,1,,,,1,,,,,,1,,,1,,,,,1],[,1,1,,1,1,,,,,,,,,,,,,,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,,,1,1,,1,1,1,1,,,,1,1,,,,1,,1],[1,1,1,1,1,1,,,1,1,1,1,1,1,,1,1,,1,1,1,,1,1,,1,1],[,,,,,,,,,,,,,,,1,,,,1],,[1,1,,1,,1,,,,,,1,,1,,1,1,,1,,1,1,,1,1,,1],[,,1,,,,,,1,,,,1,,1,,,,,1],[1,,,,,,,,,1,,,,,,1,,,,1,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,,,1,,1,,,,,,1,,,1,,,,,,,,1],[,1,,1,,,,,,,,,,,,1],,[1,1,,,,,,,,,,,,,,,,,,,,,,1,1],[1]],[,[1,,,,,,,,,1,,,,,1,,1,,1],[,1,1,,1,1,,1,1,1,,,1,1,1,,,,1,,,1,,,,1],[,1,,,,,,,1,,,,1,,,,,,1],[1,1,1,1,1,1,,,,1,,,,,,,,,1,1,1,1],[1],[,1,1,,,1,1,,,,,1,,1,,,,,,,,1,,,,1],[1,,1,,,1,,1,,,,,1,1,1,1,,,,1,,,,1],[,,1,,,,,,,1,,,,,,,1,,,,,,,1],[1,,,,,,,,,,,,,,1,,,,1],[,,,1,,1,,,,,1,,,,1,1,,,,1],[1,,,,,1,,,,1,,1,1,,,1,1,,1,1,1,,1,1,1,,1],[,1,1,,,,,1,,1,,1,1,1,,1,1,,,1,,1,1,1],[,1,,,,1,,,,1,,,1,,1,1,,,1,1,,,,,,1],[1,,1,1,,1,,1,1,,1,,1,1,1,1,1,,,1,1,,,,,,1],[1,,,,,,,,,,,,,,,,,,1,,,1,,1],[,,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,,,,1,,1],[,1,,,,1,,,1,1,,1,,,1,1,,,1,,,1,,,1,1],[1,1,,1,1,1,,1,1,1,,1,,1,1,1,,,1,,1,1],[1,,1,1,1,1,,,,1,,1,1,1,,1,,,1,1,1,,1,1,1,1,1],[1,,,,,,,,,,,,,1],[,,1,,,,,,,,,,,,,,,,,,,,1],[1,,,,,,,,,,,1,,1,,1,,,,1],[,,,1,,,,,,,,,1],[,1,,,,,,,,,,,,,,1,,,,,,,,,1],[,,,,,,,,1,1,,,,,,,,,1,,,,,,,,1]],[,[1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,,1,1,1,1,1,,,1,1,1],[,,,,,1,,,,1,1,1,,,1,1,,,1,,1,1,,1],[,,,,,,,,,,,,,,,,,,,1,1],[,1,,,,,,1,,,,,,,,,,,,,1],[,,1,,,1,,1,1,1,,1,1,,1,,,,1,,1,1],,[,,1,,,1,,,,,,1,,,,1],[,,,,,,,,,1,,,,,,,,,,1],[1,1,1,1,1,1,,1,1,1,,,1,1,,1,,1,,,1,1,1,,,1],[,,,,,1,,,,,,,,,,,,,1],[,1,,,,,,,,,,,,1,,1,1,,1,,,1],[,,,,,1,,,,,,,,,,,,,,1],[,1,1,1,1,,,,,1,,,1,,1,,,,1,1,,,,1,1],[,1,,,1,,,1,,1,1,,1,,,,,,,1],[,,1,,1,,,1,,,,,,,,,,,1,1,,,,1],[,1,,,,,,,,,,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,1],[,1,1,,,,,,,,,,,,,,,,1,,1,1],[,,,,,,,,,,,,1],,[,1,1,1,1,,,,1,1,,1,1,1,1,1,1,,1,1,1,1,,1,,1],[1,,,,1,,,,,,,,,,1],[1,,,,,,,,,1],,[,1,,,,1,,,,,,,,,,,,,,,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,,,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,,1,1,1,,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,,,1,1,1,,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1,,1,1,1,1],[1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,,,1,1,1,1,,1,,,,1,1,,,1,1,,1],[,1,1,,1,,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,,,,,,,,,,1],[1,1,1,,,,,1,1,1,,1,1,1,1,,,1,1,,1,1,,,,,1],[,1,,,,,,,1,1,,,1,1,1,,1,,,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,1],[,1,,,,1,,,,1,,,1,,,,1,,,,,,,1,1],[,1,1,1,1,1,,,1,1,1,,1,1,1,1,,,1,1,1,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1],[1,1,1,,1,,,1,1,1,1,,1,1,1,1,,,,1,,1,,1,,,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,1,,,,,,,,,1,1,,,,,,,,,1],,[,1,,1,,1,,1,,1,,1,1,1,1,1,,,1,,1,,1,,,,1],[,1,,,1,1,,1,1,1,,,1,1,1,1,1,,1,1,1,,1,,,1],[1,,,1,,,,1,1,1,,,,,1,1,,,,1,,1],[1,1,,1,1,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,,,,,,,,1,,1,,,,,,,,1,,1],[,1,,,,1,,1,1,,,,1,1,,1,,,,1,1,1,,1],,[,1,,,,,,1,,,,,,,1],[,,,,,,,,1,,,,1,,1,,,,,,,,,,,,1]],[,[,1,1,,1,1,1,1,,1,1,1,,1,1,,1,1,,1,1,1,1,1,1,,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,1,,,1,,,,,,,,1,,,,,,1,,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,,1,1,1,,1,1,1,1,,,1,1,1,1,,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,,1,,1,,1,,1,1,1,1,1,1,1,,1,1,,,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1],[,1,1,,,,,1,1,1,,,1,,1,1,,,,1,,1,,,1,1],[,,,,,,,1,,,,1,1,1,1,1,,1,,,,,,,,1],[1,1,1,1,,1,1,1,,1,,1,1,1,1,,1,,1,,1,1,,,1,,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,1,1,,1,,1,1,1,,1,,1,1,,1,1,,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,,,,,,,1,,,,,1,,1],[,1,1,1,,1,,1,,1,,,,1,,1,,,1,,,,,,1,1],[,1,,,1,1,,1,,1,,1,1,1,1,1,,1,1,,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,,,1,,1,,1,,,,,,1,,1,,,,1,1]],[,[,1,,1,,,,,,,,,,,,,,,1,,,,1],[,,,,,,,,,1,,1,1,1,,1,,,1,,1,1],[1,1,,,,,,,1,,,,,,,1,,,,,,1],[,1,,,,,,,,,,1,,,,,,,,,1,1],,[,,,,,,,,,,,,,,,1,,,,1,,1],[,,1,1,,1,,1,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,,,1,1],[,1,,,,,,,,,,,,,1],[1,,1,1,,,,1,,,,,,,,,1,,,1,,,1,1],[,1,1,,1,1,,1,1,1,1,1,1,1,1,1,,,1,1,,1,1,,1],[,1,,,1,1,,,,,,1,,1,,1,,,1,,1,1],[1,1,1,1,,1,,1,,1,,1,1,,1,1,1,1,1,,1,1,1,1,1],[,1,1,,,1,,1,,1,1,1,,,1,1,1,,1,1,1,1,,1,1],[,,,,1,,,1,,,,,,,1,,,,1,1],[,1,,,,,,,,,,1,,1,,1,,,,,1,,,,,1],,[1,1,,1,,1,,1,1,,,,,,1,1,,,1,1,1,1,1,1,1,1,1],[1,1,,1,,,,,,1,,,,,,1,1,,,,1,1,,,1],[,1,1,,1,1,,,,1,,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1],[,1,1,,,1,,,,1,,,,1,1],[,,,,1],[,,,,,,,,,1,,,1],,[,,1,,1,,,,,,,,,1,,,,,,,,,,,,1],[,,,,,,,,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,1,,1,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,,,,,1],[,1,,1,,,,,,1,,,,,1,1,,,,,1,1],[,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,,,1,,1,1,1],[,1,,,,1,,,,,,,1],[,1,,,1,,,1,,1,,1,1,,1,,,,,1,,1,,,,1,1],[,1,,,1,,,1,1,1,,1,1,1,1,1,,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1],[,,,,,,,,,,,,,,,,,,,,1],[,1,1,1,,,,1,1,,,,,,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,1,1,1,1,1,1,1,,1,,1,1,1,1,1,,1,1,,1,1,1,1,1],[,1,,,,1,,,,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,1,,,,,,,,1,,,,,,,,,,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,,1,1,1,,1,1,1,,,1,1,1,1,1,1,1,1,1,1,,1,,1],[1,1,,,,,,,1,1,,,,,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,,1,1,1,,1,,1,1,1,1,,1,1,,1,1,1,1],,[,1,1,,,,,1,,1,,,,1,1,1,,,1,,,,,1],[,,,,,,,,,,,,,1],[,,,,,1,,,,,,,,1,1,,,,,1,,1,,,1,1],[,,,,,,,,,,,,,,1]],[,[,1],,,,,,,,,,,,,,,,,,,,[1,1,1,1,1,,1,1,1,1,,1,1,1,1,,1,1,1,1,,,1,1,1,1,1],[,1,,1,,1,,,1,1,1,,1,1,1,1,1,,,1,,,,1,,1,1],[,1,,1,,1,,,1,,,,,1,,,,,,1,1],[,1,,1,,,,,1,,,,1,,1,1,1,1,1,1,1,1,,1],[,1,,,,,,,,,,,,,,,1]],[,[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,,,,,,,,,1,1,,,,1],[,,,,,,1],[,,1],[,1,1,,,1,,1,,1,1,,1,1,1,,,,1,1,1,,,,,1],,[,1,,,,1,,,,,,1,,,1,,,,1,1,,1],[,,,,,,,1,,,,,,,,,1],[,1,,,,1,1,,,,,,1,1,1,,,,1,,1,1],[,,,,,,,1,,1,,,,,,,,,,1],[,1,1,,,,,,1,1,,,,1,,,,,,,1,,,1],,[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,,1,,,1,,,,,1,,1,,1,,1,,,,,1],[1,1,1,1,1,1,1,1,,,,,1,1,,1,1,,1,,,1,,1],[,,,,,,,,,,,,,,1,,,,,,1],,[,,,,,,,,,1,,,,,,1,,,,,1],[,,1,,,,,,,1,,,1,1],[,,,1,,,,,1,,,,,1,,,,,,1,,,,1],[1,,1,1,,1,1,1,1,1,,1,,,,1,1,1,,,1,1,,,,1,1],,[1,1,,,,,,,,,,1,,1,,1,,,1],[,,,,1,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,1,,,,,1,,1],[,,,,,,,,1]],[,[1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,,1,1,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,,1,,,1,,,,,,,,1,,,,,,1,,,,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,,1,,,,1,1,1,1,1,1,,1,1,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1],[,,1,1,1,1,,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,,,,,,,1,,1,1,,1,1,1,,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,1,1,,1,,1,,1,1,1,1,1,,,,1,1,1,1,,1,1,1,1,1],[1,1,1,1,,1,,,,,,1,,1,,,,,1,1,,,,,1],[1,,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,1,,1,,1,,,,1,1,1,1,1,,,1,1,,1,,1],[,1,1,1,1,,,,,1,,1,1,1,1,1,,,1,1,,,,1,1,1],[,1,1,1,1,1,,1,,,,,1,,1,,1,,,1,,,1,1,,1]],[,[1,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,,,,,,1,,,,,1,1,,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,,,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,,1,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,,,,,,1,,1,1,,1,1,1,1,1,,,1,,1,,1],[1,1,1,,1,1,1,1,,,,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,,1,1,,1,1,1,1,1,,1,1,1,1,1,1],[,1,,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,,1,,,,,,,,,,1,1,1,1,1,1,1,,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,,,1,1,,,,,,1,1,1,1,1,,,,1,1,1,,1,1,1],[1,1,1,1,1,1,1,1,1,,,,1,1,1,1,1,1,1,,1,1,,1,1,1],[,1,1,1,,1,,1,1,1,1,,,1,1,1,,1,1,1,1,1,,,1,1],[1,1,,,,1,,,1,1,1,,1,,1,,1,,1,1,1,1,1,,1,,1],[,1,,,,,,,1,,1,,1,1,1,1,,,,,,,,,1]],[,[,,,,,,,,,,,,,1,1,,,,1],[,1,,,,,,,,1,,,1,,,,,,1,,,1,,,,1],,[,1,,,,1,,1,,1,1,,1,1,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,1],[1,1,1,,,1,,,,,,,,,1,1,,,,,,,,,,1],[,1,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1,,,1],[,,,,,,,,,1],[1,1,,,,,,1,1,1,,1,1,,,,1,1,,1,,1,1,1,,1],[,1,1,1,,1,1,,,1,,1,1,1,1,,,,,,,1,,1],[,1,1,1,1,,,1,,1,,,,1,1,1,1,,1,1,,1],[,1,,,1,1,,1,,,,1,,1,1,,1,,1,,,1,,,1,,1],[,,,,,,,,,,,1],[,,,,,,,,,1,,,,,,,,,,,,,1],,[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1],[,1,,,,,,,1,1,,1,,,,,1,,,1,,1],[,1,,,,1,,,1,,,,,,,,1,,1,,,1],[,,,,,,,,,,,,,1,1,,,,1,,,1],[,,,,,1,,,1,,,,1],[,1],,[,1],[1,,,,,,,,,,,,,,1,,,,,1]],[,[,1,,,,1,1,1,1,1,1,,1,1,1,1,1,,1,1,,1,1,,,1],[,,1,,,,,,,,,1],,,[1,,,1,1,,,,,,,,1,1,,1,1,,1],,[,,,,,,,,,,,,,,,,,,1,,1],,[1,,,1,1,,1,1,,,,,1,,1,,,,,1,1,,1],,[,1,,,,,,,,1,1,1,1,1,,1,1,,,,1,1],[,,,,,,,,,,,,,,,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,,1,1,1,1,1,1],[,,,,,,,,,,,1,,1,,,1],[1,,,,,,,,,,,,,,,,,,1,,1],,,[,1,,,,,,,,,,,,,,1,,,,1,1],[,,,,,,,,,1,,,1,,,,,,,,,,1],[,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,1,1,,,,,,1],,[,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,,1,1,,1,1,1,1,1,1,,,1,1,1,1,1,,1,1],[,1,,,,,,,,1],[,,,,1,,,1,,,1,1,,,,,,,,,,1,,,,1],[,1,,1,1,,,1,1,1,,,,1,1,1,1,,1,1,1,1,,1],[,,,,,,,1],[,1,1,,,,,1,,1,,,,,,1,,,,,,1,,1,,1],[,1,,,,,,1,,,,1,,,,,,,,,,1],[,,1,1,,1,1,1,1,1,1,1,1,1,1,,,,1,,1,1,1,1,,1],[,1,,,,,,,,1],[,1,1,,1,,,,,,,,1,,,,,,1,,,1,,1,,1],[,1,,1,,1,,1,1,1,,1,1,1,,1,,,1,1,,1,1,1,1,1],[,1,1,1,1,1,,,1,1,,,,1,1,1,,,,1,1,,,1,1],[,,1,1,1,1,,1,,1,,1,,1,1,1,1,,,,,1,,1,,1],[1,1,1,1,1,1,1,1,,1,,1,,1,1,1,,,1,1,,,,1,,1],[,,,1],,[,1,1,,1,,,1,1,1,,1,1,1,1,1,1,,1,1,,1,1,1,1,1,1],[,1,,,,,,1,,1,,1,,,,,,,1,1,,1,1],[,,,,,,1,,1,1,,1,,1,,,,,,,,,,1],[,1,1,,1,,,,1,,,,1,1,1,,,,1,,1,1,1,,1,1],,[,1,1,,,,,,,,,,,,,1,,,1,,,,,1],[,1,,,,,,,,,,,,,,,,,,,,,,1],[,1,1,,,,,,,1,,,,1,,,,,1,,,,,,,1]],[,[,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[,1,1,1,1,1,,1,,1,1,,,1,1,1,1,,1,,,,,1,1,1],[,,1,1,,1,,1,1,,,,1,1,1,1,,,1,,1,1,1,1,,1],[,1,,1,,,,,,,,1,,1,,1,,,,,,,,,,1],[,,1,,1,,,1,,,,,1,1,,,1,,1,1,1,1],[,1],[,1,1,,1,,1,1,,1,,,1,1,1,,,,1,,,1,,1],[1,1,,1,1,1,,,,,,,,,,,,,1,,1,1,1],[,1,1,,,,,,,1,,,1,,1,,1,,1,1,,,1,,,1],[,,1,,,,,,,,,,,,,,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,,1,,,,,1,1,1,,,1,,1,,,,1],[,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,1,1,1,,1,,1,1,1,,,1,1,1,1,,,,1,1],[,,,1,1,,,1,,1,,1,,1,1,1,1,,1,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,,,,,,,,,,,,,,,,1],[,1,1,,1,1,,1,,1,,,,1,1,,,1,1,,1,1,,1],[,1,1,1,1,1,,,1,1,1,,1,1,1,1,1,1,1,1,,1,1,,,1],[,1,1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,,1,,,1,,,1,,1,1,1,1,1,,1,,1,1],[,,,,,1,,,,1,,,,,1,1,,,,1],[,1,,1,1,1,,1,,,1,1,1,,,1,,,1,,1,,,1],[,,1,,,,,,,,,1,,1,,,,,1,,1],[,1,1,,,,,,,,1,1,1,,,,,,,,1,,,,,1],[,,,,,,,,1,,,,,1,,,1]],[,[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,,,1,1,1,1,1,1,1,1,,,,,,,,,1,1],[,,,,,,,,1,,,,1,,1,,1],[,1,,,1,1,,1,,,,1,,,,,,,,1],[,1,,1,,1,,,,1,1,,1,,1,,,,1,1,1,1,1,,,1],,[,1,,,,,,,,1,,,1,1,,,1,,1,1,,1,,1],[,1,,,1,,,,,,,,1,,,,,,,1],[1,1,,,,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1],,[,1,,,,,,1,,1,,1,1,1,1,1,,,1,,1,1,,,,1],[,1,1,,,1,,1,,1,,,1,1,1,1,,,1,,,1,,,,1],[,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,,,1,,1],[,1,,,1,1,,1,1,,,1,1,,1,1,,1,,1,,1],[1,,1,,,,,1,,1,,1,1,1,1,,,,,1,1,,,,1,1],[,1,1,,,,,1,1,,,1,,1,1,1,1,,,,,,,,,,1],,[,1,1,,,1,,,,1,,1,1,1,1,1,,,,1,,,,1,,1],[,,,1,1,,,1,,,,,1,,1,1,1,,1,1,,,,,,1],[,1,,,,,,,,,,,1,,,,1,,,,,,,1,,1],[,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,,1,1,,1,1,1,1],[,1,,,,,,,,,,,,,,,,,,,1],[,1,,,,,,1,,,,,1,,1,,,1,1,,1,1,,1],[,1,,,,,,1,,,,,1,1,,,,,,,,1,,,,1],[,,,,,,,,,,,,,,,,,,1,,,1,,,,,1],[,,,,,,,1,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,,1,,,,,,,1,,,,,,,,1,,,1],[,1,,,,,,,1],[,,,,,,,,,,1],[,1,,,,,,1,1,,,,,,1],,[,1,1,,,,,,1,,,,,1,1,,,,1],[1,,1,,1,,,,,1,,,,,1,,,,,,,,,1,1],[,1,1,,,,,,,,,1,1,1,1,,,,1,,,,,1,,,1],,[,1,1,,1,,,1,1,,,1,,,1,1,1,,1,,1,1,1,,,,1],[,,,,,1,,,,,1,,,1,1,,,1,,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,1,1,,1,,,,1,,,,,,,,1],[,,,1,,,,,1,,,,,1,,1,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,,1],[,1,,,,,,1,,,,,,,1,1,1,,,1],[,1,,,,,,,,,,1,1,1,,,,,1,,,1],[,,,,,1,,1,,,,,1,1,1,,1,1,,1,1,1,,,1,1],[1,1,,,,,,,1,,,,,1,1,,,,,,,,,,,1],,[,1],[,,,,,,,,,,,,,,,,,,,,,,,,1],[,,1,,,,,1,,,1,,,,1,,1],[,1,,,,,,,,,1]]];function d_(e){for(var t=uf;e.length<3;)e+="`";for(var r=0;r<=e.length-1;r++){var a=e.charCodeAt(r)-96;if(t=t[a],!t)return!1}return!0}function sf(e){e=Array.isArray(e)?e:uf;var t=[];return e.forEach(function(r,a){var n=String.fromCharCode(a+96).replace("`","");Array.isArray(r)?t=t.concat(sf(r).map(function(i){return n+i})):t.push(n)}),t}var hi=d_,f_=(function(e){function t(r){var a;return _t(this,t),a=Wa(this,t),a._props=m_(r),a._attrs=h_(r),a}return Ya(t,e),xt(t,[{key:"props",get:function(){return this._props}},{key:"attr",value:function(a){var n;return(n=this._attrs[a])!==null&&n!==void 0?n:null}},{key:"hasAttr",value:function(a){return this._attrs[a]!==void 0}},{key:"attrNames",get:function(){return Object.keys(this._attrs)}}])})(He),Bu={"#cdata-section":2,"#text":3,"#comment":8,"#document":9,"#document-fragment":11},lf={},p_=Object.keys(Bu);p_.forEach(function(e){lf[Bu[e]]=e});function m_(e){var t,r,a,n=(t=e.nodeName)!==null&&t!==void 0?t:lf[e.nodeType],i=(r=(a=e.nodeType)!==null&&a!==void 0?a:Bu[e.nodeName])!==null&&r!==void 0?r:1;he(typeof i=="number","nodeType has to be a number, got '".concat(i,"'")),he(typeof n=="string","nodeName has to be a string, got '".concat(n,"'")),n=n.toLowerCase();var o=null;n==="input"&&(o=(e.type||e.attributes&&e.attributes.type||"").toLowerCase(),mi().includes(o)||(o="text"));var u=de({},e,{nodeType:i,nodeName:n});return o&&(u.type=o),delete u.attributes,Object.freeze(u)}function h_(e){var t=e.attributes,r=t===void 0?{}:t,a={htmlFor:"for",className:"class"};return Object.keys(r).reduce(function(n,i){var o=r[i];if(he(P(o)!=="object"||o===null,"expects attributes not to be an object, '".concat(i,"' was")),o!==void 0){var u=a[i]||i;n[u]=o!==null?String(o):null}return n},{})}var cf=f_;function v_(e,t){if(e=e||function(){},t=t||x.log,!x._audit)throw new Error("No audit configured");var r=x.utils.queue(),a=[];Object.keys(x.plugins).forEach(function(i){r.defer(function(o){var u=function(l){a.push(l),o()};try{x.plugins[i].cleanup(o,u)}catch(s){u(s)}})});var n=x.utils.getFlattenedTree(M.body);x.utils.querySelectorAll(n,"iframe, frame").forEach(function(i){r.defer(function(o,u){return x.utils.sendCommandToFrame(i.actualNode,{command:"cleanup-plugin"},o,u)})}),r.then(function(i){a.length===0?e(i):t(a)}).catch(t)}var df=v_,ja={},ff;function pf(e){return ja.hasOwnProperty(e)}function Lu(e){return typeof e=="string"&&ja[e]?ja[e]:typeof e=="function"?e:ff}function g_(e,t,r){ja[e]=t,r&&(ff=t)}function b_(e){var t=x._audit;if(!t)throw new Error("No audit configured");if(e.axeVersion||e.ver){var r=e.axeVersion||e.ver;if(!/^\d+\.\d+\.\d+(-canary)?/.test(r))throw new Error("Invalid configured version ".concat(r));var a=r.split("-"),n=H(a,2),i=n[0],o=n[1],u=i.split(".").map(Number),s=H(u,3),l=s[0],c=s[1],d=s[2],f=x.version.split("-"),p=H(f,2),m=p[0],h=p[1],v=m.split(".").map(Number),g=H(v,3),b=g[0],w=g[1],D=g[2];if(l!==b||w<c||w===c&&D<d||l===b&&c===w&&d===D&&o&&o!==h)throw new Error("Configured version ".concat(r," is not compatible with current axe version ").concat(x.version))}if(e.reporter&&(typeof e.reporter=="function"||pf(e.reporter))&&(t.reporter=e.reporter),e.checks){if(!Array.isArray(e.checks))throw new TypeError("Checks property must be an array");e.checks.forEach(function(C){if(!C.id)throw new TypeError("Configured check ".concat(JSON.stringify(C)," is invalid. Checks must be an object with at least an id property"));t.addCheck(C)})}var _=[];if(e.rules){if(!Array.isArray(e.rules))throw new TypeError("Rules property must be an array");e.rules.forEach(function(C){if(!C.id)throw new TypeError("Configured rule ".concat(JSON.stringify(C)," is invalid. Rules must be an object with at least an id property"));_.push(C.id),t.addRule(C)})}if(e.disableOtherRules&&t.rules.forEach(function(C){_.includes(C.id)===!1&&(C.enabled=!1)}),typeof e.branding<"u"?t.setBranding(e.branding):t._constructHelpUrls(),e.tagExclude&&(t.tagExclude=e.tagExclude),e.locale&&t.applyLocale(e.locale),e.standards&&Zy(e.standards),e.noHtml&&(t.noHtml=!0),e.allowedOrigins){if(!Array.isArray(e.allowedOrigins))throw new TypeError("Allowed origins property must be an array");if(e.allowedOrigins.includes("*"))throw new Error('"*" is not allowed. Use "'.concat(se.allOrigins,'" instead'));t.setAllowedOrigins(e.allowedOrigins)}}var y_=b_;function D_(e){kt.updateMessenger(e)}function w_(e){e=e||[];var t=e.length?x._audit.rules.filter(function(a){return!!e.filter(function(n){return a.tags.indexOf(n)!==-1}).length}):x._audit.rules,r=x._audit.data.rules||{};return t.map(function(a){var n=r[a.id]||{};return{ruleId:a.id,description:n.description,help:n.help,helpUrl:n.helpUrl,tags:a.tags,actIds:a.actIds}})}var __=w_;function x_(e,t,r){var a=["SCRIPT","HEAD","TITLE","NOSCRIPT","STYLE","TEMPLATE"];if(!a.includes(e.nodeName.toUpperCase())&&Sa(r)){var n=E.getComputedStyle(e);if(n.getPropertyValue("display")==="none")return;if(n.getPropertyValue("visibility")==="hidden"){var i=Ge(e),o=i&&E.getComputedStyle(i);if(!o||o.getPropertyValue("visibility")!=="hidden")return}}return!0}var E_=x_,mf={};Et(mf,{getAllCells:function(){return qu},getCellPosition:function(){return $n},getHeaders:function(){return vi},getScope:function(){return Bo},isColumnHeader:function(){return Lr},isDataCell:function(){return vf},isDataTable:function(){return gi},isHeader:function(){return S_},isRowHeader:function(){return qr},toArray:function(){return Ut},toGrid:function(){return Ut},traverse:function(){return ju}});function A_(e){var t,r,a,n,i=[];for(t=0,a=e.rows.length;t<a;t++)for(r=0,n=e.rows[t].cells.length;r<n;r++)i.push(e.rows[t].cells[r]);return i}var qu=A_;function hf(e,t,r){for(var a=e==="row"?"_rowHeaders":"_colHeaders",n=e==="row"?qr:Lr,i=r[t.y][t.x],o=i.colSpan-1,u=i.getAttribute("rowspan"),s=parseInt(u)===0||i.rowspan===0?r.length:i.rowSpan,l=s-1,c=t.y+l,d=t.x+o,f=e==="row"?t.y:0,p=e==="row"?0:t.x,m,h=[],v=c;v>=f&&!m;v--)for(var g=d;g>=p;g--){var b=r[v]?r[v][g]:void 0;if(b){var w=x.utils.getNodeFromTree(b);if(w[a]){m=w[a];break}h.push(b)}}return m=(m||[]).concat(h.filter(n)),h.forEach(function(D){var _=x.utils.getNodeFromTree(D);_[a]=m}),m}function F_(e,t){if(e.getAttribute("headers")){var r=Pt(e,"headers");if(r.filter(function(o){return o}).length)return r}t||(t=Ut(Nr(e,"table")));var a=$n(e,t),n=hf("row",a,t),i=hf("col",a,t);return[].concat(n,i).reverse()}var vi=F_;function C_(e){if(!e.children.length&&!e.textContent.trim())return!1;var t=pe(e);return t?["cell","gridcell"].includes(t):e.nodeName.toUpperCase()==="TD"}var vf=C_;function R_(e){var t=pe(e);if((t==="presentation"||t==="none")&&!Be(e))return!1;if(e.getAttribute("contenteditable")==="true"||Nr(e,'[contenteditable="true"]')||t==="grid"||t==="treegrid"||t==="table"||St(t)==="landmark")return!0;if(e.getAttribute("datatable")==="0")return!1;if(e.getAttribute("summary")||e.tHead||e.tFoot||e.caption)return!0;for(var r=0,a=e.children.length;r<a;r++)if(e.children[r].nodeName.toUpperCase()==="COLGROUP")return!0;for(var n=0,i=e.rows.length,o,u,s=!1,l=0;l<i;l++){o=e.rows[l];for(var c=0,d=o.cells.length;c<d;c++){if(u=o.cells[c],u.nodeName.toUpperCase()==="TH"||(!s&&(u.offsetWidth!==u.clientWidth||u.offsetHeight!==u.clientHeight)&&(s=!0),u.getAttribute("scope")||u.getAttribute("headers")||u.getAttribute("abbr"))||["columnheader","rowheader"].includes(pe(u))||u.children.length===1&&u.children[0].nodeName.toUpperCase()==="ABBR")return!0;n++}}if(e.getElementsByTagName("table").length||i<2)return!1;var f=e.rows[Math.ceil(i/2)];if(f.cells.length===1&&f.cells[0].colSpan===1)return!1;if(f.cells.length>=5||s)return!0;for(var p,m,h=0;h<i;h++){if(o=e.rows[h],p&&p!==E.getComputedStyle(o).getPropertyValue("background-color")||(p=E.getComputedStyle(o).getPropertyValue("background-color"),m&&m!==E.getComputedStyle(o).getPropertyValue("background-image")))return!0;m=E.getComputedStyle(o).getPropertyValue("background-image")}return i>=20?!0:!(_o(e).width>kn(E).width*.95||n<10||e.querySelector("object, embed, iframe, applet"))}var gi=R_;function T_(e){if(Lr(e)||qr(e))return!0;if(e.getAttribute("id")){var t=Oe(e.getAttribute("id"));return!!M.querySelector('[headers~="'.concat(t,'"]'))}return!1}var S_=T_;function gf(e,t,r,a){var n,i=r[t.y]?r[t.y][t.x]:void 0;return i?typeof a=="function"&&(n=a(i,t,r),n===!0)?[i]:(n=gf(e,{x:t.x+e.x,y:t.y+e.y},r,a),n.unshift(i),n):[]}function k_(e,t,r,a){if(Array.isArray(t)&&(a=r,r=t,t={x:0,y:0}),typeof e=="string")switch(e){case"left":e={x:-1,y:0};break;case"up":e={x:0,y:-1};break;case"right":e={x:1,y:0};break;case"down":e={x:0,y:1};break}return gf(e,{x:t.x+e.x,y:t.y+e.y},r,a)}var ju=k_,bf={};Et(bf,{allowedAttr:function(){return yf},arialabelText:function(){return Aa},arialabelledbyText:function(){return Ea},getAccessibleRefs:function(){return $u},getElementUnallowedRoles:function(){return _f},getExplicitRole:function(){return pe},getImplicitRole:function(){return It},getOwnedVirtual:function(){return Ra},getRole:function(){return le},getRoleType:function(){return St},getRolesByType:function(){return V_},getRolesWithNameFromContents:function(){return U_},implicitNodes:function(){return Y_},implicitRole:function(){return It},isAccessibleRef:function(){return bi},isAriaRoleAllowedOnElement:function(){return wf},isComboboxPopup:function(){return Vu},isUnsupportedRole:function(){return Io},isValidRole:function(){return Fa},label:function(){return Ff},labelVirtual:function(){return Hn},lookupTable:function(){return Ef},namedFromContents:function(){return wd},requiredAttr:function(){return Cf},requiredContext:function(){return Hu},requiredOwned:function(){return Gu},validateAttr:function(){return yi},validateAttrValue:function(){return Rf}});function O_(e){var t=ve.ariaRoles[e],r=re(Dr());return t&&(t.allowedAttrs&&r.push.apply(r,re(t.allowedAttrs)),t.requiredAttrs&&r.push.apply(r,re(t.requiredAttrs))),r}var yf=O_,M_=/^idrefs?$/;function Df(e,t,r){if(e.hasAttribute){if(e.nodeName.toUpperCase()==="LABEL"&&e.hasAttribute("for")){var a=e.getAttribute("for");t.has(a)?t.get(a).push(e):t.set(a,[e])}for(var n=0;n<r.length;++n){var i=r[n],o=ae(e.getAttribute(i)||"");if(o){var u=xe(Ze(o)),s;try{for(u.s();!(s=u.n()).done;){var l=s.value;t.has(l)?t.get(l).push(e):t.set(l,[e])}}catch(d){u.e(d)}finally{u.f()}}}}for(var c=0;c<e.childNodes.length;c++)e.childNodes[c].nodeType===1&&Df(e.childNodes[c],t,r)}function P_(e){var t;e=e.actualNode||e;var r=Xe(e);r=r.documentElement||r;var a=ue.get("idRefsByRoot",function(){return new Map}),n=a.get(r);if(!n){n=new Map,a.set(r,n);var i=Object.keys(ve.ariaAttrs).filter(function(o){var u=ve.ariaAttrs[o].type;return M_.test(u)});Df(r,n,i)}return(t=n.get(e.id))!==null&&t!==void 0?t:[]}var $u=P_;function I_(e,t){var r=e instanceof He?e:ce(e),a=It(r),n=_r(r);return Array.isArray(n.allowedRoles)?n.allowedRoles.includes(t):t===a?!1:!!n.allowedRoles}var wf=I_,N_=["doc-backlink","doc-biblioentry","doc-biblioref","doc-cover","doc-endnote","doc-glossref","doc-noteref"],B_={header:"banner",footer:"contentinfo"};function L_(e){var t=[];if(!e)return t;if(e.hasAttr("role")){var r=Ze(e.attr("role").toLowerCase());t=t.concat(r)}return t.filter(function(a){return Fa(a)})}function q_(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,r=ye(e),a=r.vNode;if(!Tu(a))return[];var n=a.props.nodeName,i=It(a)||B_[n],o=L_(a);return o.filter(function(u){return!j_(u,a,t,i)})}function j_(e,t,r,a){return r&&e===a?!0:N_.includes(e)&&St(e)!==a?!1:wf(t,e)}var _f=q_;function $_(e){return Object.keys(ve.ariaRoles).filter(function(t){return ve.ariaRoles[t].type===e})}var Gr=$_;function z_(e){return Gr(e)}var V_=z_;function H_(){return ue.get("ariaRolesNameFromContent",function(){return Object.keys(ve.ariaRoles).filter(function(e){return ve.ariaRoles[e].nameFromContent})})}var zu=H_;function G_(){return zu()}var U_=G_,xf=function(t){return t===null},Je=function(t){return t!==null},Xt={};Xt.attributes={"aria-activedescendant":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-atomic":{type:"boolean",values:["true","false"],unsupported:!1},"aria-autocomplete":{type:"nmtoken",values:["inline","list","both","none"],unsupported:!1},"aria-busy":{type:"boolean",values:["true","false"],unsupported:!1},"aria-checked":{type:"nmtoken",values:["true","false","mixed","undefined"],unsupported:!1},"aria-colcount":{type:"int",unsupported:!1},"aria-colindex":{type:"int",unsupported:!1},"aria-colspan":{type:"int",unsupported:!1},"aria-controls":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-current":{type:"nmtoken",allowEmpty:!0,values:["page","step","location","date","time","true","false"],unsupported:!1},"aria-describedby":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-describedat":{unsupported:!0,unstandardized:!0},"aria-details":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-disabled":{type:"boolean",values:["true","false"],unsupported:!1},"aria-dropeffect":{type:"nmtokens",values:["copy","move","reference","execute","popup","none"],unsupported:!1},"aria-errormessage":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-expanded":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-flowto":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-grabbed":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-haspopup":{type:"nmtoken",allowEmpty:!0,values:["true","false","menu","listbox","tree","grid","dialog"],unsupported:!1},"aria-hidden":{type:"boolean",values:["true","false"],unsupported:!1},"aria-invalid":{type:"nmtoken",allowEmpty:!0,values:["true","false","spelling","grammar"],unsupported:!1},"aria-keyshortcuts":{type:"string",allowEmpty:!0,unsupported:!1},"aria-label":{type:"string",allowEmpty:!0,unsupported:!1},"aria-labelledby":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-level":{type:"int",unsupported:!1},"aria-live":{type:"nmtoken",values:["off","polite","assertive"],unsupported:!1},"aria-modal":{type:"boolean",values:["true","false"],unsupported:!1},"aria-multiline":{type:"boolean",values:["true","false"],unsupported:!1},"aria-multiselectable":{type:"boolean",values:["true","false"],unsupported:!1},"aria-orientation":{type:"nmtoken",values:["horizontal","vertical"],unsupported:!1},"aria-owns":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-placeholder":{type:"string",allowEmpty:!0,unsupported:!1},"aria-posinset":{type:"int",unsupported:!1},"aria-pressed":{type:"nmtoken",values:["true","false","mixed","undefined"],unsupported:!1},"aria-readonly":{type:"boolean",values:["true","false"],unsupported:!1},"aria-relevant":{type:"nmtokens",values:["additions","removals","text","all"],unsupported:!1},"aria-required":{type:"boolean",values:["true","false"],unsupported:!1},"aria-roledescription":{type:"string",allowEmpty:!0,unsupported:!1},"aria-rowcount":{type:"int",unsupported:!1},"aria-rowindex":{type:"int",unsupported:!1},"aria-rowspan":{type:"int",unsupported:!1},"aria-selected":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-setsize":{type:"int",unsupported:!1},"aria-sort":{type:"nmtoken",values:["ascending","descending","other","none"],unsupported:!1},"aria-valuemax":{type:"decimal",unsupported:!1},"aria-valuemin":{type:"decimal",unsupported:!1},"aria-valuenow":{type:"decimal",unsupported:!1},"aria-valuetext":{type:"string",unsupported:!1}},Xt.globalAttributes=["aria-atomic","aria-busy","aria-controls","aria-current","aria-describedby","aria-details","aria-disabled","aria-dropeffect","aria-flowto","aria-grabbed","aria-haspopup","aria-hidden","aria-invalid","aria-keyshortcuts","aria-label","aria-labelledby","aria-live","aria-owns","aria-relevant","aria-roledescription"],Xt.role={alert:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},alertdialog:{type:"widget",attributes:{allowed:["aria-expanded","aria-modal","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["dialog","section"]},application:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage","aria-activedescendant"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["article","audio","embed","iframe","object","section","svg","video"]},article:{type:"structure",attributes:{allowed:["aria-expanded","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["article"],unsupported:!1},banner:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["header"],unsupported:!1,allowedElements:["section"]},button:{type:"widget",attributes:{allowed:["aria-expanded","aria-pressed","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["button",'input[type="button"]','input[type="image"]','input[type="reset"]','input[type="submit"]',"summary"],unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Je}}]},cell:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-rowindex","aria-rowspan","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["td","th"],unsupported:!1},checkbox:{type:"widget",attributes:{allowed:["aria-checked","aria-required","aria-readonly","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:['input[type="checkbox"]'],unsupported:!1,allowedElements:["button"]},columnheader:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-required","aria-readonly","aria-selected","aria-sort","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["th"],unsupported:!1},combobox:{type:"composite",attributes:{allowed:["aria-autocomplete","aria-required","aria-activedescendant","aria-orientation","aria-errormessage"],required:["aria-expanded"]},owned:{all:["listbox","tree","grid","dialog","textbox"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:"input",properties:{type:["text","search","tel","url","email"]}}]},command:{nameFrom:["author"],type:"abstract",unsupported:!1},complementary:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["aside"],unsupported:!1,allowedElements:["section"]},composite:{nameFrom:["author"],type:"abstract",unsupported:!1},contentinfo:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["footer"],unsupported:!1,allowedElements:["section"]},definition:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["dd","dfn"],unsupported:!1},dialog:{type:"widget",attributes:{allowed:["aria-expanded","aria-modal","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["dialog"],unsupported:!1,allowedElements:["section"]},directory:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:["ol","ul"]},document:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["body"],unsupported:!1,allowedElements:["article","embed","iframe","object","section","svg"]},"doc-abstract":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-acknowledgments":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-afterword":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-appendix":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-backlink":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Je}}]},"doc-biblioentry":{type:"listitem",attributes:{allowed:["aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author"],context:["doc-bibliography"],unsupported:!1,allowedElements:["li"]},"doc-bibliography":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["doc-biblioentry"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-biblioref":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Je}}]},"doc-chapter":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-colophon":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-conclusion":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-cover":{type:"img",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1},"doc-credit":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-credits":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-dedication":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-endnote":{type:"listitem",attributes:{allowed:["aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,namefrom:["author"],context:["doc-endnotes"],unsupported:!1,allowedElements:["li"]},"doc-endnotes":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["doc-endnote"]},namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-epigraph":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1},"doc-epilogue":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-errata":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-example":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","section"]},"doc-footnote":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","footer","header"]},"doc-foreword":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-glossary":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:["term","definition"],namefrom:["author"],context:null,unsupported:!1,allowedElements:["dl"]},"doc-glossref":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Je}}]},"doc-index":{type:"navigation",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},"doc-introduction":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-noteref":{type:"link",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Je}}]},"doc-notice":{type:"note",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-pagebreak":{type:"separator",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["hr"]},"doc-pagelist":{type:"navigation",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},"doc-part":{type:"landmark",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-preface":{type:"landmark",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-prologue":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-pullquote":{type:"none",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","section"]},"doc-qna":{type:"section",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-subtitle":{type:"sectionhead",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["h1","h2","h3","h4","h5","h6"]}},"doc-tip":{type:"note",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside"]},"doc-toc":{type:"navigation",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},feed:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["article"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["article","aside","section"]},figure:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["figure"],unsupported:!1},form:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["form"],unsupported:!1},grid:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-colcount","aria-level","aria-multiselectable","aria-readonly","aria-rowcount","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author"],context:null,implicit:["table"],unsupported:!1},gridcell:{type:"widget",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-selected","aria-readonly","aria-required","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["td","th"],unsupported:!1},group:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["details","optgroup"],unsupported:!1,allowedElements:["dl","figcaption","fieldset","figure","footer","header","ol","ul"]},heading:{type:"structure",attributes:{required:["aria-level"],allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["h1","h2","h3","h4","h5","h6"],unsupported:!1},img:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["img"],unsupported:!1,allowedElements:["embed","iframe","object","svg"]},input:{nameFrom:["author"],type:"abstract",unsupported:!1},landmark:{nameFrom:["author"],type:"abstract",unsupported:!1},link:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["a[href]","area[href]"],unsupported:!1,allowedElements:["button",{nodeName:"input",properties:{type:["image","button"]}}]},list:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{all:["listitem"]},nameFrom:["author"],context:null,implicit:["ol","ul","dl"],unsupported:!1},listbox:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-multiselectable","aria-readonly","aria-required","aria-expanded","aria-orientation","aria-errormessage"]},owned:{all:["option"]},nameFrom:["author"],context:null,implicit:["select"],unsupported:!1,allowedElements:["ol","ul"]},listitem:{type:"structure",attributes:{allowed:["aria-level","aria-posinset","aria-setsize","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["list"],implicit:["li","dt"],unsupported:!1},log:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},main:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["main"],unsupported:!1,allowedElements:["article","section"]},marquee:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},math:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["math"],unsupported:!1},menu:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:{one:["menuitem","menuitemradio","menuitemcheckbox"]},nameFrom:["author"],context:null,implicit:['menu[type="context"]'],unsupported:!1,allowedElements:["ol","ul"]},menubar:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:{one:["menuitem","menuitemradio","menuitemcheckbox"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},menuitem:{type:"widget",attributes:{allowed:["aria-posinset","aria-setsize","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="command"]'],unsupported:!1,allowedElements:["button","li",{nodeName:"iput",properties:{type:["image","button"]}},{nodeName:"a",attributes:{href:Je}}]},menuitemcheckbox:{type:"widget",attributes:{allowed:["aria-checked","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="checkbox"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["checkbox","image","button"]}},{nodeName:"a",attributes:{href:Je}}]},menuitemradio:{type:"widget",attributes:{allowed:["aria-checked","aria-selected","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="radio"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["image","button","radio"]}},{nodeName:"a",attributes:{href:Je}}]},navigation:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["nav"],unsupported:!1,allowedElements:["section"]},none:{type:"structure",attributes:null,owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:["article","aside","dl","embed","figcaption","fieldset","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hr","iframe","li","ol","section","ul"]},{nodeName:"img",attributes:{alt:Je}}]},note:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["aside"]},option:{type:"widget",attributes:{allowed:["aria-selected","aria-posinset","aria-setsize","aria-checked","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["listbox"],implicit:["option"],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["checkbox","button"]}},{nodeName:"a",attributes:{href:Je}}]},presentation:{type:"structure",attributes:null,owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:["article","aside","dl","embed","figcaption","fieldset","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hr","iframe","li","ol","section","ul"]},{nodeName:"img",attributes:{alt:Je}}]},progressbar:{type:"widget",attributes:{allowed:["aria-valuetext","aria-valuenow","aria-valuemax","aria-valuemin","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["progress"],unsupported:!1},radio:{type:"widget",attributes:{allowed:["aria-selected","aria-posinset","aria-setsize","aria-required","aria-errormessage","aria-checked"]},owned:null,nameFrom:["author","contents"],context:null,implicit:['input[type="radio"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["image","button"]}}]},radiogroup:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-required","aria-expanded","aria-readonly","aria-errormessage","aria-orientation"]},owned:{all:["radio"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["ol","ul","fieldset"]}},range:{nameFrom:["author"],type:"abstract",unsupported:!1},region:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["section[aria-label]","section[aria-labelledby]","section[title]"],unsupported:!1,allowedElements:{nodeName:["article","aside"]}},roletype:{type:"abstract",unsupported:!1},row:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-colindex","aria-expanded","aria-level","aria-selected","aria-rowindex","aria-errormessage"]},owned:{one:["cell","columnheader","rowheader","gridcell"]},nameFrom:["author","contents"],context:["rowgroup","grid","treegrid","table"],implicit:["tr"],unsupported:!1},rowgroup:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-errormessage"]},owned:{all:["row"]},nameFrom:["author","contents"],context:["grid","table","treegrid"],implicit:["tbody","thead","tfoot"],unsupported:!1},rowheader:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-required","aria-readonly","aria-selected","aria-sort","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["th"],unsupported:!1},scrollbar:{type:"widget",attributes:{required:["aria-controls","aria-valuenow"],allowed:["aria-valuetext","aria-orientation","aria-errormessage","aria-valuemax","aria-valuemin"]},owned:null,nameFrom:["author"],context:null,unsupported:!1},search:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["aside","form","section"]}},searchbox:{type:"widget",attributes:{allowed:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-readonly","aria-required","aria-placeholder","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="search"]'],unsupported:!1,allowedElements:{nodeName:"input",properties:{type:"text"}}},section:{nameFrom:["author","contents"],type:"abstract",unsupported:!1},sectionhead:{nameFrom:["author","contents"],type:"abstract",unsupported:!1},select:{nameFrom:["author"],type:"abstract",unsupported:!1},separator:{type:"structure",attributes:{allowed:["aria-expanded","aria-orientation","aria-valuenow","aria-valuemax","aria-valuemin","aria-valuetext","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["hr"],unsupported:!1,allowedElements:["li"]},slider:{type:"widget",attributes:{allowed:["aria-valuetext","aria-orientation","aria-readonly","aria-errormessage","aria-valuemax","aria-valuemin"],required:["aria-valuenow"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="range"]'],unsupported:!1},spinbutton:{type:"widget",attributes:{allowed:["aria-valuetext","aria-required","aria-readonly","aria-errormessage","aria-valuemax","aria-valuemin"],required:["aria-valuenow"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="number"]'],unsupported:!1,allowedElements:{nodeName:"input",properties:{type:["text","tel"]}}},status:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["output"],unsupported:!1,allowedElements:["section"]},structure:{type:"abstract",unsupported:!1},switch:{type:"widget",attributes:{allowed:["aria-errormessage"],required:["aria-checked"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:["button",{nodeName:"input",properties:{type:["checkbox","image","button"]}},{nodeName:"a",attributes:{href:Je}}]},tab:{type:"widget",attributes:{allowed:["aria-selected","aria-expanded","aria-setsize","aria-posinset","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["tablist"],unsupported:!1,allowedElements:[{nodeName:["button","h1","h2","h3","h4","h5","h6","li"]},{nodeName:"input",properties:{type:"button"}},{nodeName:"a",attributes:{href:Je}}]},table:{type:"structure",attributes:{allowed:["aria-colcount","aria-rowcount","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author","contents"],context:null,implicit:["table"],unsupported:!1},tablist:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-level","aria-multiselectable","aria-orientation","aria-errormessage"]},owned:{all:["tab"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},tabpanel:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},term:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["dt"],unsupported:!1},textbox:{type:"widget",attributes:{allowed:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-readonly","aria-required","aria-placeholder","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="text"]','input[type="email"]','input[type="password"]','input[type="tel"]','input[type="url"]',"input:not([type])","textarea"],unsupported:!1},timer:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1},toolbar:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['menu[type="toolbar"]'],unsupported:!1,allowedElements:["ol","ul"]},tooltip:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1},tree:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-multiselectable","aria-required","aria-expanded","aria-orientation","aria-errormessage"]},owned:{all:["treeitem"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},treegrid:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-colcount","aria-expanded","aria-level","aria-multiselectable","aria-readonly","aria-required","aria-rowcount","aria-orientation","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author"],context:null,unsupported:!1},treeitem:{type:"widget",attributes:{allowed:["aria-checked","aria-selected","aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["group","tree"],unsupported:!1,allowedElements:["li",{nodeName:"a",attributes:{href:Je}}]},widget:{type:"abstract",unsupported:!1},window:{nameFrom:["author"],type:"abstract",unsupported:!1}},Xt.implicitHtmlRole=qo,Xt.elementsAllowedNoRole=[{nodeName:["base","body","caption","col","colgroup","datalist","dd","details","dt","head","html","keygen","label","legend","main","map","math","meta","meter","noscript","optgroup","param","picture","progress","script","source","style","template","textarea","title","track"]},{nodeName:"area",attributes:{href:Je}},{nodeName:"input",properties:{type:["color","data","datatime","file","hidden","month","number","password","range","reset","submit","time","week"]}},{nodeName:"link",attributes:{href:Je}},{nodeName:"menu",attributes:{type:"context"}},{nodeName:"menuitem",attributes:{type:["command","checkbox","radio"]}},{nodeName:"select",condition:function(t){return t instanceof x.AbstractVirtualNode||(t=x.utils.getNodeFromTree(t)),Number(t.attr("size"))>1},properties:{multiple:!0}},{nodeName:["clippath","cursor","defs","desc","feblend","fecolormatrix","fecomponenttransfer","fecomposite","feconvolvematrix","fediffuselighting","fedisplacementmap","fedistantlight","fedropshadow","feflood","fefunca","fefuncb","fefuncg","fefuncr","fegaussianblur","feimage","femerge","femergenode","femorphology","feoffset","fepointlight","fespecularlighting","fespotlight","fetile","feturbulence","filter","hatch","hatchpath","lineargradient","marker","mask","meshgradient","meshpatch","meshrow","metadata","mpath","pattern","radialgradient","solidcolor","stop","switch","view"]}],Xt.elementsAllowedAnyRole=[{nodeName:"a",attributes:{href:xf}},{nodeName:"img",attributes:{alt:xf}},{nodeName:["abbr","address","canvas","div","p","pre","blockquote","ins","del","output","span","table","tbody","thead","tfoot","td","em","strong","small","s","cite","q","dfn","abbr","time","code","var","samp","kbd","sub","sup","i","b","u","mark","ruby","rt","rp","bdi","bdo","br","wbr","th","tr"]}],Xt.evaluateRoleForElement={A:function(t){var r=t.node,a=t.out;return r.namespaceURI==="http://www.w3.org/2000/svg"?!0:r.href.length?a:!0},AREA:function(t){var r=t.node;return!r.href},BUTTON:function(t){var r=t.node,a=t.role,n=t.out;return r.getAttribute("type")==="menu"?a==="menuitem":n},IMG:function(t){var r=t.node,a=t.role,n=t.out;switch(r.alt){case null:return n;case"":return a==="presentation"||a==="none";default:return a!=="presentation"&&a!=="none"}},INPUT:function(t){var r=t.node,a=t.role,n=t.out;switch(r.type){case"button":case"image":return n;case"checkbox":return a==="button"&&r.hasAttribute("aria-pressed")?!0:n;case"radio":return a==="menuitemradio";case"text":return a==="combobox"||a==="searchbox"||a==="spinbutton";case"tel":return a==="combobox"||a==="spinbutton";case"url":case"search":case"email":return a==="combobox";default:return!1}},LI:function(t){var r=t.node,a=t.out,n=x.utils.matchesSelector(r,"ol li, ul li");return n?a:!0},MENU:function(t){var r=t.node;return r.getAttribute("type")!=="context"},OPTION:function(t){var r=t.node,a=x.utils.matchesSelector(r,"select > option, datalist > option, optgroup > option");return!a},SELECT:function(t){var r=t.node,a=t.role;return!r.multiple&&r.size<=1&&a==="menu"},SVG:function(t){var r=t.node,a=t.out;return r.parentNode&&r.parentNode.namespaceURI==="http://www.w3.org/2000/svg"?!0:a}},Xt.rolesOfType={widget:["button","checkbox","dialog","gridcell","link","log","marquee","menuitem","menuitemcheckbox","menuitemradio","option","progressbar","radio","scrollbar","searchbox","slider","spinbutton","status","switch","tab","tabpanel","textbox","timer","tooltip","tree","treeitem"]};var Ef=Xt;function W_(e){var t=null,r=Ef.role[e];return r&&r.implicit&&(t=Wt(r.implicit)),t}var Y_=W_;function K_(e){return!!$u(e).length}var bi=K_;function Vu(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.popupRoles,a=le(e);if(r??(r=rd["aria-haspopup"].values),!r.includes(a))return!1;var n=X_(e);if(Af(n))return!0;var i=e.props.id;if(!i)return!1;if(!e.actualNode)throw new Error("Unable to determine combobox popup without an actualNode");var o=ya(e.actualNode),u=o.querySelectorAll('[aria-owns~="'.concat(i,`"][role~="combobox"]:not(select),
14
+ [aria-controls~="`).concat(i,'"][role~="combobox"]:not(select)'));return Array.from(u).some(Af)}var Af=function(t){return t&&le(t)==="combobox"};function X_(e){for(;e=e.parent;)if(le(e,{noPresentational:!0})!==null)return e;return null}function Z_(e){return e=ce(e),Hn(e)}var Ff=Z_;function J_(e){var t=ve.ariaRoles[e];return!t||!Array.isArray(t.requiredAttrs)?[]:re(t.requiredAttrs)}var Cf=J_;function Q_(e){var t=ve.ariaRoles[e];return!t||!Array.isArray(t.requiredContext)?null:re(t.requiredContext)}var Hu=Q_;function ex(e){var t=ve.ariaRoles[e];return!t||!Array.isArray(t.requiredOwned)?null:re(t.requiredOwned)}var Gu=ex;function tx(e,t){e=e instanceof He?e:ce(e);var r,a,n=e.attr(t),i=ve.ariaAttrs[t];if(!i||i.allowEmpty&&(!n||n.trim()===""))return!0;switch(i.type){case"boolean":return["true","false"].includes(n.toLowerCase());case"nmtoken":return typeof n=="string"&&i.values.includes(n.toLowerCase());case"nmtokens":return a=Ze(n),a.reduce(function(s,l){return s&&i.values.includes(l)},a.length!==0);case"idref":try{var o=Xe(e.actualNode);return!!(n&&o.getElementById(n))}catch{throw new TypeError("Cannot resolve id references for partial DOM")}case"idrefs":return Pt(e,t).some(function(s){return!!s});case"string":return n.trim()!=="";case"decimal":return r=n.match(/^[-+]?([0-9]*)\.?([0-9]*)$/),!!(r&&(r[1]||r[2]));case"int":var u=typeof i.minValue<"u"?i.minValue:-1/0;return/^[-+]?[0-9]+$/.test(n)&&parseInt(n)>=u}}var Rf=tx;function rx(e){var t=ve.ariaAttrs[e];return!!t}var yi=rx;function ax(e){var t=qu(e),r=this,a=[];t.forEach(function(u){var s=u.getAttribute("headers");s&&(a=a.concat(s.split(/\s+/)));var l=u.getAttribute("aria-labelledby");l&&(a=a.concat(l.split(/\s+/)))});var n=t.filter(function(u){return ae(u.textContent)===""?!1:u.nodeName.toUpperCase()==="TH"||["rowheader","columnheader"].indexOf(pe(u))!==-1}),i=Ut(e),o=!0;return n.forEach(function(u){if(!(u.getAttribute("id")&&a.includes(u.getAttribute("id")))){var s=$n(u,i),l=!1;Lr(u)&&(l=ju("down",s,i).find(function(c){return!Lr(c)&&vi(c,i).includes(u)})),!l&&qr(u)&&(l=ju("right",s,i).find(function(c){return!qr(c)&&vi(c,i).includes(u)})),l||r.relatedNodes(u),o=o&&l}}),o?!0:void 0}var nx=ax,$a=["cell-header-not-in-table","cell-header-not-th","header-refs-self","empty-hdrs"],Tf=$a[0],Sf=$a[1],kf=$a[2],Uu=$a[3];function ix(e){for(var t=[],r={},a=0;a<e.rows.length;a++)for(var n=e.rows[a],i=0;i<n.cells.length;i++){var o=n.cells[i];t.push(o);var u=o.getAttribute("id");u&&(r[u]=le(o))}var s=Jr(Jr(Jr(Jr({},kf,new Set),Tf,new Set),Sf,new Set),Uu,new Set);t.forEach(function(f){if(!(!f.hasAttribute("headers")||!Te(f))){var p=f.getAttribute("headers").trim();if(!p){s[Uu].add(f);return}var m=f.getAttribute("id"),h=Ze(p);h.forEach(function(v){m&&v===m?s[kf].add(f):r[v]?["columnheader","rowheader"].includes(r[v])||s[Sf].add(f):s[Tf].add(f)})}});var l=xe($a),c;try{for(l.s();!(c=l.n()).done;){var d=c.value;if(s[d].size>0)return this.relatedNodes(re(s[d])),d===Uu?void 0:(this.data({messageKey:d}),!1)}}catch(f){l.e(f)}finally{l.f()}return!0}function ox(e){var t=[],r=qu(e),a=Ut(e);return r.forEach(function(n){if(Un(n)&&vf(n)&&!Ff(n)){var i=vi(n,a).some(function(o){return o!==null&&!!Un(o)});i||t.push(n)}}),t.length?(this.relatedNodes(t),!1):!0}var ux=ox;function sx(e,t){var r=e.getAttribute("scope").toLowerCase();return t.values.indexOf(r)!==-1}var lx=sx,cx=dx;function dx(e,t,r){if(r.children!==void 0){var a=r.attr("summary"),n=r.children.find(fx),i=n?ae(ur(n)):!1;return!i||!a?!1:ae(a).toLowerCase()===ae(i).toLowerCase()}}function fx(e){return e.props.nodeName==="caption"}function px(e){return Wd(M)?e.nodeName.toUpperCase()==="TH":!0}var mx=px;function hx(e){var t=Ut(e),r=t[0];return t.length<=1||r.length<=1||e.rows.length<=1?!0:r.reduce(function(a,n,i){return a||n!==r[i+1]&&r[i+1]!==void 0},!1)}var vx=hx;function gx(e,t,r){if(r.children){var a=r.children.find(function(i){var o=i.props;return o.nodeName==="title"});if(!a)return this.data({messageKey:"noTitle"}),!1;try{var n=ur(a,{includeHidden:!0}).trim();if(n==="")return this.data({messageKey:"emptyTitle"}),!1}catch{return}return!0}}var bx=gx,Of={};Et(Of,{getAriaRolesByType:function(){return Gr},getAriaRolesSupportingNameFromContent:function(){return zu},getElementSpec:function(){return _r},getElementsByContentType:function(){return No},getGlobalAriaAttrs:function(){return Dr},implicitHtmlRoles:function(){return qo}});function yx(e,t,r){var a=pe(r);if(["presentation","none"].includes(a)&&["iframe","frame"].includes(r.props.nodeName)&&r.hasAttr("title"))return this.data({messageKey:"iframe",nodeName:r.props.nodeName}),!1;var n=le(r);if(["presentation","none"].includes(n))return this.data({role:n}),!0;if(!["presentation","none"].includes(a))return!1;var i=Dr().some(function(s){return r.hasAttr(s)}),o=Be(r),u;return i&&!o?u="globalAria":!i&&o?u="focusable":u="both",this.data({messageKey:u,role:n}),!1}function Dx(e,t,r){var a=r.props.nodeName,n=(r.attr("type")||"").toLowerCase(),i=r.attr("value");return i&&this.data({messageKey:"has-label"}),a==="input"&&["submit","reset"].includes(n)?i===null:!1}var wx=Dx;function _x(e){return st(e)}var xx=_x;function Ex(e,t){var r=t.cssProperty,a=t.absoluteValues,n=t.minValue,i=t.maxValue,o=t.normalValue,u=o===void 0?0:o,s=t.noImportant,l=t.multiLineOnly;if(!s&&e.style.getPropertyPriority(r)!=="important"||l&&!Xd(e))return!0;var c={};typeof n=="number"&&(c.minValue=n),typeof i=="number"&&(c.maxValue=i);var d=e.style.getPropertyValue(r);if(["inherit","unset","revert","revert-layer"].includes(d))return this.data(de({value:d},c)),!0;var f=Ax(e,{absoluteValues:a,cssProperty:r,normalValue:u});if(this.data(de({value:f},c)),typeof f=="number")return(typeof n!="number"||f>=n)&&(typeof i!="number"||f<=i)}function Ax(e,t){var r=t.cssProperty,a=t.absoluteValues,n=t.normalValue,i=E.getComputedStyle(e),o=i.getPropertyValue(r);if(o==="normal")return n;var u=parseFloat(o);if(a)return u;var s=parseFloat(i.getPropertyValue("font-size")),l=Math.round(u/s*100)/100;return isNaN(l)?o:l}function Fx(e,t,r){var a=r.props.nodeName;return["img","input","area"].includes(a)?r.hasAttr("alt"):!1}var Cx=Fx;function Rx(){}var Tx=Rx;function Sx(){var e=M.title;return!!ae(e)}var kx=Sx;function Ox(e,t){var r=t.cssProperties.filter(function(a){if(e.style.getPropertyPriority(a)==="important")return a});return r.length>0?(this.data(r),!1):!0}var Mx=Ox;function Px(e,t,r){try{return!!ae(Ea(r))}catch{return}}var Ix=Px;function Nx(e,t,r){return!!ae(Aa(r))}var Bx=Nx;function Lx(e){var t=e.getAttribute("id").trim();if(!t)return!0;var r=Xe(e),a=Array.from(r.querySelectorAll('[id="'.concat(Oe(t),'"]'))).filter(function(n){return n!==e});return a.length&&this.relatedNodes(a),this.data(t),a.length===0}var qx=Lx;function jx(e){var t=[];return e.filter(function(r){return t.indexOf(r.data)===-1?(t.push(r.data),!0):!1})}var $x=jx;function zx(e,t,r){var a=ae(r.attr("title")).toLowerCase();return this.data(a),!0}var Vx=zx;function Hx(e){var t={};return e.forEach(function(r){t[r.data]=t[r.data]!==void 0?++t[r.data]:0}),e.forEach(function(r){r.result=!!t[r.data]}),e}var Gx=Hx;function Ux(e){var t=ko(e,"href");return t?Te(t)||void 0:!1}var Wx=Ux,Yx=["alert","log","status"];function Kx(e,t,r){this.data({isIframe:["iframe","frame"].includes(r.props.nodeName)});var a=ue.get("regionlessNodes",function(){return Xx(t)});return!a.includes(r)}function Xx(e){var t=Mf(x._tree[0],e).map(function(r){for(;r.parent&&!r.parent._hasRegionDescendant&&r.parent.actualNode!==M.body;)r=r.parent;return r}).filter(function(r,a,n){return n.indexOf(r)===a});return t}function Mf(e,t){var r=e.actualNode;if(le(e)==="button"||Jx(e,t)||["iframe","frame"].includes(e.props.nodeName)||tu(e.actualNode)&&ko(e.actualNode,"href")||!Te(r)){for(var a=e;a;)a._hasRegionDescendant=!0,a=a.parent;return["iframe","frame"].includes(e.props.nodeName)?[e]:[]}else return r!==M.body&&Un(r,!0)&&!Zx(e)?[e]:e.children.filter(function(n){var i=n.actualNode;return i.nodeType===1}).map(function(n){return Mf(n,t)}).reduce(function(n,i){return n.concat(i)},[])}function Zx(e){return["none","presentation"].includes(le(e))&&!Zo(e)}function Jx(e,t){var r=e.actualNode,a=le(e),n=(r.getAttribute("aria-live")||"").toLowerCase().trim(),i=Gr("landmark");return!!(["assertive","polite"].includes(n)||Yx.includes(a)||i.includes(a)||t.regionMatcher&&Ca(e,t.regionMatcher))}function Qx(e){var t=e.filter(function(r){return r.data.isIframe});return e.forEach(function(r){if(!(r.result||r.node.ancestry.length===1)){var a=r.node.ancestry.slice(0,-1),n=xe(t),i;try{for(n.s();!(i=n.n()).done;){var o=i.value;if(ku(a,o.node.ancestry)){r.result=o.result;break}}}catch(u){n.e(u)}finally{n.f()}}}),t.forEach(function(r){r.result||(r.result=!0)}),e}var eE=Qx;function tE(e){switch(e){case"lighter":return 100;case"normal":return 400;case"bold":return 700;case"bolder":return 900}return e=parseInt(e),isNaN(e)?400:e}function rE(e){for(var t=e,r=e.textContent.trim(),a=r;a===r&&t!==void 0;){var n=-1;if(e=t,e.children.length===0)return e;do n++,a=e.children[n].textContent.trim();while(a===""&&n+1<e.children.length);t=e.children[n]}return e}function Wu(e){var t=E.getComputedStyle(rE(e));return{fontWeight:tE(t.getPropertyValue("font-weight")),fontSize:parseInt(t.getPropertyValue("font-size")),isItalic:t.getPropertyValue("font-style")==="italic"}}function Pf(e,t,r){return r.reduce(function(a,n){return a||(!n.size||e.fontSize/n.size>t.fontSize)&&(!n.weight||e.fontWeight-n.weight>t.fontWeight)&&(!n.italic||e.isItalic&&!t.isItalic)},!1)}function aE(e,t,r){var a=Array.from(e.parentNode.children),n=a.indexOf(e);t=t||{};var i=t.margins||[],o=a.slice(n+1).find(function(v){return v.nodeName.toUpperCase()==="P"}),u=a.slice(0,n).reverse().find(function(v){return v.nodeName.toUpperCase()==="P"}),s=Wu(e),l=o?Wu(o):null,c=u?Wu(u):null,d=t.passLength,f=t.failLength,p=e.textContent.trim().length,m=o?.textContent.trim().length;if(p>m*d||!l||!Pf(s,l,i))return!0;var h=Ir(r,"blockquote");if(!(h&&h.nodeName.toUpperCase()==="BLOCKQUOTE")&&!(c&&!Pf(s,c,i))&&!(p>m*f))return!1}var nE=aE,iE=/[;,\s]/,oE=/^[0-9.]+$/;function uE(e,t,r){var a=t||{},n=a.minDelay,i=a.maxDelay,o=(r.attr("content")||"").trim(),u=o.split(iE),s=H(u,1),l=s[0];if(!l.match(oE))return!0;var c=parseFloat(l);return this.data({redirectDelay:c}),typeof n=="number"&&c<=t.minDelay||typeof i=="number"&&c>t.maxDelay}function sE(e,t,r){var a=ft(r,"a[href]");return a.some(function(n){return/^#[^/!]/.test(n.attr("href"))})}var lE=sE,If={};Et(If,{aria:function(){return bf},color:function(){return Nf},dom:function(){return yo},forms:function(){return Yf},matches:function(){return Ca},math:function(){return Nc},standards:function(){return Of},table:function(){return mf},text:function(){return xa},utils:function(){return Gi}});var Nf={};Et(Nf,{Color:function(){return Se},centerPointOfRect:function(){return dE},elementHasImage:function(){return Wn},elementIsDistinct:function(){return Lf},filteredRectStack:function(){return hE},flattenColors:function(){return $t},flattenShadowColors:function(){return Ku},getBackgroundColor:function(){return Va},getBackgroundStack:function(){return Xu},getContrast:function(){return Ur},getForegroundColor:function(){return _i},getOwnBackgroundColor:function(){return Er},getRectStack:function(){return qf},getStackingContext:function(){return Ju},getStrokeColorsFromShadows:function(){return Zu},getTextShadowColors:function(){return wi},hasValidContrastRatio:function(){return BE},incompleteData:function(){return We},parseTextShadows:function(){return zf},stackingContextToColor:function(){return za}});function cE(e){if(!(e.left>E.innerWidth)&&!(e.top>E.innerHeight)){var t=Math.min(Math.ceil(e.left+e.width/2),E.innerWidth-1),r=Math.min(Math.ceil(e.top+e.height/2),E.innerHeight-1);return{x:t,y:r}}}var dE=cE;function Bf(e){return e.getPropertyValue("font-family").split(/[,;]/g).map(function(t){return t.trim().toLowerCase()})}function fE(e,t){var r=E.getComputedStyle(e);if(r.getPropertyValue("background-image")!=="none")return!0;var a=["border-bottom","border-top","outline"].reduce(function(u,s){var l=new Se;return l.parseString(r.getPropertyValue(s+"-color")),u||r.getPropertyValue(s+"-style")!=="none"&&parseFloat(r.getPropertyValue(s+"-width"))>0&&l.alpha!==0},!1);if(a)return!0;var n=E.getComputedStyle(t);if(Bf(r)[0]!==Bf(n)[0])return!0;var i=["text-decoration-line","text-decoration-style","font-weight","font-style","font-size"].reduce(function(u,s){return u||r.getPropertyValue(s)!==n.getPropertyValue(s)},!1),o=r.getPropertyValue("text-decoration");return o.split(" ").length<3&&(i=i||o!==n.getPropertyValue("text-decoration")),i}var Lf=fE;function pE(e){var t=Qc(e),r=Ko(e);return!r||r.length<=1?[t]:r.some(function(a){return a===void 0})?null:(r.splice(0,0,t),r)}var qf=pE;function mE(e){var t=qf(e);if(t&&t.length===1)return t[0];if(t&&t.length>1){var r=t.shift(),a;return t.forEach(function(n,i){if(i!==0){var o=t[i-1],u=t[i];a=o.every(function(s,l){return s===u[l]})||r.includes(e)}}),a?t[0]:(We.set("bgColor","elmPartiallyObscuring"),null)}return We.set("bgColor","outsideViewport"),null}var hE=mE,vE=["hue","saturation","color","luminosity"],jf={normal:function(t,r){return r},multiply:function(t,r){return r*t},screen:function(t,r){return t+r-t*r},overlay:function(t,r){return this["hard-light"](r,t)},darken:function(t,r){return Math.min(t,r)},lighten:function(t,r){return Math.max(t,r)},"color-dodge":function(t,r){return t===0?0:r===1?1:Math.min(1,t/(1-r))},"color-burn":function(t,r){return t===1?1:r===0?0:1-Math.min(1,(1-t)/r)},"hard-light":function(t,r){return r<=.5?this.multiply(t,2*r):this.screen(t,2*r-1)},"soft-light":function(t,r){if(r<=.5)return t-(1-2*r)*t*(1-t);var a=t<=.25?((16*t-12)*t+4)*t:Math.sqrt(t);return t+(2*r-1)*(a-t)},difference:function(t,r){return Math.abs(t-r)},exclusion:function(t,r){return t+r-2*t*r},hue:function(t,r){return r.setSaturation(t.getSaturation()).setLuminosity(t.getLuminosity())},saturation:function(t,r){return t.setSaturation(r.getSaturation()).setLuminosity(t.getLuminosity())},color:function(t,r){return r.setLuminosity(t.getLuminosity())},luminosity:function(t,r){return t.setLuminosity(r.getLuminosity())}};function $t(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"normal",a=bE(t,e,r),n=Yu(e.red,e.alpha,t.red,t.alpha,a.r*255),i=Yu(e.green,e.alpha,t.green,t.alpha,a.g*255),o=Yu(e.blue,e.alpha,t.blue,t.alpha,a.b*255),u=gE(e.alpha+t.alpha*(1-e.alpha),0,1);if(u===0)return new Se(n,i,o,u);var s=Math.round(n/u),l=Math.round(i/u),c=Math.round(o/u);return new Se(s,l,c,u)}function Yu(e,t,r,a,n){return t*(1-a)*e+t*a*n+(1-t)*a*r}function gE(e,t,r){return Math.min(Math.max(t,e),r)}function bE(e,t,r){if(vE.includes(r))return jf[r](e,t);var a=new Se;return["r","g","b"].forEach(function(n){a[n]=jf[r](e[n],t[n])}),a}function Ku(e,t){var r=e.alpha,a=(1-r)*t.red+r*e.red,n=(1-r)*t.green+r*e.green,i=(1-r)*t.blue+r*e.blue,o=e.alpha+t.alpha*(1-e.alpha);return new Se(a,n,i,o)}function Xu(e){for(var t=Ko(e).map(function(n){return n=Zd(n,e),n=yE(n),n}),r=0;r<t.length;r++){var a=t[r];if(a[0]!==e)return We.set("bgColor","bgOverlap"),null;if(r!==0&&!DE(a,t[0]))return We.set("bgColor","elmPartiallyObscuring"),null}return t[0]||null}function yE(e){var t=e.indexOf(M.body),r=e,a=Er(E.getComputedStyle(M.documentElement));if(t>1&&a.alpha===0&&!Wn(M.documentElement)){t>1&&(r.splice(t,1),r.push(M.body));var n=r.indexOf(M.documentElement);n>0&&(r.splice(n,1),r.push(M.documentElement))}return r}function DE(e,t){if(e===t)return!0;if(e===null||t===null||e.length!==t.length)return!1;for(var r=0;r<e.length;++r)if(e[r]!==t[r])return!1;return!0}var wE=.54,Di=.5,_E=1.5,$f=["top","right","bottom","left"];function Zu(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.ignoreEdgeCount,a=r===void 0?!1:r,n=xE(e),i=Object.entries(n).map(function(o){var u=H(o,2),s=u[0],l=u[1],c=$f.filter(function(d){return l[d].length!==0}).length;return{colorStr:s,sides:l,edgeCount:c}});return!a&&i.some(function(o){var u=o.edgeCount;return u>1&&u<4})?null:i.map(EE).filter(function(o){return o!==null})}function xE(e){var t={},r=xe(e),a;try{for(r.s();!(a=r.n()).done;){var n,i=a.value,o=i.colorStr,u=i.pixels;(n=t[o])!==null&&n!==void 0||(t[o]={top:[],right:[],bottom:[],left:[]});var s=t[o],l=H(u,2),c=l[0],d=l[1];c>Di?s.right.push(c):-c>Di&&s.left.push(-c),d>Di?s.bottom.push(d):-d>Di&&s.top.push(-d)}}catch(f){r.e(f)}finally{r.f()}return t}function EE(e){var t=e.colorStr,r=e.sides,a=e.edgeCount;if(a!==4)return null;var n=new Se;n.parseString(t);var i=0,o=!0;return $f.forEach(function(u){i+=r[u].length/4,o&&(o=r[u].every(function(s){return s>_E}))}),o||(n.alpha=1-Math.pow(wE,i)),n}function zf(e){var t={pixels:[]},r=e.trim(),a=[t];if(!r)return[];for(;r;){var n=r.match(/^[a-z]+(\([^)]+\))?/i)||r.match(/^#[0-9a-f]+/i),i=r.match(/^([0-9.-]+)px/i)||r.match(/^(0)/);if(n)he(!t.colorStr,"Multiple colors identified in text-shadow: ".concat(e)),r=r.replace(n[0],"").trim(),t.colorStr=n[0];else if(i){he(t.pixels.length<3,"Too many pixel units in text-shadow: ".concat(e)),r=r.replace(i[0],"").trim();var o=parseFloat((i[1][0]==="."?"0":"")+i[1]);t.pixels.push(o)}else if(r[0]===",")he(t.pixels.length>=2,"Missing pixel value in text-shadow: ".concat(e)),t={pixels:[]},a.push(t),r=r.substr(1).trim();else throw new Error("Unable to process text-shadows: ".concat(r))}return a.forEach(function(u){var s=u.pixels;s.length===2&&s.push(0)}),a}function wi(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=t.minRatio,a=t.maxRatio,n=t.ignoreEdgeCount,i=[],o=E.getComputedStyle(e),u=o.getPropertyValue("text-shadow");if(u==="none")return i;var s=o.getPropertyValue("font-size"),l=parseInt(s);he(isNaN(l)===!1,"Unable to determine font-size value ".concat(s));var c=[],d=zf(u),f=xe(d),p;try{for(f.s();!(p=f.n()).done;){var m=p.value,h=m.colorStr||o.getPropertyValue("color"),v=H(m.pixels,3),g=v[0],b=v[1],w=v[2],D=w===void 0?0:w;if(!(a&&D>=l*a)){if(r&&D<l*r){c.push({colorStr:h,pixels:m.pixels});continue}if(c.length>0){var _=Zu(c,{ignoreEdgeCount:n});if(_===null)return null;i.push.apply(i,re(_)),c.splice(0,c.length)}var C=AE({colorStr:h,offsetX:g,offsetY:b,blurRadius:D,fontSize:l});i.push(C)}}}catch(O){f.e(O)}finally{f.f()}if(c.length>0){var T=Zu(c,{ignoreEdgeCount:n});if(T===null)return null;i.push.apply(i,re(T))}return i}function AE(e){var t=e.colorStr,r=e.offsetX,a=e.offsetY,n=e.blurRadius,i=e.fontSize;if(r>n||a>n)return new Se(0,0,0,0);var o=new Se;return o.parseString(t),o.alpha*=FE(n,i),o}function FE(e,t){if(e===0)return 1;var r=e/t;return .185/(r+.4)}function Ju(e,t){var r=ce(e);if(r._stackingContext)return r._stackingContext;var a=[],n=new Map;return t=t??Xu(e),t.forEach(function(i){var o,u=ce(i),s=TE(u),l=u._stackingOrder.filter(function(f){var p=f.vNode;return!!p});l.forEach(function(f,p){var m,h=f.vNode,v=(m=l[p-1])===null||m===void 0?void 0:m.vNode,g=Hf(n,h,v);p===0&&!n.get(h)&&a.unshift(g),n.set(h,g)});var c=(o=l[l.length-1])===null||o===void 0?void 0:o.vNode,d=Hf(n,u,c);l.length||a.unshift(d),d.bgColor=s}),r._stackingContext=a,a}function za(e){var t;if(!((t=e.descendants)!==null&&t!==void 0&&t.length)){var r=e.bgColor;return r.alpha*=e.opacity,{color:r,blendMode:e.blendMode}}var a=e.descendants.reduce(CE,Vf()),n=$t(a,e.bgColor,e.descendants[0].blendMode);return n.alpha*=e.opacity,{color:n,blendMode:e.blendMode}}function CE(e,t){var r;e instanceof Se?r=e:r=za(e).color;var a=za(t).color;return $t(a,r,t.blendMode)}function Vf(e,t){var r;return{vNode:e,ancestor:t,opacity:parseFloat((r=e?.getComputedStylePropertyValue("opacity"))!==null&&r!==void 0?r:1),bgColor:new Se(0,0,0,0),blendMode:RE(e?.getComputedStylePropertyValue("mix-blend-mode")),descendants:[]}}function RE(e){return e||void 0}function Hf(e,t,r){var a,n=e.get(r),i=(a=e.get(t))!==null&&a!==void 0?a:Vf(t,n);return n&&r!==t&&!n.descendants.includes(i)&&n.descendants.unshift(i),i}function TE(e){var t=new Se;return t.parseString(e.getComputedStylePropertyValue("background-color")),t}function Va(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:.1,a=ce(e),n=a._cache.getBackgroundColor;if(n)return t.push.apply(t,re(n.bgElms)),We.set("bgColor",n.incompleteData),n.bgColor;var i=SE(e,t,r);return a._cache.getBackgroundColor={bgColor:i,bgElms:t,incompleteData:We.get("bgColor")},i}function SE(e,t,r){var a,n,i=Xu(e);if(!i)return null;var o=Yo(e),u=(a=wi(e,{minRatio:r,ignoreEdgeCount:!0}))!==null&&a!==void 0?a:[];u.length&&(u=[{color:u.reduce(Ku)}]);for(var s=0;s<i.length;s++){var l=i[s],c=E.getComputedStyle(l);if(Wn(l,c))return t.push(l),null;var d=Er(c);if(d.alpha!==0){if(c.getPropertyValue("display")!=="inline"&&!Gf(l,o))return t.push(l),We.set("bgColor","elmPartiallyObscured"),null;if(t.push(l),d.alpha===1)break}}var f=Ju(e,i);u=f.map(za).concat(u);var p=kE(e,i.includes(M.body));if((n=u).unshift.apply(n,re(p)),u.length===0)return new Se(255,255,255,1);var m=u.reduce(function(h,v){return $t(v.color,h.color instanceof Se?h.color:h,v.blendMode)});return $t(m.color instanceof Se?m.color:m,new Se(255,255,255,1))}function Gf(e,t){t=Array.isArray(t)?t:[t];var r=e.getBoundingClientRect(),a=r.right,n=r.bottom,i=E.getComputedStyle(e),o=i.getPropertyValue("overflow");return(["scroll","auto"].includes(o)||e instanceof E.HTMLHtmlElement)&&(a=r.left+e.scrollWidth,n=r.top+e.scrollHeight),t.every(function(u){return u.top>=r.top&&u.bottom<=n&&u.left>=r.left&&u.right<=a})}function Uf(e){return e||void 0}function kE(e,t){var r=[];if(!t){var a=M.documentElement,n=M.body,i=E.getComputedStyle(a),o=E.getComputedStyle(n),u=Er(i),s=Er(o),l=s.alpha!==0&&Gf(n,e.getBoundingClientRect());(s.alpha!==0&&u.alpha===0||l&&s.alpha!==1)&&r.unshift({color:s,blendMode:Uf(o.getPropertyValue("mix-blend-mode"))}),u.alpha!==0&&(!l||l&&s.alpha!==1)&&r.unshift({color:u,blendMode:Uf(i.getPropertyValue("mix-blend-mode"))})}return r}function OE(e,t){if(!t||!e)return null;t.alpha<1&&(t=$t(t,e));var r=e.getRelativeLuminance(),a=t.getRelativeLuminance();return(Math.max(a,r)+.05)/(Math.min(a,r)+.05)}var Ur=OE;function _i(e,t,r){for(var a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},n=E.getComputedStyle(e),i=[function(){return PE(n,a)},function(){return ME(n)},function(){return wi(e,{minRatio:0})}],o=[],u=0,s=i;u<s.length;u++){var l=s[u],c=l();if(c&&(o=o.concat(c),c.alpha===1))break}var d=o.reduce(function(h,v){return $t(h,v)});if(r??(r=Va(e,[])),r===null){var f=We.get("bgColor");return We.set("fgColor",f),null}var p=Ju(e),m=Wf(p,e);return $t(IE(d,m,p),new Se(255,255,255,1))}function ME(e){return new Se().parseString(e.getPropertyValue("-webkit-text-fill-color")||e.getPropertyValue("color"))}function PE(e,t){var r=t.textStrokeEmMin,a=r===void 0?0:r,n=parseFloat(e.getPropertyValue("-webkit-text-stroke-width"));if(n===0)return null;var i=e.getPropertyValue("font-size"),o=n/parseFloat(i);if(isNaN(o)||o<a)return null;var u=e.getPropertyValue("-webkit-text-stroke-color");return new Se().parseString(u)}function IE(e,t,r){for(;t;){var a;if(t.opacity===1&&t.ancestor){t=t.ancestor;continue}e.alpha*=t.opacity;var n=((a=t.ancestor)===null||a===void 0?void 0:a.descendants)||r;t.opacity!==1&&(n=n.slice(0,n.indexOf(t)));var i=n.map(za);if(!i.length){t=t.ancestor;continue}var o=i.reduce(function(u,s){return $t(s.color,u.color instanceof Se?u.color:u)},{color:new Se(0,0,0,0),blendMode:"normal"});e=$t(e,o),t=t.ancestor}return e}function Wf(e,t){var r=xe(e),a;try{for(r.s();!(a=r.n()).done;){var n,i=a.value;if(((n=i.vNode)===null||n===void 0?void 0:n.actualNode)===t)return i;var o=Wf(i.descendants,t);if(o)return o}}catch(u){r.e(u)}finally{r.f()}}function NE(e,t,r,a){var n=Ur(e,t),i=a&&Math.ceil(r*72)/96<14||!a&&Math.ceil(r*72)/96<18,o=i?4.5:3;return{isValid:n>o,contrastRatio:n,expectedContrastRatio:o}}var BE=NE,Yf={};Et(Yf,{isAriaCombobox:function(){return Rd},isAriaListbox:function(){return Cd},isAriaRange:function(){return Td},isAriaTextbox:function(){return Fd},isDisabled:function(){return Ha},isNativeSelect:function(){return Ad},isNativeTextbox:function(){return Ed}});var LE=["fieldset","button","select","input","textarea"];function Kf(e){var t=e._isDisabled;if(typeof t=="boolean")return t;var r=e.props.nodeName,a=e.attr("aria-disabled");return LE.includes(r)&&e.hasAttr("disabled")?t=!0:a?t=a.toLowerCase()==="true":e.parent?t=Kf(e.parent):t=!1,e._isDisabled=t,t}var Ha=Kf;function qE(e,t,r){var a=xa.accessibleTextVirtual(r),n=xa.sanitize(xa.removeUnicode(a,{emoji:!0,nonBmp:!0,punctuations:!0})).toLowerCase();if(n){var i={name:n,urlProps:yo.urlPropsFromAttribute(e,"href")};return this.data(i),this.relatedNodes([e]),!0}}var jE=qE;function Xf(e,t){if(!e||!t)return!1;var r=Object.getOwnPropertyNames(e),a=Object.getOwnPropertyNames(t);if(r.length!==a.length)return!1;var n=r.every(function(i){var o=e[i],u=t[i];return P(o)!==P(u)?!1:P(o)==="object"||P(u)==="object"?Xf(o,u):o===u});return n}function $E(e){if(e.length<2)return e;for(var t=e.filter(function(o){var u=o.result;return u!==void 0}),r=[],a={},n=function(u){var s,l=t[u],c=l.data,d=c.name,f=c.urlProps;if(a[d])return 1;var p=t.filter(function(h,v){var g=h.data;return g.name===d&&v!==u}),m=p.every(function(h){var v=h.data;return Xf(v.urlProps,f)});p.length&&!m&&(l.result=void 0),l.relatedNodes=[],(s=l.relatedNodes).push.apply(s,re(p.map(function(h){return h.relatedNodes[0]}))),a[d]=p,r.push(l)},i=0;i<t.length;i++)n(i);return r}var zE=$E;function VE(e){var t=le(e),r=t&&t.includes("heading"),a=e.attr("aria-level"),n=parseInt(a,10),i=e.props.nodeName.match(/h(\d)/)||[],o=H(i,2),u=o[1];return r?u&&!a?parseInt(u,10):isNaN(n)||n<1?u?parseInt(u,10):2:n||-1:-1}function HE(){var e=ue.get("headingOrder");if(e)return!0;var t="h1, h2, h3, h4, h5, h6, [role=heading], iframe, frame",r=jt(x._tree[0],t,Te);return e=r.map(function(a){return{ancestry:[Sn(a.actualNode)],level:VE(a)}}),this.data({headingOrder:e}),ue.set("headingOrder",r),!0}var GE=HE;function UE(e){var t=YE(e);return e.forEach(function(r){r.result=WE(r,t)}),e}function WE(e,t){var r,a,n,i,o=Zf(t,e.node.ancestry),u=(r=(a=t[o])===null||a===void 0?void 0:a.level)!==null&&r!==void 0?r:-1,s=(n=(i=t[o-1])===null||i===void 0?void 0:i.level)!==null&&n!==void 0?n:-1;if(o===0)return!0;if(u!==-1)return u-s<=1}function YE(e){e=re(e),e.sort(function(r,a){var n=r.node,i=a.node;return n.ancestry.length-i.ancestry.length});var t=e.reduce(KE,[]);return t.filter(function(r){var a=r.level;return a!==-1})}function KE(e,t){var r,a=(r=t.data)===null||r===void 0?void 0:r.headingOrder,n=Jf(t.node.ancestry,1);if(!a)return e;var i=a.map(function(u){return ZE(u,n)}),o=XE(e,n);return o===-1?e.push.apply(e,re(i)):e.splice.apply(e,[o,0].concat(re(i))),e}function XE(e,t){for(;t.length;){var r=Zf(e,t);if(r!==-1)return r;t=Jf(t,1)}return-1}function Zf(e,t){return e.findIndex(function(r){return ku(r.ancestry,t)})}function ZE(e,t){var r=t.concat(e.ancestry);return de({},e,{ancestry:r})}function Jf(e,t){return e.slice(0,e.length-t)}function JE(e,t,r){var a=t?.minSize||24,n=r.boundingClientRect;if(Gt(a*10,n))return this.data({messageKey:"large",minSize:a}),!0;var i=Gt.bind(null,a),o=Ln(r),u=QE(r,o),s=e5(r,o),l=s.fullyObscuringElms,c=s.partialObscuringElms;if(u.length&&(l.length||!i(n))){this.data({minSize:a,messageKey:"contentOverflow"}),this.relatedNodes(Ga(u));return}if(l.length)return this.relatedNodes(Ga(l)),this.data({messageKey:"obscured"}),!0;var d=bt(r)?!1:void 0;if(!i(n))return this.data(de({minSize:a},xi(n))),d;var f=a5(c);if(!f.length)return this.data(de({minSize:a},xi(n))),!0;var p=t5(r,f);if(!p){this.data({minSize:a,messageKey:"tooManyRects"});return}if(!i(p)){if(u.length){this.data({minSize:a,messageKey:"contentOverflow"}),this.relatedNodes(Ga(u));return}var m=f.every(bt),h="partiallyObscured".concat(m?"":"NonTabbable");return this.data(de({messageKey:h,minSize:a},xi(p))),this.relatedNodes(Ga(f)),m?d:void 0}return this.data(de({minSize:a},xi(p||n))),this.relatedNodes(Ga(f)),!0}function QE(e,t){return t.filter(function(r){return!Qf(r,e)&&ep(e,r)})}function e5(e,t){var r=[],a=[],n=xe(t),i;try{for(n.s();!(i=n.n()).done;){var o=i.value;!ep(e,o)&&Eo(e,o)&&n5(o)!=="none"&&(Qf(e,o)?r.push(o):a.push(o))}}catch(u){n.e(u)}finally{n.f()}return{fullyObscuringElms:r,partialObscuringElms:a}}function t5(e,t){var r=e.boundingClientRect,a=t.map(function(i){var o=i.boundingClientRect;return o}),n;try{n=Ao(r,a)}catch{return null}return r5(n)}function r5(e,t){return e.reduce(function(r,a){var n=Gt(t,r),i=Gt(t,a);if(n!==i)return n?r:a;var o=r.width*r.height,u=a.width*a.height;return o>u?r:a})}function a5(e){return e.filter(function(t){return St(t)==="widget"&&Be(t)})}function Qf(e,t){var r=e.boundingClientRect,a=t.boundingClientRect;return r.top>=a.top&&r.left>=a.left&&r.bottom<=a.bottom&&r.right<=a.right}function n5(e){return e.getComputedStylePropertyValue("pointer-events")}function xi(e){return{width:Math.round(e.width*10)/10,height:Math.round(e.height*10)/10}}function ep(e,t){return Yt(e,t)&&!bt(t)}function Ga(e){return e.map(function(t){var r=t.actualNode;return r})}var i5=.05;function o5(e,t,r){var a=t?.minOffset||24;if(Gt(a*10,r.boundingClientRect))return this.data({messageKey:"large",minOffset:a}),!0;var n=[],i=a,o=xe(Ln(r,a)),u;try{for(o.s();!(u=o.n()).done;){var s=u.value;if(!(St(s)!=="widget"||!Be(s))){var l=null;try{l=Lc(r,s,a/2)}catch(c){if(c.message.startsWith("splitRects")){this.data({messageKey:"tooManyRects",closestOffset:0,minOffset:a});return}throw c}l!==null&&(l=u5(l)*2,!(l+i5>=a)&&(i=Math.min(i,l),n.push(s)))}}}catch(c){o.e(c)}finally{o.f()}if(n.length===0)return this.data({closestOffset:i,minOffset:a}),!0;if(this.relatedNodes(n.map(function(c){var d=c.actualNode;return d})),!n.some(bt)){this.data({messageKey:"nonTabbableNeighbor",closestOffset:i,minOffset:a});return}return this.data({closestOffset:i,minOffset:a}),bt(r)?!1:void 0}function u5(e){return Math.round(e*10)/10}function s5(e,t,r){var a=t||{},n=a.scaleMinimum,i=n===void 0?2:n,o=a.lowerBound,u=o===void 0?!1:o,s=r.attr("content")||"";if(!s)return!0;var l=s.split(/[;,]/).reduce(function(d,f){var p=f.trim();if(!p)return d;var m=p.split("="),h=H(m,2),v=h[0],g=h[1];if(!v||!g)return d;var b=v.toLowerCase().trim(),w=g.toLowerCase().trim();return b==="maximum-scale"&&w==="yes"&&(w=1),b==="maximum-scale"&&parseFloat(w)<0||(d[b]=w),d},{});if(u&&l["maximum-scale"]&&parseFloat(l["maximum-scale"])<u)return!0;if(!u&&l["user-scalable"]==="no")return this.data("user-scalable=no"),!1;var c=parseFloat(l["user-scalable"]);return!u&&l["user-scalable"]&&(c||c===0)&&c>-1&&c<1?(this.data("user-scalable"),!1):l["maximum-scale"]&&parseFloat(l["maximum-scale"])<i?(this.data("maximum-scale"),!1):!0}var l5=s5;function c5(e,t,r,a){var n=a||{},i=n.cssom,o=i===void 0?void 0:i,u=t||{},s=u.degreeThreshold,l=s===void 0?0:s;if(!o||!o.length)return;for(var c=!1,d=[],f=v(o),p=function(){var I=h[m],z=f[I],V=z.root,Q=z.rules,ie=Q.filter(g);if(!ie.length)return 1;ie.forEach(function(K){var te=K.cssRules;Array.from(te).forEach(function(q){var J=b(q);if(J&&q.selectorText.toUpperCase()!=="HTML"){var A=Array.from(V.querySelectorAll(q.selectorText))||[];d=d.concat(A)}c=c||J})})},m=0,h=Object.keys(f);m<h.length;m++)p();if(!c)return!0;return d.length&&this.relatedNodes(d),!1;function v(k){return k.reduce(function(I,z){var V=z.sheet,Q=z.root,ie=z.shadowId,K=ie||"topDocument";if(I[K]||(I[K]={root:Q,rules:[]}),!V||!V.cssRules)return I;var te=Array.from(V.cssRules);return I[K].rules=I[K].rules.concat(te),I},{})}function g(k){var I=k.type,z=k.cssText;return I!==4?!1:/orientation:\s*landscape/i.test(z)||/orientation:\s*portrait/i.test(z)}function b(k){var I=k.selectorText,z=k.style;if(!I||z.length<=0)return!1;var V=z.transform||z.webkitTransform||z.msTransform||!1;if(!V&&!z.rotate)return!1;var Q=w(V),ie=D("rotate",z.rotate),K=Q+ie;return!K||(K=Math.abs(K),Math.abs(K-180)%180<=l)?!1:Math.abs(K-90)%90<=l}function w(k){if(!k)return 0;var I=k.match(/(rotate|rotateZ|rotate3d|matrix|matrix3d)\(([^)]+)\)(?!.*(rotate|rotateZ|rotate3d|matrix|matrix3d))/);if(!I)return 0;var z=H(I,3),V=z[1],Q=z[2];return D(V,Q)}function D(k,I){switch(k){case"rotate":case"rotateZ":return _(I);case"rotate3d":var z=I.split(",").map(function(K){return K.trim()}),V=H(z,4),Q=V[2],ie=V[3];return parseInt(Q)===0?void 0:_(ie);case"matrix":case"matrix3d":return C(I);default:return 0}}function _(k){var I=k.match(/(deg|grad|rad|turn)/)||[],z=H(I,1),V=z[0];if(!V)return 0;var Q=parseFloat(k.replace(V,""));switch(V){case"rad":return T(Q);case"grad":return O(Q);case"turn":return $(Q);default:return parseInt(Q)}}function C(k){var I=k.split(",");if(I.length<=6){var z=H(I,2),V=z[0],Q=z[1],ie=Math.atan2(parseFloat(Q),parseFloat(V));return T(ie)}var K=parseFloat(I[8]),te=Math.asin(K),q=Math.cos(te),J=Math.acos(parseFloat(I[0])/q);return T(J)}function T(k){return Math.round(k*(180/Math.PI))}function O(k){return k=k%400,k<0&&(k+=400),Math.round(k/400*360)}function $(k){return Math.round(360/(1/k))}}var d5=c5;function f5(e,t){var r=e.hasAttribute("controls");if(e.hasAttribute("loop"))return r;if(!e.duration){console.warn("axe.utils.preloadMedia did not load metadata");return}var a=t.allowedDuration,n=a===void 0?3:a,i=o(e);if(i<=n)return!0;if(!r)return!1;return!0;function o(l){if(!l.currentSrc)return 0;var c=u(l.currentSrc);return c?c.length===1?Math.abs(l.duration-c[0]):Math.abs(c[1]-c[0]):Math.abs(l.duration-(l.currentTime||0))}function u(l){var c=l.match(/#t=(.*)/);if(c){var d=H(c,2),f=d[1],p=f.split(",");return p.map(function(m){return/:/.test(m)?s(m):parseFloat(m)})}}function s(l){for(var c=l.split(":"),d=0,f=1;c.length>0;)d+=f*parseInt(c.pop(),10),f*=60;return parseFloat(d)}}var p5=f5;function m5(e,t){return t.isViolation?!1:void 0}var h5=m5,tp=" > ";function v5(e){var t={};return e.filter(function(r){var a=r.node.ancestry[r.node.ancestry.length-1]!=="html";if(a){var n=r.node.ancestry.flat(1/0).join(tp);return t[n]=r,!0}var i=r.node.ancestry.slice(0,r.node.ancestry.length-1).flat(1/0).join(tp);return t[i]&&(t[i].result=!0),!1})}var g5=v5;function b5(e,t,r){var a=ft(r,"track"),n=a.some(function(i){return(i.attr("kind")||"").toLowerCase()==="captions"});return n?!1:void 0}var y5=b5;function D5(e,t,r){var a=r.children;if(!a||!a.length)return!1;for(var n=!1,i=!1,o,u=0;u<a.length;u++){if(o=a[u].props.nodeName.toUpperCase(),o==="DT"&&(n=!0),n&&o==="DD")return!1;o==="DD"&&(i=!0)}return n||i}var w5=D5;function _5(e,t,r){var a=!1,n=!1,i=!0,o=[],u=[],s=[];return r.children.forEach(function(l){var c=l.actualNode;if(c.nodeType===3&&c.nodeValue.trim()!==""){a=!0;return}if(!(c.nodeType!==1||!Te(c))){i=!1;var d=c.nodeName.toUpperCase()==="LI",f=le(l),p=f==="listitem";!d&&!p&&o.push(c),d&&!p&&(u.push(c),s.includes(f)||s.push(f)),p&&(n=!0)}}),a||o.length?(this.relatedNodes(o),!0):i||n?!1:(this.relatedNodes(u),this.data({messageKey:"roleNotValid",roles:s.join(", ")}),!0)}var x5=_5;function E5(e,t,r){var a=["definition","term","list"],n={badNodes:[],hasNonEmptyTextNode:!1},i=r.children.reduce(function(u,s){var l=s.actualNode;return l.nodeName.toUpperCase()==="DIV"&&le(l)===null?u.concat(s.children):u.concat(s)},[]),o=i.reduce(function(u,s){var l=s.actualNode,c=l.nodeName.toUpperCase();if(l.nodeType===1&&Te(l)){var d=pe(l);(c!=="DT"&&c!=="DD"||d)&&(a.includes(d)||u.badNodes.push(l))}else l.nodeType===3&&l.nodeValue.trim()!==""&&(u.hasNonEmptyTextNode=!0);return u},n);return o.badNodes.length&&this.relatedNodes(o.badNodes),!!o.badNodes.length||o.hasNonEmptyTextNode}function A5(e,t,r){var a=r.parent;if(a){var n=a.props.nodeName,i=pe(a);return["presentation","none","list"].includes(i)?!0:i&&Fa(i)?(this.data({messageKey:"roleNotValid"}),!1):["ul","ol","menu"].includes(n)}}function F5(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,a=[],n=[];if(r.children){for(var i=rp(r.children);i.length;){var o,u=i.shift(),s=u.vChild,l=u.nested;if(t.divGroups&&!l&&R5(s)){if(!s.children)return;var c=rp(s.children,!0);i.push.apply(i,re(c));continue}var d=C5(s,l,t);d&&(n.includes(d)||n.push(d),(s==null||(o=s.actualNode)===null||o===void 0?void 0:o.nodeType)===1&&a.push(s.actualNode))}return n.length===0?!1:(this.data({values:n.join(", ")}),this.relatedNodes(a),!0)}}function C5(e,t,r){var a=r.validRoles,n=a===void 0?[]:a,i=r.validNodeNames,o=i===void 0?[]:i,u=e.props,s=u.nodeName,l=u.nodeType,c=u.nodeValue,d=t?"div > ":"";if(l===3&&c.trim()!=="")return d+"#text";if(l!==1||!Te(e))return!1;var f=pe(e);return f?n.includes(f)?!1:d+"[role=".concat(f,"]"):o.includes(s)?!1:d+s}function R5(e){return e.props.nodeName==="div"&&pe(e)===null}function rp(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;return e.map(function(r){return{vChild:r,nested:t}})}function T5(e){var t=Ge(e),r=t.nodeName.toUpperCase(),a=pe(t);return r==="DIV"&&["presentation","none",null].includes(a)&&(t=Ge(t),r=t.nodeName.toUpperCase(),a=pe(t)),r!=="DL"?!1:!!(!a||["presentation","none","list"].includes(a))}var S5=T5;function k5(e,t,r){var a=Rr(r.attr("lang")),n=Rr(r.attr("xml:lang"));return a===n}var O5=k5;function M5(e,t,r){var a=[];return t.attributes.forEach(function(n){var i=r.attr(n);if(typeof i=="string"){var o=Rr(i),u=t.value?!t.value.map(Rr).includes(o):!hi(o);(o!==""&&u||i!==""&&!ae(i))&&a.push(n+'="'+r.attr(n)+'"')}}),!a.length||r.props.nodeName!=="html"&&!Jo(r)?!1:(this.data(a),!0)}var P5=M5;function Qu(e){return(e||"").trim()!==""}function I5(e,t,r){var a=typeof M<"u"?Rn(M):!1;if(t.attributes.includes("xml:lang")&&t.attributes.includes("lang")&&Qu(r.attr("xml:lang"))&&!Qu(r.attr("lang"))&&!a)return this.data({messageKey:"noXHTML"}),!1;var n=t.attributes.some(function(i){return Qu(r.attr(i))});return n?!0:(this.data({messageKey:"noLang"}),!1)}var N5=I5;function B5(e,t,r){var a=le(e),n=Ue(r);return n=n?n.toLowerCase():null,this.data({role:a,accessibleText:n}),this.relatedNodes([e]),!0}var L5=B5;function q5(e){var t=[];return e.filter(function(r){var a=function(o){return r.data.role===o.data.role&&r.data.accessibleText===o.data.accessibleText},n=t.find(a);return n?(n.result=!1,n.relatedNodes.push(r.relatedNodes[0]),!1):(t.push(r),r.relatedNodes=[],!0)})}var j5=q5;function $5(e,t,r){var a=Gn(r),n=zn(r),i=r.attr("aria-describedby");return!a&&!!(n||i)}var z5=$5;function V5(e){var t=Oe(e.getAttribute("id")),r=e.parentNode,a=Xe(e);a=a.documentElement||a;var n=Array.from(a.querySelectorAll('label[for="'.concat(t,'"]')));for(n.length&&(n=n.filter(function(u){return!or(u)}));r;)r.nodeName.toUpperCase()==="LABEL"&&n.indexOf(r)===-1&&n.push(r),r=r.parentNode;if(this.relatedNodes(n),n.length>1){var i=n.filter(function(u){return Te(u)});if(i.length>1)return;var o=Pt(e,"aria-labelledby");return o.includes(i[0])?!1:void 0}return!1}var H5=V5;function G5(e,t){var r=ap(t),a=ap(e);return!r||!a?!1:r.includes(a)}function ap(e){var t=Ta(e,{emoji:!0,nonBmp:!0,punctuations:!0});return ae(t)}function U5(e,t,r){var a,n=t?.pixelThreshold,i=(a=t?.occurrenceThreshold)!==null&&a!==void 0?a:t?.occuranceThreshold,o=yr(e).toLowerCase(),u=ae(ur(r,{subtreeDescendant:!0,ignoreIconLigature:!0,pixelThreshold:n,occurrenceThreshold:i})).toLowerCase();if(!u)return!0;if(!(Wo(o)<1||Wo(u)<1))return G5(u,o)}var W5=U5;function Y5(e,t,r){try{var a=ct(r,"label");if(a){var n=ae(Ue(a,{inControlContext:!0,startNode:r}));return a.actualNode&&this.relatedNodes([a.actualNode]),this.data({implicitLabel:n}),!!n}return!1}catch{return}}var K5=Y5;function X5(e,t,r){if(r.hasAttr("id")){if(!r.actualNode)return;var a=Xe(e),n=Oe(e.getAttribute("id")),i=a.querySelector('label[for="'.concat(n,'"]'));if(i&&!Te(i)){var o;try{o=Ue(r).trim()}catch{return}var u=o==="";return u}}return!1}var Z5=X5;function J5(e,t,r){var a=Gn(r),n=e.getAttribute("title");if(!a)return!1;if(!n&&(n="",e.getAttribute("aria-describedby"))){var i=Pt(e,"aria-describedby");n=i.map(function(o){return o?yr(o):""}).join("")}return ae(n)===ae(a)}var Q5=J5;function eA(e,t,r){var a=this;if(!r.attr("id"))return!1;if(r.actualNode){var n=Xe(r.actualNode),i=Oe(r.attr("id")),o=Array.from(n.querySelectorAll('label[for="'.concat(i,'"]')));if(this.relatedNodes(o),!o.length)return!1;try{return o.some(function(u){if(st(u)){var s=ae(yr(u,{inControlContext:!0,startNode:r}));return a.data({explicitLabel:s}),!!s}else return!0})}catch{return}}}var tA=eA;function rA(e,t,r){if(["none","presentation"].includes(le(r)))return!1;var a=ct(r,t.parentSelector);if(!a)return!1;var n=Nt(a,!0).toLowerCase();return n===""?!1:n===Ue(r).toLowerCase()}var aA=rA;function nA(e,t,r){var a=r.attr("alt"),n=/^\s+$/;return typeof a=="string"&&n.test(a)}var iA=nA;function oA(e,t,r){var a=qt(r.attr("tabindex"));return a===null||a<=0}var uA=oA;function sA(e,t,r){if(r.children)try{var a=np(r);if(!a.length)return!0;var n=a.filter(lA);return n.length>0?(this.data({messageKey:"notHidden"}),this.relatedNodes(n)):this.relatedNodes(a),!1}catch{return}}function np(e){if(!e.children){if(e.props.nodeType===1)throw new Error("Cannot determine children");return[]}var t=[];return e.children.forEach(function(r){St(r)==="widget"&&Be(r)?t.push(r):t.push.apply(t,re(np(r)))}),t}function lA(e){var t=qt(e.attr("tabindex"));return t!==null&&t<0}function cA(e){var t=Gr("landmark"),r=Ge(e),a=le(e);for(this.data({role:a});r;){var n=pe(r);if(!n&&r.nodeName.toUpperCase()!=="FORM"&&(n=It(r)),n&&t.includes(n)&&!(n==="main"&&a==="complementary"))return!1;r=Ge(r)}return!0}var dA=cA;function fA(e,t,r){if(r.children)try{return!r.children.some(function(a){return ip(a)})}catch{return}}function ip(e){if(bt(e))return!0;if(!e.children){if(e.props.nodeType===1)throw new Error("Cannot determine children");return!1}return e.children.some(function(t){return ip(t)})}function pA(e,t,r){var a=["button","fieldset","input","select","textarea"],n=r.tabbableElements;if(!n||!n.length)return!0;var i=n.filter(function(o){return!a.includes(o.props.nodeName)});return this.relatedNodes(i.map(function(o){return o.actualNode})),i.length===0||ka()?!0:i.every(function(o){var u=o.getComputedStylePropertyValue("pointer-events"),s=parseInt(o.getComputedStylePropertyValue("width")),l=parseInt(o.getComputedStylePropertyValue("height"));return o.actualNode.onfocus||(s===0||l===0)&&u==="none"})?void 0:!1}var mA=pA;function hA(e,t,r){if(!bt(r))return!1;try{return!Ue(r)}catch{return}}var vA=hA;function gA(e,t,r){var a=r.tabbableElements.map(function(n){var i=n.actualNode;return i});if(!a||!a.length)return!0;if(ka()){this.relatedNodes(a);return}return!0}var bA=gA;function yA(e,t,r){if(r.hasAttr("contenteditable")&&a(r))return!0;return bt(r);function a(n){var i=n.attr("contenteditable");if(i==="true"||i==="")return!0;if(i==="false")return!1;var o=ct(r.parent,"[contenteditable]");return o?a(o):!1}}var DA=yA;function wA(e,t,r){var a=["button","fieldset","input","select","textarea"],n=r.tabbableElements;if(!n||!n.length)return!0;var i=n.filter(function(o){return a.includes(o.props.nodeName)});return this.relatedNodes(i.map(function(o){return o.actualNode})),i.length===0||ka()?!0:i.every(function(o){var u=o.getComputedStylePropertyValue("pointer-events"),s=parseInt(o.getComputedStylePropertyValue("width")),l=parseInt(o.getComputedStylePropertyValue("height"));return o.actualNode.onfocus||(s===0||l===0)&&u==="none"})?void 0:!1}var _A=wA;function xA(e,t,r){var a=r.tabbableElements;if(!a)return!1;var n=a.filter(function(i){return i!==r});return n.length>0}var EA=xA;function AA(e,t,r){return or(r)||(this.data(r.attr("accesskey")),this.relatedNodes([e])),!0}var FA=AA;function CA(e){var t={};return e.filter(function(r){if(!r.data)return!1;var a=r.data.toUpperCase();return t[a]?(t[a].relatedNodes.push(r.relatedNodes[0]),!1):(t[a]=r,r.relatedNodes=[],!0)}).map(function(r){return r.result=!!r.relatedNodes.length,r})}var RA=CA;function TA(e,t,r){if(!t||!t.selector||typeof t.selector!="string")throw new TypeError("page-no-duplicate requires options.selector to be a string");var a="page-no-duplicate;"+t.selector;if(ue.get(a)){this.data("ignored");return}ue.set(a,!0);var n=jt(x._tree[0],t.selector,function(i){return Te(i)});return typeof t.nativeScopeFilter=="string"&&(n=n.filter(function(i){return i.actualNode.hasAttribute("role")||!Ir(i,t.nativeScopeFilter)})),typeof t.role=="string"&&(n=n.filter(function(i){return le(i)===t.role})),this.relatedNodes(n.filter(function(i){return i!==r}).map(function(i){return i.actualNode})),n.length<=1}var SA=TA;function kA(e){return e.filter(function(t){return t.data!=="ignored"})}var OA=kA;function MA(e,t,r){return Ca(r,t.matcher)}var PA=MA;function IA(e,t,r){try{return ae(ur(r))!==""}catch{return}}function NA(e,t,r){if(!t||!t.selector||typeof t.selector!="string")throw new TypeError("has-descendant requires options.selector to be a string");if(t.passForModal&&ka())return!0;var a=jt(r,t.selector,function(n){return Te(n)});return this.relatedNodes(a.map(function(n){return n.actualNode})),a.length>0}var BA=NA;function LA(e){var t=e.some(function(r){return r.result===!0});return t&&e.forEach(function(r){r.result=!0}),e}var qA=LA;function jA(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;if(!t.attribute||typeof t.attribute!="string")throw new TypeError("attr-non-space-content requires options.attribute to be a string");if(!r.hasAttr(t.attribute))return this.data({messageKey:"noAttr"}),!1;var a=r.attr(t.attribute),n=!ae(a);return n?(this.data({messageKey:"emptyAttr"}),!1):!0}var $A=jA;function zA(e,t,r){var a=r.attr("autocomplete")||"";return qd(a,t)}var VA=zA;function HA(e,t,r){if(r.props.nodeName!=="input")return!0;var a=["text","search","number","tel"],n=["text","search","url"],i={bday:["text","search","date"],email:["text","search","email"],username:["text","search","email"],"street-address":["text"],tel:["text","search","tel"],"tel-country-code":["text","search","tel"],"tel-national":["text","search","tel"],"tel-area-code":["text","search","tel"],"tel-local":["text","search","tel"],"tel-local-prefix":["text","search","tel"],"tel-local-suffix":["text","search","tel"],"tel-extension":["text","search","tel"],"cc-number":a,"cc-exp":["text","search","month","tel"],"cc-exp-month":a,"cc-exp-year":a,"cc-csc":a,"transaction-amount":a,"bday-day":a,"bday-month":a,"bday-year":a,"new-password":["text","search","password"],"current-password":["text","search","password"],url:n,photo:n,impp:n};P(t)==="object"&&Object.keys(t).forEach(function(d){i[d]||(i[d]=[]),i[d]=i[d].concat(t[d])});var o=r.attr("autocomplete"),u=o.split(/\s+/g).map(function(d){return d.toLowerCase()}),s=u[u.length-1];if(xr.stateTerms.includes(s))return!0;var l=i[s],c=r.hasAttr("type")?ae(r.attr("type")).toLowerCase():"text";return c=mi().includes(c)?c:"text",typeof l>"u"?c==="text":l.includes(c)}var GA=HA,UA=["block","list-item","table","flex","grid","inline-block"];function WA(e){if(op(e))return!1;for(var t=Ge(e);t&&t.nodeType===1&&!op(t);)t=Ge(t);if(t){if(this.relatedNodes([t]),Lf(e,t))return!0;if(YA(e)){this.data({messageKey:"pseudoContent"});return}return!1}}function op(e){var t=E.getComputedStyle(e).getPropertyValue("display");return UA.indexOf(t)!==-1||t.substr(0,6)==="table-"}function YA(e){for(var t=0,r=["before","after"];t<r.length;t++){var a=r[t],n=E.getComputedStyle(e,":".concat(a)),i=n.getPropertyValue("content");if(i!=="none")return!0}return!1}function up(e,t){var r=e.getRelativeLuminance(),a=t.getRelativeLuminance();return(Math.max(r,a)+.05)/(Math.min(r,a)+.05)}var KA=["block","list-item","table","flex","grid","inline-block"];function sp(e){var t=E.getComputedStyle(e).getPropertyValue("display");return KA.indexOf(t)!==-1||t.substr(0,6)==="table-"}function XA(e,t){var r=t.requiredContrastRatio,a=t.allowSameColor;if(sp(e))return!1;for(var n=Ge(e);n&&n.nodeType===1&&!sp(n);)n=Ge(n);if(n){this.relatedNodes([n]);var i=_i(e),o=_i(n),u=Va(e),s=Va(n),l=i&&o?up(i,o):void 0;if(l&&(l=Math.floor(l*100)/100),l&&l>=r)return!0;var c=u&&s?up(u,s):void 0;if(c&&(c=Math.floor(c*100)/100),c&&c>=r)return!0;if(!c){var d,f=(d=We.get("bgColor"))!==null&&d!==void 0?d:"bgContrast";this.data({messageKey:f}),We.clear();return}if(l)return a&&l===1&&c===1?!0:l===1&&c>1?(this.data({messageKey:"bgContrast",contrastRatio:c,requiredContrastRatio:r,nodeBackgroundColor:u?u.toHexString():void 0,parentBackgroundColor:s?s.toHexString():void 0}),!1):(this.data({messageKey:"fgContrast",contrastRatio:l,requiredContrastRatio:r,nodeColor:i?i.toHexString():void 0,parentColor:o?o.toHexString():void 0}),!1)}}var ZA=XA;function JA(e,t,r){var a=t.ignoreUnicode,n=t.ignoreLength,i=t.ignorePseudo,o=t.boldValue,u=t.boldTextPt,s=t.largeTextPt,l=t.contrastRatio,c=t.shadowOutlineEmMax,d=t.pseudoSizeThreshold;if(!st(e))return this.data({messageKey:"hidden"}),!0;var f=Nt(r,!1,!0);if(a&&eF(f)){this.data({messageKey:"nonBmp"});return}var p=E.getComputedStyle(e),m=parseFloat(p.getPropertyValue("font-size")),h=p.getPropertyValue("font-weight"),v=parseFloat(h)>=o||h==="bold",g=Math.ceil(m*72)/96,b=v&&g<u||!v&&g<s,w=b?l.normal:l.large,D=w.expected,_=w.minThreshold,C=w.maxThreshold,T=QA(r,{ignorePseudo:i,pseudoSizeThreshold:d});if(T){this.data({fontSize:"".concat((m*72/96).toFixed(1),"pt (").concat(m,"px)"),fontWeight:v?"bold":"normal",messageKey:"pseudoContent",expectedContrastRatio:D+":1"}),this.relatedNodes(T.actualNode);return}var O=wi(e,{minRatio:.001,maxRatio:c});if(O===null){this.data({messageKey:"complexTextShadows"});return}var $=[],k=Va(e,$,c),I=_i(e,!1,k,t),z=null,V=null,Q=null;if(O.length===0)z=Ur(k,I);else if(I&&k){Q=[].concat(re(O),[k]).reduce(Ku);var ie=Ur(k,I),K=Ur(k,Q),te=Ur(Q,I);z=Math.max(ie,K,te),z!==ie&&(V=K>te?"shadowOnBgColor":"fgOnShadowColor")}var q=z>D;if(typeof _=="number"&&(typeof z!="number"||z<_)||typeof C=="number"&&(typeof z!="number"||z>C))return this.data({contrastRatio:z}),!0;var J=Math.floor(z*100)/100,A;k===null?A=We.get("bgColor"):q||(A=V);var U=J===1,B=f.length===1;if(U?A=We.set("bgColor","equalRatio"):!q&&B&&!n&&(A="shortTextContent"),this.data({fgColor:I?I.toHexString():void 0,bgColor:k?k.toHexString():void 0,contrastRatio:J,fontSize:"".concat((m*72/96).toFixed(1),"pt (").concat(m,"px)"),fontWeight:v?"bold":"normal",messageKey:A,expectedContrastRatio:D+":1",shadowColor:Q?Q.toHexString():void 0}),I===null||k===null||U||B&&!n&&!q){A=null,We.clear(),this.relatedNodes($);return}return q||this.relatedNodes($),q}function QA(e,t){var r=t.pseudoSizeThreshold,a=r===void 0?.25:r,n=t.ignorePseudo,i=n===void 0?!1:n;if(!i){var o=e.boundingClientRect,u=o.width*o.height*a;do{var s=lp(e.actualNode,":before"),l=lp(e.actualNode,":after");if(s+l>u)return e}while(e=e.parent)}}var lp=Re(function(t,r){var a=E.getComputedStyle(t,r),n=function(s,l){return a.getPropertyValue(s)===l};if(n("content","none")||n("display","none")||n("visibility","hidden")||n("position","absolute")===!1||Er(a).alpha===0&&n("background-image","none"))return 0;var i=cp(a.getPropertyValue("width")),o=cp(a.getPropertyValue("height"));return i.unit!=="px"||o.unit!=="px"?i.value===0||o.value===0?0:1/0:i.value*o.value});function eF(e){var t={nonBmp:!0},r=Go(e,t),a=ae(Ta(e,t))==="";return r&&a}function cp(e){var t=/^([0-9.]+)([a-z]+)$/i,r=e.match(t)||[],a=H(r,3),n=a[1],i=n===void 0?"":n,o=a[2],u=o===void 0?"":o;return{value:parseFloat(i),unit:u.toLowerCase()}}var tF={ARTICLE:!0,ASIDE:!0,NAV:!0,SECTION:!0},rF={alert:!0,alertdialog:!0,application:!0,article:!0,banner:!1,complementary:!0,contentinfo:!0,dialog:!0,form:!0,log:!0,main:!0,navigation:!0,region:!0,search:!1,status:!0,tabpanel:!0};function aF(e){var t=e.nodeName.toUpperCase();return tF[t]||!1}function nF(e,t){var r=pe(e);return r&&(rF[r]||t.roles.includes(r))||!1}function iF(e,t){return nF(e,t)||aF(e)}var oF=iF;function uF(e,t,r){var a=le(r,{dpub:!0,fallback:!0}),n=Io(a);return n&&this.data(a),n}var sF=uF;function lF(e,t,r){var a=le(r,{noImplicit:!0});this.data(a);var n,i;try{n=ae(Vo(r)).toLowerCase(),i=ae(Ue(r)).toLowerCase()}catch{return}if(!i&&!n)return!1;if(!(!i&&n)&&i.includes(n))return!1}var cF=lF;function dF(e,t,r){return Be(r)}var fF=dF;function pF(e,t,r){var a=Ze(r.attr("role")),n=a.every(function(i){return!Fa(i.toLowerCase(),{allowAbstract:!0})});return n?(this.data(a),!0):!1}var mF=pF;function hF(e,t,r){var a=pe(r);if(a===null)return!1;var n=St(a);return n==="widget"||n==="composite"}var vF=hF;function gF(e,t,r){var a=Dr().filter(function(n){return r.hasAttr(n)});return this.data(a),a.length>0}var bF=gF;function yF(e,t){var r=It(e);return!r&&t.length===2&&t.includes("none")&&t.includes("presentation")}function DF(e,t,r){var a=Ze(r.attr("role"));return a.length<=1?!1:yF(r,a)?void 0:!0}var wF=DF;function _F(e,t,r){var a=le(r,{dpub:!0,fallback:!0}),n=ve.ariaRoles[a];return n!=null&&n.deprecated?(this.data(a),!0):!1}function xF(e,t,r){var a,n=(a=r.attr("aria-brailleroledescription"))!==null&&a!==void 0?a:"";if(ae(n)==="")return!0;var i=r.attr("aria-roledescription");return typeof i!="string"?(this.data({messageKey:"noRoleDescription"}),!1):ae(i)===""?(this.data({messageKey:"emptyRoleDescription"}),!1):!0}function EF(e,t,r){var a,n=(a=r.attr("aria-braillelabel"))!==null&&a!==void 0?a:"";if(!n.trim())return!0;try{return ae(Ue(r))!==""}catch{return}}function AF(e,t,r){t=Array.isArray(t.value)?t.value:[];var a="",n="",i=[],o=/^aria-/,u=["aria-errormessage"],s={"aria-controls":function(){var c=["false",null].includes(r.attr("aria-haspopup"))===!1;return c&&(a='aria-controls="'.concat(r.attr("aria-controls"),'"'),n="controlsWithinPopup"),r.attr("aria-expanded")!=="false"&&r.attr("aria-selected")!=="false"&&c===!1},"aria-current":function(c){c||(a='aria-current="'.concat(r.attr("aria-current"),'"'),n="ariaCurrent")},"aria-owns":function(){return r.attr("aria-expanded")!=="false"},"aria-describedby":function(c){c||(a='aria-describedby="'.concat(r.attr("aria-describedby"),'"'),n=x._tree&&x._tree[0]._hasShadowRoot?"noIdShadow":"noId")},"aria-labelledby":function(c){c||(a='aria-labelledby="'.concat(r.attr("aria-labelledby"),'"'),n=x._tree&&x._tree[0]._hasShadowRoot?"noIdShadow":"noId")}};if(r.attrNames.forEach(function(l){if(!(u.includes(l)||t.includes(l)||!o.test(l))){var c,d=r.attr(l);try{c=Rf(r,l)}catch{a="".concat(l,'="').concat(d,'"'),n="idrefs";return}(!s[l]||s[l](c))&&!c&&(d===""&&!FF(l)?(a=l,n="empty"):i.push("".concat(l,'="').concat(d,'"')))}}),i.length)return this.data(i),!1;if(a){this.data({messageKey:n,needsReview:a});return}return!0}function FF(e){var t;return((t=ve.ariaAttrs[e])===null||t===void 0?void 0:t.type)==="string"}function CF(e,t,r){t=Array.isArray(t.value)?t.value:[];var a=[],n=/^aria-/;return r.attrNames.forEach(function(i){t.indexOf(i)===-1&&n.test(i)&&!yi(i)&&a.push(i)}),a.length?(this.data(a),!1):!0}var RF=CF;function TF(e,t,r){var a=r.attrNames.filter(function(n){var i=ve.ariaAttrs[n];if(!yi(n))return!1;var o=i.unsupported;return P(o)!=="object"?!!o:!Ca(e,o.exceptions)});return a.length?(this.data(a),!0):!1}var SF=TF;function kF(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,a=le(r),n=t.supportedRoles||[];if(n.includes(a))return!0;if(!(a&&a!=="presentation"&&a!=="none"))return!1}var OF=kF;function dp(e,t,r,a){var n=pe(e);if(r||(r=Hu(n)),!r)return null;for(var i=r.includes("group"),o=a?e:e.parent;o;){var u=le(o,{noPresentational:!0});if(!u)o=o.parent;else if(u==="group"&&i)t.includes(n)&&r.push(n),r=r.filter(function(s){return s!=="group"}),o=o.parent;else return r.includes(u)?null:r}return r}function MF(e){for(var t=[],r=null;e;){if(e.getAttribute("id")){var a=Oe(e.getAttribute("id")),n=Xe(e);r=n.querySelector("[aria-owns~=".concat(a,"]")),r&&t.push(r)}e=e.parentElement}return t.length?t:null}function PF(e,t,r){var a=t&&Array.isArray(t.ownGroupRoles)?t.ownGroupRoles:[],n=dp(r,a);if(!n)return!0;var i=MF(e);if(i){for(var o=0,u=i.length;o<u;o++)if(n=dp(ce(i[o]),a,n,!0),!n)return!0}return this.data(n),!1}var IF=PF;function NF(e,t,r){var a=t&&Array.isArray(t.reviewEmpty)?t.reviewEmpty:[],n=pe(r,{dpub:!0}),i=Gu(n);if(i===null)return!0;var o=BF(r,i),u=o.filter(function(s){var l=s.role,c=s.vNode;return c.props.nodeType===1&&!i.includes(l)});if(u.length)return this.relatedNodes(u.map(function(s){var l=s.vNode;return l})),this.data({messageKey:"unallowed",values:u.map(function(s){var l=s.vNode,c=s.attr;return jF(l,c)}).filter(function(s,l,c){return c.indexOf(s)===l}).join(", ")}),!1;if(LF(i,o))return!0;if(r.attr("aria-busy")==="true")return this.data({messageKey:"aria-busy"}),!0;if(this.data(i),!(a.includes(n)&&!o.some($F)))return!1}function BF(e,t){for(var r,a=[],n=Ra(e),i=function(){if(r.props.nodeType===3&&a.push({vNode:r,role:null}),r.props.nodeType!==1||!Te(r))return 1;var u=le(r,{noPresentational:!0}),s=qF(r),l=!!s||Be(r);if(!u&&!l||["group","rowgroup"].includes(u)&&t.some(function(d){return d===u}))n.push.apply(n,re(r.children));else if(u||l){var c=s||"tabindex";a.push({role:u,attr:c,vNode:r})}};r=n.shift();)i();return a}function LF(e,t){return t.some(function(r){var a=r.role;return a&&e.includes(a)})}function qF(e){return Dr().find(function(t){return e.hasAttr(t)})}function jF(e,t){var r=e.props,a=r.nodeName,n=r.nodeType;if(n===3)return"#text";var i=pe(e,{dpub:!0});return i?"[role=".concat(i,"]"):t?a+"[".concat(t,"]"):a}function $F(e){var t=e.vNode;return t.props.nodeType===3?t.props.nodeValue.trim().length>0:Sa(t,!1,!0)}function zF(e){var t,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},a=arguments.length>2?arguments[2]:void 0,n=pe(a),i=a.attrNames,o=Cf(n);if(Array.isArray(r[n])&&(o=qa(r[n],o)),!n||!i.length||!o.length||VF(a,n)||GF(a,n)||n==="slider"&&(t=a.attr("aria-valuetext"))!==null&&t!==void 0&&t.trim())return!0;var u=_r(a),s=o.filter(function(l){return!a.attr(l)&&!HF(u,l)});return s.length?(this.data(s),!1):!0}function VF(e,t){return t==="separator"&&!Be(e)}function HF(e,t){var r;return((r=e.implicitAttrs)===null||r===void 0?void 0:r[t])!==void 0}function GF(e,t){return t==="combobox"&&e.attr("aria-expanded")==="false"}function UF(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,a=t?.elementsAllowedAriaLabel||[],n=r.props.nodeName,i=le(r,{chromium:!0,fallback:!0}),o=WF(r,i,n,a),u=o.filter(function(c){return r.attrNames.includes(c)?ae(r.attr(c))!=="":!1});if(u.length===0)return!1;var s=i!==null?"hasRole":"noRole";s+=u.length>1?"Plural":"Singular",this.data({role:i,nodeName:n,messageKey:s,prohibited:u});var l=ur(r,{subtreeDescendant:!0});if(ae(l)==="")return!0}function WF(e,t,r,a){var n=ve.ariaRoles[t];return n?n.prohibitedAttrs||[]:t||a.includes(r)||fp(e)==="widget"?[]:["aria-label","aria-labelledby"]}var fp=Re(function(t){if(t){var r=le(t,{noPresentational:!0,chromium:!0});return r?St(r):fp(t.parent)}});function YF(e,t,r){var a=r.attr("aria-level"),n=parseInt(a,10);if(!(n>6))return!0}var KF=YF;function XF(e,t,r){return r.attr("aria-hidden")!=="true"}var ZF=XF;function JF(e,t,r){t=Array.isArray(t)?t:[];var a=r.attr("aria-errormessage"),n=r.hasAttr("aria-errormessage"),i=r.attr("aria-invalid"),o=r.hasAttr("aria-invalid");if(!o||i==="false")return!0;function u(s){if(s.trim()==="")return ve.ariaAttrs["aria-errormessage"].allowEmpty;var l;try{l=s&&Pt(r,"aria-errormessage")[0]}catch{this.data({messageKey:"idrefs",values:Ze(s)});return}if(l)return Te(l)?pe(l)==="alert"||l.getAttribute("aria-live")==="assertive"||l.getAttribute("aria-live")==="polite"||Ze(r.attr("aria-describedby")).indexOf(s)>-1:(this.data({messageKey:"hidden",values:Ze(s)}),!1)}return t.indexOf(a)===-1&&n?(this.data(Ze(a)),u.call(this,a)):!0}function pp(e){var t,r,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=a.invalidTableRowAttrs,i=arguments.length>2?arguments[2]:void 0,o=(t=n==null||(r=n.filter)===null||r===void 0?void 0:r.call(n,function(c){return i.hasAttr(c)}))!==null&&t!==void 0?t:[];if(o.length===0)return!0;var u=QF(i),s=u&&le(u);if(!s||s==="treegrid")return!0;var l="row".concat(o.length>1?"Plural":"Singular");return this.data({messageKey:l,invalidAttrs:o,ownerRole:s}),!1}function QF(e){if(e.parent){var t='table:not([role]), [role~="treegrid"], [role~="table"], [role~="grid"]';return ct(e,t)}}function mp(e,t,r){var a=r.props,n=a.nodeName,i=a.type,o=tC(r.attr("aria-checked"));if(n!=="input"||i!=="checkbox"||!o)return!0;var u=eC(r);return o===u?!0:(this.data({messageKey:"checkbox",checkState:u}),!1)}function eC(e){return e.props.indeterminate?"mixed":e.props.checked?"true":"false"}function tC(e){return e?(e=e.toLowerCase(),["mixed","true"].includes(e)?e:"false"):""}var hp={row:pp,checkbox:mp};function rC(e,t,r){var a=le(r);return hp[a]?hp[a].call(this,e,t,r):!0}function aC(e,t,r){return r.attr("aria-busy")==="true"}function nC(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,a=t.allowImplicit,n=a===void 0?!0:a,i=t.ignoredTags,o=i===void 0?[]:i,u=r.props.nodeName;if(o.map(function(l){return l.toLowerCase()}).includes(u))return!0;var s=_f(r,n);return s.length?(this.data(s),Te(r)?!1:void 0):!0}var iC=nC;function oC(e,t,r){var a=[],n=le(r),i=yf(n);Array.isArray(t[n])&&(i=qa(t[n].concat(i)));var o=xe(r.attrNames),u;try{for(o.s();!(u=o.n()).done;){var s=u.value;yi(s)&&!i.includes(s)&&!uC(s,r.attr(s),r)&&a.push(s)}}catch(l){o.e(l)}finally{o.f()}if(!a.length)return!0;if(this.data(a.map(function(l){return l+'="'+r.attr(l)+'"'})),!(!n&&!Tu(r)&&!Be(r)))return!1}function uC(e,t,r){return!!(e==="aria-required"&&t==="false"||e==="aria-multiline"&&t==="false"&&r.hasAttr("contenteditable"))}function sC(e,t,r){var a=Ze(r.attr("role")).filter(function(n){return St(n)==="abstract"});return a.length>0?(this.data(a),!0):!1}var lC=sC;function cC(e){var t=Rr(e.getAttribute("lang")),r=Rr(e.getAttribute("xml:lang"));return hi(t)&&hi(r)}var dC=cC;function fC(e){return e.ownerDocument.defaultView.self===e.ownerDocument.defaultView.top}var pC=fC;function mC(e,t){try{var r=t.props.nodeName;return r==="svg"?!0:!!ct(t,"svg")}catch{return!1}}var es=mC;function hC(e,t){return vC.every(function(r){return r(e,t)})}var vC=[function(e,t){return vp(t)},function(e,t){return gC(t)},function(e,t){return!es(e,t)},function(e,t){return Be(t)},function(e,t){return bt(t)||!bC(t)},function(e){return!Qo(e,{noLengthCompare:!0})}];function vp(e){return St(e)==="widget"}function gC(e){return e.props.nodeName!=="area"}var bC=Re(function e(t){return t!=null&&t.parent?vp(t.parent)&&bt(t.parent)?!0:e(t.parent):!1});function yC(e,t){var r=le(t);return["treegrid","grid","table"].includes(r)}function DC(e,t){var r=t.parent;if(r.props.nodeName!=="details"||wC(t))return!1;var a=r.children.find(function(n){return n.props.nodeName==="summary"});return a===t}function wC(e){var t,r=(t=e.actualNode)===null||t===void 0?void 0:t.parentElement;return r&&r!==e.parent.actualNode}function _C(e){return tu(e)&&On(e)}var xC=_C;function EC(e,t){return Kt(e,13)!==void 0&&Vu(t)===!1&&AC(t)}function AC(e){return ft(e,"*").some(function(t){return Sa(t,!0,!0)})}function FC(e,t){return It(t,{chromiumRoles:!0})!==null}var CC=FC;function RC(e){var t=Array.from(e.parentNode.childNodes),r=e.textContent.trim(),a=/[.!?:;](?![.!?:;])/g;if(r.length===0||(r.match(a)||[]).length>=2)return!1;var n=t.slice(t.indexOf(e)+1).filter(function(i){return i.nodeName.toUpperCase()==="P"&&i.textContent.trim()!==""});return n.length!==0}var TC=RC;function SC(e,t){var r=pe(t);if(!r||["none","presentation"].includes(r))return!0;var a=ad[r]||{},n=a.accessibleNameRequired;return!!(n||Be(t))}var gp=SC,kC=function(t,r){return[gp,OC].every(function(a){return a(t,r)})};function OC(e){var t;if(!(e!=null&&(t=e.ownerDocument)!==null&&t!==void 0&&t.createRange))return!0;var r=e.ownerDocument.createRange();return r.setStart(e,0),r.setEnd(e,e.childNodes.length),r.getClientRects().length===0}function MC(e,t){return t.props.nodeName!=="html"}var PC=MC;function IC(e,t){return!t.attr("role")}var NC=IC;function BC(e,t){var r=qt(t.attr("tabindex"));return r===null||r>=0}var LC=BC;function qC(e,t){var r=_r(t),a=r.namingMethods;return!(a&&a.length!==0||pe(t)==="combobox"&&ft(t,'input:not([type="hidden"])').length||Vu(t,{popupRoles:["listbox"]}))}var jC=qC;function $C(e,t){return!(!t.hasAttr("role")||!t.attr("role").trim())}var zC=$C;function VC(e){return!(!e.currentSrc||e.hasAttribute("paused")||e.hasAttribute("muted"))}var HC=VC;function GC(e,t){var r=le(t);return r?!!ve.ariaRoles[r].childrenPresentational:!1}var UC=GC;function WC(e){var t=ae(e.innerText),r=pe(e);return r&&r!=="link"||!t||!st(e)?!1:Qo(e)}var YC=WC;function KC(e){return!gi(e)&&!Be(e)}var XC=KC;function ZC(e,t){return JC(t)&&Te(t)}function JC(e){var t=Gr("landmark"),r=le(e);if(!r)return!1;var a=e.props.nodeName;if(a==="section"||a==="form"){var n=Ue(e);return!!n}return t.indexOf(r)>=0||r==="region"}function QC(e,t){var r="article, aside, main, nav, section";return e.hasAttribute("role")||!Ir(t,r)}var e3=QC;function t3(e,t){if(t.props.nodeName!=="input"||t.hasAttr("type")===!1)return!0;var r=t.attr("type").toLowerCase();return["hidden","image","button","submit","reset"].includes(r)===!1}var r3=t3;function a3(e,t){var r=le(e);if(!r)return!1;var a=Gr("widget"),n=a.includes(r);if(!n)return!1;var i=zu();return!(!i.includes(r)||!ae(Aa(t))&&!ae(Ea(e))||!ae(Nt(t)))}var n3=a3;function i3(e,t){return st(t)}function o3(e){return st(e)}function u3(e,t,r){return r.initiator}var bp=u3;function s3(e){return Hd(e)}var l3=s3;function c3(e,t){var r=!!Ue(t);if(!r)return!1;var a=le(e);return!(a&&a!=="link")}var d3=c3;function f3(e,t){return!es(e,t)}var p3=f3;function m3(e,t){return le(t)==="heading"}function h3(e,t){return It(t,{chromium:!0})!==null}var v3=h3;function g3(e){var t=e.getAttribute("title");return!!ae(t)}var b3=g3;function y3(e,t,r){var a,n;return!r.initiator&&!r.focusable&&((a=r.size)===null||a===void 0?void 0:a.width)*((n=r.size)===null||n===void 0?void 0:n.height)>1}var D3=y3;function w3(e){var t=e.getAttribute("id").trim(),r='*[id="'.concat(Oe(t),'"]'),a=Array.from(Xe(e).querySelectorAll(r));return!bi(e)&&a.every(function(n){return!Be(n)})}var _3=w3;function x3(e){return bi(e)}var E3=x3;function A3(e){var t=e.getAttribute("id").trim(),r='*[id="'.concat(Oe(t),'"]'),a=Array.from(Xe(e).querySelectorAll(r));return!bi(e)&&a.some(Be)}var F3=A3;function C3(e){return gi(e)}var R3=C3;function T3(e){if(gi(e)){var t=Ut(e);return t.length>=3&&t[0].length>=3&&t[1].length>=3&&t[2].length>=3}return!1}var S3=T3;function k3(e,t){var r=t.props,a=r.nodeName,n=r.type;if(a==="option"||a==="select"&&!e.options.length)return!1;var i=["hidden","range","color","checkbox","radio","image"];if(a==="input"&&i.includes(n)||Ha(t)||qn(t))return!1;var o=["input","select","textarea"];if(o.includes(a)){var u=E.getComputedStyle(e),s=parseInt(u.getPropertyValue("text-indent"),10);if(s){var l=e.getBoundingClientRect();if(l={top:l.top,bottom:l.bottom,left:l.left+s,right:l.right+s},!ru(l,e))return!1}return!0}var c=Ir(t,"label");if(a==="label"||c){var d=c||e,f=c?ce(c):t;if(d.htmlFor){var p=Xe(d),m=p.getElementById(d.htmlFor),h=m&&ce(m);if(h&&Ha(h))return!1}var v='input:not([type="hidden"],[type="image"],[type="button"],[type="submit"],[type="reset"]), select, textarea',g=ft(f,v)[0];if(g&&Ha(g))return!1}for(var b=[],w=t;w;){if(w.props.id){var D=$u(w).filter(function(I){return Ze(I.getAttribute("aria-labelledby")||"").includes(w.props.id)}).map(function(I){return ce(I)});b.push.apply(b,re(D))}w=w.parent}if(b.length>0&&b.every(Ha)||!P3(t)||!parseFloat(t.getComputedStylePropertyValue("font-size")))return!1;for(var _=M.createRange(),C=t.children,T=0;T<C.length;T++){var O=C[T];O.actualNode.nodeType===3&&ae(O.actualNode.nodeValue)!==""&&_.selectNodeContents(O.actualNode)}var $=Array.from(_.getClientRects()),k=Da(t);return $.some(function(I){var z=ru(I,e);if(!k.length)return z;var V=k.some(function(Q){return Do(I,Q.boundingClientRect)});return z&&V})}var O3=k3,M3={emoji:!0,nonBmp:!1,punctuations:!0};function P3(e){var t=Nt(e,!1,!0);return t===""||Ta(t,M3)===""?!1:e.children.some(function(r){return r.props.nodeName==="#text"&&!Uo(r)})}function I3(e,t,r){return bp(e,t,r)?!!e.querySelector("a[href]"):!0}var N3=I3;function B3(e,t){var r=t.attr("autocomplete");if(!r||ae(r)==="")return!1;var a=t.props.nodeName;if(["textarea","input","select"].includes(a)===!1)return!1;var n=t.attr("aria-readonly")||"false";if(t.hasAttr("readonly")||n.toLowerCase()==="true")return!1;var i=["submit","reset","button","hidden"];if(a==="input"&&i.includes(t.props.type))return!1;var o=t.attr("aria-disabled")||"false";if(t.hasAttr("disabled")||o.toLowerCase()==="true")return!1;var u=pe(t),s=qt(t.attr("tabindex"));if(s<0&&t.hasAttr("role")){var l=ve.ariaRoles[u];if(l===void 0||l.type!=="widget")return!1}return!(s<0&&t.actualNode&&!st(t)&&!Te(t))}var L3=B3;function q3(e,t){var r=pe(t);return!!Hu(r)}var j3=q3;function $3(e,t){var r=pe(t,{dpub:!0});return!!Gu(r)}var z3=$3;function yp(e){return e?e.getAttribute("aria-hidden")==="true"?!1:yp(Ge(e)):!0}function V3(e){return yp(Ge(e))}var H3=V3;function G3(e,t){var r=/^aria-/;return t.attrNames.some(function(a){return r.test(a)})}var U3=G3;function W3(e,t){return pe(t,{dpub:!0,fallback:!0})!==null}var Y3=W3;function K3(e,t){var r=/^aria-/,a=t.attrNames;if(a.length){for(var n=0,i=a.length;n<i;n++)if(r.test(a[n]))return!0}return!1}var X3=K3,Z3={"abstractrole-evaluate":lC,"accesskeys-after":RA,"accesskeys-evaluate":FA,"alt-space-value-evaluate":iA,"aria-allowed-attr-evaluate":oC,"aria-allowed-attr-matches":X3,"aria-allowed-role-evaluate":iC,"aria-allowed-role-matches":Y3,"aria-busy-evaluate":aC,"aria-conditional-attr-evaluate":rC,"aria-conditional-checkbox-attr-evaluate":mp,"aria-conditional-row-attr-evaluate":pp,"aria-errormessage-evaluate":JF,"aria-has-attr-matches":U3,"aria-hidden-body-evaluate":ZF,"aria-hidden-focus-matches":H3,"aria-label-evaluate":Bx,"aria-labelledby-evaluate":Ix,"aria-level-evaluate":KF,"aria-prohibited-attr-evaluate":UF,"aria-required-attr-evaluate":zF,"aria-required-children-evaluate":NF,"aria-required-children-matches":z3,"aria-required-parent-evaluate":IF,"aria-required-parent-matches":j3,"aria-roledescription-evaluate":OF,"aria-unsupported-attr-evaluate":SF,"aria-valid-attr-evaluate":RF,"aria-valid-attr-value-evaluate":AF,"attr-non-space-content-evaluate":$A,"autocomplete-appropriate-evaluate":GA,"autocomplete-matches":L3,"autocomplete-valid-evaluate":VA,"avoid-inline-spacing-evaluate":Mx,"braille-label-equivalent-evaluate":EF,"braille-roledescription-equivalent-evaluate":xF,"bypass-matches":N3,"caption-evaluate":y5,"caption-faked-evaluate":vx,"color-contrast-evaluate":JA,"color-contrast-matches":O3,"css-orientation-lock-evaluate":d5,"data-table-large-matches":S3,"data-table-matches":R3,"deprecatedrole-evaluate":_F,"dlitem-evaluate":S5,"doc-has-title-evaluate":kx,"duplicate-id-active-matches":F3,"duplicate-id-after":$x,"duplicate-id-aria-matches":E3,"duplicate-id-evaluate":qx,"duplicate-id-misc-matches":_3,"duplicate-img-label-evaluate":aA,"exists-evaluate":Tx,"explicit-evaluate":tA,"fallbackrole-evaluate":wF,"focusable-content-evaluate":EA,"focusable-disabled-evaluate":_A,"focusable-element-evaluate":DA,"focusable-modal-open-evaluate":bA,"focusable-no-name-evaluate":vA,"focusable-not-tabbable-evaluate":mA,"frame-focusable-content-evaluate":fA,"frame-focusable-content-matches":D3,"frame-tested-after":g5,"frame-tested-evaluate":h5,"frame-title-has-text-matches":b3,"has-alt-evaluate":Cx,"has-descendant-after":qA,"has-descendant-evaluate":BA,"has-global-aria-attribute-evaluate":bF,"has-implicit-chromium-role-matches":v3,"has-lang-evaluate":N5,"has-text-content-evaluate":IA,"has-widget-role-evaluate":vF,"heading-matches":m3,"heading-order-after":UE,"heading-order-evaluate":GE,"help-same-as-label-evaluate":Q5,"hidden-content-evaluate":E_,"hidden-explicit-label-evaluate":Z5,"html-namespace-matches":p3,"html5-scope-evaluate":mx,"identical-links-same-purpose-after":zE,"identical-links-same-purpose-evaluate":jE,"identical-links-same-purpose-matches":d3,"implicit-evaluate":K5,"inline-style-property-evaluate":Ex,"inserted-into-focus-order-matches":l3,"internal-link-present-evaluate":lE,"invalid-children-evaluate":F5,"invalidrole-evaluate":mF,"is-element-focusable-evaluate":fF,"is-initiator-matches":bp,"is-on-screen-evaluate":xx,"is-visible-matches":o3,"is-visible-on-screen-matches":i3,"label-content-name-mismatch-evaluate":W5,"label-content-name-mismatch-matches":n3,"label-matches":r3,"landmark-has-body-context-matches":e3,"landmark-is-top-level-evaluate":dA,"landmark-is-unique-after":j5,"landmark-is-unique-evaluate":L5,"landmark-unique-matches":ZC,"layout-table-matches":XC,"link-in-text-block-evaluate":ZA,"link-in-text-block-matches":YC,"link-in-text-block-style-evaluate":WA,"listitem-evaluate":A5,"matches-definition-evaluate":PA,"meta-refresh-evaluate":uE,"meta-viewport-scale-evaluate":l5,"multiple-label-evaluate":H5,"nested-interactive-matches":UC,"no-autoplay-audio-evaluate":p5,"no-autoplay-audio-matches":HC,"no-empty-role-matches":zC,"no-explicit-name-required-matches":gp,"no-focusable-content-evaluate":sA,"no-implicit-explicit-label-evaluate":cF,"no-naming-method-matches":jC,"no-negative-tabindex-matches":LC,"no-role-matches":NC,"non-empty-if-present-evaluate":wx,"not-html-matches":PC,"object-is-loaded-matches":kC,"only-dlitems-evaluate":E5,"only-listitems-evaluate":x5,"p-as-heading-evaluate":nE,"p-as-heading-matches":TC,"page-no-duplicate-after":OA,"page-no-duplicate-evaluate":SA,"presentation-role-conflict-matches":CC,"presentational-role-evaluate":yx,"region-after":eE,"region-evaluate":Kx,"same-caption-summary-evaluate":cx,"scope-value-evaluate":lx,"scrollable-region-focusable-matches":EC,"skip-link-evaluate":Wx,"skip-link-matches":xC,"structured-dlitems-evaluate":w5,"summary-interactive-matches":DC,"svg-namespace-matches":es,"svg-non-empty-title-evaluate":bx,"tabindex-evaluate":uA,"table-or-grid-role-matches":yC,"target-offset-evaluate":o5,"target-size-evaluate":JE,"td-has-header-evaluate":ux,"td-headers-attr-evaluate":ix,"th-has-data-cells-evaluate":nx,"title-only-evaluate":z5,"unique-frame-title-after":Gx,"unique-frame-title-evaluate":Vx,"unsupportedrole-evaluate":sF,"valid-lang-evaluate":P5,"valid-scrollable-semantics-evaluate":oF,"widget-not-inline-matches":hC,"window-is-top-matches":pC,"xml-lang-mismatch-evaluate":O5,"xml-lang-mismatch-matches":dC},Ei=Z3;function J3(e){this.id=e.id,this.data=null,this.relatedNodes=[],this.result=null}var ts=J3;function rs(e){if(typeof e=="string"){if(Ei[e])return Ei[e];if(/^\s*function[\s\w]*\(/.test(e))return new Function("return "+e+";")();throw new ReferenceError("Function ID does not exist in the metadata-function-map: ".concat(e))}return e}function Dp(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return(Array.isArray(e)||P(e)!=="object")&&(e={value:e}),e}function Wr(e){e&&(this.id=e.id,this.configure(e))}Wr.prototype.enabled=!0,Wr.prototype.run=function(t,r,a,n,i){r=r||{};var o=r.hasOwnProperty("enabled")?r.enabled:this.enabled,u=this.getOptions(r.options);if(o){var s=new ts(this),l=au(s,r,n,i),c;try{c=this.evaluate.call(l,t.actualNode,u,t,a)}catch(d){t&&t.actualNode&&(d.errorNode=Dt.toSpec(t)),i(d);return}l.isAsync||(s.result=c,n(s))}else n(null)},Wr.prototype.runSync=function(t,r,a){r=r||{};var n=r,i=n.enabled,o=i===void 0?this.enabled:i;if(!o)return null;var u=this.getOptions(r.options),s=new ts(this),l=au(s);l.async=function(){throw new Error("Cannot run async check while in a synchronous run")};var c;try{c=this.evaluate.call(l,t.actualNode,u,t,a)}catch(d){throw t&&t.actualNode&&(d.errorNode=Dt.toSpec(t)),d}return s.result=c,s},Wr.prototype.configure=function(t){var r=this;(!t.evaluate||Ei[t.evaluate])&&(this._internalCheck=!0),t.hasOwnProperty("enabled")&&(this.enabled=t.enabled),t.hasOwnProperty("options")&&(this._internalCheck?this.options=Dp(t.options):this.options=t.options),["evaluate","after"].filter(function(a){return t.hasOwnProperty(a)}).forEach(function(a){return r[a]=rs(t[a])})},Wr.prototype.getOptions=function(t){return this._internalCheck?gu(this.options,Dp(t||{})):t||this.options};var wp=Wr;function Q3(e){this.id=e.id,this.result=se.NA,this.pageLevel=e.pageLevel,this.impact=null,this.nodes=[]}var Ai=Q3;function ot(e,t){this._audit=t,this.id=e.id,this.selector=e.selector||"*",e.impact&&(he(se.impact.includes(e.impact),"Impact ".concat(e.impact," is not a valid impact")),this.impact=e.impact),this.excludeHidden=typeof e.excludeHidden=="boolean"?e.excludeHidden:!0,this.enabled=typeof e.enabled=="boolean"?e.enabled:!0,this.pageLevel=typeof e.pageLevel=="boolean"?e.pageLevel:!1,this.reviewOnFail=typeof e.reviewOnFail=="boolean"?e.reviewOnFail:!1,this.any=e.any||[],this.all=e.all||[],this.none=e.none||[],this.tags=e.tags||[],this.preload=!!e.preload,this.actIds=e.actIds,e.matches&&(this.matches=rs(e.matches))}ot.prototype.matches=function(){return!0},ot.prototype.gather=function(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},a="mark_gather_start_"+this.id,n="mark_gather_end_"+this.id,i="mark_isVisibleToScreenReaders_start_"+this.id,o="mark_isVisibleToScreenReaders_end_"+this.id;r.performanceTimer&&ge.mark(a);var u=Iu(this.selector,t);return this.excludeHidden&&(r.performanceTimer&&ge.mark(i),u=u.filter(function(s){return Te(s)}),r.performanceTimer&&(ge.mark(o),ge.measure("rule_"+this.id+"#gather_axe.utils.isVisibleToScreenReaders",i,o))),r.performanceTimer&&(ge.mark(n),ge.measure("rule_"+this.id+"#gather",a,n)),u},ot.prototype.runChecks=function(t,r,a,n,i,o){var u=this,s=Bt();this[t].forEach(function(l){var c=u._audit.checks[l.id||l],d=ui(c,u.id,a);s.defer(function(f,p){c.run(r,d,n,f,function(m){p(new pi({ruleId:u.id,method:"".concat(c.id,"#evaluate"),errorNode:new yt(r),error:m}))})})}),s.then(function(l){l=l.filter(function(c){return c}),i({type:t,results:l})}).catch(o)},ot.prototype.runChecksSync=function(t,r,a,n){var i=this,o=[];return this[t].forEach(function(u){var s=i._audit.checks[u.id||u],l=ui(s,i.id,a);o.push(s.runSync(r,l,n))}),o=o.filter(function(u){return u}),{type:t,results:o}},ot.prototype.run=function(t){var r=this,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0,i=arguments.length>3?arguments[3]:void 0;a.performanceTimer&&this._trackPerformance();var o=Bt(),u=new Ai(this),s;try{s=this.gatherAndMatchNodes(t,a)}catch(l){i(l);return}a.performanceTimer&&this._logGatherPerformance(s),s.forEach(function(l){o.defer(function(c,d){var f=Bt();["any","all","none"].forEach(function(p){f.defer(function(m,h){r.runChecks(p,l,a,t,m,h)})}),f.then(function(p){var m=_p(p);m&&(m.node=new yt(l),u.nodes.push(m),r.reviewOnFail&&(["any","all"].forEach(function(h){m[h].forEach(function(v){v.result===!1&&(v.result=void 0)})}),m.none.forEach(function(h){h.result===!0&&(h.result=void 0)}))),c()}).catch(function(p){return d(p)})})}),o.then(function(){a.performanceTimer&&r._logRulePerformance(),setTimeout(function(){n(u)},0)}).catch(function(l){a.performanceTimer&&r._logRulePerformance(),i(l)})},ot.prototype.runSync=function(t){var r=this,a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};a.performanceTimer&&this._trackPerformance();var n=new Ai(this),i=this.gatherAndMatchNodes(t,a);return a.performanceTimer&&this._logGatherPerformance(i),i.forEach(function(o){var u=[];["any","all","none"].forEach(function(l){u.push(r.runChecksSync(l,o,a,t))});var s=_p(u);s&&(s.node=o.actualNode?new yt(o):null,n.nodes.push(s),r.reviewOnFail&&(["any","all"].forEach(function(l){s[l].forEach(function(c){c.result===!1&&(c.result=void 0)})}),s.none.forEach(function(l){l.result===!0&&(l.result=void 0)})))}),a.performanceTimer&&this._logRulePerformance(),n},ot.prototype._trackPerformance=function(){this._markStart="mark_rule_start_"+this.id,this._markEnd="mark_rule_end_"+this.id,this._markChecksStart="mark_runchecks_start_"+this.id,this._markChecksEnd="mark_runchecks_end_"+this.id},ot.prototype._logGatherPerformance=function(t){br("gather for ".concat(this.id," (").concat(t.length," nodes): ").concat(ge.timeElapsed(),"ms")),ge.mark(this._markChecksStart)},ot.prototype._logRulePerformance=function(){ge.mark(this._markChecksEnd),ge.mark(this._markEnd),ge.measure("runchecks_"+this.id,this._markChecksStart,this._markChecksEnd),ge.measure("rule_"+this.id,this._markStart,this._markEnd)};function _p(e){if(e.length){var t=!1,r={};return e.forEach(function(a){var n=a.results.filter(function(i){return i});r[a.type]=n,n.length&&(t=!0)}),t?r:null}}ot.prototype.gatherAndMatchNodes=function(t,r){var a=this,n="mark_matches_start_"+this.id,i="mark_matches_end_"+this.id,o=this.gather(t,r);return r.performanceTimer&&ge.mark(n),o=o.filter(function(u){try{return a.matches(u.actualNode,u,t)}catch(s){throw new pi({ruleId:a.id,method:"#matches",errorNode:new yt(u),error:s})}}),r.performanceTimer&&(ge.mark(i),ge.measure("rule_"+this.id+"#matches",n,i)),o};function eR(e){return ti(e).map(function(t){var r=e._audit.checks[t.id||t];return r&&typeof r.after=="function"?r:null}).filter(Boolean)}function tR(e,t){var r=[];return e.forEach(function(a){var n=ti(a);n.forEach(function(i){i.id===t&&(i.node=a.node,r.push(i))})}),r}function rR(e){return e.filter(function(t){return t.filtered!==!0})}function aR(e){var t=["any","all","none"],r=e.nodes.filter(function(a){var n=0;return t.forEach(function(i){a[i]=rR(a[i]),n+=a[i].length}),n>0});return e.pageLevel&&r.length&&(r=[r.reduce(function(a,n){if(a)return t.forEach(function(i){a[i].push.apply(a[i],n[i])}),a})]),r}ot.prototype.after=function(t,r){var a=this,n=eR(this);return n.forEach(function(i){var o=tR(t.nodes,i.id),u=ui(i,a.id,r),s;try{s=i.after(o,u.options)}catch(c){var l;throw new pi({ruleId:a.id,method:"".concat(i.id,"#after"),errorNode:(l=t.nodes)===null||l===void 0||(l=l[0])===null||l===void 0?void 0:l.node,error:c})}a.reviewOnFail&&s.forEach(function(c){var d=(a.any.includes(c.id)||a.all.includes(c.id))&&c.result===!1,f=a.none.includes(c.id)&&c.result===!0;(d||f)&&(c.result=void 0)}),o.forEach(function(c){delete c.node,s.indexOf(c)===-1&&(c.filtered=!0)})}),t.nodes=aR(t),t},ot.prototype.configure=function(t){t.hasOwnProperty("selector")&&(this.selector=t.selector),t.hasOwnProperty("excludeHidden")&&(this.excludeHidden=typeof t.excludeHidden=="boolean"?t.excludeHidden:!0),t.hasOwnProperty("enabled")&&(this.enabled=typeof t.enabled=="boolean"?t.enabled:!0),t.hasOwnProperty("pageLevel")&&(this.pageLevel=typeof t.pageLevel=="boolean"?t.pageLevel:!1),t.hasOwnProperty("reviewOnFail")&&(this.reviewOnFail=typeof t.reviewOnFail=="boolean"?t.reviewOnFail:!1),t.hasOwnProperty("any")&&(this.any=t.any),t.hasOwnProperty("all")&&(this.all=t.all),t.hasOwnProperty("none")&&(this.none=t.none),t.hasOwnProperty("tags")&&(this.tags=t.tags),t.hasOwnProperty("actIds")&&(this.actIds=t.actIds),t.hasOwnProperty("matches")&&(this.matches=rs(t.matches)),t.impact&&(he(se.impact.includes(t.impact),"Impact ".concat(t.impact," is not a valid impact")),this.impact=t.impact)};var Yr=/\{\{.+?\}\}/g,nR=(function(){function e(t){_t(this,e),this.lang="en",this.defaultConfig=t,this.standards=ve,this._init(),this._defaultLocale=null}return xt(e,[{key:"_setDefaultLocale",value:function(){if(!this._defaultLocale){for(var r={checks:{},rules:{},failureSummaries:{},incompleteFallbackMessage:"",lang:this.lang},a=Object.keys(this.data.checks),n=0;n<a.length;n++){var i=a[n],o=this.data.checks[i],u=o.messages,s=u.pass,l=u.fail,c=u.incomplete;r.checks[i]={pass:s,fail:l,incomplete:c}}for(var d=Object.keys(this.data.rules),f=0;f<d.length;f++){var p=d[f],m=this.data.rules[p],h=m.description,v=m.help;r.rules[p]={description:h,help:v}}for(var g=Object.keys(this.data.failureSummaries),b=0;b<g.length;b++){var w=g[b],D=this.data.failureSummaries[w],_=D.failureMessage;r.failureSummaries[w]={failureMessage:_}}r.incompleteFallbackMessage=this.data.incompleteFallbackMessage,this._defaultLocale=r}}},{key:"_resetLocale",value:function(){var r=this._defaultLocale;r&&this.applyLocale(r)}},{key:"_applyCheckLocale",value:function(r){for(var a=Object.keys(r),n=0;n<a.length;n++){var i=a[n];if(!this.data.checks[i])throw new Error('Locale provided for unknown check: "'.concat(i,'"'));this.data.checks[i]=oR(this.data.checks[i],r[i])}}},{key:"_applyRuleLocale",value:function(r){for(var a=Object.keys(r),n=0;n<a.length;n++){var i=a[n];if(!this.data.rules[i])throw new Error('Locale provided for unknown rule: "'.concat(i,'"'));this.data.rules[i]=uR(this.data.rules[i],r[i])}}},{key:"_applyFailureSummaries",value:function(r){for(var a=Object.keys(r),n=0;n<a.length;n++){var i=a[n];if(!this.data.failureSummaries[i])throw new Error('Locale provided for unknown failureMessage: "'.concat(i,'"'));this.data.failureSummaries[i]=sR(this.data.failureSummaries[i],r[i])}}},{key:"applyLocale",value:function(r){this._setDefaultLocale(),r.checks&&this._applyCheckLocale(r.checks),r.rules&&this._applyRuleLocale(r.rules),r.failureSummaries&&this._applyFailureSummaries(r.failureSummaries,"failureSummaries"),r.incompleteFallbackMessage&&(this.data.incompleteFallbackMessage=lR(this.data.incompleteFallbackMessage,r.incompleteFallbackMessage)),r.lang&&(this.lang=r.lang)}},{key:"setAllowedOrigins",value:function(r){var a=Ep();this.allowedOrigins=[];var n=xe(r),i;try{for(n.s();!(i=n.n()).done;){var o=i.value;if(o===se.allOrigins){this.allowedOrigins=["*"];return}else o!==se.sameOrigin?this.allowedOrigins.push(o):a&&this.allowedOrigins.push(a)}}catch(u){n.e(u)}finally{n.f()}}},{key:"_init",value:function(){var r=iR(this.defaultConfig);this.lang=r.lang||"en",this.reporter=r.reporter,this.commands={},this.rules=[],this.checks={},this.brand="axe",this.application="axeAPI",this.tagExclude=["experimental","deprecated"],this.noHtml=r.noHtml,this.allowedOrigins=r.allowedOrigins,Ap(r.rules,this,"addRule"),Ap(r.checks,this,"addCheck"),this.data={},this.data.checks=r.data&&r.data.checks||{},this.data.rules=r.data&&r.data.rules||{},this.data.failureSummaries=r.data&&r.data.failureSummaries||{},this.data.incompleteFallbackMessage=r.data&&r.data.incompleteFallbackMessage||"",this._constructHelpUrls()}},{key:"registerCommand",value:function(r){this.commands[r.id]=r.callback}},{key:"addRule",value:function(r){r.metadata&&(this.data.rules[r.id]=r.metadata);var a=this.getRule(r.id);a?a.configure(r):this.rules.push(new ot(r,this))}},{key:"addCheck",value:function(r){var a=r.metadata;P(a)==="object"&&(this.data.checks[r.id]=a,P(a.messages)==="object"&&Object.keys(a.messages).filter(function(n){return a.messages.hasOwnProperty(n)&&typeof a.messages[n]=="string"}).forEach(function(n){a.messages[n].indexOf("function")===0&&(a.messages[n]=new Function("return "+a.messages[n]+";")())})),this.checks[r.id]?this.checks[r.id].configure(r):this.checks[r.id]=new wp(r)}},{key:"run",value:function(r,a,n,i){this.normalizeOptions(a),yt.setRunOptions(a),x._selectCache=[];var o=cR(this.rules,r,a),u=o.now,s=o.later,l=Bt();u.forEach(function(f){l.defer(Fp(f,r,a))});var c=Bt();s.length&&c.defer(function(f){X1(a).then(function(p){return f(p)}).catch(function(p){console.warn("Couldn't load preload assets: ",p),f(void 0)})});var d=Bt();d.defer(l),d.defer(c),d.then(function(f){var p=f.pop();if(p&&p.length){var m=p[0];m&&(r=de({},r,m))}var h=f[0];if(!s.length){x._selectCache=void 0,n(h.filter(function(g){return!!g}));return}var v=Bt();s.forEach(function(g){var b=Fp(g,r,a);v.defer(b)}),v.then(function(g){x._selectCache=void 0,n(h.concat(g).filter(function(b){return!!b}))}).catch(i)}).catch(i)}},{key:"after",value:function(r,a){var n=this.rules;return r.map(function(i){if(i.error)return i;var o=Ba(n,"id",i.id);if(!o)throw new Error("Result for unknown rule. You may be running mismatch axe-core versions");try{return o.after(i,a)}catch(u){if(a.debug)throw u;return Cp(o,u)}})}},{key:"getRule",value:function(r){return this.rules.find(function(a){return a.id===r})}},{key:"normalizeOptions",value:function(r){var a=this,n=[],i=[];if(a.rules.forEach(function(c){i.push(c.id),c.tags.forEach(function(d){n.includes(d)||n.push(d)})}),["object","string"].includes(P(r.runOnly))){if(typeof r.runOnly=="string"&&(r.runOnly=[r.runOnly]),Array.isArray(r.runOnly)){var o=r.runOnly.find(function(c){return n.includes(c)}),u=r.runOnly.find(function(c){return i.includes(c)});if(o&&u)throw new Error("runOnly cannot be both rules and tags");u?r.runOnly={type:"rule",values:r.runOnly}:r.runOnly={type:"tag",values:r.runOnly}}var s=r.runOnly;if(s.value&&!s.values&&(s.values=s.value,delete s.value),!Array.isArray(s.values)||s.values.length===0)throw new Error("runOnly.values must be a non-empty array");if(["rule","rules"].includes(s.type))s.type="rule",s.values.forEach(function(c){if(!i.includes(c))throw new Error("unknown rule `"+c+"` in options.runOnly")});else if(["tag","tags",void 0].includes(s.type)){s.type="tag";var l=s.values.filter(function(c){return!n.includes(c)&&!/wcag2[1-3]a{1,3}/.test(c)});l.length!==0&&x.log("Could not find tags `"+l.join("`, `")+"`")}else throw new Error("Unknown runOnly type '".concat(s.type,"'"))}return P(r.rules)==="object"&&Object.keys(r.rules).forEach(function(c){if(!i.includes(c))throw new Error("unknown rule `"+c+"` in options.rules")}),r}},{key:"setBranding",value:function(r){var a={brand:this.brand,application:this.application};typeof r=="string"&&(this.application=r),r&&r.hasOwnProperty("brand")&&r.brand&&typeof r.brand=="string"&&(this.brand=r.brand),r&&r.hasOwnProperty("application")&&r.application&&typeof r.application=="string"&&(this.application=r.application),this._constructHelpUrls(a)}},{key:"_constructHelpUrls",value:function(){var r=this,a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,n=(x.version.match(/^[1-9][0-9]*\.[0-9]+/)||["x.y"])[0];this.rules.forEach(function(i){r.data.rules[i.id]||(r.data.rules[i.id]={});var o=r.data.rules[i.id];(typeof o.helpUrl!="string"||a&&o.helpUrl===Rp(a,i.id,n))&&(o.helpUrl=Rp(r,i.id,n))})}},{key:"resetRulesAndChecks",value:function(){this._init(),this._resetLocale()}}])})(),xp=nR;function Ep(){if(E.origin&&E.origin!=="null")return E.origin;if(E.location&&E.location.origin&&E.location.origin!=="null")return E.location.origin}function iR(e){var t;if(e?(t=Wt(e),t.commons=e.commons):t={},t.reporter=t.reporter||null,t.noHtml=t.noHtml||!1,!t.allowedOrigins){var r=Ep();t.allowedOrigins=r?[r]:[]}return t.rules=t.rules||[],t.checks=t.checks||[],t.data=de({checks:{},rules:{}},t.data),t}function Ap(e,t,r){var a,n;for(a=0,n=e.length;a<n;a++)t[r](e[a])}var oR=function(t,r){var a=r.pass,n=r.fail;return typeof a=="string"&&Yr.test(a)&&(a=er.default.compile(a)),typeof n=="string"&&Yr.test(n)&&(n=er.default.compile(n)),de({},t,{messages:{pass:a||t.messages.pass,fail:n||t.messages.fail,incomplete:P(t.messages.incomplete)==="object"?de({},t.messages.incomplete,r.incomplete):r.incomplete}})},uR=function(t,r){var a=r.help,n=r.description;return typeof a=="string"&&Yr.test(a)&&(a=er.default.compile(a)),typeof n=="string"&&Yr.test(n)&&(n=er.default.compile(n)),de({},t,{help:a||t.help,description:n||t.description})},sR=function(t,r){var a=r.failureMessage;return typeof a=="string"&&Yr.test(a)&&(a=er.default.compile(a)),de({},t,{failureMessage:a||t.failureMessage})},lR=function(t,r){return typeof r=="string"&&Yr.test(r)&&(r=er.default.compile(r)),r||t};function cR(e,t,r){var a={now:[],later:[]},n=e.reduce(function(i,o){return tf(o,t,r)?o.preload?(i.later.push(o),i):(i.now.push(o),i):i},a);return n}function Fp(e,t,r){return r.performanceTimer&&ge.mark("mark_rule_start_"+e.id),function(a,n){e.run(t,r,function(i){return a(i)},function(i){r.debug?n(i):a(Cp(e,i))})}}function Cp(e,t){var r=t.errorNode,a=fi(t),n=[{id:"error-occurred",result:void 0,data:a,relatedNodes:[]}],i=r||new yt(M.documentElement);return Object.assign(new Ai(e),{error:a,result:se.CANTTELL,nodes:[{any:[],all:[],none:n,node:i}]})}function Rp(e,t,r){var a=e.brand,n=e.application,i=e.lang;return se.helpUrlBase+a+"/"+(r||x.version.substring(0,x.version.lastIndexOf(".")))+"/"+t+"?application="+encodeURIComponent(n)+(i&&i!=="en"?"&lang="+encodeURIComponent(i):"")}function Tp(e){var t=E&&"Node"in E&&"NodeList"in E,r=!!M;if(!(t&&r)){if(!e||!e.ownerDocument)throw new Error('Required "window" or "document" globals not defined and cannot be deduced from the context. Either set the globals before running or pass in a valid Element.');r||(ue.set("globalDocumentSet",!0),M=e.ownerDocument),t||(ue.set("globalWindowSet",!0),E=M.defaultView)}}function dR(){ue.get("globalDocumentSet")&&(ue.set("globalDocumentSet",!1),M=null),ue.get("globalWindowSet")&&(ue.set("globalWindowSet",!1),E=null)}function fR(){dR(),x._memoizedFns.forEach(function(e){return e.clear()}),ue.clear(),x._tree=void 0,x._selectorData=void 0,x._selectCache=void 0}var dr=fR;function Sp(e,t,r,a){try{e=new si(e),x._tree=e.flatTree,x._selectorData=Tn(e.flatTree)}catch(o){return dr(),a(o)}var n=Bt(),i=x._audit;t.performanceTimer&&ge.auditStart(),e.frames.length&&t.iframes!==!1&&n.defer(function(o,u){E1(e,t,"rules",null,o,u)}),n.defer(function(o,u){i.run(e,t,o,u)}),n.then(function(o){try{t.performanceTimer&&ge.auditEnd();var u=ri(o.map(function(s){return{results:s}}));e.initiator&&(t.performanceTimer&&ge.mark("auditAfterStart"),u=i.after(u,t),t.performanceTimer&&(ge.mark("auditAfterEnd"),ge.measure("audit.after","auditAfterStart","auditAfterEnd"),ge.logMeasures("audit.after")),u.forEach(di),u=u.map(oa));try{r(u,dr)}catch(s){dr(),br(s)}}catch(s){dr(),a(s)}}).catch(function(o){dr(),a(o)})}function pR(e){x._audit=new xp(e)}function mR(e,t,r){var a=r,n=function(s){s instanceof Error||(s=new Error(s)),r(s)},i=e&&e.context||{};i.hasOwnProperty("include")&&!i.include.length&&(i.include=[M]);var o=e&&e.options||{};switch(e.command){case"rules":return Sp(i,o,function(u,s){u=Dt.mapRawResults(u),a(u),s()},n);case"cleanup-plugin":return df(a,n);default:if(x._audit&&x._audit.commands&&x._audit.commands[e.command])return x._audit.commands[e.command](e,r)}}E.top!==E&&(kt.subscribe("axe.start",mR),kt.subscribe("axe.ping",function(e,t,r){r({axe:!0})}));function Ua(e){this._run=e.run,this._collect=e.collect,this._registry={},e.commands.forEach(function(t){x._audit.registerCommand(t)})}Ua.prototype.run=function(){return this._run.apply(this,arguments)},Ua.prototype.collect=function(){return this._collect.apply(this,arguments)},Ua.prototype.cleanup=function(t){var r=x.utils.queue(),a=this;Object.keys(this._registry).forEach(function(n){r.defer(function(i){a._registry[n].cleanup(i)})}),r.then(t)},Ua.prototype.add=function(t){this._registry[t.id]=t};function hR(e){x.plugins[e.id]=new Ua(e)}var vR=hR;function gR(){var e=x._audit;if(!e)throw new Error("No audit configured");e.resetRulesAndChecks(),Jy()}var bR=gR;function yR(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};r.reporter=r.reporter||x._audit.reporter||"v1",x._selectorData={},t instanceof He||(t=new cf(t));var a=N1(e);if(!a)throw new Error("unknown rule `"+e+"`");a=Object.create(a,{excludeHidden:{value:!1}});var n={initiator:!0,include:[t],exclude:[],frames:[],page:!1,focusable:!0,size:{},flatTree:[]},i=a.runSync(n,r);di(i),oa(i);var o=Qs([i]);return o.violations.forEach(function(u){return u.nodes.forEach(function(s){s.failureSummary=xu(s)})}),de({},lr(),o,{toolOptions:r})}function kp(e){var t,r,a,n=H(e,3),i=n[0],o=n[1],u=n[2],s=new TypeError("axe.run arguments are invalid");if(!j1(i)){if(u!==void 0)throw s;u=o,o=i,i=M}if(P(o)!=="object"){if(u!==void 0)throw s;u=o,o={}}if(typeof u!="function"&&u!==void 0)throw s;return o=Wt(o),o.reporter=(t=(r=o.reporter)!==null&&r!==void 0?r:(a=x._audit)===null||a===void 0?void 0:a.reporter)!==null&&t!==void 0?t:"v1",{context:i,options:o,callback:u}}var as=function(){};function DR(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];Tp(t[0]);var a=kp(t),n=a.context,i=a.options,o=a.callback,u=o===void 0?as:o,s=wR(u),l=s.thenable,c=s.resolve,d=s.reject;try{he(x._audit,"No audit configured"),he(!x._running,"Axe is already running. Use `await axe.run()` to wait for the previous run to finish before starting a new run.")}catch(m){return xR(m,u)}x._running=!0,i.performanceTimer&&ge.start();function f(m,h){var v=function(w){i.performanceTimer&&(ge.mark("reporterEnd"),ge.measure("reporter","reporterStart","reporterEnd"),ge.logMeasures("reporter"),ge.end()),x._running=!1,h();try{c(w)}catch(D){x.log(D)}},g=function(w){x._running=!1,h();try{d(w)}catch(D){x.log(D)}};try{i.performanceTimer&&ge.mark("reporterStart"),_R(m,i,v,g)}catch(b){g(b)}}function p(m){i.performanceTimer&&ge.end(),x._running=!1,u(m),d(m)}return x._runRules(n,i,f,p),l}function wR(e){var t,r,a;return typeof Promise=="function"&&e===as?t=new Promise(function(n,i){r=i,a=n}):(a=function(i){return e(null,i)},r=function(i){return e(i)}),{thenable:t,reject:r,resolve:a}}function _R(e,t,r,a){var n=Lu(t.reporter),i=n(e,t,r,a);i!==void 0&&r(i)}function xR(e,t){if(typeof t=="function"&&t!==as){t(e.message);return}throw e}function ER(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var a=kp(t),n=a.options,i=a.context;he(x._audit,"Axe is not configured. Audit is missing."),he(!x._running,"Axe is already running. Use `await axe.run()` to wait for the previous run to finish before starting a new run.");var o=new si(i,x._tree);return x._tree=o.flatTree,x._selectorData=Tn(o.flatTree),x._running=!0,n.elementRef=!1,new Promise(function(u,s){x._audit.run(o,n,u,s)}).then(function(u){u=Dt.mapRawResults(u);var s=o.frames.map(function(c){var d=c.node;return Dt.toSpec(d)}),l;return o.initiator&&(l=lr()),x._running=!1,dr(),{results:u,frames:s,environmentData:l}}).catch(function(u){return x._running=!1,dr(),Promise.reject(u)})}function AR(e){var t,r,a,n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};n=Wt(n);var i=e.find(function(s){return s.environmentData})||{},o=i.environmentData;x._audit.normalizeOptions(n),n.reporter=(t=(r=n.reporter)!==null&&r!==void 0?r:(a=x._audit)===null||a===void 0?void 0:a.reporter)!==null&&t!==void 0?t:"v1",FR(e);var u=ri(e);return u=x._audit.after(u,n),u.forEach(di),u=u.map(oa),RR(u,de({environmentData:o},n))}function FR(e){var t=[],r=xe(e),a;try{for(r.s();!(a=r.n()).done;){var n=a.value,i=t.shift();if(n){n.frameSpec=i??null;var o=CR(n);t.unshift.apply(t,re(o))}}}catch(u){r.e(u)}finally{r.f()}}function CR(e){var t=e.frames,r=e.frameSpec;return r?t.map(function(a){return Dt.mergeSpecs(a,r)}):t}function RR(e,t){return new Promise(function(r,a){var n=Lu(t.reporter);n(e,t,r,a)})}function TR(e){if(x._tree)throw new Error("Axe is already setup. Call `axe.teardown()` before calling `axe.setup` again.");return e&&P(e.documentElement)==="object"&&P(e.defaultView)==="object"&&(e=e.documentElement),Tp(e),x._tree=wu(e),x._selectorData=Tn(x._tree),x._tree[0]}var SR=TR,kR=function(t,r,a){console.warn('"na" reporter will be deprecated in axe v4.0. Use the "v2" reporter instead.'),typeof r=="function"&&(a=r,r={});var n=r,i=n.environmentData,o=qe(n,Kp);a(de({},lr(i),{toolOptions:o},La(t,r)))},OR=kR,MR=function(t,r,a){typeof r=="function"&&(a=r,r={});var n=r,i=n.environmentData,o=qe(n,Xp);r.resultTypes=["violations"];var u=La(t,r),s=u.violations;a(de({},lr(i),{toolOptions:o,violations:s}))},PR=MR,IR=function(t,r,a){if(typeof r=="function"&&(a=r,r={}),!t||!Array.isArray(t))return a(t);var n=t.map(function(i){for(var o=de({},i),u=["passes","violations","incomplete","inapplicable"],s=0,l=u;s<l.length;s++){var c=l[s];o[c]=Dt.mapRawNodeResults(o[c])}return o});a(n)},Op=IR,NR=function(t,r,a){typeof r=="function"&&(a=r,r={});var n=r,i=n.environmentData,o=qe(n,Zp);Op(t,o,function(u){var s=lr(i);a({raw:u,env:s})})},BR=NR,LR=function(t,r,a){typeof r=="function"&&(a=r,r={});var n=r,i=n.environmentData,o=qe(n,Jp),u=La(t,r),s=function(c){c.nodes.forEach(function(d){d.failureSummary=xu(d)})};u.incomplete.forEach(s),u.violations.forEach(s),a(de({},lr(i),{toolOptions:o},u))},qR=LR,jR=function(t,r,a){typeof r=="function"&&(a=r,r={});var n=r,i=n.environmentData,o=qe(n,Qp),u=La(t,r);a(de({},lr(i),{toolOptions:o},u))},$R=jR,zR={base:{Audit:xp,CheckResult:ts,Check:wp,Context:si,RuleResult:Ai,Rule:ot,metadataFunctionMap:Ei},public:{reporters:ja},helpers:{failureSummary:xu,incompleteFallbackMessage:Eu,processAggregate:La},utils:{setDefaultFrameMessenger:b1,cacheNodeSelectors:R1,getNodesMatchingExpression:F1,convertSelector:Xn},commons:{dom:{nativelyHidden:_c,displayHidden:xc,visibilityHidden:Ec,contentVisibiltyHidden:Ac,ariaHidden:Fc,opacityHidden:Cc,scrollHidden:Rc,overflowHidden:Tc,clipHidden:Sc,areaHidden:wo,detailsHidden:kc}}},VR=zR;x._thisWillBeDeletedDoNotUse=VR,x.constants=se,x.log=br,x.AbstractVirtualNode=He,x.SerialVirtualNode=cf,x.VirtualNode=Kn,x._cache=ue,x.imports=al,x.cleanup=df,x.configure=y_,x.frameMessenger=D_,x.getRules=__,x._load=pR,x.plugins={},x.registerPlugin=vR,x.hasReporter=pf,x.getReporter=Lu,x.addReporter=g_,x.reset=bR,x._runRules=Sp,x.runVirtualRule=yR,x.run=DR,x.setup=SR,x.teardown=dr,x.runPartial=ER,x.finishRun=AR,x.commons=If,x.utils=Gi,x.addReporter("na",OR),x.addReporter("no-passes",PR),x.addReporter("rawEnv",BR),x.addReporter("raw",Op),x.addReporter("v1",qR),x.addReporter("v2",$R,!0)})(),x._load({lang:"en",data:{rules:{accesskeys:{description:"Ensure every accesskey attribute value is unique",help:"accesskey attribute value should be unique"},"area-alt":{description:"Ensure <area> elements of image maps have alternative text",help:"Active <area> elements must have alternative text"},"aria-allowed-attr":{description:"Ensure an element's role supports its ARIA attributes",help:"Elements must only use supported ARIA attributes"},"aria-allowed-role":{description:"Ensure role attribute has an appropriate value for the element",help:"ARIA role should be appropriate for the element"},"aria-braille-equivalent":{description:"Ensure aria-braillelabel and aria-brailleroledescription have a non-braille equivalent",help:"aria-braille attributes must have a non-braille equivalent"},"aria-command-name":{description:"Ensure every ARIA button, link and menuitem has an accessible name",help:"ARIA commands must have an accessible name"},"aria-conditional-attr":{description:"Ensure ARIA attributes are used as described in the specification of the element's role",help:"ARIA attributes must be used as specified for the element's role"},"aria-deprecated-role":{description:"Ensure elements do not use deprecated roles",help:"Deprecated ARIA roles must not be used"},"aria-dialog-name":{description:"Ensure every ARIA dialog and alertdialog node has an accessible name",help:"ARIA dialog and alertdialog nodes should have an accessible name"},"aria-hidden-body":{description:'Ensure aria-hidden="true" is not present on the document body.',help:'aria-hidden="true" must not be present on the document body'},"aria-hidden-focus":{description:"Ensure aria-hidden elements are not focusable nor contain focusable elements",help:"ARIA hidden element must not be focusable or contain focusable elements"},"aria-input-field-name":{description:"Ensure every ARIA input field has an accessible name",help:"ARIA input fields must have an accessible name"},"aria-meter-name":{description:"Ensure every ARIA meter node has an accessible name",help:"ARIA meter nodes must have an accessible name"},"aria-progressbar-name":{description:"Ensure every ARIA progressbar node has an accessible name",help:"ARIA progressbar nodes must have an accessible name"},"aria-prohibited-attr":{description:"Ensure ARIA attributes are not prohibited for an element's role",help:"Elements must only use permitted ARIA attributes"},"aria-required-attr":{description:"Ensure elements with ARIA roles have all required ARIA attributes",help:"Required ARIA attributes must be provided"},"aria-required-children":{description:"Ensure elements with an ARIA role that require child roles contain them",help:"Certain ARIA roles must contain particular children"},"aria-required-parent":{description:"Ensure elements with an ARIA role that require parent roles are contained by them",help:"Certain ARIA roles must be contained by particular parents"},"aria-roledescription":{description:"Ensure aria-roledescription is only used on elements with an implicit or explicit role",help:"aria-roledescription must be on elements with a semantic role"},"aria-roles":{description:"Ensure all elements with a role attribute use a valid value",help:"ARIA roles used must conform to valid values"},"aria-text":{description:'Ensure role="text" is used on elements with no focusable descendants',help:'"role=text" should have no focusable descendants'},"aria-toggle-field-name":{description:"Ensure every ARIA toggle field has an accessible name",help:"ARIA toggle fields must have an accessible name"},"aria-tooltip-name":{description:"Ensure every ARIA tooltip node has an accessible name",help:"ARIA tooltip nodes must have an accessible name"},"aria-treeitem-name":{description:"Ensure every ARIA treeitem node has an accessible name",help:"ARIA treeitem nodes should have an accessible name"},"aria-valid-attr-value":{description:"Ensure all ARIA attributes have valid values",help:"ARIA attributes must conform to valid values"},"aria-valid-attr":{description:"Ensure attributes that begin with aria- are valid ARIA attributes",help:"ARIA attributes must conform to valid names"},"audio-caption":{description:"Ensure <audio> elements have captions",help:"<audio> elements must have a captions track"},"autocomplete-valid":{description:"Ensure the autocomplete attribute is correct and suitable for the form field",help:"autocomplete attribute must be used correctly"},"avoid-inline-spacing":{description:"Ensure that text spacing set through style attributes can be adjusted with custom stylesheets",help:"Inline text spacing must be adjustable with custom stylesheets"},blink:{description:"Ensure <blink> elements are not used",help:"<blink> elements are deprecated and must not be used"},"button-name":{description:"Ensure buttons have discernible text",help:"Buttons must have discernible text"},bypass:{description:"Ensure each page has at least one mechanism for a user to bypass navigation and jump straight to the content",help:"Page must have means to bypass repeated blocks"},"color-contrast-enhanced":{description:"Ensure the contrast between foreground and background colors meets WCAG 2 AAA enhanced contrast ratio thresholds",help:"Elements must meet enhanced color contrast ratio thresholds"},"color-contrast":{description:"Ensure the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds",help:"Elements must meet minimum color contrast ratio thresholds"},"css-orientation-lock":{description:"Ensure content is not locked to any specific display orientation, and the content is operable in all display orientations",help:"CSS Media queries must not lock display orientation"},"definition-list":{description:"Ensure <dl> elements are structured correctly",help:"<dl> elements must only directly contain properly-ordered <dt> and <dd> groups, <script>, <template> or <div> elements"},dlitem:{description:"Ensure <dt> and <dd> elements are contained by a <dl>",help:"<dt> and <dd> elements must be contained by a <dl>"},"document-title":{description:"Ensure each HTML document contains a non-empty <title> element",help:"Documents must have <title> element to aid in navigation"},"duplicate-id-active":{description:"Ensure every id attribute value of active elements is unique",help:"IDs of active elements must be unique"},"duplicate-id-aria":{description:"Ensure every id attribute value used in ARIA and in labels is unique",help:"IDs used in ARIA and labels must be unique"},"duplicate-id":{description:"Ensure every id attribute value is unique",help:"id attribute value must be unique"},"empty-heading":{description:"Ensure headings have discernible text",help:"Headings should not be empty"},"empty-table-header":{description:"Ensure table headers have discernible text",help:"Table header text should not be empty"},"focus-order-semantics":{description:"Ensure elements in the focus order have a role appropriate for interactive content",help:"Elements in the focus order should have an appropriate role"},"form-field-multiple-labels":{description:"Ensure form field does not have multiple label elements",help:"Form field must not have multiple label elements"},"frame-focusable-content":{description:"Ensure <frame> and <iframe> elements with focusable content do not have tabindex=-1",help:"Frames with focusable content must not have tabindex=-1"},"frame-tested":{description:"Ensure <iframe> and <frame> elements contain the axe-core script",help:"Frames should be tested with axe-core"},"frame-title-unique":{description:"Ensure <iframe> and <frame> elements contain a unique title attribute",help:"Frames must have a unique title attribute"},"frame-title":{description:"Ensure <iframe> and <frame> elements have an accessible name",help:"Frames must have an accessible name"},"heading-order":{description:"Ensure the order of headings is semantically correct",help:"Heading levels should only increase by one"},"hidden-content":{description:"Inform users about hidden content.",help:"Hidden content on the page should be analyzed"},"html-has-lang":{description:"Ensure every HTML document has a lang attribute",help:"<html> element must have a lang attribute"},"html-lang-valid":{description:"Ensure the lang attribute of the <html> element has a valid value",help:"<html> element must have a valid value for the lang attribute"},"html-xml-lang-mismatch":{description:"Ensure that HTML elements with both valid lang and xml:lang attributes agree on the base language of the page",help:"HTML elements with lang and xml:lang must have the same base language"},"identical-links-same-purpose":{description:"Ensure that links with the same accessible name serve a similar purpose",help:"Links with the same name must have a similar purpose"},"image-alt":{description:"Ensure <img> elements have alternative text or a role of none or presentation",help:"Images must have alternative text"},"image-redundant-alt":{description:"Ensure image alternative is not repeated as text",help:"Alternative text of images should not be repeated as text"},"input-button-name":{description:"Ensure input buttons have discernible text",help:"Input buttons must have discernible text"},"input-image-alt":{description:'Ensure <input type="image"> elements have alternative text',help:"Image buttons must have alternative text"},"label-content-name-mismatch":{description:"Ensure that elements labelled through their content must have their visible text as part of their accessible name",help:"Elements must have their visible text as part of their accessible name"},"label-title-only":{description:"Ensure that every form element has a visible label and is not solely labeled using hidden labels, or the title or aria-describedby attributes",help:"Form elements should have a visible label"},label:{description:"Ensure every form element has a label",help:"Form elements must have labels"},"landmark-banner-is-top-level":{description:"Ensure the banner landmark is at top level",help:"Banner landmark should not be contained in another landmark"},"landmark-complementary-is-top-level":{description:"Ensure the complementary landmark or aside is at top level",help:"Aside should not be contained in another landmark"},"landmark-contentinfo-is-top-level":{description:"Ensure the contentinfo landmark is at top level",help:"Contentinfo landmark should not be contained in another landmark"},"landmark-main-is-top-level":{description:"Ensure the main landmark is at top level",help:"Main landmark should not be contained in another landmark"},"landmark-no-duplicate-banner":{description:"Ensure the document has at most one banner landmark",help:"Document should not have more than one banner landmark"},"landmark-no-duplicate-contentinfo":{description:"Ensure the document has at most one contentinfo landmark",help:"Document should not have more than one contentinfo landmark"},"landmark-no-duplicate-main":{description:"Ensure the document has at most one main landmark",help:"Document should not have more than one main landmark"},"landmark-one-main":{description:"Ensure the document has a main landmark",help:"Document should have one main landmark"},"landmark-unique":{description:"Ensure landmarks are unique",help:"Landmarks should have a unique role or role/label/title (i.e. accessible name) combination"},"link-in-text-block":{description:"Ensure links are distinguished from surrounding text in a way that does not rely on color",help:"Links must be distinguishable without relying on color"},"link-name":{description:"Ensure links have discernible text",help:"Links must have discernible text"},list:{description:"Ensure that lists are structured correctly",help:"<ul> and <ol> must only directly contain <li>, <script> or <template> elements"},listitem:{description:"Ensure <li> elements are used semantically",help:"<li> elements must be contained in a <ul> or <ol>"},marquee:{description:"Ensure <marquee> elements are not used",help:"<marquee> elements are deprecated and must not be used"},"meta-refresh-no-exceptions":{description:'Ensure <meta http-equiv="refresh"> is not used for delayed refresh',help:"Delayed refresh must not be used"},"meta-refresh":{description:'Ensure <meta http-equiv="refresh"> is not used for delayed refresh',help:"Delayed refresh under 20 hours must not be used"},"meta-viewport-large":{description:'Ensure <meta name="viewport"> can scale a significant amount',help:"Users should be able to zoom and scale the text up to 500%"},"meta-viewport":{description:'Ensure <meta name="viewport"> does not disable text scaling and zooming',help:"Zooming and scaling must not be disabled"},"nested-interactive":{description:"Ensure interactive controls are not nested as they are not always announced by screen readers or can cause focus problems for assistive technologies",help:"Interactive controls must not be nested"},"no-autoplay-audio":{description:"Ensure <video> or <audio> elements do not autoplay audio for more than 3 seconds without a control mechanism to stop or mute the audio",help:"<video> or <audio> elements must not play automatically"},"object-alt":{description:"Ensure <object> elements have alternative text",help:"<object> elements must have alternative text"},"p-as-heading":{description:"Ensure bold, italic text and font-size is not used to style <p> elements as a heading",help:"Styled <p> elements must not be used as headings"},"page-has-heading-one":{description:"Ensure that the page, or at least one of its frames contains a level-one heading",help:"Page should contain a level-one heading"},"presentation-role-conflict":{description:"Ensure elements marked as presentational do not have global ARIA or tabindex so that all screen readers ignore them",help:"Elements marked as presentational should be consistently ignored"},region:{description:"Ensure all page content is contained by landmarks",help:"All page content should be contained by landmarks"},"role-img-alt":{description:'Ensure [role="img"] elements have alternative text',help:'[role="img"] elements must have alternative text'},"scope-attr-valid":{description:"Ensure the scope attribute is used correctly on tables",help:"scope attribute should be used correctly"},"scrollable-region-focusable":{description:"Ensure elements that have scrollable content are accessible by keyboard",help:"Scrollable region must have keyboard access"},"select-name":{description:"Ensure select element has an accessible name",help:"Select element must have an accessible name"},"server-side-image-map":{description:"Ensure that server-side image maps are not used",help:"Server-side image maps must not be used"},"skip-link":{description:"Ensure all skip links have a focusable target",help:"The skip-link target should exist and be focusable"},"summary-name":{description:"Ensure summary elements have discernible text",help:"Summary elements must have discernible text"},"svg-img-alt":{description:"Ensure <svg> elements with an img, graphics-document or graphics-symbol role have accessible text",help:"<svg> elements with an img role must have alternative text"},tabindex:{description:"Ensure tabindex attribute values are not greater than 0",help:"Elements should not have tabindex greater than zero"},"table-duplicate-name":{description:"Ensure the <caption> element does not contain the same text as the summary attribute",help:"Tables should not have the same summary and caption"},"table-fake-caption":{description:"Ensure that tables with a caption use the <caption> element.",help:"Data or header cells must not be used to give caption to a data table."},"target-size":{description:"Ensure touch targets have sufficient size and space",help:"All touch targets must be 24px large, or leave sufficient space"},"td-has-header":{description:"Ensure that each non-empty data cell in a <table> larger than 3 by 3 has one or more table headers",help:"Non-empty <td> elements in larger <table> must have an associated table header"},"td-headers-attr":{description:"Ensure that each cell in a table that uses the headers attribute refers only to other <th> elements in that table",help:"Table cell headers attributes must refer to other <th> elements in the same table"},"th-has-data-cells":{description:"Ensure that <th> elements and elements with role=columnheader/rowheader have data cells they describe",help:"Table headers in a data table must refer to data cells"},"valid-lang":{description:"Ensure lang attributes have valid values",help:"lang attribute must have a valid value"},"video-caption":{description:"Ensure <video> elements have captions",help:"<video> elements must have captions"}},checks:{abstractrole:{impact:"serious",messages:{pass:"Abstract roles are not used",fail:{singular:"Abstract role cannot be directly used: ${data.values}",plural:"Abstract roles cannot be directly used: ${data.values}"}}},"aria-allowed-attr":{impact:"critical",messages:{pass:"ARIA attributes are used correctly for the defined role",fail:{singular:"ARIA attribute is not allowed: ${data.values}",plural:"ARIA attributes are not allowed: ${data.values}"},incomplete:"Check that there is no problem if the ARIA attribute is ignored on this element: ${data.values}"}},"aria-allowed-role":{impact:"minor",messages:{pass:"ARIA role is allowed for given element",fail:{singular:"ARIA role ${data.values} is not allowed for given element",plural:"ARIA roles ${data.values} are not allowed for given element"},incomplete:{singular:"ARIA role ${data.values} must be removed when the element is made visible, as it is not allowed for the element",plural:"ARIA roles ${data.values} must be removed when the element is made visible, as they are not allowed for the element"}}},"aria-busy":{impact:"serious",messages:{pass:"Element has an aria-busy attribute",fail:'Element uses aria-busy="true" while showing a loader'}},"aria-conditional-attr":{impact:"serious",messages:{pass:"ARIA attribute is allowed",fail:{checkbox:'Remove aria-checked, or set it to "${data.checkState}" to match the real checkbox state',rowSingular:"This attribute is supported with treegrid rows, but not ${data.ownerRole}: ${data.invalidAttrs}",rowPlural:"These attributes are supported with treegrid rows, but not ${data.ownerRole}: ${data.invalidAttrs}"}}},"aria-errormessage":{impact:"critical",messages:{pass:"aria-errormessage exists and references elements visible to screen readers that use a supported aria-errormessage technique",fail:{singular:"aria-errormessage value `${data.values}` must use a technique to announce the message (e.g., aria-live, aria-describedby, role=alert, etc.)",plural:"aria-errormessage values `${data.values}` must use a technique to announce the message (e.g., aria-live, aria-describedby, role=alert, etc.)",hidden:"aria-errormessage value `${data.values}` cannot reference a hidden element"},incomplete:{singular:"Ensure aria-errormessage value `${data.values}` references an existing element",plural:"Ensure aria-errormessage values `${data.values}` reference existing elements",idrefs:"Unable to determine if aria-errormessage element exists on the page: ${data.values}"}}},"aria-hidden-body":{impact:"critical",messages:{pass:"No aria-hidden attribute is present on document body",fail:"aria-hidden=true should not be present on the document body"}},"aria-level":{impact:"serious",messages:{pass:"aria-level values are valid",incomplete:"aria-level values greater than 6 are not supported in all screenreader and browser combinations"}},"aria-prohibited-attr":{impact:"serious",messages:{pass:"ARIA attribute is allowed",fail:{hasRolePlural:'${data.prohibited} attributes cannot be used with role "${data.role}".',hasRoleSingular:'${data.prohibited} attribute cannot be used with role "${data.role}".',noRolePlural:"${data.prohibited} attributes cannot be used on a ${data.nodeName} with no valid role attribute.",noRoleSingular:"${data.prohibited} attribute cannot be used on a ${data.nodeName} with no valid role attribute."},incomplete:{hasRoleSingular:'${data.prohibited} attribute is not well supported with role "${data.role}".',hasRolePlural:'${data.prohibited} attributes are not well supported with role "${data.role}".',noRoleSingular:"${data.prohibited} attribute is not well supported on a ${data.nodeName} with no valid role attribute.",noRolePlural:"${data.prohibited} attributes are not well supported on a ${data.nodeName} with no valid role attribute."}}},"aria-required-attr":{impact:"critical",messages:{pass:"All required ARIA attributes are present",fail:{singular:"Required ARIA attribute not present: ${data.values}",plural:"Required ARIA attributes not present: ${data.values}"}}},"aria-required-children":{impact:"critical",messages:{pass:{default:"Required ARIA children are present","aria-busy":"Element has an aria-busy attribute, so it is allowed to omit required children"},fail:{singular:"Required ARIA child role not present: ${data.values}",plural:"Required ARIA children role not present: ${data.values}",unallowed:"Element has children which are not allowed: ${data.values}"},incomplete:{singular:"Expecting ARIA child role to be added: ${data.values}",plural:"Expecting ARIA children role to be added: ${data.values}"}}},"aria-required-parent":{impact:"critical",messages:{pass:"Required ARIA parent role present",fail:{singular:"Required ARIA parent role not present: ${data.values}",plural:"Required ARIA parents role not present: ${data.values}"}}},"aria-roledescription":{impact:"serious",messages:{pass:"aria-roledescription used on a supported semantic role",incomplete:"Check that the aria-roledescription is announced by supported screen readers",fail:"Give the element a role that supports aria-roledescription"}},"aria-unsupported-attr":{impact:"critical",messages:{pass:"ARIA attribute is supported",fail:"ARIA attribute is not widely supported in screen readers and assistive technologies: ${data.values}"}},"aria-valid-attr-value":{impact:"critical",messages:{pass:"ARIA attribute values are valid",fail:{singular:"Invalid ARIA attribute value: ${data.values}",plural:"Invalid ARIA attribute values: ${data.values}"},incomplete:{noId:"ARIA attribute element ID does not exist on the page: ${data.needsReview}",noIdShadow:"ARIA attribute element ID does not exist on the page or is a descendant of a different shadow DOM tree: ${data.needsReview}",ariaCurrent:'ARIA attribute value is invalid and will be treated as "aria-current=true": ${data.needsReview}',idrefs:"Unable to determine if ARIA attribute element ID exists on the page: ${data.needsReview}",empty:"ARIA attribute value is ignored while empty: ${data.needsReview}",controlsWithinPopup:"Unable to determine if aria-controls referenced ID exists on the page while using aria-haspopup: ${data.needsReview}"}}},"aria-valid-attr":{impact:"critical",messages:{pass:"ARIA attribute name is valid",fail:{singular:"Invalid ARIA attribute name: ${data.values}",plural:"Invalid ARIA attribute names: ${data.values}"}}},"braille-label-equivalent":{impact:"serious",messages:{pass:"aria-braillelabel is used on an element with accessible text",fail:"aria-braillelabel is used on an element with no accessible text",incomplete:"Unable to compute accessible text"}},"braille-roledescription-equivalent":{impact:"serious",messages:{pass:"aria-brailleroledescription is used on an element with aria-roledescription",fail:{noRoleDescription:"aria-brailleroledescription is used on an element with no aria-roledescription",emptyRoleDescription:"aria-brailleroledescription is used on an element with an empty aria-roledescription"}}},deprecatedrole:{impact:"minor",messages:{pass:"ARIA role is not deprecated",fail:"The role used is deprecated: ${data}"}},fallbackrole:{impact:"serious",messages:{pass:"Only one role value used",fail:"Use only one role value, since fallback roles are not supported in older browsers",incomplete:"Use only role 'presentation' or 'none' since they are synonymous."}},"has-global-aria-attribute":{impact:"minor",messages:{pass:{singular:"Element has global ARIA attribute: ${data.values}",plural:"Element has global ARIA attributes: ${data.values}"},fail:"Element does not have global ARIA attribute"}},"has-widget-role":{impact:"minor",messages:{pass:"Element has a widget role.",fail:"Element does not have a widget role."}},invalidrole:{impact:"critical",messages:{pass:"ARIA role is valid",fail:{singular:"Role must be one of the valid ARIA roles: ${data.values}",plural:"Roles must be one of the valid ARIA roles: ${data.values}"}}},"is-element-focusable":{impact:"minor",messages:{pass:"Element is focusable.",fail:"Element is not focusable."}},"no-implicit-explicit-label":{impact:"serious",messages:{pass:"There is no mismatch between a <label> and accessible name",incomplete:"Check that the <label> does not need be part of the ARIA ${data} field's name"}},unsupportedrole:{impact:"critical",messages:{pass:"ARIA role is supported",fail:"The role used is not widely supported in screen readers and assistive technologies: ${data}"}},"valid-scrollable-semantics":{impact:"minor",messages:{pass:"Element has valid semantics for an element in the focus order.",fail:"Element has invalid semantics for an element in the focus order."}},"color-contrast-enhanced":{impact:"serious",messages:{pass:"Element has sufficient color contrast of ${data.contrastRatio}",fail:{default:"Element has insufficient color contrast of ${data.contrastRatio} (foreground color: ${data.fgColor}, background color: ${data.bgColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}",fgOnShadowColor:"Element has insufficient color contrast of ${data.contrastRatio} between the foreground and shadow color (foreground color: ${data.fgColor}, text-shadow color: ${data.shadowColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}",shadowOnBgColor:"Element has insufficient color contrast of ${data.contrastRatio} between the shadow color and background color (text-shadow color: ${data.shadowColor}, background color: ${data.bgColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}"},incomplete:{default:"Unable to determine contrast ratio",bgImage:"Element's background color could not be determined due to a background image",bgGradient:"Element's background color could not be determined due to a background gradient",imgNode:"Element's background color could not be determined because element contains an image node",bgOverlap:"Element's background color could not be determined because it is overlapped by another element",fgAlpha:"Element's foreground color could not be determined because of alpha transparency",elmPartiallyObscured:"Element's background color could not be determined because it's partially obscured by another element",elmPartiallyObscuring:"Element's background color could not be determined because it partially overlaps other elements",outsideViewport:"Element's background color could not be determined because it's outside the viewport",equalRatio:"Element has a 1:1 contrast ratio with the background",shortTextContent:"Element content is too short to determine if it is actual text content",nonBmp:"Element content contains only non-text characters",pseudoContent:"Element's background color could not be determined due to a pseudo element"}}},"color-contrast":{impact:"serious",messages:{pass:{default:"Element has sufficient color contrast of ${data.contrastRatio}",hidden:"Element is hidden"},fail:{default:"Element has insufficient color contrast of ${data.contrastRatio} (foreground color: ${data.fgColor}, background color: ${data.bgColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}",fgOnShadowColor:"Element has insufficient color contrast of ${data.contrastRatio} between the foreground and shadow color (foreground color: ${data.fgColor}, text-shadow color: ${data.shadowColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}",shadowOnBgColor:"Element has insufficient color contrast of ${data.contrastRatio} between the shadow color and background color (text-shadow color: ${data.shadowColor}, background color: ${data.bgColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}"},incomplete:{default:"Unable to determine contrast ratio",bgImage:"Element's background color could not be determined due to a background image",bgGradient:"Element's background color could not be determined due to a background gradient",imgNode:"Element's background color could not be determined because element contains an image node",bgOverlap:"Element's background color could not be determined because it is overlapped by another element",complexTextShadows:"Element's contrast could not be determined because it uses complex text shadows",fgAlpha:"Element's foreground color could not be determined because of alpha transparency",elmPartiallyObscured:"Element's background color could not be determined because it's partially obscured by another element",elmPartiallyObscuring:"Element's background color could not be determined because it partially overlaps other elements",outsideViewport:"Element's background color could not be determined because it's outside the viewport",equalRatio:"Element has a 1:1 contrast ratio with the background",shortTextContent:"Element content is too short to determine if it is actual text content",nonBmp:"Element content contains only non-text characters",pseudoContent:"Element's background color could not be determined due to a pseudo element"}}},"link-in-text-block-style":{impact:"serious",messages:{pass:"Links can be distinguished from surrounding text by visual styling",incomplete:{default:"Check if the link needs styling to distinguish it from nearby text",pseudoContent:"Check if the link's pseudo style is sufficient to distinguish it from the surrounding text"},fail:"The link has no styling (such as underline) to distinguish it from the surrounding text"}},"link-in-text-block":{impact:"serious",messages:{pass:"Links can be distinguished from surrounding text in some way other than by color",fail:{fgContrast:"The link has insufficient color contrast of ${data.contrastRatio}:1 with the surrounding text. (Minimum contrast is ${data.requiredContrastRatio}:1, link text: ${data.nodeColor}, surrounding text: ${data.parentColor})",bgContrast:"The link background has insufficient color contrast of ${data.contrastRatio} (Minimum contrast is ${data.requiredContrastRatio}:1, link background color: ${data.nodeBackgroundColor}, surrounding background color: ${data.parentBackgroundColor})"},incomplete:{default:"Element's foreground contrast ratio could not be determined",bgContrast:"Element's background contrast ratio could not be determined",bgImage:"Element's contrast ratio could not be determined due to a background image",bgGradient:"Element's contrast ratio could not be determined due to a background gradient",imgNode:"Element's contrast ratio could not be determined because element contains an image node",bgOverlap:"Element's contrast ratio could not be determined because of element overlap"}}},"autocomplete-appropriate":{impact:"serious",messages:{pass:"The autocomplete value is on an appropriate element",fail:"The autocomplete value is inappropriate for this type of input"}},"autocomplete-valid":{impact:"serious",messages:{pass:"the autocomplete attribute is correctly formatted",fail:"the autocomplete attribute is incorrectly formatted",incomplete:"the autocomplete attribute has a non-standard value. Check whether any standard value could be used instead."}},accesskeys:{impact:"serious",messages:{pass:"Accesskey attribute value is unique",fail:"Document has multiple elements with the same accesskey"}},"focusable-content":{impact:"serious",messages:{pass:"Element contains focusable elements",fail:"Element should have focusable content"}},"focusable-disabled":{impact:"serious",messages:{pass:"No focusable elements contained within element",incomplete:"Check if the focusable elements immediately move the focus indicator",fail:"Focusable content should be disabled or be removed from the DOM"}},"focusable-element":{impact:"serious",messages:{pass:"Element is focusable",fail:"Element should be focusable"}},"focusable-modal-open":{impact:"serious",messages:{pass:"No focusable elements while a modal is open",incomplete:"Check that focusable elements are not tabbable in the current state"}},"focusable-no-name":{impact:"serious",messages:{pass:"Element is not in tab order or has accessible text",fail:"Element is in tab order and does not have accessible text",incomplete:"Unable to determine if element has an accessible name"}},"focusable-not-tabbable":{impact:"serious",messages:{pass:"No focusable elements contained within element",incomplete:"Check if the focusable elements immediately move the focus indicator",fail:'Focusable content should have tabindex="-1" or be removed from the DOM'}},"frame-focusable-content":{impact:"serious",messages:{pass:"Element does not have focusable descendants",fail:"Element has focusable descendants",incomplete:"Could not determine if element has descendants"}},"landmark-is-top-level":{impact:"moderate",messages:{pass:"The ${data.role} landmark is at the top level.",fail:"The ${data.role} landmark is contained in another landmark."}},"no-focusable-content":{impact:"serious",messages:{pass:"Element does not have focusable descendants",fail:{default:"Element has focusable descendants",notHidden:'Using a negative tabindex on an element inside an interactive control does not prevent assistive technologies from focusing the element (even with aria-hidden="true")'},incomplete:"Could not determine if element has descendants"}},"page-has-heading-one":{impact:"moderate",messages:{pass:"Page has at least one level-one heading",fail:"Page must have a level-one heading"}},"page-has-main":{impact:"moderate",messages:{pass:"Document has at least one main landmark",fail:"Document does not have a main landmark"}},"page-no-duplicate-banner":{impact:"moderate",messages:{pass:"Document does not have more than one banner landmark",fail:"Document has more than one banner landmark"}},"page-no-duplicate-contentinfo":{impact:"moderate",messages:{pass:"Document does not have more than one contentinfo landmark",fail:"Document has more than one contentinfo landmark"}},"page-no-duplicate-main":{impact:"moderate",messages:{pass:"Document does not have more than one main landmark",fail:"Document has more than one main landmark"}},tabindex:{impact:"serious",messages:{pass:"Element does not have a tabindex greater than 0",fail:"Element has a tabindex greater than 0"}},"alt-space-value":{impact:"critical",messages:{pass:"Element has a valid alt attribute value",fail:"Element has an alt attribute containing only a space character, which is not ignored by all screen readers"}},"duplicate-img-label":{impact:"minor",messages:{pass:"Element does not duplicate existing text in <img> alt text",fail:"Element contains <img> element with alt text that duplicates existing text"}},"explicit-label":{impact:"critical",messages:{pass:"Element has an explicit <label>",fail:"Element does not have an explicit <label>",incomplete:"Unable to determine if form element has an explicit <label>"}},"help-same-as-label":{impact:"minor",messages:{pass:"Help text (title or aria-describedby) does not duplicate label text",fail:"Help text (title or aria-describedby) text is the same as the label text"}},"hidden-explicit-label":{impact:"critical",messages:{pass:"Form element has a visible explicit <label>",fail:"Form element has explicit <label> that is hidden",incomplete:"Unable to determine if form element has explicit <label> that is hidden"}},"implicit-label":{impact:"critical",messages:{pass:"Element has an implicit (wrapped) <label>",fail:"Element does not have an implicit (wrapped) <label>",incomplete:"Unable to determine if form element has an implicit (wrapped) <label>"}},"label-content-name-mismatch":{impact:"serious",messages:{pass:"Element contains visible text as part of it's accessible name",fail:"Text inside the element is not included in the accessible name"}},"multiple-label":{impact:"moderate",messages:{pass:"Form field does not have multiple label elements",incomplete:"Multiple label elements is not widely supported in assistive technologies. Ensure the first label contains all necessary information."}},"title-only":{impact:"serious",messages:{pass:"Form element does not solely use title attribute for its label",fail:"Only title used to generate label for form element"}},"landmark-is-unique":{impact:"moderate",messages:{pass:"Landmarks must have a unique role or role/label/title (i.e. accessible name) combination",fail:"The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable"}},"has-lang":{impact:"serious",messages:{pass:"The <html> element has a lang attribute",fail:{noXHTML:"The xml:lang attribute is not valid on HTML pages, use the lang attribute.",noLang:"The <html> element does not have a lang attribute"}}},"valid-lang":{impact:"serious",messages:{pass:"Value of lang attribute is included in the list of valid languages",fail:"Value of lang attribute not included in the list of valid languages"}},"xml-lang-mismatch":{impact:"moderate",messages:{pass:"Lang and xml:lang attributes have the same base language",fail:"Lang and xml:lang attributes do not have the same base language"}},dlitem:{impact:"serious",messages:{pass:"Description list item has a <dl> parent element",fail:"Description list item does not have a <dl> parent element"}},listitem:{impact:"serious",messages:{pass:'List item has a <ul>, <ol> or role="list" parent element',fail:{default:"List item does not have a <ul>, <ol> parent element",roleNotValid:'List item parent element has a role that is not role="list"'}}},"only-dlitems":{impact:"serious",messages:{pass:"dl element only has direct children that are allowed inside; <dt>, <dd>, or <div> elements",fail:"dl element has direct children that are not allowed: ${data.values}"}},"only-listitems":{impact:"serious",messages:{pass:"List element only has direct children that are allowed inside <li> elements",fail:"List element has direct children that are not allowed: ${data.values}"}},"structured-dlitems":{impact:"serious",messages:{pass:"When not empty, element has both <dt> and <dd> elements",fail:"When not empty, element does not have at least one <dt> element followed by at least one <dd> element"}},caption:{impact:"critical",messages:{pass:"The multimedia element has a captions track",incomplete:"Check that captions are available for the element"}},"frame-tested":{impact:"critical",messages:{pass:"The iframe was tested with axe-core",fail:"The iframe could not be tested with axe-core",incomplete:"The iframe still has to be tested with axe-core"}},"no-autoplay-audio":{impact:"moderate",messages:{pass:"<video> or <audio> does not output audio for more than allowed duration or has controls mechanism",fail:"<video> or <audio> outputs audio for more than allowed duration and does not have a controls mechanism",incomplete:"Check that the <video> or <audio> does not output audio for more than allowed duration or provides a controls mechanism"}},"css-orientation-lock":{impact:"serious",messages:{pass:"Display is operable, and orientation lock does not exist",fail:"CSS Orientation lock is applied, and makes display inoperable",incomplete:"CSS Orientation lock cannot be determined"}},"meta-viewport-large":{impact:"minor",messages:{pass:"<meta> tag does not prevent significant zooming on mobile devices",fail:"<meta> tag limits zooming on mobile devices"}},"meta-viewport":{impact:"critical",messages:{pass:"<meta> tag does not disable zooming on mobile devices",fail:"${data} on <meta> tag disables zooming on mobile devices"}},"target-offset":{impact:"serious",messages:{pass:{default:"Target has sufficient space from its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px which is at least ${data.minOffset}px.",large:"Target far exceeds the minimum size of ${data.minOffset}px."},fail:"Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px instead of at least ${data.minOffset}px.",incomplete:{default:"Element with negative tabindex has insufficient space to its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px instead of at least ${data.minOffset}px. Is this a target?",nonTabbableNeighbor:"Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px instead of at least ${data.minOffset}px. Is the neighbor a target?",tooManyRects:"Could not get the target size because there are too many overlapping elements"}}},"target-size":{impact:"serious",messages:{pass:{default:"Control has sufficient size (${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px)",obscured:"Control is ignored because it is fully obscured and thus not clickable",large:"Target far exceeds the minimum size of ${data.minSize}px."},fail:{default:"Target has insufficient size (${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px)",partiallyObscured:"Target has insufficient size because it is partially obscured (smallest space is ${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px)"},incomplete:{default:"Element with negative tabindex has insufficient size (${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px). Is this a target?",contentOverflow:"Element size could not be accurately determined due to overflow content",partiallyObscured:"Element with negative tabindex has insufficient size because it is partially obscured (smallest space is ${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px). Is this a target?",partiallyObscuredNonTabbable:"Target has insufficient size because it is partially obscured by a neighbor with negative tabindex (smallest space is ${data.width}px by ${data.height}px, should be at least ${data.minSize}px by ${data.minSize}px). Is the neighbor a target?",tooManyRects:"Could not get the target size because there are too many overlapping elements"}}},"header-present":{impact:"serious",messages:{pass:"Page has a heading",fail:"Page does not have a heading"}},"heading-order":{impact:"moderate",messages:{pass:"Heading order valid",fail:"Heading order invalid",incomplete:"Unable to determine previous heading"}},"identical-links-same-purpose":{impact:"minor",messages:{pass:"There are no other links with the same name, that go to a different URL",incomplete:"Check that links have the same purpose, or are intentionally ambiguous."}},"internal-link-present":{impact:"serious",messages:{pass:"Valid skip link found",fail:"No valid skip link found"}},landmark:{impact:"serious",messages:{pass:"Page has a landmark region",fail:"Page does not have a landmark region"}},"meta-refresh-no-exceptions":{impact:"minor",messages:{pass:"<meta> tag does not immediately refresh the page",fail:"<meta> tag forces timed refresh of page"}},"meta-refresh":{impact:"critical",messages:{pass:"<meta> tag does not immediately refresh the page",fail:"<meta> tag forces timed refresh of page (less than 20 hours)"}},"p-as-heading":{impact:"serious",messages:{pass:"<p> elements are not styled as headings",fail:"Heading elements should be used instead of styled <p> elements",incomplete:"Unable to determine if <p> elements are styled as headings"}},region:{impact:"moderate",messages:{pass:"All page content is contained by landmarks",fail:"Some page content is not contained by landmarks"}},"skip-link":{impact:"moderate",messages:{pass:"Skip link target exists",incomplete:"Skip link target should become visible on activation",fail:"No skip link target"}},"unique-frame-title":{impact:"serious",messages:{pass:"Element's title attribute is unique",fail:"Element's title attribute is not unique"}},"duplicate-id-active":{impact:"serious",messages:{pass:"Document has no active elements that share the same id attribute",fail:"Document has active elements with the same id attribute: ${data}"}},"duplicate-id-aria":{impact:"critical",messages:{pass:"Document has no elements referenced with ARIA or labels that share the same id attribute",fail:"Document has multiple elements referenced with ARIA with the same id attribute: ${data}"}},"duplicate-id":{impact:"minor",messages:{pass:"Document has no static elements that share the same id attribute",fail:"Document has multiple static elements with the same id attribute: ${data}"}},"aria-label":{impact:"serious",messages:{pass:"aria-label attribute exists and is not empty",fail:"aria-label attribute does not exist or is empty"}},"aria-labelledby":{impact:"serious",messages:{pass:"aria-labelledby attribute exists and references elements that are visible to screen readers",fail:"aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty",incomplete:"Ensure aria-labelledby references an existing element"}},"avoid-inline-spacing":{impact:"serious",messages:{pass:"No inline styles with '!important' that affect text spacing has been specified",fail:{singular:"Remove '!important' from inline style ${data.values}, as overriding this is not supported by most browsers",plural:"Remove '!important' from inline styles ${data.values}, as overriding this is not supported by most browsers"}}},"button-has-visible-text":{impact:"critical",messages:{pass:"Element has inner text that is visible to screen readers",fail:"Element does not have inner text that is visible to screen readers",incomplete:"Unable to determine if element has children"}},"doc-has-title":{impact:"serious",messages:{pass:"Document has a non-empty <title> element",fail:"Document does not have a non-empty <title> element"}},"error-occurred":{messages:{pass:"",incomplete:"Axe encountered an error; test the page for this type of problem manually"}},exists:{impact:"minor",messages:{pass:"Element does not exist",incomplete:"Element exists"}},"has-alt":{impact:"critical",messages:{pass:"Element has an alt attribute",fail:"Element does not have an alt attribute"}},"has-visible-text":{impact:"minor",messages:{pass:"Element has text that is visible to screen readers",fail:"Element does not have text that is visible to screen readers",incomplete:"Unable to determine if element has children"}},"important-letter-spacing":{impact:"serious",messages:{pass:"Letter-spacing in the style attribute is not set to !important, or meets the minimum",fail:"letter-spacing in the style attribute must not use !important, or be at ${data.minValue}em (current ${data.value}em)"}},"important-line-height":{impact:"serious",messages:{pass:"line-height in the style attribute is not set to !important, or meets the minimum",fail:"line-height in the style attribute must not use !important, or be at ${data.minValue}em (current ${data.value}em)"}},"important-word-spacing":{impact:"serious",messages:{pass:"word-spacing in the style attribute is not set to !important, or meets the minimum",fail:"word-spacing in the style attribute must not use !important, or be at ${data.minValue}em (current ${data.value}em)"}},"is-on-screen":{impact:"serious",messages:{pass:"Element is not visible",fail:"Element is visible"}},"non-empty-alt":{impact:"critical",messages:{pass:"Element has a non-empty alt attribute",fail:{noAttr:"Element has no alt attribute",emptyAttr:"Element has an empty alt attribute"}}},"non-empty-if-present":{impact:"critical",messages:{pass:{default:"Element does not have a value attribute","has-label":"Element has a non-empty value attribute"},fail:"Element has a value attribute and the value attribute is empty"}},"non-empty-placeholder":{impact:"serious",messages:{pass:"Element has a placeholder attribute",fail:{noAttr:"Element has no placeholder attribute",emptyAttr:"Element has an empty placeholder attribute"}}},"non-empty-title":{impact:"serious",messages:{pass:"Element has a title attribute",fail:{noAttr:"Element has no title attribute",emptyAttr:"Element has an empty title attribute"}}},"non-empty-value":{impact:"critical",messages:{pass:"Element has a non-empty value attribute",fail:{noAttr:"Element has no value attribute",emptyAttr:"Element has an empty value attribute"}}},"presentational-role":{impact:"minor",messages:{pass:'Element\'s default semantics were overridden with role="${data.role}"',fail:{default:`Element's default semantics were not overridden with role="none" or role="presentation"`,globalAria:"Element's role is not presentational because it has a global ARIA attribute",focusable:"Element's role is not presentational because it is focusable",both:"Element's role is not presentational because it has a global ARIA attribute and is focusable",iframe:'Using the "title" attribute on an ${data.nodeName} element with a presentational role behaves inconsistently between screen readers'}}},"role-none":{impact:"minor",messages:{pass:`Element's default semantics were overridden with role="none"`,fail:`Element's default semantics were not overridden with role="none"`}},"role-presentation":{impact:"minor",messages:{pass:`Element's default semantics were overridden with role="presentation"`,fail:`Element's default semantics were not overridden with role="presentation"`}},"svg-non-empty-title":{impact:"serious",messages:{pass:"Element has a child that is a title",fail:{noTitle:"Element has no child that is a title",emptyTitle:"Element child title is empty"},incomplete:"Unable to determine element has a child that is a title"}},"caption-faked":{impact:"serious",messages:{pass:"The first row of a table is not used as a caption",fail:"The first child of the table should be a caption instead of a table cell"}},"html5-scope":{impact:"moderate",messages:{pass:"Scope attribute is only used on table header elements (<th>)",fail:"In HTML 5, scope attributes may only be used on table header elements (<th>)"}},"same-caption-summary":{impact:"minor",messages:{pass:"Content of summary attribute and <caption> are not duplicated",fail:"Content of summary attribute and <caption> element are identical",incomplete:"Unable to determine if <table> element has a caption"}},"scope-value":{impact:"critical",messages:{pass:"Scope attribute is used correctly",fail:"The value of the scope attribute may only be 'row' or 'col'"}},"td-has-header":{impact:"critical",messages:{pass:"All non-empty data cells have table headers",fail:"Some non-empty data cells do not have table headers"}},"td-headers-attr":{impact:"serious",messages:{pass:"The headers attribute is exclusively used to refer to other header cells in the table",incomplete:"The headers attribute is empty",fail:{"cell-header-not-in-table":"The headers attribute is not exclusively used to refer to other header cells in the table","cell-header-not-th":"The headers attribute must refer to header cells, not data cells","header-refs-self":"The element with headers attribute refers to itself"}}},"th-has-data-cells":{impact:"serious",messages:{pass:"All table header cells refer to data cells",fail:"Not all table header cells refer to data cells",incomplete:"Table data cells are missing or empty"}},"hidden-content":{impact:"minor",messages:{pass:"All content on the page has been analyzed.",fail:"There were problems analyzing the content on this page.",incomplete:"There is hidden content on the page that was not analyzed. You will need to trigger the display of this content in order to analyze it."}}},failureSummaries:{any:{failureMessage:function(S){var L="Fix any of the following:",G=S;if(G)for(var _e,Ie=-1,Ke=G.length-1;Ie<Ke;)_e=G[Ie+=1],L+=`
15
15
  `+_e.split(`
16
16
  `).join(`
17
17
  `);return L}},none:{failureMessage:function(S){var L="Fix all of the following:",G=S;if(G)for(var _e,Ie=-1,Ke=G.length-1;Ie<Ke;)_e=G[Ie+=1],L+=`
18
18
  `+_e.split(`
19
19
  `).join(`
20
- `);return L}}},incompleteFallbackMessage:"axe couldn't tell the reason. Time to break out the element inspector!"},rules:[{id:"accesskeys",impact:"serious",selector:"[accesskey]",excludeHidden:!1,tags:["cat.keyboard","best-practice"],all:[],any:[],none:["accesskeys"]},{id:"area-alt",impact:"critical",selector:"map area[href]",excludeHidden:!1,tags:["cat.text-alternatives","wcag2a","wcag244","wcag412","section508","section508.22.a","TTv5","TT6.a","EN-301-549","EN-9.2.4.4","EN-9.4.1.2","ACT","RGAAv4","RGAA-1.1.2"],actIds:["c487ae"],all:[],any:[{options:{attribute:"alt"},id:"non-empty-alt"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-allowed-attr",impact:"critical",matches:"aria-allowed-attr-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["5c01ea"],all:[{options:{validTreeRowAttrs:["aria-posinset","aria-setsize","aria-expanded","aria-level"]},id:"aria-allowed-attr"}],any:[],none:["aria-unsupported-attr"]},{id:"aria-allowed-role",impact:"minor",excludeHidden:!1,selector:"[role]",matches:"aria-allowed-role-matches",tags:["cat.aria","best-practice"],all:[],any:[{options:{allowImplicit:!0,ignoredTags:[]},id:"aria-allowed-role"}],none:[]},{id:"aria-braille-equivalent",reviewOnFail:!0,impact:"serious",selector:"[aria-brailleroledescription], [aria-braillelabel]",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2"],all:["braille-roledescription-equivalent","braille-label-equivalent"],any:[],none:[]},{id:"aria-command-name",impact:"serious",selector:'[role="link"], [role="button"], [role="menuitem"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","TTv5","TT6.a","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.9.1"],actIds:["97a4e1"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-conditional-attr",impact:"serious",matches:"aria-allowed-attr-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["5c01ea"],all:[{options:{invalidTableRowAttrs:["aria-posinset","aria-setsize","aria-expanded","aria-level"]},id:"aria-conditional-attr"}],any:[],none:[]},{id:"aria-deprecated-role",impact:"minor",selector:"[role]",matches:"no-empty-role-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["674b10"],all:[],any:[],none:["deprecatedrole"]},{id:"aria-dialog-name",impact:"serious",selector:'[role="dialog"], [role="alertdialog"]',matches:"no-naming-method-matches",tags:["cat.aria","best-practice"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-hidden-body",impact:"critical",selector:"body",excludeHidden:!1,matches:"is-initiator-matches",tags:["cat.aria","wcag2a","wcag131","wcag412","EN-301-549","EN-9.1.3.1","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],all:[],any:["aria-hidden-body"],none:[]},{id:"aria-hidden-focus",impact:"serious",selector:'[aria-hidden="true"]',matches:"aria-hidden-focus-matches",excludeHidden:!1,tags:["cat.name-role-value","wcag2a","wcag412","TTv5","TT6.a","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["6cfa84"],all:["focusable-modal-open","focusable-disabled","focusable-not-tabbable"],any:[],none:[]},{id:"aria-input-field-name",impact:"serious",selector:'[role="combobox"], [role="listbox"], [role="searchbox"], [role="slider"], [role="spinbutton"], [role="textbox"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","TTv5","TT5.c","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.1.1"],actIds:["e086e5"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["no-implicit-explicit-label"]},{id:"aria-meter-name",impact:"serious",selector:'[role="meter"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag111","EN-301-549","EN-9.1.1.1","RGAAv4","RGAA-11.1.1"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-progressbar-name",impact:"serious",selector:'[role="progressbar"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag111","EN-301-549","EN-9.1.1.1","RGAAv4","RGAA-11.1.1"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-prohibited-attr",impact:"serious",matches:"aria-allowed-attr-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["5c01ea"],all:[],any:[],none:[{options:{elementsAllowedAriaLabel:["applet","input"]},id:"aria-prohibited-attr"}]},{id:"aria-required-attr",impact:"critical",selector:"[role]",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["4e8ab6"],all:[],any:["aria-required-attr"],none:[]},{id:"aria-required-children",impact:"critical",selector:"[role]",matches:"aria-required-children-matches",tags:["cat.aria","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.1"],actIds:["bc4a75","ff89c9"],all:[],any:[{options:{reviewEmpty:["doc-bibliography","doc-endnotes","grid","list","listbox","menu","menubar","table","tablist","tree","treegrid","rowgroup"]},id:"aria-required-children"}],none:[]},{id:"aria-required-parent",impact:"critical",selector:"[role]",matches:"aria-required-parent-matches",tags:["cat.aria","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.1"],actIds:["ff89c9"],all:[],any:[{options:{ownGroupRoles:["listitem","treeitem"]},id:"aria-required-parent"}],none:[]},{id:"aria-roledescription",impact:"serious",selector:"[aria-roledescription]",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","deprecated"],enabled:!1,all:[],any:[{options:{supportedRoles:["button","img","checkbox","radio","combobox","menuitemcheckbox","menuitemradio"]},id:"aria-roledescription"}],none:[]},{id:"aria-roles",impact:"critical",selector:"[role]",matches:"no-empty-role-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["674b10"],all:[],any:[],none:["invalidrole","abstractrole","unsupportedrole"]},{id:"aria-text",impact:"serious",selector:"[role=text]",tags:["cat.aria","best-practice"],all:[],any:["no-focusable-content"],none:[]},{id:"aria-toggle-field-name",impact:"serious",selector:'[role="checkbox"], [role="menuitemcheckbox"], [role="menuitemradio"], [role="radio"], [role="switch"], [role="option"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","TTv5","TT5.c","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-7.1.1"],actIds:["e086e5"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["no-implicit-explicit-label"]},{id:"aria-tooltip-name",impact:"serious",selector:'[role="tooltip"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-treeitem-name",impact:"serious",selector:'[role="treeitem"]',matches:"no-naming-method-matches",tags:["cat.aria","best-practice"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-valid-attr-value",impact:"critical",matches:"aria-has-attr-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["6a7281"],all:[{options:[],id:"aria-valid-attr-value"},"aria-errormessage","aria-level"],any:[],none:[]},{id:"aria-valid-attr",impact:"critical",matches:"aria-has-attr-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["5f99a7"],all:[],any:[{options:[],id:"aria-valid-attr"}],none:[]},{id:"audio-caption",impact:"critical",selector:"audio",enabled:!1,excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag121","EN-301-549","EN-9.1.2.1","section508","section508.22.a","deprecated"],actIds:["2eb176","afb423"],all:[],any:[],none:["caption"]},{id:"autocomplete-valid",impact:"serious",matches:"autocomplete-matches",tags:["cat.forms","wcag21aa","wcag135","EN-301-549","EN-9.1.3.5","ACT","RGAAv4","RGAA-11.13.1"],actIds:["73f2c2"],all:[{options:{stateTerms:["none","false","true","disabled","enabled","undefined","null","xoff","xon"],ignoredValues:["text","pronouns","gender","message","content"]},id:"autocomplete-valid"}],any:[],none:[]},{id:"avoid-inline-spacing",impact:"serious",selector:"[style]",matches:"is-visible-on-screen-matches",tags:["cat.structure","wcag21aa","wcag1412","EN-301-549","EN-9.1.4.12","ACT"],actIds:["24afc2","9e45ec","78fd32"],all:[{options:{cssProperty:"letter-spacing",minValue:.12},id:"important-letter-spacing"},{options:{cssProperty:"word-spacing",minValue:.16},id:"important-word-spacing"},{options:{multiLineOnly:!0,cssProperty:"line-height",minValue:1.5,normalValue:1},id:"important-line-height"}],any:[],none:[]},{id:"blink",impact:"serious",selector:"blink",excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag222","section508","section508.22.j","TTv5","TT2.b","EN-301-549","EN-9.2.2.2","RGAAv4","RGAA-13.8.1"],all:[],any:[],none:["is-on-screen"]},{id:"button-name",impact:"critical",selector:"button",matches:"no-explicit-name-required-matches",tags:["cat.name-role-value","wcag2a","wcag412","section508","section508.22.a","TTv5","TT6.a","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.9.1"],actIds:["97a4e1","m6b1q3"],all:[],any:["button-has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"implicit-label","explicit-label","presentational-role"],none:[]},{id:"bypass",impact:"serious",selector:"html",pageLevel:!0,matches:"bypass-matches",reviewOnFail:!0,tags:["cat.keyboard","wcag2a","wcag241","section508","section508.22.o","TTv5","TT9.a","EN-301-549","EN-9.2.4.1","RGAAv4","RGAA-12.7.1"],actIds:["cf77f2","047fe0","b40fd1","3e12e1","ye5d6e"],all:[],any:["internal-link-present",{options:{selector:":is(h1, h2, h3, h4, h5, h6):not([role]), [role=heading]"},id:"header-present"},{options:{selector:"main, [role=main]"},id:"landmark"}],none:[]},{id:"color-contrast-enhanced",impact:"serious",matches:"color-contrast-matches",excludeHidden:!1,enabled:!1,tags:["cat.color","wcag2aaa","wcag146","ACT"],actIds:["09o5cg"],all:[],any:[{options:{ignoreUnicode:!0,ignoreLength:!1,ignorePseudo:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:7,minThreshold:4.5},large:{expected:4.5,minThreshold:3}},pseudoSizeThreshold:.25,shadowOutlineEmMax:.1,textStrokeEmMin:.03},id:"color-contrast-enhanced"}],none:[]},{id:"color-contrast",impact:"serious",matches:"color-contrast-matches",excludeHidden:!1,tags:["cat.color","wcag2aa","wcag143","TTv5","TT13.c","EN-301-549","EN-9.1.4.3","ACT","RGAAv4","RGAA-3.2.1"],actIds:["afw4f7","09o5cg"],all:[],any:[{options:{ignoreUnicode:!0,ignoreLength:!1,ignorePseudo:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:4.5},large:{expected:3}},pseudoSizeThreshold:.25,shadowOutlineEmMax:.2,textStrokeEmMin:.03},id:"color-contrast"}],none:[]},{id:"css-orientation-lock",impact:"serious",selector:"html",tags:["cat.structure","wcag134","wcag21aa","EN-301-549","EN-9.1.3.4","RGAAv4","RGAA-13.9.1","experimental"],actIds:["b33eff"],all:[{options:{degreeThreshold:2},id:"css-orientation-lock"}],any:[],none:[],preload:!0},{id:"definition-list",impact:"serious",selector:"dl",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.3"],all:[],any:[],none:["structured-dlitems",{options:{validRoles:["definition","term","listitem"],validNodeNames:["dt","dd"],divGroups:!0},id:"only-dlitems"}]},{id:"dlitem",impact:"serious",selector:"dd, dt",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.3"],all:[],any:["dlitem"],none:[]},{id:"document-title",impact:"serious",selector:"html",matches:"is-initiator-matches",tags:["cat.text-alternatives","wcag2a","wcag242","TTv5","TT12.a","EN-301-549","EN-9.2.4.2","ACT","RGAAv4","RGAA-8.5.1"],actIds:["2779a5"],all:[],any:["doc-has-title"],none:[]},{id:"duplicate-id-active",impact:"serious",selector:"[id]",matches:"duplicate-id-active-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a-obsolete","wcag411","deprecated"],enabled:!1,actIds:["3ea0c8"],all:[],any:["duplicate-id-active"],none:[]},{id:"duplicate-id-aria",impact:"critical",selector:"[id]",matches:"duplicate-id-aria-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-8.2.1"],reviewOnFail:!0,actIds:["3ea0c8"],all:[],any:["duplicate-id-aria"],none:[]},{id:"duplicate-id",impact:"minor",selector:"[id]",matches:"duplicate-id-misc-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a-obsolete","wcag411","deprecated"],enabled:!1,actIds:["3ea0c8"],all:[],any:["duplicate-id"],none:[]},{id:"empty-heading",impact:"minor",selector:'h1, h2, h3, h4, h5, h6, [role="heading"]',matches:"heading-matches",tags:["cat.name-role-value","best-practice"],actIds:["ffd0e9"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"empty-table-header",impact:"minor",selector:'th:not([role]), [role="rowheader"], [role="columnheader"]',tags:["cat.name-role-value","best-practice"],all:[],any:["has-visible-text"],none:[]},{id:"focus-order-semantics",impact:"minor",selector:"div, h1, h2, h3, h4, h5, h6, [role=heading], p, span",matches:"inserted-into-focus-order-matches",tags:["cat.keyboard","best-practice","RGAAv4","RGAA-12.8.1","experimental"],all:[],any:[{options:[],id:"has-widget-role"},{options:{roles:["tooltip"]},id:"valid-scrollable-semantics"}],none:[]},{id:"form-field-multiple-labels",impact:"moderate",selector:"input, select, textarea",matches:"label-matches",tags:["cat.forms","wcag2a","wcag332","TTv5","TT5.c","EN-301-549","EN-9.3.3.2","RGAAv4","RGAA-11.2.1"],all:[],any:[],none:["multiple-label"]},{id:"frame-focusable-content",impact:"serious",selector:"html",matches:"frame-focusable-content-matches",tags:["cat.keyboard","wcag2a","wcag211","TTv5","TT4.a","EN-301-549","EN-9.2.1.1","RGAAv4","RGAA-7.3.2"],actIds:["akn7bn"],all:[],any:["frame-focusable-content"],none:[]},{id:"frame-tested",impact:"critical",selector:"html, frame, iframe",tags:["cat.structure","best-practice","review-item"],all:[{options:{isViolation:!1},id:"frame-tested"}],any:[],none:[]},{id:"frame-title-unique",impact:"serious",selector:"frame[title], iframe[title]",matches:"frame-title-has-text-matches",tags:["cat.text-alternatives","wcag2a","wcag412","TTv5","TT12.d","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-2.2.1"],actIds:["4b1c6c"],all:[],any:[],none:["unique-frame-title"],reviewOnFail:!0},{id:"frame-title",impact:"serious",selector:"frame, iframe",matches:"no-negative-tabindex-matches",tags:["cat.text-alternatives","wcag2a","wcag412","section508","section508.22.i","TTv5","TT12.d","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-2.1.1"],actIds:["cae760"],all:[],any:[{options:{attribute:"title"},id:"non-empty-title"},"aria-label","aria-labelledby","presentational-role"],none:[]},{id:"heading-order",impact:"moderate",selector:"h1, h2, h3, h4, h5, h6, [role=heading]",matches:"heading-matches",tags:["cat.semantics","best-practice"],all:[],any:["heading-order"],none:[]},{id:"hidden-content",impact:"minor",selector:"*",excludeHidden:!1,tags:["cat.structure","best-practice","experimental","review-item"],all:[],any:["hidden-content"],none:[]},{id:"html-has-lang",impact:"serious",selector:"html",matches:"is-initiator-matches",tags:["cat.language","wcag2a","wcag311","TTv5","TT11.a","EN-301-549","EN-9.3.1.1","ACT","RGAAv4","RGAA-8.3.1"],actIds:["b5c3f8"],all:[],any:[{options:{attributes:["lang","xml:lang"]},id:"has-lang"}],none:[]},{id:"html-lang-valid",impact:"serious",selector:'html[lang]:not([lang=""]), html[xml\\:lang]:not([xml\\:lang=""])',tags:["cat.language","wcag2a","wcag311","TTv5","TT11.a","EN-301-549","EN-9.3.1.1","ACT","RGAAv4","RGAA-8.4.1"],actIds:["bf051a"],all:[],any:[],none:[{options:{attributes:["lang","xml:lang"]},id:"valid-lang"}]},{id:"html-xml-lang-mismatch",impact:"moderate",selector:"html[lang][xml\\:lang]",matches:"xml-lang-mismatch-matches",tags:["cat.language","wcag2a","wcag311","EN-301-549","EN-9.3.1.1","ACT","RGAAv4","RGAA-8.3.1"],actIds:["5b7ae0"],all:["xml-lang-mismatch"],any:[],none:[]},{id:"identical-links-same-purpose",impact:"minor",selector:'a[href], area[href], [role="link"]',excludeHidden:!1,enabled:!1,matches:"identical-links-same-purpose-matches",tags:["cat.semantics","wcag2aaa","wcag249"],actIds:["b20e66"],all:["identical-links-same-purpose"],any:[],none:[]},{id:"image-alt",impact:"critical",selector:"img",matches:"no-explicit-name-required-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","TTv5","TT7.a","TT7.b","EN-301-549","EN-9.1.1.1","ACT","RGAAv4","RGAA-1.1.1"],actIds:["23a2a8"],all:[],any:["has-alt","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:["alt-space-value"]},{id:"image-redundant-alt",impact:"minor",selector:"img",tags:["cat.text-alternatives","best-practice"],all:[],any:[],none:[{options:{parentSelector:"button, [role=button], a[href], p, li, td, th"},id:"duplicate-img-label"}]},{id:"input-button-name",impact:"critical",selector:'input[type="button"], input[type="submit"], input[type="reset"]',matches:"no-explicit-name-required-matches",tags:["cat.name-role-value","wcag2a","wcag412","section508","section508.22.a","TTv5","TT5.c","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.9.1"],actIds:["97a4e1"],all:[],any:["non-empty-if-present",{options:{attribute:"value"},id:"non-empty-value"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"implicit-label","explicit-label","presentational-role"],none:[]},{id:"input-image-alt",impact:"critical",selector:'input[type="image"]',matches:"no-explicit-name-required-matches",tags:["cat.text-alternatives","wcag2a","wcag111","wcag412","section508","section508.22.a","TTv5","TT7.a","EN-301-549","EN-9.1.1.1","EN-9.4.1.2","ACT","RGAAv4","RGAA-1.1.3"],actIds:["59796f"],all:[],any:[{options:{attribute:"alt"},id:"non-empty-alt"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"implicit-label","explicit-label"],none:[]},{id:"label-content-name-mismatch",impact:"serious",matches:"label-content-name-mismatch-matches",tags:["cat.semantics","wcag21a","wcag253","EN-301-549","EN-9.2.5.3","RGAAv4","RGAA-6.1.5","experimental"],actIds:["2ee8b8"],all:[],any:[{options:{pixelThreshold:.1,occurrenceThreshold:3},id:"label-content-name-mismatch"}],none:[]},{id:"label-title-only",impact:"serious",selector:"input, select, textarea",matches:"label-matches",tags:["cat.forms","best-practice"],all:[],any:[],none:["title-only"]},{id:"label",impact:"critical",selector:"input, textarea",matches:"label-matches",tags:["cat.forms","wcag2a","wcag412","section508","section508.22.n","TTv5","TT5.c","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.1.1"],actIds:["e086e5"],all:[],any:["implicit-label","explicit-label","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},{options:{attribute:"placeholder"},id:"non-empty-placeholder"},"presentational-role"],none:["hidden-explicit-label"]},{id:"landmark-banner-is-top-level",impact:"moderate",selector:"header:not([role]), [role=banner]",matches:"landmark-has-body-context-matches",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-complementary-is-top-level",impact:"moderate",selector:"aside:not([role]), [role=complementary]",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-contentinfo-is-top-level",impact:"moderate",selector:"footer:not([role]), [role=contentinfo]",matches:"landmark-has-body-context-matches",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-main-is-top-level",impact:"moderate",selector:"main:not([role]), [role=main]",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-no-duplicate-banner",impact:"moderate",selector:"header:not([role]), [role=banner]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"header:not([role]), [role=banner]",role:"banner"},id:"page-no-duplicate-banner"}],none:[]},{id:"landmark-no-duplicate-contentinfo",impact:"moderate",selector:"footer:not([role]), [role=contentinfo]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"footer:not([role]), [role=contentinfo]",role:"contentinfo"},id:"page-no-duplicate-contentinfo"}],none:[]},{id:"landmark-no-duplicate-main",impact:"moderate",selector:"main:not([role]), [role=main]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"main:not([role]), [role='main']"},id:"page-no-duplicate-main"}],none:[]},{id:"landmark-one-main",impact:"moderate",selector:"html",tags:["cat.semantics","best-practice"],all:[{options:{selector:"main:not([role]), [role='main']",passForModal:!0},id:"page-has-main"}],any:[],none:[]},{id:"landmark-unique",impact:"moderate",selector:"[role=banner], [role=complementary], [role=contentinfo], [role=main], [role=navigation], [role=region], [role=search], [role=form], form, footer, header, aside, main, nav, section",tags:["cat.semantics","best-practice"],matches:"landmark-unique-matches",all:[],any:["landmark-is-unique"],none:[]},{id:"link-in-text-block",impact:"serious",selector:"a[href], [role=link]",matches:"link-in-text-block-matches",excludeHidden:!1,tags:["cat.color","wcag2a","wcag141","TTv5","TT13.a","EN-301-549","EN-9.1.4.1","RGAAv4","RGAA-10.6.1"],all:[],any:[{options:{requiredContrastRatio:3,allowSameColor:!0},id:"link-in-text-block"},"link-in-text-block-style"],none:[]},{id:"link-name",impact:"serious",selector:"a[href]",tags:["cat.name-role-value","wcag2a","wcag244","wcag412","section508","section508.22.a","TTv5","TT6.a","EN-301-549","EN-9.2.4.4","EN-9.4.1.2","ACT","RGAAv4","RGAA-6.2.1"],actIds:["c487ae"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["focusable-no-name"]},{id:"list",impact:"serious",selector:"ul, ol",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.1"],all:[],any:[],none:[{options:{validRoles:["listitem"],validNodeNames:["li"]},id:"only-listitems"}]},{id:"listitem",impact:"serious",selector:"li",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.1"],all:[],any:["listitem"],none:[]},{id:"marquee",impact:"serious",selector:"marquee",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag222","TTv5","TT2.b","EN-301-549","EN-9.2.2.2","RGAAv4","RGAA-13.8.1"],all:[],any:[],none:["is-on-screen"]},{id:"meta-refresh-no-exceptions",impact:"minor",selector:'meta[http-equiv="refresh"][content]',excludeHidden:!1,enabled:!1,tags:["cat.time-and-media","wcag2aaa","wcag224","wcag325"],actIds:["bisz58"],all:[],any:[{options:{minDelay:72e3,maxDelay:!1},id:"meta-refresh-no-exceptions"}],none:[]},{id:"meta-refresh",impact:"critical",selector:'meta[http-equiv="refresh"][content]',excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag221","TTv5","TT8.a","EN-301-549","EN-9.2.2.1","RGAAv4","RGAA-13.1.2"],actIds:["bc659a","bisz58"],all:[],any:[{options:{minDelay:0,maxDelay:72e3},id:"meta-refresh"}],none:[]},{id:"meta-viewport-large",impact:"minor",selector:'meta[name="viewport"]',matches:"is-initiator-matches",excludeHidden:!1,tags:["cat.sensory-and-visual-cues","best-practice"],all:[],any:[{options:{scaleMinimum:5,lowerBound:2},id:"meta-viewport-large"}],none:[]},{id:"meta-viewport",impact:"moderate",selector:'meta[name="viewport"]',matches:"is-initiator-matches",excludeHidden:!1,tags:["cat.sensory-and-visual-cues","wcag2aa","wcag144","EN-301-549","EN-9.1.4.4","ACT","RGAAv4","RGAA-10.4.2"],actIds:["b4f0c3"],all:[],any:[{options:{scaleMinimum:2},id:"meta-viewport"}],none:[]},{id:"nested-interactive",impact:"serious",matches:"nested-interactive-matches",tags:["cat.keyboard","wcag2a","wcag412","TTv5","TT6.a","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["307n5z"],all:[],any:["no-focusable-content"],none:[]},{id:"no-autoplay-audio",impact:"moderate",excludeHidden:!1,selector:"audio[autoplay], video[autoplay]",matches:"no-autoplay-audio-matches",reviewOnFail:!0,tags:["cat.time-and-media","wcag2a","wcag142","TTv5","TT2.a","EN-301-549","EN-9.1.4.2","ACT","RGAAv4","RGAA-4.10.1"],actIds:["80f0bf"],preload:!0,all:[{options:{allowedDuration:3},id:"no-autoplay-audio"}],any:[],none:[]},{id:"object-alt",impact:"serious",selector:"object[data]",matches:"object-is-loaded-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","EN-301-549","EN-9.1.1.1","RGAAv4","RGAA-1.1.6"],actIds:["8fc3b6"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:[]},{id:"p-as-heading",impact:"serious",selector:"p",matches:"p-as-heading-matches",tags:["cat.semantics","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.1.3","experimental"],all:[{options:{margins:[{weight:150,italic:!0},{weight:150,size:1.15},{italic:!0,size:1.15},{size:1.4}],passLength:1,failLength:.5},id:"p-as-heading"}],any:[],none:[]},{id:"page-has-heading-one",impact:"moderate",selector:"html",tags:["cat.semantics","best-practice"],all:[{options:{selector:"h1:not([role], [aria-level]), :is(h1, h2, h3, h4, h5, h6):not([role])[aria-level=1], [role=heading][aria-level=1]",passForModal:!0},id:"page-has-heading-one"}],any:[],none:[]},{id:"presentation-role-conflict",impact:"minor",selector:`img[alt=''], [role="none"], [role="presentation"]`,matches:"has-implicit-chromium-role-matches",tags:["cat.aria","best-practice","ACT"],actIds:["46ca7f"],all:[],any:[],none:["is-element-focusable","has-global-aria-attribute"]},{id:"region",impact:"moderate",selector:"body *",tags:["cat.keyboard","best-practice","RGAAv4","RGAA-9.2.1"],all:[],any:[{options:{regionMatcher:"dialog, [role=dialog], [role=alertdialog], svg"},id:"region"}],none:[]},{id:"role-img-alt",impact:"serious",selector:"[role='img']:not(img, area, input, object)",matches:"html-namespace-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","TTv5","TT7.a","EN-301-549","EN-9.1.1.1","ACT","RGAAv4","RGAA-1.1.1"],actIds:["23a2a8"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"scope-attr-valid",impact:"moderate",selector:"td[scope], th[scope]",tags:["cat.tables","best-practice"],all:["html5-scope",{options:{values:["row","col","rowgroup","colgroup"]},id:"scope-value"}],any:[],none:[]},{id:"scrollable-region-focusable",impact:"serious",selector:"*:not(select,textarea)",matches:"scrollable-region-focusable-matches",tags:["cat.keyboard","wcag2a","wcag211","wcag213","TTv5","TT4.a","EN-301-549","EN-9.2.1.1","EN-9.2.1.3","RGAAv4","RGAA-7.3.2"],actIds:["0ssw9k"],all:[],any:["focusable-content","focusable-element"],none:[]},{id:"select-name",impact:"critical",selector:"select",tags:["cat.forms","wcag2a","wcag412","section508","section508.22.n","TTv5","TT5.c","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.1.1"],actIds:["e086e5"],all:[],any:["implicit-label","explicit-label","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:["hidden-explicit-label"]},{id:"server-side-image-map",impact:"minor",selector:"img[ismap]",tags:["cat.text-alternatives","wcag2a","wcag211","section508","section508.22.f","TTv5","TT4.a","EN-301-549","EN-9.2.1.1","RGAAv4","RGAA-1.1.4"],all:[],any:[],none:["exists"]},{id:"skip-link",impact:"moderate",selector:'a[href^="#"], a[href^="/#"]',matches:"skip-link-matches",tags:["cat.keyboard","best-practice","RGAAv4","RGAA-12.7.1"],all:[],any:["skip-link"],none:[]},{id:"summary-name",impact:"serious",selector:"summary",matches:"summary-interactive-matches",tags:["cat.name-role-value","wcag2a","wcag412","section508","section508.22.a","TTv5","TT6.a","EN-301-549","EN-9.4.1.2"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"svg-img-alt",impact:"serious",selector:'[role="img"], [role="graphics-symbol"], svg[role="graphics-document"]',matches:"svg-namespace-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","TTv5","TT7.a","EN-301-549","EN-9.1.1.1","ACT","RGAAv4","RGAA-1.1.5"],actIds:["7d6734"],all:[],any:["svg-non-empty-title","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"tabindex",impact:"serious",selector:"[tabindex]",tags:["cat.keyboard","best-practice"],all:[],any:["tabindex"],none:[]},{id:"table-duplicate-name",impact:"minor",selector:"table",tags:["cat.tables","best-practice","RGAAv4","RGAA-5.2.1"],all:[],any:[],none:["same-caption-summary"]},{id:"table-fake-caption",impact:"serious",selector:"table",matches:"data-table-matches",tags:["cat.tables","experimental","wcag2a","wcag131","section508","section508.22.g","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-5.4.1"],all:["caption-faked"],any:[],none:[]},{id:"target-size",impact:"serious",selector:"*",enabled:!1,matches:"widget-not-inline-matches",tags:["cat.sensory-and-visual-cues","wcag22aa","wcag258"],all:[],any:[{options:{minSize:24},id:"target-size"},{options:{minOffset:24},id:"target-offset"}],none:[]},{id:"td-has-header",impact:"critical",selector:"table",matches:"data-table-large-matches",tags:["cat.tables","experimental","wcag2a","wcag131","section508","section508.22.g","TTv5","TT14.b","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-5.7.4"],all:["td-has-header"],any:[],none:[]},{id:"td-headers-attr",impact:"serious",selector:"table",matches:"table-or-grid-role-matches",tags:["cat.tables","wcag2a","wcag131","section508","section508.22.g","TTv5","TT14.b","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-5.7.4"],actIds:["a25f45"],all:["td-headers-attr"],any:[],none:[]},{id:"th-has-data-cells",impact:"serious",selector:"table",matches:"data-table-matches",tags:["cat.tables","wcag2a","wcag131","section508","section508.22.g","TTv5","TT14.b","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-5.7.1"],actIds:["d0f69e"],all:["th-has-data-cells"],any:[],none:[]},{id:"valid-lang",impact:"serious",selector:"[lang]:not(html), [xml\\:lang]:not(html)",tags:["cat.language","wcag2aa","wcag312","TTv5","TT11.b","EN-301-549","EN-9.3.1.2","ACT","RGAAv4","RGAA-8.7.1"],actIds:["de46e4"],all:[],any:[],none:[{options:{attributes:["lang","xml:lang"]},id:"valid-lang"}]},{id:"video-caption",impact:"critical",selector:"video",tags:["cat.text-alternatives","wcag2a","wcag122","section508","section508.22.a","TTv5","TT17.a","EN-301-549","EN-9.1.2.2","RGAAv4","RGAA-4.3.1"],actIds:["eac66b"],all:[],any:[],none:["caption"]}],checks:[{id:"abstractrole",evaluate:"abstractrole-evaluate"},{id:"aria-allowed-attr",evaluate:"aria-allowed-attr-evaluate",options:{validTreeRowAttrs:["aria-posinset","aria-setsize","aria-expanded","aria-level"]}},{id:"aria-allowed-role",evaluate:"aria-allowed-role-evaluate",options:{allowImplicit:!0,ignoredTags:[]}},{id:"aria-busy",evaluate:"aria-busy-evaluate",deprecated:!0},{id:"aria-conditional-attr",evaluate:"aria-conditional-attr-evaluate",options:{invalidTableRowAttrs:["aria-posinset","aria-setsize","aria-expanded","aria-level"]}},{id:"aria-errormessage",evaluate:"aria-errormessage-evaluate"},{id:"aria-hidden-body",evaluate:"aria-hidden-body-evaluate"},{id:"aria-level",evaluate:"aria-level-evaluate"},{id:"aria-prohibited-attr",evaluate:"aria-prohibited-attr-evaluate",options:{elementsAllowedAriaLabel:["applet","input"]}},{id:"aria-required-attr",evaluate:"aria-required-attr-evaluate"},{id:"aria-required-children",evaluate:"aria-required-children-evaluate",options:{reviewEmpty:["doc-bibliography","doc-endnotes","grid","list","listbox","menu","menubar","table","tablist","tree","treegrid","rowgroup"]}},{id:"aria-required-parent",evaluate:"aria-required-parent-evaluate",options:{ownGroupRoles:["listitem","treeitem"]}},{id:"aria-roledescription",evaluate:"aria-roledescription-evaluate",options:{supportedRoles:["button","img","checkbox","radio","combobox","menuitemcheckbox","menuitemradio"]}},{id:"aria-unsupported-attr",evaluate:"aria-unsupported-attr-evaluate"},{id:"aria-valid-attr-value",evaluate:"aria-valid-attr-value-evaluate",options:[]},{id:"aria-valid-attr",evaluate:"aria-valid-attr-evaluate",options:[]},{id:"braille-label-equivalent",evaluate:"braille-label-equivalent-evaluate"},{id:"braille-roledescription-equivalent",evaluate:"braille-roledescription-equivalent-evaluate"},{id:"deprecatedrole",evaluate:"deprecatedrole-evaluate"},{id:"fallbackrole",evaluate:"fallbackrole-evaluate"},{id:"has-global-aria-attribute",evaluate:"has-global-aria-attribute-evaluate"},{id:"has-widget-role",evaluate:"has-widget-role-evaluate",options:[]},{id:"invalidrole",evaluate:"invalidrole-evaluate"},{id:"is-element-focusable",evaluate:"is-element-focusable-evaluate"},{id:"no-implicit-explicit-label",evaluate:"no-implicit-explicit-label-evaluate"},{id:"unsupportedrole",evaluate:"unsupportedrole-evaluate"},{id:"valid-scrollable-semantics",evaluate:"valid-scrollable-semantics-evaluate",options:{roles:["tooltip"]}},{id:"color-contrast-enhanced",evaluate:"color-contrast-evaluate",options:{ignoreUnicode:!0,ignoreLength:!1,ignorePseudo:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:7,minThreshold:4.5},large:{expected:4.5,minThreshold:3}},pseudoSizeThreshold:.25,shadowOutlineEmMax:.1,textStrokeEmMin:.03}},{id:"color-contrast",evaluate:"color-contrast-evaluate",options:{ignoreUnicode:!0,ignoreLength:!1,ignorePseudo:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:4.5},large:{expected:3}},pseudoSizeThreshold:.25,shadowOutlineEmMax:.2,textStrokeEmMin:.03}},{id:"link-in-text-block-style",evaluate:"link-in-text-block-style-evaluate"},{id:"link-in-text-block",evaluate:"link-in-text-block-evaluate",options:{requiredContrastRatio:3,allowSameColor:!0}},{id:"autocomplete-appropriate",evaluate:"autocomplete-appropriate-evaluate",deprecated:!0},{id:"autocomplete-valid",evaluate:"autocomplete-valid-evaluate",options:{stateTerms:["none","false","true","disabled","enabled","undefined","null","xoff","xon"],ignoredValues:["text","pronouns","gender","message","content"]}},{id:"accesskeys",evaluate:"accesskeys-evaluate",after:"accesskeys-after"},{id:"focusable-content",evaluate:"focusable-content-evaluate"},{id:"focusable-disabled",evaluate:"focusable-disabled-evaluate"},{id:"focusable-element",evaluate:"focusable-element-evaluate"},{id:"focusable-modal-open",evaluate:"focusable-modal-open-evaluate"},{id:"focusable-no-name",evaluate:"focusable-no-name-evaluate"},{id:"focusable-not-tabbable",evaluate:"focusable-not-tabbable-evaluate"},{id:"frame-focusable-content",evaluate:"frame-focusable-content-evaluate"},{id:"landmark-is-top-level",evaluate:"landmark-is-top-level-evaluate"},{id:"no-focusable-content",evaluate:"no-focusable-content-evaluate"},{id:"page-has-heading-one",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:"h1:not([role], [aria-level]), :is(h1, h2, h3, h4, h5, h6):not([role])[aria-level=1], [role=heading][aria-level=1]",passForModal:!0}},{id:"page-has-main",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:"main:not([role]), [role='main']",passForModal:!0}},{id:"page-no-duplicate-banner",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"header:not([role]), [role=banner]",role:"banner"}},{id:"page-no-duplicate-contentinfo",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"footer:not([role]), [role=contentinfo]",role:"contentinfo"}},{id:"page-no-duplicate-main",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"main:not([role]), [role='main']"}},{id:"tabindex",evaluate:"tabindex-evaluate"},{id:"alt-space-value",evaluate:"alt-space-value-evaluate"},{id:"duplicate-img-label",evaluate:"duplicate-img-label-evaluate",options:{parentSelector:"button, [role=button], a[href], p, li, td, th"}},{id:"explicit-label",evaluate:"explicit-evaluate"},{id:"help-same-as-label",evaluate:"help-same-as-label-evaluate"},{id:"hidden-explicit-label",evaluate:"hidden-explicit-label-evaluate"},{id:"implicit-label",evaluate:"implicit-evaluate"},{id:"label-content-name-mismatch",evaluate:"label-content-name-mismatch-evaluate",options:{pixelThreshold:.1,occurrenceThreshold:3}},{id:"multiple-label",evaluate:"multiple-label-evaluate"},{id:"title-only",evaluate:"title-only-evaluate"},{id:"landmark-is-unique",evaluate:"landmark-is-unique-evaluate",after:"landmark-is-unique-after"},{id:"has-lang",evaluate:"has-lang-evaluate",options:{attributes:["lang","xml:lang"]}},{id:"valid-lang",evaluate:"valid-lang-evaluate",options:{attributes:["lang","xml:lang"]}},{id:"xml-lang-mismatch",evaluate:"xml-lang-mismatch-evaluate"},{id:"dlitem",evaluate:"dlitem-evaluate"},{id:"listitem",evaluate:"listitem-evaluate"},{id:"only-dlitems",evaluate:"invalid-children-evaluate",options:{validRoles:["definition","term","listitem"],validNodeNames:["dt","dd"],divGroups:!0}},{id:"only-listitems",evaluate:"invalid-children-evaluate",options:{validRoles:["listitem"],validNodeNames:["li"]}},{id:"structured-dlitems",evaluate:"structured-dlitems-evaluate"},{id:"caption",evaluate:"caption-evaluate"},{id:"frame-tested",evaluate:"frame-tested-evaluate",after:"frame-tested-after",options:{isViolation:!1}},{id:"no-autoplay-audio",evaluate:"no-autoplay-audio-evaluate",options:{allowedDuration:3}},{id:"css-orientation-lock",evaluate:"css-orientation-lock-evaluate",options:{degreeThreshold:2}},{id:"meta-viewport-large",evaluate:"meta-viewport-scale-evaluate",options:{scaleMinimum:5,lowerBound:2}},{id:"meta-viewport",evaluate:"meta-viewport-scale-evaluate",options:{scaleMinimum:2}},{id:"target-offset",evaluate:"target-offset-evaluate",options:{minOffset:24}},{id:"target-size",evaluate:"target-size-evaluate",options:{minSize:24}},{id:"header-present",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:":is(h1, h2, h3, h4, h5, h6):not([role]), [role=heading]"}},{id:"heading-order",evaluate:"heading-order-evaluate",after:"heading-order-after"},{id:"identical-links-same-purpose",evaluate:"identical-links-same-purpose-evaluate",after:"identical-links-same-purpose-after"},{id:"internal-link-present",evaluate:"internal-link-present-evaluate"},{id:"landmark",evaluate:"has-descendant-evaluate",options:{selector:"main, [role=main]"}},{id:"meta-refresh-no-exceptions",evaluate:"meta-refresh-evaluate",options:{minDelay:72e3,maxDelay:!1}},{id:"meta-refresh",evaluate:"meta-refresh-evaluate",options:{minDelay:0,maxDelay:72e3}},{id:"p-as-heading",evaluate:"p-as-heading-evaluate",options:{margins:[{weight:150,italic:!0},{weight:150,size:1.15},{italic:!0,size:1.15},{size:1.4}],passLength:1,failLength:.5}},{id:"region",evaluate:"region-evaluate",after:"region-after",options:{regionMatcher:"dialog, [role=dialog], [role=alertdialog], svg"}},{id:"skip-link",evaluate:"skip-link-evaluate"},{id:"unique-frame-title",evaluate:"unique-frame-title-evaluate",after:"unique-frame-title-after"},{id:"duplicate-id-active",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"duplicate-id-aria",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"duplicate-id",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"aria-label",evaluate:"aria-label-evaluate"},{id:"aria-labelledby",evaluate:"aria-labelledby-evaluate"},{id:"avoid-inline-spacing",evaluate:"avoid-inline-spacing-evaluate",options:{cssProperties:["line-height","letter-spacing","word-spacing"]}},{id:"button-has-visible-text",evaluate:"has-text-content-evaluate"},{id:"doc-has-title",evaluate:"doc-has-title-evaluate"},{id:"error-occurred",evaluate:"exists-evaluate"},{id:"exists",evaluate:"exists-evaluate"},{id:"has-alt",evaluate:"has-alt-evaluate"},{id:"has-visible-text",evaluate:"has-text-content-evaluate"},{id:"important-letter-spacing",evaluate:"inline-style-property-evaluate",options:{cssProperty:"letter-spacing",minValue:.12}},{id:"important-line-height",evaluate:"inline-style-property-evaluate",options:{multiLineOnly:!0,cssProperty:"line-height",minValue:1.5,normalValue:1}},{id:"important-word-spacing",evaluate:"inline-style-property-evaluate",options:{cssProperty:"word-spacing",minValue:.16}},{id:"is-on-screen",evaluate:"is-on-screen-evaluate"},{id:"non-empty-alt",evaluate:"attr-non-space-content-evaluate",options:{attribute:"alt"}},{id:"non-empty-if-present",evaluate:"non-empty-if-present-evaluate"},{id:"non-empty-placeholder",evaluate:"attr-non-space-content-evaluate",options:{attribute:"placeholder"}},{id:"non-empty-title",evaluate:"attr-non-space-content-evaluate",options:{attribute:"title"}},{id:"non-empty-value",evaluate:"attr-non-space-content-evaluate",options:{attribute:"value"}},{id:"presentational-role",evaluate:"presentational-role-evaluate"},{id:"role-none",evaluate:"matches-definition-evaluate",deprecated:!0,options:{matcher:{attributes:{role:"none"}}}},{id:"role-presentation",evaluate:"matches-definition-evaluate",deprecated:!0,options:{matcher:{attributes:{role:"presentation"}}}},{id:"svg-non-empty-title",evaluate:"svg-non-empty-title-evaluate"},{id:"caption-faked",evaluate:"caption-faked-evaluate"},{id:"html5-scope",evaluate:"html5-scope-evaluate"},{id:"same-caption-summary",evaluate:"same-caption-summary-evaluate"},{id:"scope-value",evaluate:"scope-value-evaluate",options:{values:["row","col","rowgroup","colgroup"]}},{id:"td-has-header",evaluate:"td-has-header-evaluate"},{id:"td-headers-attr",evaluate:"td-headers-attr-evaluate"},{id:"th-has-data-cells",evaluate:"th-has-data-cells-evaluate"},{id:"hidden-content",evaluate:"hidden-content-evaluate"}]})})(typeof window=="object"?window:HR)})(Ai)),Ai.exports}var UR=GR();const WR=VR(UR),KR=Object.freeze(Object.defineProperty({__proto__:null,default:WR},Symbol.toStringTag,{value:"Module"}));export{KR as a};
20
+ `);return L}}},incompleteFallbackMessage:"axe couldn't tell the reason. Time to break out the element inspector!"},rules:[{id:"accesskeys",impact:"serious",selector:"[accesskey]",excludeHidden:!1,tags:["cat.keyboard","best-practice"],all:[],any:[],none:["accesskeys"]},{id:"area-alt",impact:"critical",selector:"map area[href]",excludeHidden:!1,tags:["cat.text-alternatives","wcag2a","wcag244","wcag412","section508","section508.22.a","TTv5","TT6.a","EN-301-549","EN-9.2.4.4","EN-9.4.1.2","ACT","RGAAv4","RGAA-1.1.2"],actIds:["c487ae"],all:[],any:[{options:{attribute:"alt"},id:"non-empty-alt"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-allowed-attr",impact:"critical",matches:"aria-allowed-attr-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["5c01ea"],all:[{options:{validTreeRowAttrs:["aria-posinset","aria-setsize","aria-expanded","aria-level"]},id:"aria-allowed-attr"}],any:[],none:["aria-unsupported-attr"]},{id:"aria-allowed-role",impact:"minor",excludeHidden:!1,selector:"[role]",matches:"aria-allowed-role-matches",tags:["cat.aria","best-practice"],all:[],any:[{options:{allowImplicit:!0,ignoredTags:[]},id:"aria-allowed-role"}],none:[]},{id:"aria-braille-equivalent",reviewOnFail:!0,impact:"serious",selector:"[aria-brailleroledescription], [aria-braillelabel]",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2"],all:["braille-roledescription-equivalent","braille-label-equivalent"],any:[],none:[]},{id:"aria-command-name",impact:"serious",selector:'[role="link"], [role="button"], [role="menuitem"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","TTv5","TT6.a","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.9.1"],actIds:["97a4e1"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-conditional-attr",impact:"serious",matches:"aria-allowed-attr-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["5c01ea"],all:[{options:{invalidTableRowAttrs:["aria-posinset","aria-setsize","aria-expanded","aria-level"]},id:"aria-conditional-attr"}],any:[],none:[]},{id:"aria-deprecated-role",impact:"minor",selector:"[role]",matches:"no-empty-role-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["674b10"],all:[],any:[],none:["deprecatedrole"]},{id:"aria-dialog-name",impact:"serious",selector:'[role="dialog"], [role="alertdialog"]',matches:"no-naming-method-matches",tags:["cat.aria","best-practice"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-hidden-body",impact:"critical",selector:"body",excludeHidden:!1,matches:"is-initiator-matches",tags:["cat.aria","wcag2a","wcag131","wcag412","EN-301-549","EN-9.1.3.1","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],all:[],any:["aria-hidden-body"],none:[]},{id:"aria-hidden-focus",impact:"serious",selector:'[aria-hidden="true"]',matches:"aria-hidden-focus-matches",excludeHidden:!1,tags:["cat.name-role-value","wcag2a","wcag412","TTv5","TT6.a","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["6cfa84"],all:["focusable-modal-open","focusable-disabled","focusable-not-tabbable"],any:[],none:[]},{id:"aria-input-field-name",impact:"serious",selector:'[role="combobox"], [role="listbox"], [role="searchbox"], [role="slider"], [role="spinbutton"], [role="textbox"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","TTv5","TT5.c","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.1.1"],actIds:["e086e5"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["no-implicit-explicit-label"]},{id:"aria-meter-name",impact:"serious",selector:'[role="meter"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag111","EN-301-549","EN-9.1.1.1","RGAAv4","RGAA-11.1.1"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-progressbar-name",impact:"serious",selector:'[role="progressbar"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag111","EN-301-549","EN-9.1.1.1","RGAAv4","RGAA-11.1.1"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-prohibited-attr",impact:"serious",matches:"aria-allowed-attr-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["5c01ea"],all:[],any:[],none:[{options:{elementsAllowedAriaLabel:["applet","input"]},id:"aria-prohibited-attr"}]},{id:"aria-required-attr",impact:"critical",selector:"[role]",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["4e8ab6"],all:[],any:["aria-required-attr"],none:[]},{id:"aria-required-children",impact:"critical",selector:"[role]",matches:"aria-required-children-matches",tags:["cat.aria","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.1"],actIds:["bc4a75","ff89c9"],all:[],any:[{options:{reviewEmpty:["doc-bibliography","doc-endnotes","grid","list","listbox","menu","menubar","table","tablist","tree","treegrid","rowgroup"]},id:"aria-required-children"}],none:[]},{id:"aria-required-parent",impact:"critical",selector:"[role]",matches:"aria-required-parent-matches",tags:["cat.aria","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.1"],actIds:["ff89c9"],all:[],any:[{options:{ownGroupRoles:["listitem","treeitem"]},id:"aria-required-parent"}],none:[]},{id:"aria-roledescription",impact:"serious",selector:"[aria-roledescription]",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","deprecated"],enabled:!1,all:[],any:[{options:{supportedRoles:["button","img","checkbox","radio","combobox","menuitemcheckbox","menuitemradio"]},id:"aria-roledescription"}],none:[]},{id:"aria-roles",impact:"critical",selector:"[role]",matches:"no-empty-role-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["674b10"],all:[],any:[],none:["invalidrole","abstractrole","unsupportedrole"]},{id:"aria-text",impact:"serious",selector:"[role=text]",tags:["cat.aria","best-practice"],all:[],any:["no-focusable-content"],none:[]},{id:"aria-toggle-field-name",impact:"serious",selector:'[role="checkbox"], [role="menuitemcheckbox"], [role="menuitemradio"], [role="radio"], [role="switch"], [role="option"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","TTv5","TT5.c","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-7.1.1"],actIds:["e086e5"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["no-implicit-explicit-label"]},{id:"aria-tooltip-name",impact:"serious",selector:'[role="tooltip"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-treeitem-name",impact:"serious",selector:'[role="treeitem"]',matches:"no-naming-method-matches",tags:["cat.aria","best-practice"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-valid-attr-value",impact:"critical",matches:"aria-has-attr-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["6a7281"],all:[{options:[],id:"aria-valid-attr-value"},"aria-errormessage","aria-level"],any:[],none:[]},{id:"aria-valid-attr",impact:"critical",matches:"aria-has-attr-matches",tags:["cat.aria","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["5f99a7"],all:[],any:[{options:[],id:"aria-valid-attr"}],none:[]},{id:"audio-caption",impact:"critical",selector:"audio",enabled:!1,excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag121","EN-301-549","EN-9.1.2.1","section508","section508.22.a","deprecated"],actIds:["2eb176","afb423"],all:[],any:[],none:["caption"]},{id:"autocomplete-valid",impact:"serious",matches:"autocomplete-matches",tags:["cat.forms","wcag21aa","wcag135","EN-301-549","EN-9.1.3.5","ACT","RGAAv4","RGAA-11.13.1"],actIds:["73f2c2"],all:[{options:{stateTerms:["none","false","true","disabled","enabled","undefined","null","xoff","xon"],ignoredValues:["text","pronouns","gender","message","content"]},id:"autocomplete-valid"}],any:[],none:[]},{id:"avoid-inline-spacing",impact:"serious",selector:"[style]",matches:"is-visible-on-screen-matches",tags:["cat.structure","wcag21aa","wcag1412","EN-301-549","EN-9.1.4.12","ACT"],actIds:["24afc2","9e45ec","78fd32"],all:[{options:{cssProperty:"letter-spacing",minValue:.12},id:"important-letter-spacing"},{options:{cssProperty:"word-spacing",minValue:.16},id:"important-word-spacing"},{options:{multiLineOnly:!0,cssProperty:"line-height",minValue:1.5,normalValue:1},id:"important-line-height"}],any:[],none:[]},{id:"blink",impact:"serious",selector:"blink",excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag222","section508","section508.22.j","TTv5","TT2.b","EN-301-549","EN-9.2.2.2","RGAAv4","RGAA-13.8.1"],all:[],any:[],none:["is-on-screen"]},{id:"button-name",impact:"critical",selector:"button",matches:"no-explicit-name-required-matches",tags:["cat.name-role-value","wcag2a","wcag412","section508","section508.22.a","TTv5","TT6.a","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.9.1"],actIds:["97a4e1","m6b1q3"],all:[],any:["button-has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"implicit-label","explicit-label","presentational-role"],none:[]},{id:"bypass",impact:"serious",selector:"html",pageLevel:!0,matches:"bypass-matches",reviewOnFail:!0,tags:["cat.keyboard","wcag2a","wcag241","section508","section508.22.o","TTv5","TT9.a","EN-301-549","EN-9.2.4.1","RGAAv4","RGAA-12.7.1"],actIds:["cf77f2","047fe0","b40fd1","3e12e1","ye5d6e"],all:[],any:["internal-link-present",{options:{selector:":is(h1, h2, h3, h4, h5, h6):not([role]), [role=heading]"},id:"header-present"},{options:{selector:"main, [role=main]"},id:"landmark"}],none:[]},{id:"color-contrast-enhanced",impact:"serious",matches:"color-contrast-matches",excludeHidden:!1,enabled:!1,tags:["cat.color","wcag2aaa","wcag146","ACT"],actIds:["09o5cg"],all:[],any:[{options:{ignoreUnicode:!0,ignoreLength:!1,ignorePseudo:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:7,minThreshold:4.5},large:{expected:4.5,minThreshold:3}},pseudoSizeThreshold:.25,shadowOutlineEmMax:.1,textStrokeEmMin:.03},id:"color-contrast-enhanced"}],none:[]},{id:"color-contrast",impact:"serious",matches:"color-contrast-matches",excludeHidden:!1,tags:["cat.color","wcag2aa","wcag143","TTv5","TT13.c","EN-301-549","EN-9.1.4.3","ACT","RGAAv4","RGAA-3.2.1"],actIds:["afw4f7","09o5cg"],all:[],any:[{options:{ignoreUnicode:!0,ignoreLength:!1,ignorePseudo:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:4.5},large:{expected:3}},pseudoSizeThreshold:.25,shadowOutlineEmMax:.2,textStrokeEmMin:.03},id:"color-contrast"}],none:[]},{id:"css-orientation-lock",impact:"serious",selector:"html",tags:["cat.structure","wcag134","wcag21aa","EN-301-549","EN-9.1.3.4","RGAAv4","RGAA-13.9.1","experimental"],actIds:["b33eff"],all:[{options:{degreeThreshold:2},id:"css-orientation-lock"}],any:[],none:[],preload:!0},{id:"definition-list",impact:"serious",selector:"dl",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.3"],all:[],any:[],none:["structured-dlitems",{options:{validRoles:["definition","term","listitem"],validNodeNames:["dt","dd"],divGroups:!0},id:"only-dlitems"}]},{id:"dlitem",impact:"serious",selector:"dd, dt",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.3"],all:[],any:["dlitem"],none:[]},{id:"document-title",impact:"serious",selector:"html",matches:"is-initiator-matches",tags:["cat.text-alternatives","wcag2a","wcag242","TTv5","TT12.a","EN-301-549","EN-9.2.4.2","ACT","RGAAv4","RGAA-8.5.1"],actIds:["2779a5"],all:[],any:["doc-has-title"],none:[]},{id:"duplicate-id-active",impact:"serious",selector:"[id]",matches:"duplicate-id-active-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a-obsolete","wcag411","deprecated"],enabled:!1,actIds:["3ea0c8"],all:[],any:["duplicate-id-active"],none:[]},{id:"duplicate-id-aria",impact:"critical",selector:"[id]",matches:"duplicate-id-aria-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag412","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-8.2.1"],reviewOnFail:!0,actIds:["3ea0c8"],all:[],any:["duplicate-id-aria"],none:[]},{id:"duplicate-id",impact:"minor",selector:"[id]",matches:"duplicate-id-misc-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a-obsolete","wcag411","deprecated"],enabled:!1,actIds:["3ea0c8"],all:[],any:["duplicate-id"],none:[]},{id:"empty-heading",impact:"minor",selector:'h1, h2, h3, h4, h5, h6, [role="heading"]',matches:"heading-matches",tags:["cat.name-role-value","best-practice"],actIds:["ffd0e9"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"empty-table-header",impact:"minor",selector:'th:not([role]), [role="rowheader"], [role="columnheader"]',tags:["cat.name-role-value","best-practice"],all:[],any:["has-visible-text"],none:[]},{id:"focus-order-semantics",impact:"minor",selector:"div, h1, h2, h3, h4, h5, h6, [role=heading], p, span",matches:"inserted-into-focus-order-matches",tags:["cat.keyboard","best-practice","RGAAv4","RGAA-12.8.1","experimental"],all:[],any:[{options:[],id:"has-widget-role"},{options:{roles:["tooltip"]},id:"valid-scrollable-semantics"}],none:[]},{id:"form-field-multiple-labels",impact:"moderate",selector:"input, select, textarea",matches:"label-matches",tags:["cat.forms","wcag2a","wcag332","TTv5","TT5.c","EN-301-549","EN-9.3.3.2","RGAAv4","RGAA-11.2.1"],all:[],any:[],none:["multiple-label"]},{id:"frame-focusable-content",impact:"serious",selector:"html",matches:"frame-focusable-content-matches",tags:["cat.keyboard","wcag2a","wcag211","TTv5","TT4.a","EN-301-549","EN-9.2.1.1","RGAAv4","RGAA-7.3.2"],actIds:["akn7bn"],all:[],any:["frame-focusable-content"],none:[]},{id:"frame-tested",impact:"critical",selector:"html, frame, iframe",tags:["cat.structure","best-practice","review-item"],all:[{options:{isViolation:!1},id:"frame-tested"}],any:[],none:[]},{id:"frame-title-unique",impact:"serious",selector:"frame[title], iframe[title]",matches:"frame-title-has-text-matches",tags:["cat.text-alternatives","wcag2a","wcag412","TTv5","TT12.d","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-2.2.1"],actIds:["4b1c6c"],all:[],any:[],none:["unique-frame-title"],reviewOnFail:!0},{id:"frame-title",impact:"serious",selector:"frame, iframe",matches:"no-negative-tabindex-matches",tags:["cat.text-alternatives","wcag2a","wcag412","section508","section508.22.i","TTv5","TT12.d","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-2.1.1"],actIds:["cae760"],all:[],any:[{options:{attribute:"title"},id:"non-empty-title"},"aria-label","aria-labelledby","presentational-role"],none:[]},{id:"heading-order",impact:"moderate",selector:"h1, h2, h3, h4, h5, h6, [role=heading]",matches:"heading-matches",tags:["cat.semantics","best-practice"],all:[],any:["heading-order"],none:[]},{id:"hidden-content",impact:"minor",selector:"*",excludeHidden:!1,tags:["cat.structure","best-practice","experimental","review-item"],all:[],any:["hidden-content"],none:[]},{id:"html-has-lang",impact:"serious",selector:"html",matches:"is-initiator-matches",tags:["cat.language","wcag2a","wcag311","TTv5","TT11.a","EN-301-549","EN-9.3.1.1","ACT","RGAAv4","RGAA-8.3.1"],actIds:["b5c3f8"],all:[],any:[{options:{attributes:["lang","xml:lang"]},id:"has-lang"}],none:[]},{id:"html-lang-valid",impact:"serious",selector:'html[lang]:not([lang=""]), html[xml\\:lang]:not([xml\\:lang=""])',tags:["cat.language","wcag2a","wcag311","TTv5","TT11.a","EN-301-549","EN-9.3.1.1","ACT","RGAAv4","RGAA-8.4.1"],actIds:["bf051a"],all:[],any:[],none:[{options:{attributes:["lang","xml:lang"]},id:"valid-lang"}]},{id:"html-xml-lang-mismatch",impact:"moderate",selector:"html[lang][xml\\:lang]",matches:"xml-lang-mismatch-matches",tags:["cat.language","wcag2a","wcag311","EN-301-549","EN-9.3.1.1","ACT","RGAAv4","RGAA-8.3.1"],actIds:["5b7ae0"],all:["xml-lang-mismatch"],any:[],none:[]},{id:"identical-links-same-purpose",impact:"minor",selector:'a[href], area[href], [role="link"]',excludeHidden:!1,enabled:!1,matches:"identical-links-same-purpose-matches",tags:["cat.semantics","wcag2aaa","wcag249"],actIds:["b20e66"],all:["identical-links-same-purpose"],any:[],none:[]},{id:"image-alt",impact:"critical",selector:"img",matches:"no-explicit-name-required-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","TTv5","TT7.a","TT7.b","EN-301-549","EN-9.1.1.1","ACT","RGAAv4","RGAA-1.1.1"],actIds:["23a2a8"],all:[],any:["has-alt","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:["alt-space-value"]},{id:"image-redundant-alt",impact:"minor",selector:"img",tags:["cat.text-alternatives","best-practice"],all:[],any:[],none:[{options:{parentSelector:"button, [role=button], a[href], p, li, td, th"},id:"duplicate-img-label"}]},{id:"input-button-name",impact:"critical",selector:'input[type="button"], input[type="submit"], input[type="reset"]',matches:"no-explicit-name-required-matches",tags:["cat.name-role-value","wcag2a","wcag412","section508","section508.22.a","TTv5","TT5.c","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.9.1"],actIds:["97a4e1"],all:[],any:["non-empty-if-present",{options:{attribute:"value"},id:"non-empty-value"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"implicit-label","explicit-label","presentational-role"],none:[]},{id:"input-image-alt",impact:"critical",selector:'input[type="image"]',matches:"no-explicit-name-required-matches",tags:["cat.text-alternatives","wcag2a","wcag111","wcag412","section508","section508.22.a","TTv5","TT7.a","EN-301-549","EN-9.1.1.1","EN-9.4.1.2","ACT","RGAAv4","RGAA-1.1.3"],actIds:["59796f"],all:[],any:[{options:{attribute:"alt"},id:"non-empty-alt"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"implicit-label","explicit-label"],none:[]},{id:"label-content-name-mismatch",impact:"serious",matches:"label-content-name-mismatch-matches",tags:["cat.semantics","wcag21a","wcag253","EN-301-549","EN-9.2.5.3","RGAAv4","RGAA-6.1.5","experimental"],actIds:["2ee8b8"],all:[],any:[{options:{pixelThreshold:.1,occurrenceThreshold:3},id:"label-content-name-mismatch"}],none:[]},{id:"label-title-only",impact:"serious",selector:"input, select, textarea",matches:"label-matches",tags:["cat.forms","best-practice"],all:[],any:[],none:["title-only"]},{id:"label",impact:"critical",selector:"input, textarea",matches:"label-matches",tags:["cat.forms","wcag2a","wcag412","section508","section508.22.n","TTv5","TT5.c","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.1.1"],actIds:["e086e5"],all:[],any:["implicit-label","explicit-label","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},{options:{attribute:"placeholder"},id:"non-empty-placeholder"},"presentational-role"],none:["hidden-explicit-label"]},{id:"landmark-banner-is-top-level",impact:"moderate",selector:"header:not([role]), [role=banner]",matches:"landmark-has-body-context-matches",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-complementary-is-top-level",impact:"moderate",selector:"aside:not([role]), [role=complementary]",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-contentinfo-is-top-level",impact:"moderate",selector:"footer:not([role]), [role=contentinfo]",matches:"landmark-has-body-context-matches",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-main-is-top-level",impact:"moderate",selector:"main:not([role]), [role=main]",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-no-duplicate-banner",impact:"moderate",selector:"header:not([role]), [role=banner]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"header:not([role]), [role=banner]",role:"banner"},id:"page-no-duplicate-banner"}],none:[]},{id:"landmark-no-duplicate-contentinfo",impact:"moderate",selector:"footer:not([role]), [role=contentinfo]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"footer:not([role]), [role=contentinfo]",role:"contentinfo"},id:"page-no-duplicate-contentinfo"}],none:[]},{id:"landmark-no-duplicate-main",impact:"moderate",selector:"main:not([role]), [role=main]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"main:not([role]), [role='main']"},id:"page-no-duplicate-main"}],none:[]},{id:"landmark-one-main",impact:"moderate",selector:"html",tags:["cat.semantics","best-practice"],all:[{options:{selector:"main:not([role]), [role='main']",passForModal:!0},id:"page-has-main"}],any:[],none:[]},{id:"landmark-unique",impact:"moderate",selector:"[role=banner], [role=complementary], [role=contentinfo], [role=main], [role=navigation], [role=region], [role=search], [role=form], form, footer, header, aside, main, nav, section",tags:["cat.semantics","best-practice"],matches:"landmark-unique-matches",all:[],any:["landmark-is-unique"],none:[]},{id:"link-in-text-block",impact:"serious",selector:"a[href], [role=link]",matches:"link-in-text-block-matches",excludeHidden:!1,tags:["cat.color","wcag2a","wcag141","TTv5","TT13.a","EN-301-549","EN-9.1.4.1","RGAAv4","RGAA-10.6.1"],all:[],any:[{options:{requiredContrastRatio:3,allowSameColor:!0},id:"link-in-text-block"},"link-in-text-block-style"],none:[]},{id:"link-name",impact:"serious",selector:"a[href]",tags:["cat.name-role-value","wcag2a","wcag244","wcag412","section508","section508.22.a","TTv5","TT6.a","EN-301-549","EN-9.2.4.4","EN-9.4.1.2","ACT","RGAAv4","RGAA-6.2.1"],actIds:["c487ae"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["focusable-no-name"]},{id:"list",impact:"serious",selector:"ul, ol",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.1"],all:[],any:[],none:[{options:{validRoles:["listitem"],validNodeNames:["li"]},id:"only-listitems"}]},{id:"listitem",impact:"serious",selector:"li",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.3.1"],all:[],any:["listitem"],none:[]},{id:"marquee",impact:"serious",selector:"marquee",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag222","TTv5","TT2.b","EN-301-549","EN-9.2.2.2","RGAAv4","RGAA-13.8.1"],all:[],any:[],none:["is-on-screen"]},{id:"meta-refresh-no-exceptions",impact:"minor",selector:'meta[http-equiv="refresh"][content]',excludeHidden:!1,enabled:!1,tags:["cat.time-and-media","wcag2aaa","wcag224","wcag325"],actIds:["bisz58"],all:[],any:[{options:{minDelay:72e3,maxDelay:!1},id:"meta-refresh-no-exceptions"}],none:[]},{id:"meta-refresh",impact:"critical",selector:'meta[http-equiv="refresh"][content]',excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag221","TTv5","TT8.a","EN-301-549","EN-9.2.2.1","RGAAv4","RGAA-13.1.2"],actIds:["bc659a","bisz58"],all:[],any:[{options:{minDelay:0,maxDelay:72e3},id:"meta-refresh"}],none:[]},{id:"meta-viewport-large",impact:"minor",selector:'meta[name="viewport"]',matches:"is-initiator-matches",excludeHidden:!1,tags:["cat.sensory-and-visual-cues","best-practice"],all:[],any:[{options:{scaleMinimum:5,lowerBound:2},id:"meta-viewport-large"}],none:[]},{id:"meta-viewport",impact:"moderate",selector:'meta[name="viewport"]',matches:"is-initiator-matches",excludeHidden:!1,tags:["cat.sensory-and-visual-cues","wcag2aa","wcag144","EN-301-549","EN-9.1.4.4","ACT","RGAAv4","RGAA-10.4.2"],actIds:["b4f0c3"],all:[],any:[{options:{scaleMinimum:2},id:"meta-viewport"}],none:[]},{id:"nested-interactive",impact:"serious",matches:"nested-interactive-matches",tags:["cat.keyboard","wcag2a","wcag412","TTv5","TT6.a","EN-301-549","EN-9.4.1.2","RGAAv4","RGAA-7.1.1"],actIds:["307n5z"],all:[],any:["no-focusable-content"],none:[]},{id:"no-autoplay-audio",impact:"moderate",excludeHidden:!1,selector:"audio[autoplay], video[autoplay]",matches:"no-autoplay-audio-matches",reviewOnFail:!0,tags:["cat.time-and-media","wcag2a","wcag142","TTv5","TT2.a","EN-301-549","EN-9.1.4.2","ACT","RGAAv4","RGAA-4.10.1"],actIds:["80f0bf"],preload:!0,all:[{options:{allowedDuration:3},id:"no-autoplay-audio"}],any:[],none:[]},{id:"object-alt",impact:"serious",selector:"object[data]",matches:"object-is-loaded-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","EN-301-549","EN-9.1.1.1","RGAAv4","RGAA-1.1.6"],actIds:["8fc3b6"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:[]},{id:"p-as-heading",impact:"serious",selector:"p",matches:"p-as-heading-matches",tags:["cat.semantics","wcag2a","wcag131","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-9.1.3","experimental"],all:[{options:{margins:[{weight:150,italic:!0},{weight:150,size:1.15},{italic:!0,size:1.15},{size:1.4}],passLength:1,failLength:.5},id:"p-as-heading"}],any:[],none:[]},{id:"page-has-heading-one",impact:"moderate",selector:"html",tags:["cat.semantics","best-practice"],all:[{options:{selector:"h1:not([role], [aria-level]), :is(h1, h2, h3, h4, h5, h6):not([role])[aria-level=1], [role=heading][aria-level=1]",passForModal:!0},id:"page-has-heading-one"}],any:[],none:[]},{id:"presentation-role-conflict",impact:"minor",selector:`img[alt=''], [role="none"], [role="presentation"]`,matches:"has-implicit-chromium-role-matches",tags:["cat.aria","best-practice","ACT"],actIds:["46ca7f"],all:[],any:[],none:["is-element-focusable","has-global-aria-attribute"]},{id:"region",impact:"moderate",selector:"body *",tags:["cat.keyboard","best-practice","RGAAv4","RGAA-9.2.1"],all:[],any:[{options:{regionMatcher:"dialog, [role=dialog], [role=alertdialog], svg"},id:"region"}],none:[]},{id:"role-img-alt",impact:"serious",selector:"[role='img']:not(img, area, input, object)",matches:"html-namespace-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","TTv5","TT7.a","EN-301-549","EN-9.1.1.1","ACT","RGAAv4","RGAA-1.1.1"],actIds:["23a2a8"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"scope-attr-valid",impact:"moderate",selector:"td[scope], th[scope]",tags:["cat.tables","best-practice"],all:["html5-scope",{options:{values:["row","col","rowgroup","colgroup"]},id:"scope-value"}],any:[],none:[]},{id:"scrollable-region-focusable",impact:"serious",selector:"*:not(select,textarea)",matches:"scrollable-region-focusable-matches",tags:["cat.keyboard","wcag2a","wcag211","wcag213","TTv5","TT4.a","EN-301-549","EN-9.2.1.1","EN-9.2.1.3","RGAAv4","RGAA-7.3.2"],actIds:["0ssw9k"],all:[],any:["focusable-content","focusable-element"],none:[]},{id:"select-name",impact:"critical",selector:"select",tags:["cat.forms","wcag2a","wcag412","section508","section508.22.n","TTv5","TT5.c","EN-301-549","EN-9.4.1.2","ACT","RGAAv4","RGAA-11.1.1"],actIds:["e086e5"],all:[],any:["implicit-label","explicit-label","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:["hidden-explicit-label"]},{id:"server-side-image-map",impact:"minor",selector:"img[ismap]",tags:["cat.text-alternatives","wcag2a","wcag211","section508","section508.22.f","TTv5","TT4.a","EN-301-549","EN-9.2.1.1","RGAAv4","RGAA-1.1.4"],all:[],any:[],none:["exists"]},{id:"skip-link",impact:"moderate",selector:'a[href^="#"], a[href^="/#"]',matches:"skip-link-matches",tags:["cat.keyboard","best-practice","RGAAv4","RGAA-12.7.1"],all:[],any:["skip-link"],none:[]},{id:"summary-name",impact:"serious",selector:"summary",matches:"summary-interactive-matches",tags:["cat.name-role-value","wcag2a","wcag412","section508","section508.22.a","TTv5","TT6.a","EN-301-549","EN-9.4.1.2"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"svg-img-alt",impact:"serious",selector:'[role="img"], [role="graphics-symbol"], svg[role="graphics-document"]',matches:"svg-namespace-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","TTv5","TT7.a","EN-301-549","EN-9.1.1.1","ACT","RGAAv4","RGAA-1.1.5"],actIds:["7d6734"],all:[],any:["svg-non-empty-title","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"tabindex",impact:"serious",selector:"[tabindex]",tags:["cat.keyboard","best-practice"],all:[],any:["tabindex"],none:[]},{id:"table-duplicate-name",impact:"minor",selector:"table",tags:["cat.tables","best-practice","RGAAv4","RGAA-5.2.1"],all:[],any:[],none:["same-caption-summary"]},{id:"table-fake-caption",impact:"serious",selector:"table",matches:"data-table-matches",tags:["cat.tables","experimental","wcag2a","wcag131","section508","section508.22.g","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-5.4.1"],all:["caption-faked"],any:[],none:[]},{id:"target-size",impact:"serious",selector:"*",enabled:!1,matches:"widget-not-inline-matches",tags:["cat.sensory-and-visual-cues","wcag22aa","wcag258"],all:[],any:[{options:{minSize:24},id:"target-size"},{options:{minOffset:24},id:"target-offset"}],none:[]},{id:"td-has-header",impact:"critical",selector:"table",matches:"data-table-large-matches",tags:["cat.tables","experimental","wcag2a","wcag131","section508","section508.22.g","TTv5","TT14.b","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-5.7.4"],all:["td-has-header"],any:[],none:[]},{id:"td-headers-attr",impact:"serious",selector:"table",matches:"table-or-grid-role-matches",tags:["cat.tables","wcag2a","wcag131","section508","section508.22.g","TTv5","TT14.b","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-5.7.4"],actIds:["a25f45"],all:["td-headers-attr"],any:[],none:[]},{id:"th-has-data-cells",impact:"serious",selector:"table",matches:"data-table-matches",tags:["cat.tables","wcag2a","wcag131","section508","section508.22.g","TTv5","TT14.b","EN-301-549","EN-9.1.3.1","RGAAv4","RGAA-5.7.1"],actIds:["d0f69e"],all:["th-has-data-cells"],any:[],none:[]},{id:"valid-lang",impact:"serious",selector:"[lang]:not(html), [xml\\:lang]:not(html)",tags:["cat.language","wcag2aa","wcag312","TTv5","TT11.b","EN-301-549","EN-9.3.1.2","ACT","RGAAv4","RGAA-8.7.1"],actIds:["de46e4"],all:[],any:[],none:[{options:{attributes:["lang","xml:lang"]},id:"valid-lang"}]},{id:"video-caption",impact:"critical",selector:"video",tags:["cat.text-alternatives","wcag2a","wcag122","section508","section508.22.a","TTv5","TT17.a","EN-301-549","EN-9.1.2.2","RGAAv4","RGAA-4.3.1"],actIds:["eac66b"],all:[],any:[],none:["caption"]}],checks:[{id:"abstractrole",evaluate:"abstractrole-evaluate"},{id:"aria-allowed-attr",evaluate:"aria-allowed-attr-evaluate",options:{validTreeRowAttrs:["aria-posinset","aria-setsize","aria-expanded","aria-level"]}},{id:"aria-allowed-role",evaluate:"aria-allowed-role-evaluate",options:{allowImplicit:!0,ignoredTags:[]}},{id:"aria-busy",evaluate:"aria-busy-evaluate",deprecated:!0},{id:"aria-conditional-attr",evaluate:"aria-conditional-attr-evaluate",options:{invalidTableRowAttrs:["aria-posinset","aria-setsize","aria-expanded","aria-level"]}},{id:"aria-errormessage",evaluate:"aria-errormessage-evaluate"},{id:"aria-hidden-body",evaluate:"aria-hidden-body-evaluate"},{id:"aria-level",evaluate:"aria-level-evaluate"},{id:"aria-prohibited-attr",evaluate:"aria-prohibited-attr-evaluate",options:{elementsAllowedAriaLabel:["applet","input"]}},{id:"aria-required-attr",evaluate:"aria-required-attr-evaluate"},{id:"aria-required-children",evaluate:"aria-required-children-evaluate",options:{reviewEmpty:["doc-bibliography","doc-endnotes","grid","list","listbox","menu","menubar","table","tablist","tree","treegrid","rowgroup"]}},{id:"aria-required-parent",evaluate:"aria-required-parent-evaluate",options:{ownGroupRoles:["listitem","treeitem"]}},{id:"aria-roledescription",evaluate:"aria-roledescription-evaluate",options:{supportedRoles:["button","img","checkbox","radio","combobox","menuitemcheckbox","menuitemradio"]}},{id:"aria-unsupported-attr",evaluate:"aria-unsupported-attr-evaluate"},{id:"aria-valid-attr-value",evaluate:"aria-valid-attr-value-evaluate",options:[]},{id:"aria-valid-attr",evaluate:"aria-valid-attr-evaluate",options:[]},{id:"braille-label-equivalent",evaluate:"braille-label-equivalent-evaluate"},{id:"braille-roledescription-equivalent",evaluate:"braille-roledescription-equivalent-evaluate"},{id:"deprecatedrole",evaluate:"deprecatedrole-evaluate"},{id:"fallbackrole",evaluate:"fallbackrole-evaluate"},{id:"has-global-aria-attribute",evaluate:"has-global-aria-attribute-evaluate"},{id:"has-widget-role",evaluate:"has-widget-role-evaluate",options:[]},{id:"invalidrole",evaluate:"invalidrole-evaluate"},{id:"is-element-focusable",evaluate:"is-element-focusable-evaluate"},{id:"no-implicit-explicit-label",evaluate:"no-implicit-explicit-label-evaluate"},{id:"unsupportedrole",evaluate:"unsupportedrole-evaluate"},{id:"valid-scrollable-semantics",evaluate:"valid-scrollable-semantics-evaluate",options:{roles:["tooltip"]}},{id:"color-contrast-enhanced",evaluate:"color-contrast-evaluate",options:{ignoreUnicode:!0,ignoreLength:!1,ignorePseudo:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:7,minThreshold:4.5},large:{expected:4.5,minThreshold:3}},pseudoSizeThreshold:.25,shadowOutlineEmMax:.1,textStrokeEmMin:.03}},{id:"color-contrast",evaluate:"color-contrast-evaluate",options:{ignoreUnicode:!0,ignoreLength:!1,ignorePseudo:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:4.5},large:{expected:3}},pseudoSizeThreshold:.25,shadowOutlineEmMax:.2,textStrokeEmMin:.03}},{id:"link-in-text-block-style",evaluate:"link-in-text-block-style-evaluate"},{id:"link-in-text-block",evaluate:"link-in-text-block-evaluate",options:{requiredContrastRatio:3,allowSameColor:!0}},{id:"autocomplete-appropriate",evaluate:"autocomplete-appropriate-evaluate",deprecated:!0},{id:"autocomplete-valid",evaluate:"autocomplete-valid-evaluate",options:{stateTerms:["none","false","true","disabled","enabled","undefined","null","xoff","xon"],ignoredValues:["text","pronouns","gender","message","content"]}},{id:"accesskeys",evaluate:"accesskeys-evaluate",after:"accesskeys-after"},{id:"focusable-content",evaluate:"focusable-content-evaluate"},{id:"focusable-disabled",evaluate:"focusable-disabled-evaluate"},{id:"focusable-element",evaluate:"focusable-element-evaluate"},{id:"focusable-modal-open",evaluate:"focusable-modal-open-evaluate"},{id:"focusable-no-name",evaluate:"focusable-no-name-evaluate"},{id:"focusable-not-tabbable",evaluate:"focusable-not-tabbable-evaluate"},{id:"frame-focusable-content",evaluate:"frame-focusable-content-evaluate"},{id:"landmark-is-top-level",evaluate:"landmark-is-top-level-evaluate"},{id:"no-focusable-content",evaluate:"no-focusable-content-evaluate"},{id:"page-has-heading-one",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:"h1:not([role], [aria-level]), :is(h1, h2, h3, h4, h5, h6):not([role])[aria-level=1], [role=heading][aria-level=1]",passForModal:!0}},{id:"page-has-main",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:"main:not([role]), [role='main']",passForModal:!0}},{id:"page-no-duplicate-banner",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"header:not([role]), [role=banner]",role:"banner"}},{id:"page-no-duplicate-contentinfo",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"footer:not([role]), [role=contentinfo]",role:"contentinfo"}},{id:"page-no-duplicate-main",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"main:not([role]), [role='main']"}},{id:"tabindex",evaluate:"tabindex-evaluate"},{id:"alt-space-value",evaluate:"alt-space-value-evaluate"},{id:"duplicate-img-label",evaluate:"duplicate-img-label-evaluate",options:{parentSelector:"button, [role=button], a[href], p, li, td, th"}},{id:"explicit-label",evaluate:"explicit-evaluate"},{id:"help-same-as-label",evaluate:"help-same-as-label-evaluate"},{id:"hidden-explicit-label",evaluate:"hidden-explicit-label-evaluate"},{id:"implicit-label",evaluate:"implicit-evaluate"},{id:"label-content-name-mismatch",evaluate:"label-content-name-mismatch-evaluate",options:{pixelThreshold:.1,occurrenceThreshold:3}},{id:"multiple-label",evaluate:"multiple-label-evaluate"},{id:"title-only",evaluate:"title-only-evaluate"},{id:"landmark-is-unique",evaluate:"landmark-is-unique-evaluate",after:"landmark-is-unique-after"},{id:"has-lang",evaluate:"has-lang-evaluate",options:{attributes:["lang","xml:lang"]}},{id:"valid-lang",evaluate:"valid-lang-evaluate",options:{attributes:["lang","xml:lang"]}},{id:"xml-lang-mismatch",evaluate:"xml-lang-mismatch-evaluate"},{id:"dlitem",evaluate:"dlitem-evaluate"},{id:"listitem",evaluate:"listitem-evaluate"},{id:"only-dlitems",evaluate:"invalid-children-evaluate",options:{validRoles:["definition","term","listitem"],validNodeNames:["dt","dd"],divGroups:!0}},{id:"only-listitems",evaluate:"invalid-children-evaluate",options:{validRoles:["listitem"],validNodeNames:["li"]}},{id:"structured-dlitems",evaluate:"structured-dlitems-evaluate"},{id:"caption",evaluate:"caption-evaluate"},{id:"frame-tested",evaluate:"frame-tested-evaluate",after:"frame-tested-after",options:{isViolation:!1}},{id:"no-autoplay-audio",evaluate:"no-autoplay-audio-evaluate",options:{allowedDuration:3}},{id:"css-orientation-lock",evaluate:"css-orientation-lock-evaluate",options:{degreeThreshold:2}},{id:"meta-viewport-large",evaluate:"meta-viewport-scale-evaluate",options:{scaleMinimum:5,lowerBound:2}},{id:"meta-viewport",evaluate:"meta-viewport-scale-evaluate",options:{scaleMinimum:2}},{id:"target-offset",evaluate:"target-offset-evaluate",options:{minOffset:24}},{id:"target-size",evaluate:"target-size-evaluate",options:{minSize:24}},{id:"header-present",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:":is(h1, h2, h3, h4, h5, h6):not([role]), [role=heading]"}},{id:"heading-order",evaluate:"heading-order-evaluate",after:"heading-order-after"},{id:"identical-links-same-purpose",evaluate:"identical-links-same-purpose-evaluate",after:"identical-links-same-purpose-after"},{id:"internal-link-present",evaluate:"internal-link-present-evaluate"},{id:"landmark",evaluate:"has-descendant-evaluate",options:{selector:"main, [role=main]"}},{id:"meta-refresh-no-exceptions",evaluate:"meta-refresh-evaluate",options:{minDelay:72e3,maxDelay:!1}},{id:"meta-refresh",evaluate:"meta-refresh-evaluate",options:{minDelay:0,maxDelay:72e3}},{id:"p-as-heading",evaluate:"p-as-heading-evaluate",options:{margins:[{weight:150,italic:!0},{weight:150,size:1.15},{italic:!0,size:1.15},{size:1.4}],passLength:1,failLength:.5}},{id:"region",evaluate:"region-evaluate",after:"region-after",options:{regionMatcher:"dialog, [role=dialog], [role=alertdialog], svg"}},{id:"skip-link",evaluate:"skip-link-evaluate"},{id:"unique-frame-title",evaluate:"unique-frame-title-evaluate",after:"unique-frame-title-after"},{id:"duplicate-id-active",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"duplicate-id-aria",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"duplicate-id",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"aria-label",evaluate:"aria-label-evaluate"},{id:"aria-labelledby",evaluate:"aria-labelledby-evaluate"},{id:"avoid-inline-spacing",evaluate:"avoid-inline-spacing-evaluate",options:{cssProperties:["line-height","letter-spacing","word-spacing"]}},{id:"button-has-visible-text",evaluate:"has-text-content-evaluate"},{id:"doc-has-title",evaluate:"doc-has-title-evaluate"},{id:"error-occurred",evaluate:"exists-evaluate"},{id:"exists",evaluate:"exists-evaluate"},{id:"has-alt",evaluate:"has-alt-evaluate"},{id:"has-visible-text",evaluate:"has-text-content-evaluate"},{id:"important-letter-spacing",evaluate:"inline-style-property-evaluate",options:{cssProperty:"letter-spacing",minValue:.12}},{id:"important-line-height",evaluate:"inline-style-property-evaluate",options:{multiLineOnly:!0,cssProperty:"line-height",minValue:1.5,normalValue:1}},{id:"important-word-spacing",evaluate:"inline-style-property-evaluate",options:{cssProperty:"word-spacing",minValue:.16}},{id:"is-on-screen",evaluate:"is-on-screen-evaluate"},{id:"non-empty-alt",evaluate:"attr-non-space-content-evaluate",options:{attribute:"alt"}},{id:"non-empty-if-present",evaluate:"non-empty-if-present-evaluate"},{id:"non-empty-placeholder",evaluate:"attr-non-space-content-evaluate",options:{attribute:"placeholder"}},{id:"non-empty-title",evaluate:"attr-non-space-content-evaluate",options:{attribute:"title"}},{id:"non-empty-value",evaluate:"attr-non-space-content-evaluate",options:{attribute:"value"}},{id:"presentational-role",evaluate:"presentational-role-evaluate"},{id:"role-none",evaluate:"matches-definition-evaluate",deprecated:!0,options:{matcher:{attributes:{role:"none"}}}},{id:"role-presentation",evaluate:"matches-definition-evaluate",deprecated:!0,options:{matcher:{attributes:{role:"presentation"}}}},{id:"svg-non-empty-title",evaluate:"svg-non-empty-title-evaluate"},{id:"caption-faked",evaluate:"caption-faked-evaluate"},{id:"html5-scope",evaluate:"html5-scope-evaluate"},{id:"same-caption-summary",evaluate:"same-caption-summary-evaluate"},{id:"scope-value",evaluate:"scope-value-evaluate",options:{values:["row","col","rowgroup","colgroup"]}},{id:"td-has-header",evaluate:"td-has-header-evaluate"},{id:"td-headers-attr",evaluate:"td-headers-attr-evaluate"},{id:"th-has-data-cells",evaluate:"th-has-data-cells-evaluate"},{id:"hidden-content",evaluate:"hidden-content-evaluate"}]})})(typeof window=="object"?window:UR)})(Ci)),Ci.exports}var Pp=WR();const YR=HR(Pp),XR=GR({__proto__:null,default:YR},[Pp]);export{XR as a};