elixir-toolkit-theme 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (429) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +64 -0
  4. data/_includes/affiliation-tiles-selection.html +15 -0
  5. data/_includes/callout.html +9 -0
  6. data/_includes/contributor-carousel-selection.html +82 -0
  7. data/_includes/contributor-minitiles-page.html +56 -0
  8. data/_includes/contributor-tiles-all.html +63 -0
  9. data/_includes/cookie-popup.html +19 -0
  10. data/_includes/events.html +30 -0
  11. data/_includes/footer.html +39 -0
  12. data/_includes/head.html +90 -0
  13. data/_includes/image.html +21 -0
  14. data/_includes/more-information-tiles.html +97 -0
  15. data/_includes/news.html +23 -0
  16. data/_includes/pageids-overview.html +32 -0
  17. data/_includes/related-pages.html +38 -0
  18. data/_includes/resource-table-all.html +140 -0
  19. data/_includes/resource-table-page.html +61 -0
  20. data/_includes/schemasorg.html +42 -0
  21. data/_includes/section-navigation-tiles-simple.html +10 -0
  22. data/_includes/section-navigation-tiles.html +210 -0
  23. data/_includes/sidebar.html +239 -0
  24. data/_includes/toc.html +8 -0
  25. data/_includes/topnav.html +66 -0
  26. data/_includes/training-table-all.html +30 -0
  27. data/_layouts/default.html +25 -0
  28. data/_layouts/none.html +3 -0
  29. data/_layouts/page.html +37 -0
  30. data/_sass/_bootstrap_variables.scss +10 -0
  31. data/_sass/_custom_classes.scss +0 -0
  32. data/_sass/_custom_variables.scss +71 -0
  33. data/_sass/bootstrap/_accordion.scss +118 -0
  34. data/_sass/bootstrap/_alert.scss +57 -0
  35. data/_sass/bootstrap/_badge.scss +29 -0
  36. data/_sass/bootstrap/_breadcrumb.scss +28 -0
  37. data/_sass/bootstrap/_button-group.scss +139 -0
  38. data/_sass/bootstrap/_buttons.scss +112 -0
  39. data/_sass/bootstrap/_card.scss +216 -0
  40. data/_sass/bootstrap/_carousel.scss +229 -0
  41. data/_sass/bootstrap/_close.scss +40 -0
  42. data/_sass/bootstrap/_containers.scss +41 -0
  43. data/_sass/bootstrap/_dropdown.scss +240 -0
  44. data/_sass/bootstrap/_forms.scss +9 -0
  45. data/_sass/bootstrap/_functions.scss +302 -0
  46. data/_sass/bootstrap/_grid.scss +33 -0
  47. data/_sass/bootstrap/_helpers.scss +9 -0
  48. data/_sass/bootstrap/_images.scss +42 -0
  49. data/_sass/bootstrap/_list-group.scss +174 -0
  50. data/_sass/bootstrap/_mixins.scss +43 -0
  51. data/_sass/bootstrap/_modal.scss +209 -0
  52. data/_sass/bootstrap/_nav.scss +139 -0
  53. data/_sass/bootstrap/_navbar.scss +335 -0
  54. data/_sass/bootstrap/_offcanvas.scss +83 -0
  55. data/_sass/bootstrap/_pagination.scss +64 -0
  56. data/_sass/bootstrap/_placeholders.scss +51 -0
  57. data/_sass/bootstrap/_popover.scss +158 -0
  58. data/_sass/bootstrap/_progress.scss +48 -0
  59. data/_sass/bootstrap/_reboot.scss +625 -0
  60. data/_sass/bootstrap/_root.scss +54 -0
  61. data/_sass/bootstrap/_spinners.scss +69 -0
  62. data/_sass/bootstrap/_tables.scss +155 -0
  63. data/_sass/bootstrap/_toasts.scss +51 -0
  64. data/_sass/bootstrap/_tooltip.scss +115 -0
  65. data/_sass/bootstrap/_transitions.scss +27 -0
  66. data/_sass/bootstrap/_type.scss +104 -0
  67. data/_sass/bootstrap/_utilities.scss +630 -0
  68. data/_sass/bootstrap/_variables.scss +1641 -0
  69. data/_sass/bootstrap/bootstrap-grid.scss +67 -0
  70. data/_sass/bootstrap/bootstrap-reboot.scss +13 -0
  71. data/_sass/bootstrap/bootstrap-utilities.scss +18 -0
  72. data/_sass/bootstrap/bootstrap.scss +53 -0
  73. data/_sass/bootstrap/forms/_floating-labels.scss +63 -0
  74. data/_sass/bootstrap/forms/_form-check.scss +152 -0
  75. data/_sass/bootstrap/forms/_form-control.scss +219 -0
  76. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  77. data/_sass/bootstrap/forms/_form-select.scss +72 -0
  78. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  79. data/_sass/bootstrap/forms/_input-group.scss +121 -0
  80. data/_sass/bootstrap/forms/_labels.scss +36 -0
  81. data/_sass/bootstrap/forms/_validation.scss +12 -0
  82. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  83. data/_sass/bootstrap/helpers/_colored-links.scss +12 -0
  84. data/_sass/bootstrap/helpers/_position.scss +30 -0
  85. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  86. data/_sass/bootstrap/helpers/_stacks.scss +15 -0
  87. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  88. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  89. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  90. data/_sass/bootstrap/helpers/_vr.scss +8 -0
  91. data/_sass/bootstrap/mixins/_alert.scss +11 -0
  92. data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
  93. data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
  94. data/_sass/bootstrap/mixins/_box-shadow.scss +18 -0
  95. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  96. data/_sass/bootstrap/mixins/_buttons.scss +133 -0
  97. data/_sass/bootstrap/mixins/_caret.scss +64 -0
  98. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  99. data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
  100. data/_sass/bootstrap/mixins/_container.scss +9 -0
  101. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  102. data/_sass/bootstrap/mixins/_forms.scss +144 -0
  103. data/_sass/bootstrap/mixins/_gradients.scss +47 -0
  104. data/_sass/bootstrap/mixins/_grid.scss +151 -0
  105. data/_sass/bootstrap/mixins/_image.scss +16 -0
  106. data/_sass/bootstrap/mixins/_list-group.scss +24 -0
  107. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  108. data/_sass/bootstrap/mixins/_pagination.scss +31 -0
  109. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  110. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  111. data/_sass/bootstrap/mixins/_table-variants.scss +21 -0
  112. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  113. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  114. data/_sass/bootstrap/mixins/_utilities.scss +89 -0
  115. data/_sass/bootstrap/mixins/_visually-hidden.scss +29 -0
  116. data/_sass/bootstrap/utilities/_api.scss +47 -0
  117. data/_sass/bootstrap/vendor/_rfs.scss +354 -0
  118. data/assets/css/all.min.css +5 -0
  119. data/assets/css/dataTables.bootstrap5.min.css +5 -0
  120. data/assets/css/flag-icon.min.css +1 -0
  121. data/assets/css/main.scss +678 -0
  122. data/assets/css/syntax.css +60 -0
  123. data/assets/flags/ad.svg +150 -0
  124. data/assets/flags/ae.svg +6 -0
  125. data/assets/flags/af.svg +81 -0
  126. data/assets/flags/ag.svg +14 -0
  127. data/assets/flags/ai.svg +763 -0
  128. data/assets/flags/al.svg +5 -0
  129. data/assets/flags/am.svg +5 -0
  130. data/assets/flags/ao.svg +13 -0
  131. data/assets/flags/aq.svg +5 -0
  132. data/assets/flags/ar.svg +31 -0
  133. data/assets/flags/as.svg +33 -0
  134. data/assets/flags/at.svg +6 -0
  135. data/assets/flags/au.svg +9 -0
  136. data/assets/flags/aw.svg +186 -0
  137. data/assets/flags/ax.svg +18 -0
  138. data/assets/flags/az.svg +8 -0
  139. data/assets/flags/ba.svg +12 -0
  140. data/assets/flags/bb.svg +6 -0
  141. data/assets/flags/bd.svg +4 -0
  142. data/assets/flags/be.svg +7 -0
  143. data/assets/flags/bf.svg +7 -0
  144. data/assets/flags/bg.svg +7 -0
  145. data/assets/flags/bh.svg +9 -0
  146. data/assets/flags/bi.svg +15 -0
  147. data/assets/flags/bj.svg +14 -0
  148. data/assets/flags/bl.svg +7 -0
  149. data/assets/flags/bm.svg +98 -0
  150. data/assets/flags/bn.svg +36 -0
  151. data/assets/flags/bo.svg +676 -0
  152. data/assets/flags/bq.svg +5 -0
  153. data/assets/flags/br.svg +45 -0
  154. data/assets/flags/bs.svg +13 -0
  155. data/assets/flags/bt.svg +89 -0
  156. data/assets/flags/bv.svg +13 -0
  157. data/assets/flags/bw.svg +7 -0
  158. data/assets/flags/by.svg +20 -0
  159. data/assets/flags/bz.svg +145 -0
  160. data/assets/flags/ca.svg +4 -0
  161. data/assets/flags/cc.svg +19 -0
  162. data/assets/flags/cd.svg +5 -0
  163. data/assets/flags/cf.svg +15 -0
  164. data/assets/flags/cg.svg +12 -0
  165. data/assets/flags/ch.svg +9 -0
  166. data/assets/flags/ci.svg +7 -0
  167. data/assets/flags/ck.svg +9 -0
  168. data/assets/flags/cl.svg +13 -0
  169. data/assets/flags/cm.svg +15 -0
  170. data/assets/flags/cn.svg +11 -0
  171. data/assets/flags/co.svg +7 -0
  172. data/assets/flags/cr.svg +7 -0
  173. data/assets/flags/cu.svg +13 -0
  174. data/assets/flags/cv.svg +13 -0
  175. data/assets/flags/cw.svg +14 -0
  176. data/assets/flags/cx.svg +15 -0
  177. data/assets/flags/cy.svg +6 -0
  178. data/assets/flags/cz.svg +5 -0
  179. data/assets/flags/de.svg +5 -0
  180. data/assets/flags/dj.svg +13 -0
  181. data/assets/flags/dk.svg +5 -0
  182. data/assets/flags/dm.svg +152 -0
  183. data/assets/flags/do.svg +6745 -0
  184. data/assets/flags/dz.svg +5 -0
  185. data/assets/flags/ec.svg +138 -0
  186. data/assets/flags/ee.svg +7 -0
  187. data/assets/flags/eg.svg +38 -0
  188. data/assets/flags/eh.svg +15 -0
  189. data/assets/flags/er.svg +8 -0
  190. data/assets/flags/es-ct.svg +4 -0
  191. data/assets/flags/es-ga.svg +189 -0
  192. data/assets/flags/es.svg +544 -0
  193. data/assets/flags/et.svg +14 -0
  194. data/assets/flags/eu.svg +28 -0
  195. data/assets/flags/fi.svg +5 -0
  196. data/assets/flags/fj.svg +122 -0
  197. data/assets/flags/fk.svg +90 -0
  198. data/assets/flags/fm.svg +11 -0
  199. data/assets/flags/fo.svg +12 -0
  200. data/assets/flags/fr.svg +7 -0
  201. data/assets/flags/ga.svg +7 -0
  202. data/assets/flags/gb-eng.svg +5 -0
  203. data/assets/flags/gb-nir.svg +132 -0
  204. data/assets/flags/gb-sct.svg +4 -0
  205. data/assets/flags/gb-wls.svg +9 -0
  206. data/assets/flags/gb.svg +7 -0
  207. data/assets/flags/gd.svg +27 -0
  208. data/assets/flags/ge.svg +6 -0
  209. data/assets/flags/gf.svg +7 -0
  210. data/assets/flags/gg.svg +9 -0
  211. data/assets/flags/gh.svg +6 -0
  212. data/assets/flags/gi.svg +32 -0
  213. data/assets/flags/gl.svg +4 -0
  214. data/assets/flags/gm.svg +14 -0
  215. data/assets/flags/gn.svg +7 -0
  216. data/assets/flags/gp.svg +7 -0
  217. data/assets/flags/gq.svg +23 -0
  218. data/assets/flags/gr.svg +16 -0
  219. data/assets/flags/gs.svg +201 -0
  220. data/assets/flags/gt.svg +204 -0
  221. data/assets/flags/gu.svg +39 -0
  222. data/assets/flags/gw.svg +13 -0
  223. data/assets/flags/gy.svg +9 -0
  224. data/assets/flags/hk.svg +30 -0
  225. data/assets/flags/hm.svg +9 -0
  226. data/assets/flags/hn.svg +18 -0
  227. data/assets/flags/hr.svg +58 -0
  228. data/assets/flags/ht.svg +116 -0
  229. data/assets/flags/hu.svg +7 -0
  230. data/assets/flags/id.svg +6 -0
  231. data/assets/flags/ie.svg +7 -0
  232. data/assets/flags/il.svg +14 -0
  233. data/assets/flags/im.svg +36 -0
  234. data/assets/flags/in.svg +25 -0
  235. data/assets/flags/io.svg +138 -0
  236. data/assets/flags/iq.svg +10 -0
  237. data/assets/flags/ir.svg +219 -0
  238. data/assets/flags/is.svg +12 -0
  239. data/assets/flags/it.svg +7 -0
  240. data/assets/flags/je.svg +29 -0
  241. data/assets/flags/jm.svg +8 -0
  242. data/assets/flags/jo.svg +16 -0
  243. data/assets/flags/jp.svg +11 -0
  244. data/assets/flags/ke.svg +23 -0
  245. data/assets/flags/kg.svg +15 -0
  246. data/assets/flags/kh.svg +61 -0
  247. data/assets/flags/ki.svg +36 -0
  248. data/assets/flags/km.svg +16 -0
  249. data/assets/flags/kn.svg +14 -0
  250. data/assets/flags/kp.svg +15 -0
  251. data/assets/flags/kr.svg +24 -0
  252. data/assets/flags/kw.svg +13 -0
  253. data/assets/flags/ky.svg +63 -0
  254. data/assets/flags/kz.svg +23 -0
  255. data/assets/flags/la.svg +12 -0
  256. data/assets/flags/lb.svg +15 -0
  257. data/assets/flags/lc.svg +8 -0
  258. data/assets/flags/li.svg +43 -0
  259. data/assets/flags/lk.svg +22 -0
  260. data/assets/flags/lr.svg +14 -0
  261. data/assets/flags/ls.svg +8 -0
  262. data/assets/flags/lt.svg +7 -0
  263. data/assets/flags/lu.svg +5 -0
  264. data/assets/flags/lv.svg +6 -0
  265. data/assets/flags/ly.svg +13 -0
  266. data/assets/flags/ma.svg +4 -0
  267. data/assets/flags/mc.svg +6 -0
  268. data/assets/flags/md.svg +70 -0
  269. data/assets/flags/me.svg +116 -0
  270. data/assets/flags/mf.svg +7 -0
  271. data/assets/flags/mg.svg +7 -0
  272. data/assets/flags/mh.svg +7 -0
  273. data/assets/flags/mk.svg +5 -0
  274. data/assets/flags/ml.svg +7 -0
  275. data/assets/flags/mm.svg +16 -0
  276. data/assets/flags/mn.svg +13 -0
  277. data/assets/flags/mo.svg +9 -0
  278. data/assets/flags/mp.svg +86 -0
  279. data/assets/flags/mq.svg +7 -0
  280. data/assets/flags/mr.svg +6 -0
  281. data/assets/flags/ms.svg +78 -0
  282. data/assets/flags/mt.svg +49 -0
  283. data/assets/flags/mu.svg +8 -0
  284. data/assets/flags/mv.svg +6 -0
  285. data/assets/flags/mw.svg +10 -0
  286. data/assets/flags/mx.svg +382 -0
  287. data/assets/flags/my.svg +15 -0
  288. data/assets/flags/mz.svg +21 -0
  289. data/assets/flags/na.svg +16 -0
  290. data/assets/flags/nc.svg +14 -0
  291. data/assets/flags/ne.svg +6 -0
  292. data/assets/flags/nf.svg +9 -0
  293. data/assets/flags/ng.svg +6 -0
  294. data/assets/flags/ni.svg +129 -0
  295. data/assets/flags/nl.svg +5 -0
  296. data/assets/flags/no.svg +7 -0
  297. data/assets/flags/np.svg +14 -0
  298. data/assets/flags/nr.svg +12 -0
  299. data/assets/flags/nu.svg +26 -0
  300. data/assets/flags/nz.svg +41 -0
  301. data/assets/flags/om.svg +115 -0
  302. data/assets/flags/pa.svg +14 -0
  303. data/assets/flags/pe.svg +244 -0
  304. data/assets/flags/pf.svg +19 -0
  305. data/assets/flags/pg.svg +9 -0
  306. data/assets/flags/ph.svg +9 -0
  307. data/assets/flags/pk.svg +15 -0
  308. data/assets/flags/pl.svg +6 -0
  309. data/assets/flags/pm.svg +7 -0
  310. data/assets/flags/pn.svg +62 -0
  311. data/assets/flags/pr.svg +13 -0
  312. data/assets/flags/ps.svg +15 -0
  313. data/assets/flags/pt.svg +57 -0
  314. data/assets/flags/pw.svg +11 -0
  315. data/assets/flags/py.svg +157 -0
  316. data/assets/flags/qa.svg +4 -0
  317. data/assets/flags/re.svg +7 -0
  318. data/assets/flags/ro.svg +7 -0
  319. data/assets/flags/rs.svg +292 -0
  320. data/assets/flags/ru.svg +7 -0
  321. data/assets/flags/rw.svg +13 -0
  322. data/assets/flags/sa.svg +26 -0
  323. data/assets/flags/sb.svg +13 -0
  324. data/assets/flags/sc.svg +14 -0
  325. data/assets/flags/sd.svg +13 -0
  326. data/assets/flags/se.svg +5 -0
  327. data/assets/flags/sg.svg +13 -0
  328. data/assets/flags/sh.svg +74 -0
  329. data/assets/flags/si.svg +18 -0
  330. data/assets/flags/sj.svg +7 -0
  331. data/assets/flags/sk.svg +9 -0
  332. data/assets/flags/sl.svg +7 -0
  333. data/assets/flags/sm.svg +91 -0
  334. data/assets/flags/sn.svg +8 -0
  335. data/assets/flags/so.svg +11 -0
  336. data/assets/flags/sr.svg +6 -0
  337. data/assets/flags/ss.svg +8 -0
  338. data/assets/flags/st.svg +16 -0
  339. data/assets/flags/sv.svg +594 -0
  340. data/assets/flags/sx.svg +56 -0
  341. data/assets/flags/sy.svg +6 -0
  342. data/assets/flags/sz.svg +45 -0
  343. data/assets/flags/tc.svg +67 -0
  344. data/assets/flags/td.svg +7 -0
  345. data/assets/flags/tf.svg +15 -0
  346. data/assets/flags/tg.svg +14 -0
  347. data/assets/flags/th.svg +7 -0
  348. data/assets/flags/tj.svg +22 -0
  349. data/assets/flags/tk.svg +5 -0
  350. data/assets/flags/tl.svg +13 -0
  351. data/assets/flags/tm.svg +206 -0
  352. data/assets/flags/tn.svg +13 -0
  353. data/assets/flags/to.svg +10 -0
  354. data/assets/flags/tr.svg +8 -0
  355. data/assets/flags/tt.svg +5 -0
  356. data/assets/flags/tv.svg +16 -0
  357. data/assets/flags/tw.svg +35 -0
  358. data/assets/flags/tz.svg +13 -0
  359. data/assets/flags/ua.svg +6 -0
  360. data/assets/flags/ug.svg +30 -0
  361. data/assets/flags/um.svg +15 -0
  362. data/assets/flags/un.svg +16 -0
  363. data/assets/flags/us.svg +10 -0
  364. data/assets/flags/uy.svg +28 -0
  365. data/assets/flags/uz.svg +30 -0
  366. data/assets/flags/va.svg +479 -0
  367. data/assets/flags/vc.svg +8 -0
  368. data/assets/flags/ve.svg +26 -0
  369. data/assets/flags/vg.svg +127 -0
  370. data/assets/flags/vi.svg +28 -0
  371. data/assets/flags/vn.svg +11 -0
  372. data/assets/flags/vu.svg +18 -0
  373. data/assets/flags/wf.svg +7 -0
  374. data/assets/flags/ws.svg +7 -0
  375. data/assets/flags/xk.svg +16 -0
  376. data/assets/flags/ye.svg +7 -0
  377. data/assets/flags/yt.svg +7 -0
  378. data/assets/flags/za.svg +17 -0
  379. data/assets/flags/zm.svg +27 -0
  380. data/assets/flags/zw.svg +21 -0
  381. data/assets/img/FAIRsharing-small.svg +28 -0
  382. data/assets/img/Flag_of_Europe.svg +4 -0
  383. data/assets/img/android-chrome-192x192.png +0 -0
  384. data/assets/img/android-chrome-512x512.png +0 -0
  385. data/assets/img/apple-touch-icon.png +0 -0
  386. data/assets/img/bio.tools.svg +76 -0
  387. data/assets/img/dsw-compact.svg +10 -0
  388. data/assets/img/elixir_logo.svg +39 -0
  389. data/assets/img/fairplus.svg +17 -0
  390. data/assets/img/favicon-16x16.png +0 -0
  391. data/assets/img/favicon-32x32.png +0 -0
  392. data/assets/img/favicon.ico +0 -0
  393. data/assets/img/jekyll_theme.svg +1 -0
  394. data/assets/img/jekyll_theme_question.svg +1 -0
  395. data/assets/img/jekyll_theme_question_inverted.svg +1 -0
  396. data/assets/img/main_logo.svg +1 -0
  397. data/assets/img/main_logo_condesed.svg +1 -0
  398. data/assets/img/safari-pinned-tab.svg +23 -0
  399. data/assets/img/site.webmanifest +22 -0
  400. data/assets/img/tess_logo.svg +60 -0
  401. data/assets/js/anchor.min.js +9 -0
  402. data/assets/js/bootstrap.bundle.min.js +7 -0
  403. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  404. data/assets/js/dataTables.bootstrap5.min.js +14 -0
  405. data/assets/js/jquery-3.5.1.min.js +2 -0
  406. data/assets/js/jquery.cookie.min.js +8 -0
  407. data/assets/js/jquery.dataTables.min.js +187 -0
  408. data/assets/js/jquery.navgoco.js +314 -0
  409. data/assets/js/lunr.min.js +6 -0
  410. data/assets/js/main.js +118 -0
  411. data/assets/js/search-data.json +64 -0
  412. data/assets/js/search.js +404 -0
  413. data/assets/js/toc.js +99 -0
  414. data/assets/webfonts/fa-brands-400.eot +0 -0
  415. data/assets/webfonts/fa-brands-400.svg +3717 -0
  416. data/assets/webfonts/fa-brands-400.ttf +0 -0
  417. data/assets/webfonts/fa-brands-400.woff +0 -0
  418. data/assets/webfonts/fa-brands-400.woff2 +0 -0
  419. data/assets/webfonts/fa-regular-400.eot +0 -0
  420. data/assets/webfonts/fa-regular-400.svg +801 -0
  421. data/assets/webfonts/fa-regular-400.ttf +0 -0
  422. data/assets/webfonts/fa-regular-400.woff +0 -0
  423. data/assets/webfonts/fa-regular-400.woff2 +0 -0
  424. data/assets/webfonts/fa-solid-900.eot +0 -0
  425. data/assets/webfonts/fa-solid-900.svg +5034 -0
  426. data/assets/webfonts/fa-solid-900.ttf +0 -0
  427. data/assets/webfonts/fa-solid-900.woff +0 -0
  428. data/assets/webfonts/fa-solid-900.woff2 +0 -0
  429. metadata +514 -0
@@ -0,0 +1,39 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 400 301" style="enable-background:new 0 0 400 301;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#F47D20;}
7
+ .st1{fill:#FFFFFF;}
8
+ </style>
9
+ <path class="st0" d="M375.8,0.5h3.4c11.1,0.6,20.2,10.3,20.9,21.2v3.7c-0.7,9.8-8.3,18.6-18,20.4c-8.9,1.9-18.3-2.3-23.6-9.5
10
+ c-4.8,2.8-9.7,5.4-14.6,8.1c1.7,6.7-0.5,14.4-6.3,18.5c-6.6,5.1-16.4,3.9-22.4-1.6c-4.1,2.4-8.2,4.9-12.2,7.3c0,4.5-0.4,9.6-4,12.8
11
+ c-4.6,4.8-12.3,4.7-17.8,1.5c-4,3-8.2,5.8-12.2,8.9c-0.1,4-1.4,8.4-5.2,10.3c-3.1,2.1-6.9,1.3-10.1-0.1
12
+ c-15.7,12.4-31.4,24.8-45.6,38.9c8.5,20.9,15.8,42.4,20.1,64.6c1.2,7.4,3,15.3,0.4,22.7c-1.7,5-4.6,10.1-9.5,12.5
13
+ c-3.9,2-8.7,1.6-12.2-1c1.8-3.6,6.6-4.5,7.9-8.5c2-6.1,0.8-12.6,0.1-18.8c-3.1-20.7-9.2-40.9-15.9-60.7
14
+ c-5.5,6.4-11.1,12.7-16.6,19.1c3.5,0.1,7-0.3,10.5,0.3c3.8,0.8,3.6,7.2-0.2,7.9c-5.7,0.5-11.4,0.1-17.1,0.2
15
+ c-3.9,5.5-7.8,11-11.6,16.6c8.4,0,16.8,0,25.2,0c2.1,0.1,4.9-0.1,5.9,2.1c1.5,2.7-0.6,6.6-3.9,6.2c-11,0.1-22.1,0-33.1,0.1
16
+ c-3,5.8-6.1,11.6-9.1,17.4c14.1,0.1,28.1-0.1,42.2,0.1c3.2-0.4,5.4,3.2,4,5.9c-0.9,2.5-3.9,2.3-6.1,2.4c-15.1,0-30.1,0-45.2,0
17
+ c-4.2,11.4-7.1,23.7-5.6,35.9c1.1,9.3,5.1,18.4,12,24.8c2.1,2,4.6,3.4,6.5,5.5c1,3-2.1,4.9-4.5,5.7h-2.4
18
+ c-14.6-4-27.9-15.3-31.6-30.3c-3.6-14-0.2-28.6,4.9-41.8c6.6-16.8,16.4-32.2,27.3-46.6c12.8-16.8,27.4-32.3,43.4-46.2
19
+ c-13.8-36.5-31-72.5-56.6-102.4c-2.3-3.2-6.3-5.5-7-9.7c2.7-0.6,4.6,1.7,6.3,3.4c28.3,29,50.8,63.4,67.3,100.4
20
+ c14.5-12.5,30.4-23.4,46.4-34c0-3.9,0.8-8.2,4.3-10.6c3.8-3,9-2.2,12.7,0.3c4.1-2.4,8.1-4.8,12.1-7.2c-1.1-3-2-6.1-1-9.3
21
+ c1.4-6.4,8.3-10.9,14.7-9.8c3.7,0.5,6.5,3,9.1,5.5c3.7-2.3,7.3-4.6,11.3-6.5c-4.2-7.1-2.3-17,4.5-21.7c7.9-6.1,20.7-3.3,25,5.8
22
+ c5-2.3,9.7-5,14.6-7.4c-2.7-6.3-3.3-13.8-0.3-20.1C360.3,6.2,367.8,1.2,375.8,0.5z"/>
23
+ <path class="st1" d="M106.5,92.7c1-3.8,0.8-7.7,0.8-11.6c6.9,0,13.9,0,20.8,0c-6.1,28.1-12.1,56.2-18.2,84.3
24
+ c-1.3,5.3-2.3,10.7-2.6,16.2c-7.2,0-14.3,0-21.5,0c2.7-6.4,4.4-13.1,5.8-19.9C96.5,138.6,101.6,115.7,106.5,92.7z"/>
25
+ <path class="st1" d="M145.4,83.1c6.6-2.3,13.6,4.7,11.4,11.3c-1.6,6.3-10.3,8.7-14.9,4.2C136.6,94.3,138.8,84.8,145.4,83.1z"/>
26
+ <path class="st1" d="M12.7,122.1c3.2-5.1,9.7-6.9,15.4-7c14.3,0,28.6,0,43,0c4.6,0,10.3,1.2,12.4,5.8c1,3.3,0.7,7,0.1,10.4
27
+ c-1.8,7.3-3.6,14.7-5.3,22c-19.4,0-38.8,0-58.2,0c-1.3,5.8-3.1,11.4-4.1,17.3c-0.5,2.8,3.2,2.6,5,2.7c17.2-0.4,34.4,0.9,51.5-0.9
28
+ c-0.3,3-0.5,6.1-0.8,9.1c-19.2,0-38.3,0-57.5,0c-3.6,0-7.5-0.3-10.6-2.4c-2.2-1.4-2.8-4-3.5-6.4v-2c0.6-8.7,3.6-17.1,5.3-25.6
29
+ C7.4,137.3,8.2,129,12.7,122.1z M27.9,127.3c-1.1,5.9-2.5,11.8-3.8,17.7c13.3,0,26.6,0,39.9,0c1-6.7,2.3-13.4,3.5-20
30
+ c-1.4-0.8-2.8-1.7-4.5-1.5c-9.7-0.1-19.4,0-29.1,0C31.4,123.3,28.4,124.6,27.9,127.3z"/>
31
+ <path class="st1" d="M134.7,115.9c6.4,0,12.7,0,19.1,0c-3.4,15.2-6.9,30.5-10.3,45.7c-1.5,6.6-3.3,13.1-3.9,19.9
32
+ c-6.6,0-13.2,0-19.8,0c2.2-4.8,4-9.8,5.2-14.9c3.1-13.9,6.2-27.8,9.3-41.6C134.9,122,134.7,118.9,134.7,115.9z"/>
33
+ <path class="st1" d="M247,115.9c6.4,0,12.7,0,19.1,0c-3.8,16.9-7.6,33.8-11.5,50.7c-1.2,4.9-2.3,9.9-2.8,14.9c-6.6,0-13.2,0-19.9,0
34
+ c2.3-4.9,4.1-10.1,5.3-15.4c3.1-13.8,6.1-27.6,9.2-41.5C247.2,121.7,247,118.8,247,115.9z"/>
35
+ <path class="st1" d="M285.2,116.8c5.8,0,11.7,0,17.5,0c-0.3,2.1-0.5,4.3-0.9,6.4c1.6-3.8,5.5-6,9.5-6.3c6.3-0.3,12.6,0,18.8-0.1
36
+ c1.4,2.5,2.7,4.9,4.1,7.4c-1.4,1.5-2.8,2.9-4.2,4.4c-3.2-2.6-7.4-1.7-11.1-1.9c-4.8,0.2-9.6-0.3-14.4,0.3c-2.1,1-3,3.5-3.7,5.6
37
+ c-3,12.4-5.8,24.8-8.7,37.1c-1,4.1-1.1,8.4-1.1,12.6c-6.9,0-13.9,0-20.8,0c1.6-3.9,3.6-7.7,4.5-11.8c3.5-14.6,6.5-29.4,9.9-44
38
+ C285.4,123.4,285.3,120,285.2,116.8z"/>
39
+ </svg>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg width="653pt" height="653pt" viewBox="0 0 653 653" version="1.1" xmlns="http://www.w3.org/2000/svg">
4
+ <g id="#ffffffff">
5
+ </g>
6
+ <g id="#3e085fff">
7
+ <path fill="#3e085f" opacity="1.00" d=" M 163.28 1.18 C 168.17 0.65 173.10 0.93 178.01 0.89 C 281.69 0.93 385.36 0.85 489.03 0.94 C 489.05 55.20 489.21 109.47 488.95 163.72 C 434.72 163.56 380.48 163.71 326.25 163.65 C 274.48 163.56 222.71 163.62 170.95 163.63 C 168.48 163.52 165.96 163.93 163.54 163.38 C 163.13 109.33 163.62 55.24 163.28 1.18 Z" />
8
+ <path fill="#3e085f" opacity="1.00" d=" M 0.80 163.88 C 54.94 163.56 109.12 163.72 163.27 163.79 C 163.30 215.86 163.27 267.93 163.27 319.99 C 163.40 322.26 162.85 324.71 163.91 326.82 C 218.00 326.63 272.09 326.68 326.17 326.80 C 326.41 380.95 326.24 435.10 326.27 489.25 C 274.15 489.33 222.03 489.25 169.92 489.27 C 167.68 489.39 165.25 488.85 163.17 489.91 C 163.44 542.58 163.18 595.27 163.31 647.95 C 163.29 649.36 163.23 650.78 163.13 652.20 C 113.75 652.55 64.36 652.25 14.97 652.37 C 10.22 652.22 5.45 652.59 0.73 652.01 C 0.67 525.34 0.73 398.67 0.70 272.00 C 0.77 235.96 0.58 199.92 0.80 163.88 Z" />
9
+ <path fill="#3e085f" opacity="1.00" d=" M 326.40 493.02 C 326.50 491.67 325.81 488.95 328.09 489.43 C 372.69 489.43 417.30 489.42 461.90 489.43 C 470.90 489.63 479.96 489.03 488.93 489.72 C 488.93 543.84 489.00 597.97 488.93 652.09 C 436.28 652.34 383.64 652.15 330.99 652.20 C 329.43 652.24 327.87 652.03 326.34 651.77 C 326.51 598.86 326.39 545.94 326.40 493.02 Z" />
10
+ </g>
11
+ <g id="#ff8f5bff">
12
+ <path fill="#ff8f5b" opacity="1.00" d=" M 326.25 163.65 C 380.48 163.71 434.72 163.56 488.95 163.72 C 489.30 217.91 488.97 272.12 489.09 326.31 C 473.74 327.06 458.33 326.47 442.95 326.63 C 404.41 326.65 365.85 326.62 327.31 326.65 C 327.08 326.40 326.63 325.89 326.40 325.63 C 326.24 271.64 326.51 217.64 326.25 163.65 Z" />
13
+ </g>
14
+ <g id="#ff3a52ff">
15
+ <path fill="#ff3a52" opacity="1.00" d=" M 488.99 326.82 C 543.36 326.64 597.74 326.62 652.10 326.80 C 652.09 380.90 652.10 435.01 652.07 489.12 C 597.72 489.53 543.36 489.20 489.01 489.27 C 488.99 435.12 489.02 380.97 488.99 326.82 Z" />
16
+ </g>
17
+ </svg>
Binary file
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 435 435"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#0d6efd;}</style></defs><circle class="cls-1" cx="217.5" cy="217.5" r="217.5"/><path class="cls-2" d="M278.6,367.82q0,10.89-6.89,17.77t-17.77,6.89H173.07q-10.89,0-17.78-6.89t-6.88-17.77v-88.2h30.88v85.53h68.43V44.79H278.6Z" transform="translate(0 -0.68)"/></svg>
@@ -0,0 +1 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 435 435"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#0d6efd;}</style></defs><circle class="cls-1" cx="217.5" cy="217.5" r="217.5"/><path class="cls-2" d="M283.37,147.65a42.19,42.19,0,0,1-6.88,23.77l-45.33,69.1v73.76h-31.1V247.85q0-14.67,6.44-24.22l46-68.65V72.11H181.4v78.21H150.52V69.45q0-10.89,7.11-17.78t18-6.88h82.65q11.1,0,18.11,6.88t7,17.78ZM232.5,392.48H198.73v-39.1H232.5Z" transform="translate(0 -0.68)"/></svg>
@@ -0,0 +1 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 435 435"><defs><style>.cls-1{fill:#0d6efd;}.cls-2{fill:#fff;}</style></defs><circle class="cls-1" cx="217.5" cy="217.5" r="217.5"/><path class="cls-2" d="M283.37,147.65a42.19,42.19,0,0,1-6.88,23.77l-45.33,69.1v73.76h-31.1V247.85q0-14.67,6.44-24.22l46-68.65V72.11H181.4v78.21H150.52V69.45q0-10.89,7.11-17.78t18-6.88h82.65q11.1,0,18.11,6.88t7,17.78ZM232.5,392.48H198.73v-39.1H232.5Z" transform="translate(0 -0.68)"/></svg>
@@ -0,0 +1 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 435 435"><defs><style>.cls-1{fill:#0d6efd;}.cls-2{fill:#fff;}</style></defs><circle class="cls-1" cx="217.5" cy="217.5" r="217.5"/><path class="cls-2" d="M278.6,367.82q0,10.89-6.89,17.77t-17.77,6.89H173.07q-10.89,0-17.78-6.89t-6.88-17.77v-88.2h30.88v85.53h68.43V44.79H278.6Z" transform="translate(0 -0.68)"/></svg>
@@ -0,0 +1 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 435 435"><defs><style>.cls-1{fill:#0d6efd;}.cls-2{fill:#fff;}</style></defs><circle class="cls-1" cx="217.5" cy="217.5" r="217.5"/><path class="cls-2" d="M278.6,367.82q0,10.89-6.89,17.77t-17.77,6.89H173.07q-10.89,0-17.78-6.89t-6.88-17.77v-88.2h30.88v85.53h68.43V44.79H278.6Z" transform="translate(0 -0.68)"/></svg>
@@ -0,0 +1,23 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <metadata>
8
+ Created by potrace 1.14, written by Peter Selinger 2001-2017
9
+ </metadata>
10
+ <g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)"
11
+ fill="#000000" stroke="none">
12
+ <path d="M3280 6994 c-19 -2 -84 -9 -145 -14 -639 -62 -1264 -315 -1795 -726
13
+ -149 -115 -481 -446 -595 -594 -410 -532 -653 -1132 -727 -1795 -17 -155 -17
14
+ -575 0 -730 75 -673 332 -1300 748 -1820 114 -143 339 -372 484 -494 537 -451
15
+ 1163 -717 1885 -803 142 -17 586 -17 730 0 682 79 1268 318 1802 734 138 107
16
+ 389 351 512 498 451 538 717 1162 803 1885 16 139 16 595 0 730 -77 629 -275
17
+ 1158 -620 1649 -234 333 -577 668 -917 896 -460 308 -968 495 -1535 566 -117
18
+ 15 -552 27 -630 18z m1198 -3362 l-3 -2657 -32 -66 c-39 -79 -102 -140 -181
19
+ -177 l-57 -27 -770 0 -770 0 -67 33 c-80 39 -148 111 -181 192 l-22 55 -3 763
20
+ -2 762 250 0 250 0 0 -690 0 -690 548 2 547 3 3 2578 2 2577 245 0 245 0 -2
21
+ -2658z"/>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,22 @@
1
+ ---
2
+ layout: none
3
+ permalink: assets/img/site.webmanifest
4
+ ---
5
+ {
6
+ "name": "{{site.title}}",
7
+ "icons": [
8
+ {
9
+ "src": "android-chrome-192x192.png",
10
+ "sizes": "192x192",
11
+ "type": "image/png"
12
+ },
13
+ {
14
+ "src": "android-chrome-512x512.png",
15
+ "sizes": "512x512",
16
+ "type": "image/png"
17
+ }
18
+ ],
19
+ "theme_color": "#{{site.theme_variables.theme_color}}",
20
+ "background_color": "#fff",
21
+ "display": "standalone"
22
+ }
@@ -0,0 +1,60 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 692 521" style="enable-background:new 0 0 692 521;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#f47d20;}
7
+ .st1{fill:#544F4C;}
8
+ </style>
9
+ <path class="st0" d="M648.8,0h7.5c8.6,0.9,16.9,4.5,23.1,10.5C687.5,18,692.1,29,691.8,40c-0.1,12.3-6.5,24.3-16.6,31.3
10
+ c-9.3,6.7-21.5,8.8-32.5,6c-9.2-2.2-17.1-8.2-22.6-15.8c-8.5,4.7-17,9.4-25.5,14.1c1.2,5.8,1.5,11.9-0.6,17.6
11
+ c-3.3,10.1-12.5,18-23,19.5c-9.4,1.6-19.2-1.8-25.9-8.5c-7,4.1-14,8.4-20.8,12.7c1.7,8.3-0.9,17.5-7.5,23c-8,7.2-21,7.2-29.5,0.7
12
+ c-7.3,4.9-14.6,9.7-21.8,14.9c0.9,6.7-1.8,13.9-7.6,17.5c-5.3,3.5-12.1,3.2-17.7,0.6c-27.7,20.6-54.6,42.6-79.1,67
13
+ c11.5,28.2,21.4,57.1,28.8,86.6c3.9,15.8,7.4,31.8,8.5,48c1,12.1-3.3,24.8-12,33.3c-6.3,6.2-16.3,8.2-24.3,4.6
14
+ c-3-1.3-3.1-5.7-0.6-7.5c3.1-2.2,6.6-4.1,8.6-7.5c4.2-6.6,3.2-14.7,2.9-22.1c-2.2-22.3-7.4-44.1-13.1-65.7
15
+ c-4.7-17.4-10.1-34.6-16-51.7c-10,10.9-19.7,22-29,33.5c5.4,0.1,10.8-0.2,16.2,0.1c4.3,0.3,7.4,4.8,6.7,8.9c-0.3,3.8-3.9,7-7.7,6.8
16
+ c-9.2,0-18.5,0-27.7,0c-7,9.1-13.8,18.4-20.2,28c15.9,0.1,31.9,0,47.9,0c4.4-0.2,8.2,3.9,7.8,8.2c0,4.1-3.7,7.8-7.8,7.5
17
+ c-19.3,0-38.6,0-57.9,0c-5.9,9.5-11.1,19.5-16,29.5c24.3,0,48.6,0,72.9,0c1.9,0,3.9,0.2,5.5,1.4c4.4,2.9,4.3,10.3-0.1,13.1
18
+ c-1.6,1.2-3.5,1.3-5.4,1.3c-26.5,0-53.1,0-79.6,0c-7.7,20.3-12.9,42.3-9.7,64c2.4,17.4,11.2,34.5,25.6,44.9c2.5,2,6.6,3.3,6.5,7.2
19
+ c-0.2,4.5-4.5,7.4-8.6,8.1h-4.7c-7.6-1.6-14.4-5.5-21.1-9.5c-15.3-9.4-27.6-24.1-32.2-41.6c-6.2-23.1-1.4-47.4,6.5-69.5
20
+ c11.1-30.2,28.3-57.8,47.4-83.5c22.5-29.8,48.1-57.2,76.4-81.5c-12.5-33.2-27.1-65.8-44.1-96.9c-16.9-30.7-36.2-60.3-59.7-86.3
21
+ c-2.7-3.1-6.3-5.9-7.1-10.2c1.8-3.4,5.8-0.2,7.8,1.5c51.6,50.2,91,112,120.3,177.4c25.1-21.3,52.1-40.1,79.6-58.1
22
+ c-1.4-6.7,0.9-14.1,6.6-18c6.1-4.6,14.9-3.9,20.8,0.7c7.1-4.3,14.1-8.7,21.2-12.9c-3.2-7.1-3.2-15.8,1.1-22.5
23
+ c5.1-8.7,16.3-13,25.9-10.1c5.4,1.4,9.8,5,13.1,9.3c6.6-3.8,13.2-7.4,19.8-11.1c-2.4-4.8-4.1-10.1-3.9-15.5
24
+ c0.2-10.2,6.1-20,15.1-24.8c8.3-4.7,19-4.9,27.5-0.5c5.7,2.8,10.1,7.6,13.1,13.1c8.3-4.4,16.7-8.7,25.2-12.8
25
+ c-6.2-11.9-6.2-26.9,0.7-38.5C624.8,8.6,636.3,1.1,648.8,0z"/>
26
+ <path class="st1" d="M186.1,138.2c11.9,0.1,23.9-0.1,35.9,0.1c-10.1,46.7-20.2,93.4-30.4,140.1c-2.3,11.6-5.7,23.2-5.3,35.1
27
+ c-12.8,0-25.6,0-38.4,0c3.4-8.6,6.5-17.4,8.4-26.5c7.7-35.6,15.4-71.1,23-106.7C182.1,166.3,186.1,152.5,186.1,138.2z"/>
28
+ <path class="st1" d="M253.2,142.3c9.1-1.8,18.8,5.4,19.3,14.7c1.2,8.3-5.2,16.8-13.4,18.1c-8.3,1.7-17.2-3.7-19.1-12
29
+ C237.1,154,243.7,143.5,253.2,142.3z"/>
30
+ <path class="st1" d="M24.2,207.2c5.8-6.1,14.6-8.3,22.9-8.4c26.3,0,52.6,0,78.9,0c6.5,0.2,14.1,1.4,18.2,7c4,5.6,3.3,13.1,2.1,19.5
31
+ c-2.9,13.2-6,26.5-8.9,39.7c-33.4,0-66.8,0-100.3,0c-1.8,8.4-4,16.8-5.7,25.2c-0.2,2.3-1.1,4.9,0.5,6.9c2,1.6,4.6,1.5,7,1.6
32
+ c22.7,0,45.4,0,68.1,0c7.8,0,15.6-0.5,23.2-2.1c-2.3,5.6-4.6,11.2-6.9,16.8c-33.8,0-67.5,0-101.3,0c-6.1-0.1-12.7-1-17.5-5.1
33
+ c-2.7-2.1-3.7-5.6-4.4-8.8v-8c0.5-4.2,1.5-8.4,2.5-12.5c3.9-16.7,7.7-33.4,11.6-50.1C16,221.2,18.6,213.2,24.2,207.2 M47.4,220.5
34
+ c-2.1,9.9-4.5,19.7-6.7,29.5c22.8,0,45.6,0,68.4,0c2.2-9.4,4.3-18.8,6.6-28.2c0.6-2.2,0.3-4.4,0-6.6c-2.4-1.2-5.1-1.9-7.8-1.8
35
+ c-17.3,0.1-34.6-0.1-51.9,0.1C52,213.5,48.2,216.4,47.4,220.5z"/>
36
+ <path class="st1" d="M233,198.8c11.3,0,22.6,0,34,0c-6.9,30.7-13.9,61.5-20.8,92.2c-1.7,7.4-3.3,14.9-3.2,22.6c-12,0-24,0-36,0
37
+ c3.1-7.7,6.1-15.4,7.9-23.5c5-21.7,10-43.3,15-65C231.6,216.4,233.5,207.6,233,198.8z"/>
38
+ <path class="st1" d="M424.2,225.9c1.9-8.9,3.8-18,3.3-27.2c11.3,0,22.7,0,34,0c-6.2,27.4-12.4,54.8-18.6,82.3
39
+ c-2.4,10.7-5.3,21.4-5.5,32.5c-12,0-24,0-36,0c6.9-15.4,9.8-32.2,13.7-48.5C418.2,252,421.2,239,424.2,225.9z"/>
40
+ <path class="st1" d="M491.5,216.4c1.3-5.8,2.2-11.7,2-17.7c10.1,0,20.1,0,30.2,0c-0.4,3.6-0.7,7.2-1.2,10.7
41
+ c3.3-6.1,9.5-10.5,16.5-10.6c11-0.2,22.1,0,33.2-0.1c2.4,4.2,4.7,8.4,7.1,12.7c-2.6,2.5-4.4,5.9-7.4,7.9
42
+ c-14.2-1.6-28.6-1.9-42.9-1.4c-4.6,0.2-7.6,4.3-8.5,8.5c-5.2,22.5-10,45-15.2,67.5c-1.4,6.4-2.3,13-2.1,19.6c-12,0-23.9,0.1-35.9,0
43
+ c3.8-8.7,6-17.9,8.3-27C480.9,263.1,486.1,239.8,491.5,216.4z"/>
44
+ <path class="st1" d="M329.4,462.3c19.3,0,38.7,0,58,0c-0.8,3.2-1.6,6.3-2.5,9.5c-6,0-11.9,0-17.9,0c-4,15.9-8,31.8-11.9,47.8
45
+ c-7.3,0-14.7,0-22,0c4-15.9,7.8-31.8,11.9-47.7c-6,0-12,0-17.9,0C327.9,468.6,328.6,465.4,329.4,462.3z"/>
46
+ <path class="st1" d="M451.9,466.9c2.5-2.8,6.2-4.7,10.1-4.6c14.7,0,29.4,0,44.1,0c-0.8,3.2-1.7,6.3-2.5,9.5
47
+ c-10.2,0.1-20.3-0.2-30.5,0.1c-4.2-0.4-4.4,4.4-5.1,7.2c8.4,1.8,17.3-0.5,25.7,1.4c3,0.7,5.6,3.2,5.6,6.4c-0.1,4.4-1.8,8.6-2.7,13
48
+ c-1.4,5.6-2.3,11.8-6.9,15.8c-3.6,3.5-8.9,3.7-13.6,3.8c-13.1,0-26.3,0-39.5,0c0.7-3.3,1.5-6.5,2.4-9.7c10.3-0.1,20.7,0.1,31-0.1
49
+ c4.1,0,3.8-5.1,4.8-7.9c-6.7-1.7-13.8-0.4-20.7-0.8c-3.6,0.1-8.6-0.2-10.1-4.1c-1.3-4.4,0.6-9,1.5-13.3
50
+ C447.1,477.9,447.7,471.4,451.9,466.9z"/>
51
+ <path class="st1" d="M515.4,473.5c1.8-5.9,7.1-11.3,13.6-11.3c14.8,0,29.5,0,44.3,0c-0.8,3.2-1.6,6.3-2.4,9.5
52
+ c-10.3,0.1-20.5-0.2-30.8,0.1c-4.1-0.2-4.1,4.6-4.8,7.4c7.9,1.2,15.9-0.2,23.8,0.8c3.3,0.4,6.9,2.3,7.3,6c0.4,4.1-1.3,8.1-2.1,12.1
53
+ c-1.7,6.1-2.4,13.2-7.5,17.6c-3.4,3.2-8.4,3.6-12.9,3.7c-13.4,0-26.7,0-40.1,0c0.8-3.2,1.6-6.5,2.3-9.7c10.5-0.2,21,0.2,31.6-0.2
54
+ c3.7-0.4,3.3-5.1,4.2-7.8c-4.8-1.6-10-0.5-15-0.8c-4.7-0.3-10,1-14.1-1.8c-3-2.5-2.1-6.8-1.4-10.1
55
+ C512.7,483.9,513.9,478.7,515.4,473.5z"/>
56
+ <path class="st1" d="M380.5,481.4c3-3.6,8-4.2,12.4-4.1c11,0.1,22-0.1,33,0.1c3.8-0.1,8.1,2.3,8.1,6.5c-0.3,6.6-2.8,12.8-4.1,19.1
57
+ c-11.8,0-23.5,0-35.2,0c-0.3,2.4-2.2,5.3-0.1,7.4c1.4,0.6,3,0.6,4.5,0.6c9.3,0,18.6,0,28,0c-0.7,2.8-1.4,5.7-2.1,8.5
58
+ c-14.3,0-28.5,0.1-42.8,0c-3.6-0.1-8.6-0.4-10-4.5c-1.2-5.8,1.5-11.4,2.6-17C376.3,492.4,376.7,486.1,380.5,481.4 M400.3,486.1
59
+ c-2.8,1.7-2.4,5.6-3.4,8.4c4.8,0,9.6,0,14.4,0c0.3-2.8,2.5-6,0.8-8.5C408.1,485.7,404.1,485.4,400.3,486.1z"/>
60
+ </svg>
@@ -0,0 +1,9 @@
1
+ // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
2
+ //
3
+ // AnchorJS - v4.3.0 - 2020-10-21
4
+ // https://www.bryanbraun.com/anchorjs/
5
+ // Copyright (c) 2020 Bryan Braun; Licensed MIT
6
+ //
7
+ // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
8
+ !function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(this,function(){"use strict";return function(A){function d(A){A.icon=Object.prototype.hasOwnProperty.call(A,"icon")?A.icon:"",A.visible=Object.prototype.hasOwnProperty.call(A,"visible")?A.visible:"hover",A.placement=Object.prototype.hasOwnProperty.call(A,"placement")?A.placement:"right",A.ariaLabel=Object.prototype.hasOwnProperty.call(A,"ariaLabel")?A.ariaLabel:"Anchor",A.class=Object.prototype.hasOwnProperty.call(A,"class")?A.class:"",A.base=Object.prototype.hasOwnProperty.call(A,"base")?A.base:"",A.truncate=Object.prototype.hasOwnProperty.call(A,"truncate")?Math.floor(A.truncate):64,A.titleText=Object.prototype.hasOwnProperty.call(A,"titleText")?A.titleText:""}function f(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new TypeError("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}this.options=A||{},this.elements=[],d(this.options),this.isTouchDevice=function(){return Boolean("ontouchstart"in window||window.TouchEvent||window.DocumentTouch&&document instanceof DocumentTouch)},this.add=function(A){var e,t,o,n,i,s,a,r,c,l,h,u,p=[];if(d(this.options),"touch"===(h=this.options.visible)&&(h=this.isTouchDevice()?"always":"hover"),0===(e=f(A=A||"h2, h3, h4, h5, h6")).length)return this;for(!function(){if(null!==document.head.querySelector("style.anchorjs"))return;var A,e=document.createElement("style");e.className="anchorjs",e.appendChild(document.createTextNode("")),void 0===(A=document.head.querySelector('[rel="stylesheet"],style'))?document.head.appendChild(e):document.head.insertBefore(e,A);e.sheet.insertRule(".anchorjs-link{opacity:0;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}",e.sheet.cssRules.length),e.sheet.insertRule(":hover>.anchorjs-link,.anchorjs-link:focus{opacity:1}",e.sheet.cssRules.length),e.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",e.sheet.cssRules.length),e.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',e.sheet.cssRules.length)}(),t=document.querySelectorAll("[id]"),o=[].map.call(t,function(A){return A.id}),i=0;i<e.length;i++)if(this.hasAnchorJSLink(e[i]))p.push(i);else{if(e[i].hasAttribute("id"))n=e[i].getAttribute("id");else if(e[i].hasAttribute("data-anchor-id"))n=e[i].getAttribute("data-anchor-id");else{for(c=r=this.urlify(e[i].textContent),a=0;void 0!==s&&(c=r+"-"+a),a+=1,-1!==(s=o.indexOf(c)););s=void 0,o.push(c),e[i].setAttribute("id",c),n=c}(l=document.createElement("a")).className="anchorjs-link "+this.options.class,l.setAttribute("aria-label",this.options.ariaLabel),l.setAttribute("data-anchorjs-icon",this.options.icon),this.options.titleText&&(l.title=this.options.titleText),u=document.querySelector("base")?window.location.pathname+window.location.search:"",u=this.options.base||u,l.href=u+"#"+n,"always"===h&&(l.style.opacity="1"),""===this.options.icon&&(l.style.font="1em/1 anchorjs-icons","left"===this.options.placement&&(l.style.lineHeight="inherit")),"left"===this.options.placement?(l.style.position="absolute",l.style.marginLeft="-1em",l.style.paddingRight=".5em",e[i].insertBefore(l,e[i].firstChild)):(l.style.paddingLeft=".375em",e[i].appendChild(l))}for(i=0;i<p.length;i++)e.splice(p[i]-i,1);return this.elements=this.elements.concat(e),this},this.remove=function(A){for(var e,t,o=f(A),n=0;n<o.length;n++)(t=o[n].querySelector(".anchorjs-link"))&&(-1!==(e=this.elements.indexOf(o[n]))&&this.elements.splice(e,1),o[n].removeChild(t));return this},this.removeAll=function(){this.remove(this.elements)},this.urlify=function(A){var e=document.createElement("textarea");e.innerHTML=A,A=e.value;return this.options.truncate||d(this.options),A.trim().replace(/'/gi,"").replace(/[& +$,:;=?@"#{}|^~[`%!'<>\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),t=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||t||!1}}});
9
+ // @license-end
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap v5.1.2 (https://getbootstrap.com/)
3
+ * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
5
+ */
6
+ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t="transitionend",e=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return e},i=t=>{const i=e(t);return i&&document.querySelector(i)?i:null},n=t=>{const i=e(t);return i?document.querySelector(i):null},s=e=>{e.dispatchEvent(new Event(t))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(t):null,a=(t,e,i)=>{Object.keys(i).forEach((n=>{const s=i[n],r=e[n],a=r&&o(r)?"element":null==(l=r)?`${l}`:{}.toString.call(l).match(/\s([a-z]+)/i)[1].toLowerCase();var l;if(!new RegExp(s).test(a))throw new TypeError(`${t.toUpperCase()}: Option "${n}" provided type "${a}" but expected type "${s}".`)}))},l=t=>!(!o(t)||0===t.getClientRects().length)&&"visible"===getComputedStyle(t).getPropertyValue("visibility"),c=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),h=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?h(t.parentNode):null},d=()=>{},u=t=>{t.offsetHeight},f=()=>{const{jQuery:t}=window;return t&&!document.body.hasAttribute("data-bs-no-jquery")?t:null},p=[],m=()=>"rtl"===document.documentElement.dir,g=t=>{var e;e=()=>{const e=f();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(p.length||document.addEventListener("DOMContentLoaded",(()=>{p.forEach((t=>t()))})),p.push(e)):e()},_=t=>{"function"==typeof t&&t()},b=(e,i,n=!0)=>{if(!n)return void _(e);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(i)+5;let r=!1;const a=({target:n})=>{n===i&&(r=!0,i.removeEventListener(t,a),_(e))};i.addEventListener(t,a),setTimeout((()=>{r||s(i)}),o)},v=(t,e,i,n)=>{let s=t.indexOf(e);if(-1===s)return t[!i&&n?t.length-1:0];const o=t.length;return s+=i?1:-1,n&&(s=(s+o)%o),t[Math.max(0,Math.min(s,o-1))]},y=/[^.]*(?=\..*)\.|.*/,w=/\..*/,E=/::\d+$/,A={};let T=1;const O={mouseenter:"mouseover",mouseleave:"mouseout"},C=/^(mouseenter|mouseleave)/i,k=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function L(t,e){return e&&`${e}::${T++}`||t.uidEvent||T++}function x(t){const e=L(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function D(t,e,i=null){const n=Object.keys(t);for(let s=0,o=n.length;s<o;s++){const o=t[n[s]];if(o.originalHandler===e&&o.delegationSelector===i)return o}return null}function S(t,e,i){const n="string"==typeof e,s=n?i:e;let o=P(t);return k.has(o)||(o=t),[n,s,o]}function N(t,e,i,n,s){if("string"!=typeof e||!t)return;if(i||(i=n,n=null),C.test(e)){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};n?n=t(n):i=t(i)}const[o,r,a]=S(e,i,n),l=x(t),c=l[a]||(l[a]={}),h=D(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=L(r,e.replace(y,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(let a=o.length;a--;)if(o[a]===r)return s.delegateTarget=r,n.oneOff&&j.off(t,s.type,e,i),i.apply(r,[s]);return null}}(t,i,n):function(t,e){return function i(n){return n.delegateTarget=t,i.oneOff&&j.off(t,n.type,e),e.apply(t,[n])}}(t,i);u.delegationSelector=o?i:null,u.originalHandler=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function I(t,e,i,n,s){const o=D(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function P(t){return t=t.replace(w,""),O[t]||t}const j={on(t,e,i,n){N(t,e,i,n,!1)},one(t,e,i,n){N(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=S(e,i,n),a=r!==e,l=x(t),c=e.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void I(t,l,r,o,s?i:null)}c&&Object.keys(l).forEach((i=>{!function(t,e,i,n){const s=e[i]||{};Object.keys(s).forEach((o=>{if(o.includes(n)){const n=s[o];I(t,e,i,n.originalHandler,n.delegationSelector)}}))}(t,l,i,e.slice(1))}));const h=l[r]||{};Object.keys(h).forEach((i=>{const n=i.replace(E,"");if(!a||e.includes(n)){const e=h[i];I(t,l,r,e.originalHandler,e.delegationSelector)}}))},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=f(),s=P(e),o=e!==s,r=k.has(s);let a,l=!0,c=!0,h=!1,d=null;return o&&n&&(a=n.Event(e,i),n(t).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),h=a.isDefaultPrevented()),r?(d=document.createEvent("HTMLEvents"),d.initEvent(s,l,!0)):d=new CustomEvent(e,{bubbles:l,cancelable:!0}),void 0!==i&&Object.keys(i).forEach((t=>{Object.defineProperty(d,t,{get:()=>i[t]})})),h&&d.preventDefault(),c&&t.dispatchEvent(d),d.defaultPrevented&&void 0!==a&&a.preventDefault(),d}},M=new Map,H={set(t,e,i){M.has(t)||M.set(t,new Map);const n=M.get(t);n.has(e)||0===n.size?n.set(e,i):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(n.keys())[0]}.`)},get:(t,e)=>M.has(t)&&M.get(t).get(e)||null,remove(t,e){if(!M.has(t))return;const i=M.get(t);i.delete(e),0===i.size&&M.delete(t)}};class B{constructor(t){(t=r(t))&&(this._element=t,H.set(this._element,this.constructor.DATA_KEY,this))}dispose(){H.remove(this._element,this.constructor.DATA_KEY),j.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach((t=>{this[t]=null}))}_queueCallback(t,e,i=!0){b(t,e,i)}static getInstance(t){return H.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.1.2"}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}}const R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,s=t.NAME;j.on(document,i,`[data-bs-dismiss="${s}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),c(this))return;const o=n(this)||this.closest(`.${s}`);t.getOrCreateInstance(o)[e]()}))};class W extends B{static get NAME(){return"alert"}close(){if(j.trigger(this._element,"close.bs.alert").defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),j.trigger(this._element,"closed.bs.alert"),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=W.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(W,"close"),g(W);const $='[data-bs-toggle="button"]';class z extends B{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=z.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}function q(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function F(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}j.on(document,"click.bs.button.data-api",$,(t=>{t.preventDefault();const e=t.target.closest($);z.getOrCreateInstance(e).toggle()})),g(z);const U={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${F(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${F(e)}`)},getDataAttributes(t){if(!t)return{};const e={};return Object.keys(t.dataset).filter((t=>t.startsWith("bs"))).forEach((i=>{let n=i.replace(/^bs/,"");n=n.charAt(0).toLowerCase()+n.slice(1,n.length),e[n]=q(t.dataset[i])})),e},getDataAttribute:(t,e)=>q(t.getAttribute(`data-bs-${F(e)}`)),offset(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset,left:e.left+window.pageXOffset}},position:t=>({top:t.offsetTop,left:t.offsetLeft})},V={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode;for(;n&&n.nodeType===Node.ELEMENT_NODE&&3!==n.nodeType;)n.matches(e)&&i.push(n),n=n.parentNode;return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(", ");return this.find(e,t).filter((t=>!c(t)&&l(t)))}},K="carousel",X={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},Y={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},Q="next",G="prev",Z="left",J="right",tt={ArrowLeft:J,ArrowRight:Z},et="slid.bs.carousel",it="active",nt=".active.carousel-item";class st extends B{constructor(t,e){super(t),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._indicatorsElement=V.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return X}static get NAME(){return K}next(){this._slide(Q)}nextWhenVisible(){!document.hidden&&l(this._element)&&this.next()}prev(){this._slide(G)}pause(t){t||(this._isPaused=!0),V.findOne(".carousel-item-next, .carousel-item-prev",this._element)&&(s(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(t){this._activeElement=V.findOne(nt,this._element);const e=this._getItemIndex(this._activeElement);if(t>this._items.length-1||t<0)return;if(this._isSliding)return void j.one(this._element,et,(()=>this.to(t)));if(e===t)return this.pause(),void this.cycle();const i=t>e?Q:G;this._slide(i,this._items[t])}_getConfig(t){return t={...X,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(K,t,Y),t}_handleSwipe(){const t=Math.abs(this.touchDeltaX);if(t<=40)return;const e=t/this.touchDeltaX;this.touchDeltaX=0,e&&this._slide(e>0?J:Z)}_addEventListeners(){this._config.keyboard&&j.on(this._element,"keydown.bs.carousel",(t=>this._keydown(t))),"hover"===this._config.pause&&(j.on(this._element,"mouseenter.bs.carousel",(t=>this.pause(t))),j.on(this._element,"mouseleave.bs.carousel",(t=>this.cycle(t)))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const t=t=>this._pointerEvent&&("pen"===t.pointerType||"touch"===t.pointerType),e=e=>{t(e)?this.touchStartX=e.clientX:this._pointerEvent||(this.touchStartX=e.touches[0].clientX)},i=t=>{this.touchDeltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this.touchStartX},n=e=>{t(e)&&(this.touchDeltaX=e.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((t=>this.cycle(t)),500+this._config.interval))};V.find(".carousel-item img",this._element).forEach((t=>{j.on(t,"dragstart.bs.carousel",(t=>t.preventDefault()))})),this._pointerEvent?(j.on(this._element,"pointerdown.bs.carousel",(t=>e(t))),j.on(this._element,"pointerup.bs.carousel",(t=>n(t))),this._element.classList.add("pointer-event")):(j.on(this._element,"touchstart.bs.carousel",(t=>e(t))),j.on(this._element,"touchmove.bs.carousel",(t=>i(t))),j.on(this._element,"touchend.bs.carousel",(t=>n(t))))}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=tt[t.key];e&&(t.preventDefault(),this._slide(e))}_getItemIndex(t){return this._items=t&&t.parentNode?V.find(".carousel-item",t.parentNode):[],this._items.indexOf(t)}_getItemByOrder(t,e){const i=t===Q;return v(this._items,e,i,this._config.wrap)}_triggerSlideEvent(t,e){const i=this._getItemIndex(t),n=this._getItemIndex(V.findOne(nt,this._element));return j.trigger(this._element,"slide.bs.carousel",{relatedTarget:t,direction:e,from:n,to:i})}_setActiveIndicatorElement(t){if(this._indicatorsElement){const e=V.findOne(".active",this._indicatorsElement);e.classList.remove(it),e.removeAttribute("aria-current");const i=V.find("[data-bs-target]",this._indicatorsElement);for(let e=0;e<i.length;e++)if(Number.parseInt(i[e].getAttribute("data-bs-slide-to"),10)===this._getItemIndex(t)){i[e].classList.add(it),i[e].setAttribute("aria-current","true");break}}}_updateInterval(){const t=this._activeElement||V.findOne(nt,this._element);if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}_slide(t,e){const i=this._directionToOrder(t),n=V.findOne(nt,this._element),s=this._getItemIndex(n),o=e||this._getItemByOrder(i,n),r=this._getItemIndex(o),a=Boolean(this._interval),l=i===Q,c=l?"carousel-item-start":"carousel-item-end",h=l?"carousel-item-next":"carousel-item-prev",d=this._orderToDirection(i);if(o&&o.classList.contains(it))return void(this._isSliding=!1);if(this._isSliding)return;if(this._triggerSlideEvent(o,d).defaultPrevented)return;if(!n||!o)return;this._isSliding=!0,a&&this.pause(),this._setActiveIndicatorElement(o),this._activeElement=o;const f=()=>{j.trigger(this._element,et,{relatedTarget:o,direction:d,from:s,to:r})};if(this._element.classList.contains("slide")){o.classList.add(h),u(o),n.classList.add(c),o.classList.add(c);const t=()=>{o.classList.remove(c,h),o.classList.add(it),n.classList.remove(it,h,c),this._isSliding=!1,setTimeout(f,0)};this._queueCallback(t,n,!0)}else n.classList.remove(it),o.classList.add(it),this._isSliding=!1,f();a&&this.cycle()}_directionToOrder(t){return[J,Z].includes(t)?m()?t===Z?G:Q:t===Z?Q:G:t}_orderToDirection(t){return[Q,G].includes(t)?m()?t===G?Z:J:t===G?J:Z:t}static carouselInterface(t,e){const i=st.getOrCreateInstance(t,e);let{_config:n}=i;"object"==typeof e&&(n={...n,...e});const s="string"==typeof e?e:n.slide;if("number"==typeof e)i.to(e);else if("string"==typeof s){if(void 0===i[s])throw new TypeError(`No method named "${s}"`);i[s]()}else n.interval&&n.ride&&(i.pause(),i.cycle())}static jQueryInterface(t){return this.each((function(){st.carouselInterface(this,t)}))}static dataApiClickHandler(t){const e=n(this);if(!e||!e.classList.contains("carousel"))return;const i={...U.getDataAttributes(e),...U.getDataAttributes(this)},s=this.getAttribute("data-bs-slide-to");s&&(i.interval=!1),st.carouselInterface(e,i),s&&st.getInstance(e).to(s),t.preventDefault()}}j.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",st.dataApiClickHandler),j.on(window,"load.bs.carousel.data-api",(()=>{const t=V.find('[data-bs-ride="carousel"]');for(let e=0,i=t.length;e<i;e++)st.carouselInterface(t[e],st.getInstance(t[e]))})),g(st);const ot="collapse",rt={toggle:!0,parent:null},at={toggle:"boolean",parent:"(null|element)"},lt="show",ct="collapse",ht="collapsing",dt="collapsed",ut=":scope .collapse .collapse",ft='[data-bs-toggle="collapse"]';class pt extends B{constructor(t,e){super(t),this._isTransitioning=!1,this._config=this._getConfig(e),this._triggerArray=[];const n=V.find(ft);for(let t=0,e=n.length;t<e;t++){const e=n[t],s=i(e),o=V.find(s).filter((t=>t===this._element));null!==s&&o.length&&(this._selector=s,this._triggerArray.push(e))}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return rt}static get NAME(){return ot}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t,e=[];if(this._config.parent){const t=V.find(ut,this._config.parent);e=V.find(".collapse.show, .collapse.collapsing",this._config.parent).filter((e=>!t.includes(e)))}const i=V.findOne(this._selector);if(e.length){const n=e.find((t=>i!==t));if(t=n?pt.getInstance(n):null,t&&t._isTransitioning)return}if(j.trigger(this._element,"show.bs.collapse").defaultPrevented)return;e.forEach((e=>{i!==e&&pt.getOrCreateInstance(e,{toggle:!1}).hide(),t||H.set(e,"bs.collapse",null)}));const n=this._getDimension();this._element.classList.remove(ct),this._element.classList.add(ht),this._element.style[n]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const s=`scroll${n[0].toUpperCase()+n.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(ht),this._element.classList.add(ct,lt),this._element.style[n]="",j.trigger(this._element,"shown.bs.collapse")}),this._element,!0),this._element.style[n]=`${this._element[s]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(j.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,u(this._element),this._element.classList.add(ht),this._element.classList.remove(ct,lt);const e=this._triggerArray.length;for(let t=0;t<e;t++){const e=this._triggerArray[t],i=n(e);i&&!this._isShown(i)&&this._addAriaAndCollapsedClass([e],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(ht),this._element.classList.add(ct),j.trigger(this._element,"hidden.bs.collapse")}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(lt)}_getConfig(t){return(t={...rt,...U.getDataAttributes(this._element),...t}).toggle=Boolean(t.toggle),t.parent=r(t.parent),a(ot,t,at),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=V.find(ut,this._config.parent);V.find(ft,this._config.parent).filter((e=>!t.includes(e))).forEach((t=>{const e=n(t);e&&this._addAriaAndCollapsedClass([t],this._isShown(e))}))}_addAriaAndCollapsedClass(t,e){t.length&&t.forEach((t=>{e?t.classList.remove(dt):t.classList.add(dt),t.setAttribute("aria-expanded",e)}))}static jQueryInterface(t){return this.each((function(){const e={};"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1);const i=pt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}j.on(document,"click.bs.collapse.data-api",ft,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();const e=i(this);V.find(e).forEach((t=>{pt.getOrCreateInstance(t,{toggle:!1}).toggle()}))})),g(pt);var mt="top",gt="bottom",_t="right",bt="left",vt="auto",yt=[mt,gt,_t,bt],wt="start",Et="end",At="clippingParents",Tt="viewport",Ot="popper",Ct="reference",kt=yt.reduce((function(t,e){return t.concat([e+"-"+wt,e+"-"+Et])}),[]),Lt=[].concat(yt,[vt]).reduce((function(t,e){return t.concat([e,e+"-"+wt,e+"-"+Et])}),[]),xt="beforeRead",Dt="read",St="afterRead",Nt="beforeMain",It="main",Pt="afterMain",jt="beforeWrite",Mt="write",Ht="afterWrite",Bt=[xt,Dt,St,Nt,It,Pt,jt,Mt,Ht];function Rt(t){return t?(t.nodeName||"").toLowerCase():null}function Wt(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function $t(t){return t instanceof Wt(t).Element||t instanceof Element}function zt(t){return t instanceof Wt(t).HTMLElement||t instanceof HTMLElement}function qt(t){return"undefined"!=typeof ShadowRoot&&(t instanceof Wt(t).ShadowRoot||t instanceof ShadowRoot)}const Ft={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];zt(s)&&Rt(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});zt(n)&&Rt(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function Ut(t){return t.split("-")[0]}function Vt(t,e){var i=t.getBoundingClientRect();return{width:i.width/1,height:i.height/1,top:i.top/1,right:i.right/1,bottom:i.bottom/1,left:i.left/1,x:i.left/1,y:i.top/1}}function Kt(t){var e=Vt(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Xt(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&qt(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function Yt(t){return Wt(t).getComputedStyle(t)}function Qt(t){return["table","td","th"].indexOf(Rt(t))>=0}function Gt(t){return(($t(t)?t.ownerDocument:t.document)||window.document).documentElement}function Zt(t){return"html"===Rt(t)?t:t.assignedSlot||t.parentNode||(qt(t)?t.host:null)||Gt(t)}function Jt(t){return zt(t)&&"fixed"!==Yt(t).position?t.offsetParent:null}function te(t){for(var e=Wt(t),i=Jt(t);i&&Qt(i)&&"static"===Yt(i).position;)i=Jt(i);return i&&("html"===Rt(i)||"body"===Rt(i)&&"static"===Yt(i).position)?e:i||function(t){var e=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&zt(t)&&"fixed"===Yt(t).position)return null;for(var i=Zt(t);zt(i)&&["html","body"].indexOf(Rt(i))<0;){var n=Yt(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function ee(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}var ie=Math.max,ne=Math.min,se=Math.round;function oe(t,e,i){return ie(t,ne(e,i))}function re(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function ae(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const le={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=Ut(i.placement),l=ee(a),c=[bt,_t].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return re("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:ae(t,yt))}(s.padding,i),d=Kt(o),u="y"===l?mt:bt,f="y"===l?gt:_t,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=te(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,E=oe(v,w,y),A=l;i.modifiersData[n]=((e={})[A]=E,e.centerOffset=E-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Xt(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function ce(t){return t.split("-")[1]}var he={top:"auto",right:"auto",bottom:"auto",left:"auto"};function de(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=!0===h?function(t){var e=t.x,i=t.y,n=window.devicePixelRatio||1;return{x:se(se(e*n)/n)||0,y:se(se(i*n)/n)||0}}(r):"function"==typeof h?h(r):r,u=d.x,f=void 0===u?0:u,p=d.y,m=void 0===p?0:p,g=r.hasOwnProperty("x"),_=r.hasOwnProperty("y"),b=bt,v=mt,y=window;if(c){var w=te(i),E="clientHeight",A="clientWidth";w===Wt(i)&&"static"!==Yt(w=Gt(i)).position&&"absolute"===a&&(E="scrollHeight",A="scrollWidth"),w=w,s!==mt&&(s!==bt&&s!==_t||o!==Et)||(v=gt,m-=w[E]-n.height,m*=l?1:-1),s!==bt&&(s!==mt&&s!==gt||o!==Et)||(b=_t,f-=w[A]-n.width,f*=l?1:-1)}var T,O=Object.assign({position:a},c&&he);return l?Object.assign({},O,((T={})[v]=_?"0":"",T[b]=g?"0":"",T.transform=(y.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",T)):Object.assign({},O,((e={})[v]=_?m+"px":"",e[b]=g?f+"px":"",e.transform="",e))}const ue={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:Ut(e.placement),variation:ce(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,de(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,de(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var fe={passive:!0};const pe={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=Wt(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,fe)})),a&&l.addEventListener("resize",i.update,fe),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,fe)})),a&&l.removeEventListener("resize",i.update,fe)}},data:{}};var me={left:"right",right:"left",bottom:"top",top:"bottom"};function ge(t){return t.replace(/left|right|bottom|top/g,(function(t){return me[t]}))}var _e={start:"end",end:"start"};function be(t){return t.replace(/start|end/g,(function(t){return _e[t]}))}function ve(t){var e=Wt(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function ye(t){return Vt(Gt(t)).left+ve(t).scrollLeft}function we(t){var e=Yt(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ee(t){return["html","body","#document"].indexOf(Rt(t))>=0?t.ownerDocument.body:zt(t)&&we(t)?t:Ee(Zt(t))}function Ae(t,e){var i;void 0===e&&(e=[]);var n=Ee(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=Wt(n),r=s?[o].concat(o.visualViewport||[],we(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Ae(Zt(r)))}function Te(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function Oe(t,e){return e===Tt?Te(function(t){var e=Wt(t),i=Gt(t),n=e.visualViewport,s=i.clientWidth,o=i.clientHeight,r=0,a=0;return n&&(s=n.width,o=n.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(r=n.offsetLeft,a=n.offsetTop)),{width:s,height:o,x:r+ye(t),y:a}}(t)):zt(e)?function(t){var e=Vt(t);return e.top=e.top+t.clientTop,e.left=e.left+t.clientLeft,e.bottom=e.top+t.clientHeight,e.right=e.left+t.clientWidth,e.width=t.clientWidth,e.height=t.clientHeight,e.x=e.left,e.y=e.top,e}(e):Te(function(t){var e,i=Gt(t),n=ve(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=ie(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=ie(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+ye(t),l=-n.scrollTop;return"rtl"===Yt(s||i).direction&&(a+=ie(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Gt(t)))}function Ce(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?Ut(s):null,r=s?ce(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case mt:e={x:a,y:i.y-n.height};break;case gt:e={x:a,y:i.y+i.height};break;case _t:e={x:i.x+i.width,y:l};break;case bt:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?ee(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case wt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case Et:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ke(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.boundary,r=void 0===o?At:o,a=i.rootBoundary,l=void 0===a?Tt:a,c=i.elementContext,h=void 0===c?Ot:c,d=i.altBoundary,u=void 0!==d&&d,f=i.padding,p=void 0===f?0:f,m=re("number"!=typeof p?p:ae(p,yt)),g=h===Ot?Ct:Ot,_=t.rects.popper,b=t.elements[u?g:h],v=function(t,e,i){var n="clippingParents"===e?function(t){var e=Ae(Zt(t)),i=["absolute","fixed"].indexOf(Yt(t).position)>=0&&zt(t)?te(t):t;return $t(i)?e.filter((function(t){return $t(t)&&Xt(t,i)&&"body"!==Rt(t)})):[]}(t):[].concat(e),s=[].concat(n,[i]),o=s[0],r=s.reduce((function(e,i){var n=Oe(t,i);return e.top=ie(n.top,e.top),e.right=ne(n.right,e.right),e.bottom=ne(n.bottom,e.bottom),e.left=ie(n.left,e.left),e}),Oe(t,o));return r.width=r.right-r.left,r.height=r.bottom-r.top,r.x=r.left,r.y=r.top,r}($t(b)?b:b.contextElement||Gt(t.elements.popper),r,l),y=Vt(t.elements.reference),w=Ce({reference:y,element:_,strategy:"absolute",placement:s}),E=Te(Object.assign({},_,w)),A=h===Ot?E:y,T={top:v.top-A.top+m.top,bottom:A.bottom-v.bottom+m.bottom,left:v.left-A.left+m.left,right:A.right-v.right+m.right},O=t.modifiersData.offset;if(h===Ot&&O){var C=O[s];Object.keys(T).forEach((function(t){var e=[_t,gt].indexOf(t)>=0?1:-1,i=[mt,gt].indexOf(t)>=0?"y":"x";T[t]+=C[i]*e}))}return T}function Le(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?Lt:l,h=ce(n),d=h?a?kt:kt.filter((function(t){return ce(t)===h})):yt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ke(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[Ut(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const xe={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=Ut(g),b=l||(_!==g&&p?function(t){if(Ut(t)===vt)return[];var e=ge(t);return[be(t),e,be(e)]}(g):[ge(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(Ut(i)===vt?Le(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,E=new Map,A=!0,T=v[0],O=0;O<v.length;O++){var C=v[O],k=Ut(C),L=ce(C)===wt,x=[mt,gt].indexOf(k)>=0,D=x?"width":"height",S=ke(e,{placement:C,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),N=x?L?_t:bt:L?gt:mt;y[D]>w[D]&&(N=ge(N));var I=ge(N),P=[];if(o&&P.push(S[k]<=0),a&&P.push(S[N]<=0,S[I]<=0),P.every((function(t){return t}))){T=C,A=!1;break}E.set(C,P)}if(A)for(var j=function(t){var e=v.find((function(e){var i=E.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==j(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function De(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function Se(t){return[mt,_t,gt,bt].some((function(e){return t[e]>=0}))}const Ne={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ke(e,{elementContext:"reference"}),a=ke(e,{altBoundary:!0}),l=De(r,n),c=De(a,s,o),h=Se(l),d=Se(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},Ie={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=Lt.reduce((function(t,i){return t[i]=function(t,e,i){var n=Ut(t),s=[bt,mt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[bt,_t].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},Pe={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=Ce({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},je={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ke(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=Ut(e.placement),b=ce(e.placement),v=!b,y=ee(_),w="x"===y?"y":"x",E=e.modifiersData.popperOffsets,A=e.rects.reference,T=e.rects.popper,O="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,C={x:0,y:0};if(E){if(o||a){var k="y"===y?mt:bt,L="y"===y?gt:_t,x="y"===y?"height":"width",D=E[y],S=E[y]+g[k],N=E[y]-g[L],I=f?-T[x]/2:0,P=b===wt?A[x]:T[x],j=b===wt?-T[x]:-A[x],M=e.elements.arrow,H=f&&M?Kt(M):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},R=B[k],W=B[L],$=oe(0,A[x],H[x]),z=v?A[x]/2-I-$-R-O:P-$-R-O,q=v?-A[x]/2+I+$+W+O:j+$+W+O,F=e.elements.arrow&&te(e.elements.arrow),U=F?"y"===y?F.clientTop||0:F.clientLeft||0:0,V=e.modifiersData.offset?e.modifiersData.offset[e.placement][y]:0,K=E[y]+z-V-U,X=E[y]+q-V;if(o){var Y=oe(f?ne(S,K):S,D,f?ie(N,X):N);E[y]=Y,C[y]=Y-D}if(a){var Q="x"===y?mt:bt,G="x"===y?gt:_t,Z=E[w],J=Z+g[Q],tt=Z-g[G],et=oe(f?ne(J,K):J,Z,f?ie(tt,X):tt);E[w]=et,C[w]=et-Z}}e.modifiersData[n]=C}},requiresIfExists:["offset"]};function Me(t,e,i){void 0===i&&(i=!1);var n=zt(e);zt(e)&&function(t){var e=t.getBoundingClientRect();e.width,t.offsetWidth,e.height,t.offsetHeight}(e);var s,o,r=Gt(e),a=Vt(t),l={scrollLeft:0,scrollTop:0},c={x:0,y:0};return(n||!n&&!i)&&(("body"!==Rt(e)||we(r))&&(l=(s=e)!==Wt(s)&&zt(s)?{scrollLeft:(o=s).scrollLeft,scrollTop:o.scrollTop}:ve(s)),zt(e)?((c=Vt(e)).x+=e.clientLeft,c.y+=e.clientTop):r&&(c.x=ye(r))),{x:a.left+l.scrollLeft-c.x,y:a.top+l.scrollTop-c.y,width:a.width,height:a.height}}function He(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var Be={placement:"bottom",modifiers:[],strategy:"absolute"};function Re(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return!e.some((function(t){return!(t&&"function"==typeof t.getBoundingClientRect)}))}function We(t){void 0===t&&(t={});var e=t,i=e.defaultModifiers,n=void 0===i?[]:i,s=e.defaultOptions,o=void 0===s?Be:s;return function(t,e,i){void 0===i&&(i=o);var s,r,a={placement:"bottom",orderedModifiers:[],options:Object.assign({},Be,o),modifiersData:{},elements:{reference:t,popper:e},attributes:{},styles:{}},l=[],c=!1,h={state:a,setOptions:function(i){var s="function"==typeof i?i(a.options):i;d(),a.options=Object.assign({},o,a.options,s),a.scrollParents={reference:$t(t)?Ae(t):t.contextElement?Ae(t.contextElement):[],popper:Ae(e)};var r,c,u=function(t){var e=He(t);return Bt.reduce((function(t,i){return t.concat(e.filter((function(t){return t.phase===i})))}),[])}((r=[].concat(n,a.options.modifiers),c=r.reduce((function(t,e){var i=t[e.name];return t[e.name]=i?Object.assign({},i,e,{options:Object.assign({},i.options,e.options),data:Object.assign({},i.data,e.data)}):e,t}),{}),Object.keys(c).map((function(t){return c[t]}))));return a.orderedModifiers=u.filter((function(t){return t.enabled})),a.orderedModifiers.forEach((function(t){var e=t.name,i=t.options,n=void 0===i?{}:i,s=t.effect;if("function"==typeof s){var o=s({state:a,name:e,instance:h,options:n});l.push(o||function(){})}})),h.update()},forceUpdate:function(){if(!c){var t=a.elements,e=t.reference,i=t.popper;if(Re(e,i)){a.rects={reference:Me(e,te(i),"fixed"===a.options.strategy),popper:Kt(i)},a.reset=!1,a.placement=a.options.placement,a.orderedModifiers.forEach((function(t){return a.modifiersData[t.name]=Object.assign({},t.data)}));for(var n=0;n<a.orderedModifiers.length;n++)if(!0!==a.reset){var s=a.orderedModifiers[n],o=s.fn,r=s.options,l=void 0===r?{}:r,d=s.name;"function"==typeof o&&(a=o({state:a,options:l,name:d,instance:h})||a)}else a.reset=!1,n=-1}}},update:(s=function(){return new Promise((function(t){h.forceUpdate(),t(a)}))},function(){return r||(r=new Promise((function(t){Promise.resolve().then((function(){r=void 0,t(s())}))}))),r}),destroy:function(){d(),c=!0}};if(!Re(t,e))return h;function d(){l.forEach((function(t){return t()})),l=[]}return h.setOptions(i).then((function(t){!c&&i.onFirstUpdate&&i.onFirstUpdate(t)})),h}}var $e=We(),ze=We({defaultModifiers:[pe,Pe,ue,Ft]}),qe=We({defaultModifiers:[pe,Pe,ue,Ft,Ie,xe,je,le,Ne]});const Fe=Object.freeze({__proto__:null,popperGenerator:We,detectOverflow:ke,createPopperBase:$e,createPopper:qe,createPopperLite:ze,top:mt,bottom:gt,right:_t,left:bt,auto:vt,basePlacements:yt,start:wt,end:Et,clippingParents:At,viewport:Tt,popper:Ot,reference:Ct,variationPlacements:kt,placements:Lt,beforeRead:xt,read:Dt,afterRead:St,beforeMain:Nt,main:It,afterMain:Pt,beforeWrite:jt,write:Mt,afterWrite:Ht,modifierPhases:Bt,applyStyles:Ft,arrow:le,computeStyles:ue,eventListeners:pe,flip:xe,hide:Ne,offset:Ie,popperOffsets:Pe,preventOverflow:je}),Ue="dropdown",Ve="Escape",Ke="Space",Xe="ArrowUp",Ye="ArrowDown",Qe=new RegExp("ArrowUp|ArrowDown|Escape"),Ge="click.bs.dropdown.data-api",Ze="keydown.bs.dropdown.data-api",Je="show",ti='[data-bs-toggle="dropdown"]',ei=".dropdown-menu",ii=m()?"top-end":"top-start",ni=m()?"top-start":"top-end",si=m()?"bottom-end":"bottom-start",oi=m()?"bottom-start":"bottom-end",ri=m()?"left-start":"right-start",ai=m()?"right-start":"left-start",li={offset:[0,2],boundary:"clippingParents",reference:"toggle",display:"dynamic",popperConfig:null,autoClose:!0},ci={offset:"(array|string|function)",boundary:"(string|element)",reference:"(string|element|object)",display:"string",popperConfig:"(null|object|function)",autoClose:"(boolean|string)"};class hi extends B{constructor(t,e){super(t),this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar()}static get Default(){return li}static get DefaultType(){return ci}static get NAME(){return Ue}toggle(){return this._isShown()?this.hide():this.show()}show(){if(c(this._element)||this._isShown(this._menu))return;const t={relatedTarget:this._element};if(j.trigger(this._element,"show.bs.dropdown",t).defaultPrevented)return;const e=hi.getParentFromElement(this._element);this._inNavbar?U.setDataAttribute(this._menu,"popper","none"):this._createPopper(e),"ontouchstart"in document.documentElement&&!e.closest(".navbar-nav")&&[].concat(...document.body.children).forEach((t=>j.on(t,"mouseover",d))),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add(Je),this._element.classList.add(Je),j.trigger(this._element,"shown.bs.dropdown",t)}hide(){if(c(this._element)||!this._isShown(this._menu))return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(t){j.trigger(this._element,"hide.bs.dropdown",t).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>j.off(t,"mouseover",d))),this._popper&&this._popper.destroy(),this._menu.classList.remove(Je),this._element.classList.remove(Je),this._element.setAttribute("aria-expanded","false"),U.removeDataAttribute(this._menu,"popper"),j.trigger(this._element,"hidden.bs.dropdown",t))}_getConfig(t){if(t={...this.constructor.Default,...U.getDataAttributes(this._element),...t},a(Ue,t,this.constructor.DefaultType),"object"==typeof t.reference&&!o(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError(`${Ue.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`);return t}_createPopper(t){if(void 0===Fe)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;"parent"===this._config.reference?e=t:o(this._config.reference)?e=r(this._config.reference):"object"==typeof this._config.reference&&(e=this._config.reference);const i=this._getPopperConfig(),n=i.modifiers.find((t=>"applyStyles"===t.name&&!1===t.enabled));this._popper=qe(e,this._menu,i),n&&U.setDataAttribute(this._menu,"popper","static")}_isShown(t=this._element){return t.classList.contains(Je)}_getMenuElement(){return V.next(this._element,ei)[0]}_getPlacement(){const t=this._element.parentNode;if(t.classList.contains("dropend"))return ri;if(t.classList.contains("dropstart"))return ai;const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?ni:ii:e?oi:si}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_selectMenuItem({key:t,target:e}){const i=V.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(l);i.length&&v(i,e,t===Ye,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=hi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(t&&(2===t.button||"keyup"===t.type&&"Tab"!==t.key))return;const e=V.find(ti);for(let i=0,n=e.length;i<n;i++){const n=hi.getInstance(e[i]);if(!n||!1===n._config.autoClose)continue;if(!n._isShown())continue;const s={relatedTarget:n._element};if(t){const e=t.composedPath(),i=e.includes(n._menu);if(e.includes(n._element)||"inside"===n._config.autoClose&&!i||"outside"===n._config.autoClose&&i)continue;if(n._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;"click"===t.type&&(s.clickEvent=t)}n._completeHide(s)}}static getParentFromElement(t){return n(t)||t.parentNode}static dataApiKeydownHandler(t){if(/input|textarea/i.test(t.target.tagName)?t.key===Ke||t.key!==Ve&&(t.key!==Ye&&t.key!==Xe||t.target.closest(ei)):!Qe.test(t.key))return;const e=this.classList.contains(Je);if(!e&&t.key===Ve)return;if(t.preventDefault(),t.stopPropagation(),c(this))return;const i=this.matches(ti)?this:V.prev(this,ti)[0],n=hi.getOrCreateInstance(i);if(t.key!==Ve)return t.key===Xe||t.key===Ye?(e||n.show(),void n._selectMenuItem(t)):void(e&&t.key!==Ke||hi.clearMenus());n.hide()}}j.on(document,Ze,ti,hi.dataApiKeydownHandler),j.on(document,Ze,ei,hi.dataApiKeydownHandler),j.on(document,Ge,hi.clearMenus),j.on(document,"keyup.bs.dropdown.data-api",hi.clearMenus),j.on(document,Ge,ti,(function(t){t.preventDefault(),hi.getOrCreateInstance(this).toggle()})),g(hi);const di=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",ui=".sticky-top";class fi{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,"paddingRight",(e=>e+t)),this._setElementAttributes(di,"paddingRight",(e=>e+t)),this._setElementAttributes(ui,"marginRight",(e=>e-t))}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t)[e];t.style[e]=`${i(Number.parseFloat(s))}px`}))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,"paddingRight"),this._resetElementAttributes(di,"paddingRight"),this._resetElementAttributes(ui,"marginRight")}_saveInitialAttribute(t,e){const i=t.style[e];i&&U.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=U.getDataAttribute(t,e);void 0===i?t.style.removeProperty(e):(U.removeDataAttribute(t,e),t.style[e]=i)}))}_applyManipulationCallback(t,e){o(t)?e(t):V.find(t,this._element).forEach(e)}isOverflowing(){return this.getWidth()>0}}const pi={className:"modal-backdrop",isVisible:!0,isAnimated:!1,rootElement:"body",clickCallback:null},mi={className:"string",isVisible:"boolean",isAnimated:"boolean",rootElement:"(element|string)",clickCallback:"(function|null)"},gi="show",_i="mousedown.bs.backdrop";class bi{constructor(t){this._config=this._getConfig(t),this._isAppended=!1,this._element=null}show(t){this._config.isVisible?(this._append(),this._config.isAnimated&&u(this._getElement()),this._getElement().classList.add(gi),this._emulateAnimation((()=>{_(t)}))):_(t)}hide(t){this._config.isVisible?(this._getElement().classList.remove(gi),this._emulateAnimation((()=>{this.dispose(),_(t)}))):_(t)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_getConfig(t){return(t={...pi,..."object"==typeof t?t:{}}).rootElement=r(t.rootElement),a("backdrop",t,mi),t}_append(){this._isAppended||(this._config.rootElement.append(this._getElement()),j.on(this._getElement(),_i,(()=>{_(this._config.clickCallback)})),this._isAppended=!0)}dispose(){this._isAppended&&(j.off(this._element,_i),this._element.remove(),this._isAppended=!1)}_emulateAnimation(t){b(t,this._getElement(),this._config.isAnimated)}}const vi={trapElement:null,autofocus:!0},yi={trapElement:"element",autofocus:"boolean"},wi=".bs.focustrap",Ei="backward";class Ai{constructor(t){this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}activate(){const{trapElement:t,autofocus:e}=this._config;this._isActive||(e&&t.focus(),j.off(document,wi),j.on(document,"focusin.bs.focustrap",(t=>this._handleFocusin(t))),j.on(document,"keydown.tab.bs.focustrap",(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,j.off(document,wi))}_handleFocusin(t){const{target:e}=t,{trapElement:i}=this._config;if(e===document||e===i||i.contains(e))return;const n=V.focusableChildren(i);0===n.length?i.focus():this._lastTabNavDirection===Ei?n[n.length-1].focus():n[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?Ei:"forward")}_getConfig(t){return t={...vi,..."object"==typeof t?t:{}},a("focustrap",t,yi),t}}const Ti="modal",Oi="Escape",Ci={backdrop:!0,keyboard:!0,focus:!0},ki={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"},Li="hidden.bs.modal",xi="show.bs.modal",Di="resize.bs.modal",Si="click.dismiss.bs.modal",Ni="keydown.dismiss.bs.modal",Ii="mousedown.dismiss.bs.modal",Pi="modal-open",ji="show",Mi="modal-static";class Hi extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._dialog=V.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollBar=new fi}static get Default(){return Ci}static get NAME(){return Ti}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||j.trigger(this._element,xi,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isAnimated()&&(this._isTransitioning=!0),this._scrollBar.hide(),document.body.classList.add(Pi),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),j.on(this._dialog,Ii,(()=>{j.one(this._element,"mouseup.dismiss.bs.modal",(t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)}))})),this._showBackdrop((()=>this._showElement(t))))}hide(){if(!this._isShown||this._isTransitioning)return;if(j.trigger(this._element,"hide.bs.modal").defaultPrevented)return;this._isShown=!1;const t=this._isAnimated();t&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),this._focustrap.deactivate(),this._element.classList.remove(ji),j.off(this._element,Si),j.off(this._dialog,Ii),this._queueCallback((()=>this._hideModal()),this._element,t)}dispose(){[window,this._dialog].forEach((t=>j.off(t,".bs.modal"))),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new bi({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new Ai({trapElement:this._element})}_getConfig(t){return t={...Ci,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(Ti,t,ki),t}_showElement(t){const e=this._isAnimated(),i=V.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0,i&&(i.scrollTop=0),e&&u(this._element),this._element.classList.add(ji),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,j.trigger(this._element,"shown.bs.modal",{relatedTarget:t})}),this._dialog,e)}_setEscapeEvent(){this._isShown?j.on(this._element,Ni,(t=>{this._config.keyboard&&t.key===Oi?(t.preventDefault(),this.hide()):this._config.keyboard||t.key!==Oi||this._triggerBackdropTransition()})):j.off(this._element,Ni)}_setResizeEvent(){this._isShown?j.on(window,Di,(()=>this._adjustDialog())):j.off(window,Di)}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(Pi),this._resetAdjustments(),this._scrollBar.reset(),j.trigger(this._element,Li)}))}_showBackdrop(t){j.on(this._element,Si,(t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())})),this._backdrop.show(t)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(j.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const{classList:t,scrollHeight:e,style:i}=this._element,n=e>document.documentElement.clientHeight;!n&&"hidden"===i.overflowY||t.contains(Mi)||(n||(i.overflowY="hidden"),t.add(Mi),this._queueCallback((()=>{t.remove(Mi),n||this._queueCallback((()=>{i.overflowY=""}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;(!i&&t&&!m()||i&&!t&&m())&&(this._element.style.paddingLeft=`${e}px`),(i&&!t&&!m()||!i&&t&&m())&&(this._element.style.paddingRight=`${e}px`)}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=Hi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}j.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=n(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),j.one(e,xi,(t=>{t.defaultPrevented||j.one(e,Li,(()=>{l(this)&&this.focus()}))}));const i=V.findOne(".modal.show");i&&Hi.getInstance(i).hide(),Hi.getOrCreateInstance(e).toggle(this)})),R(Hi),g(Hi);const Bi="offcanvas",Ri={backdrop:!0,keyboard:!0,scroll:!1},Wi={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"},$i="show",zi=".offcanvas.show",qi="hidden.bs.offcanvas";class Fi extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get NAME(){return Bi}static get Default(){return Ri}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||j.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||(new fi).hide(),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add($i),this._queueCallback((()=>{this._config.scroll||this._focustrap.activate(),j.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(j.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.remove($i),this._backdrop.hide(),this._queueCallback((()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||(new fi).reset(),j.trigger(this._element,qi)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_getConfig(t){return t={...Ri,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(Bi,t,Wi),t}_initializeBackDrop(){return new bi({className:"offcanvas-backdrop",isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_initializeFocusTrap(){return new Ai({trapElement:this._element})}_addEventListeners(){j.on(this._element,"keydown.dismiss.bs.offcanvas",(t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()}))}static jQueryInterface(t){return this.each((function(){const e=Fi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}j.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(t){const e=n(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),c(this))return;j.one(e,qi,(()=>{l(this)&&this.focus()}));const i=V.findOne(zi);i&&i!==e&&Fi.getInstance(i).hide(),Fi.getOrCreateInstance(e).toggle(this)})),j.on(window,"load.bs.offcanvas.data-api",(()=>V.find(zi).forEach((t=>Fi.getOrCreateInstance(t).show())))),R(Fi),g(Fi);const Ui=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Vi=/^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i,Ki=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,Xi=(t,e)=>{const i=t.nodeName.toLowerCase();if(e.includes(i))return!Ui.has(i)||Boolean(Vi.test(t.nodeValue)||Ki.test(t.nodeValue));const n=e.filter((t=>t instanceof RegExp));for(let t=0,e=n.length;t<e;t++)if(n[t].test(i))return!0;return!1};function Yi(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(let t=0,i=s.length;t<i;t++){const i=s[t],n=i.nodeName.toLowerCase();if(!Object.keys(e).includes(n)){i.remove();continue}const o=[].concat(...i.attributes),r=[].concat(e["*"]||[],e[n]||[]);o.forEach((t=>{Xi(t,r)||i.removeAttribute(t.nodeName)}))}return n.body.innerHTML}const Qi="tooltip",Gi=new Set(["sanitize","allowList","sanitizeFn"]),Zi={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},Ji={AUTO:"auto",TOP:"top",RIGHT:m()?"left":"right",BOTTOM:"bottom",LEFT:m()?"right":"left"},tn={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},en={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},nn="fade",sn="show",on="show",rn="out",an=".tooltip-inner",ln=".modal",cn="hide.bs.modal",hn="hover",dn="focus";class un extends B{constructor(t,e){if(void 0===Fe)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return tn}static get NAME(){return Qi}static get Event(){return en}static get DefaultType(){return Zi}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else{if(this.getTipElement().classList.contains(sn))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),j.off(this._element.closest(ln),cn,this._hideModalHandler),this.tip&&this.tip.remove(),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const t=j.trigger(this._element,this.constructor.Event.SHOW),e=h(this._element),i=null===e?this._element.ownerDocument.documentElement.contains(this._element):e.contains(this._element);if(t.defaultPrevented||!i)return;"tooltip"===this.constructor.NAME&&this.tip&&this.getTitle()!==this.tip.querySelector(an).innerHTML&&(this._disposePopper(),this.tip.remove(),this.tip=null);const n=this.getTipElement(),s=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME);n.setAttribute("id",s),this._element.setAttribute("aria-describedby",s),this._config.animation&&n.classList.add(nn);const o="function"==typeof this._config.placement?this._config.placement.call(this,n,this._element):this._config.placement,r=this._getAttachment(o);this._addAttachmentClass(r);const{container:a}=this._config;H.set(n,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(a.append(n),j.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=qe(this._element,n,this._getPopperConfig(r)),n.classList.add(sn);const l=this._resolvePossibleFunction(this._config.customClass);l&&n.classList.add(...l.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>{j.on(t,"mouseover",d)}));const c=this.tip.classList.contains(nn);this._queueCallback((()=>{const t=this._hoverState;this._hoverState=null,j.trigger(this._element,this.constructor.Event.SHOWN),t===rn&&this._leave(null,this)}),this.tip,c)}hide(){if(!this._popper)return;const t=this.getTipElement();if(j.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented)return;t.classList.remove(sn),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>j.off(t,"mouseover",d))),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1;const e=this.tip.classList.contains(nn);this._queueCallback((()=>{this._isWithActiveTrigger()||(this._hoverState!==on&&t.remove(),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),j.trigger(this._element,this.constructor.Event.HIDDEN),this._disposePopper())}),this.tip,e),this._hoverState=""}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div");t.innerHTML=this._config.template;const e=t.children[0];return this.setContent(e),e.classList.remove(nn,sn),this.tip=e,this.tip}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),an)}_sanitizeAndSetContent(t,e,i){const n=V.findOne(i,t);e||!n?this.setElementContent(n,e):n.remove()}setElementContent(t,e){if(null!==t)return o(e)?(e=r(e),void(this._config.html?e.parentNode!==t&&(t.innerHTML="",t.append(e)):t.textContent=e.textContent)):void(this._config.html?(this._config.sanitize&&(e=Yi(e,this._config.allowList,this._config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){const t=this._element.getAttribute("data-bs-original-title")||this._config.title;return this._resolvePossibleFunction(t)}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){return e||this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return"function"==typeof t?t.call(this._element):t}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...e,..."function"==typeof this._config.popperConfig?this._config.popperConfig(e):this._config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add(`${this._getBasicClassPrefix()}-${this.updateAttachment(t)}`)}_getAttachment(t){return Ji[t.toUpperCase()]}_setListeners(){this._config.trigger.split(" ").forEach((t=>{if("click"===t)j.on(this._element,this.constructor.Event.CLICK,this._config.selector,(t=>this.toggle(t)));else if("manual"!==t){const e=t===hn?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,i=t===hn?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;j.on(this._element,e,this._config.selector,(t=>this._enter(t))),j.on(this._element,i,this._config.selector,(t=>this._leave(t)))}})),this._hideModalHandler=()=>{this._element&&this.hide()},j.on(this._element.closest(ln),cn,this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-bs-original-title");(t||"string"!==e)&&(this._element.setAttribute("data-bs-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?dn:hn]=!0),e.getTipElement().classList.contains(sn)||e._hoverState===on?e._hoverState=on:(clearTimeout(e._timeout),e._hoverState=on,e._config.delay&&e._config.delay.show?e._timeout=setTimeout((()=>{e._hoverState===on&&e.show()}),e._config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?dn:hn]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=rn,e._config.delay&&e._config.delay.hide?e._timeout=setTimeout((()=>{e._hoverState===rn&&e.hide()}),e._config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=U.getDataAttributes(this._element);return Object.keys(e).forEach((t=>{Gi.has(t)&&delete e[t]})),(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),a(Qi,t,this.constructor.DefaultType),t.sanitize&&(t.template=Yi(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};for(const e in this._config)this.constructor.Default[e]!==this._config[e]&&(t[e]=this._config[e]);return t}_cleanTipClass(){const t=this.getTipElement(),e=new RegExp(`(^|\\s)${this._getBasicClassPrefix()}\\S+`,"g"),i=t.getAttribute("class").match(e);null!==i&&i.length>0&&i.map((t=>t.trim())).forEach((e=>t.classList.remove(e)))}_getBasicClassPrefix(){return"bs-tooltip"}_handlePopperPlacementChange(t){const{state:e}=t;e&&(this.tip=e.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(e.placement)))}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null)}static jQueryInterface(t){return this.each((function(){const e=un.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}g(un);const fn={...un.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="popover-arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'},pn={...un.DefaultType,content:"(string|element|function)"},mn={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"};class gn extends un{static get Default(){return fn}static get NAME(){return"popover"}static get Event(){return mn}static get DefaultType(){return pn}isWithContent(){return this.getTitle()||this._getContent()}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),".popover-header"),this._sanitizeAndSetContent(t,this._getContent(),".popover-body")}_getContent(){return this._resolvePossibleFunction(this._config.content)}_getBasicClassPrefix(){return"bs-popover"}static jQueryInterface(t){return this.each((function(){const e=gn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}g(gn);const _n="scrollspy",bn={offset:10,method:"auto",target:""},vn={offset:"number",method:"string",target:"(string|element)"},yn="active",wn=".nav-link, .list-group-item, .dropdown-item",En="position";class An extends B{constructor(t,e){super(t),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,j.on(this._scrollElement,"scroll.bs.scrollspy",(()=>this._process())),this.refresh(),this._process()}static get Default(){return bn}static get NAME(){return _n}refresh(){const t=this._scrollElement===this._scrollElement.window?"offset":En,e="auto"===this._config.method?t:this._config.method,n=e===En?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),V.find(wn,this._config.target).map((t=>{const s=i(t),o=s?V.findOne(s):null;if(o){const t=o.getBoundingClientRect();if(t.width||t.height)return[U[e](o).top+n,s]}return null})).filter((t=>t)).sort(((t,e)=>t[0]-e[0])).forEach((t=>{this._offsets.push(t[0]),this._targets.push(t[1])}))}dispose(){j.off(this._scrollElement,".bs.scrollspy"),super.dispose()}_getConfig(t){return(t={...bn,...U.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}}).target=r(t.target)||document.documentElement,a(_n,t,vn),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),i=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=i){const t=this._targets[this._targets.length-1];this._activeTarget!==t&&this._activate(t)}else{if(this._activeTarget&&t<this._offsets[0]&&this._offsets[0]>0)return this._activeTarget=null,void this._clear();for(let e=this._offsets.length;e--;)this._activeTarget!==this._targets[e]&&t>=this._offsets[e]&&(void 0===this._offsets[e+1]||t<this._offsets[e+1])&&this._activate(this._targets[e])}}_activate(t){this._activeTarget=t,this._clear();const e=wn.split(",").map((e=>`${e}[data-bs-target="${t}"],${e}[href="${t}"]`)),i=V.findOne(e.join(","),this._config.target);i.classList.add(yn),i.classList.contains("dropdown-item")?V.findOne(".dropdown-toggle",i.closest(".dropdown")).classList.add(yn):V.parents(i,".nav, .list-group").forEach((t=>{V.prev(t,".nav-link, .list-group-item").forEach((t=>t.classList.add(yn))),V.prev(t,".nav-item").forEach((t=>{V.children(t,".nav-link").forEach((t=>t.classList.add(yn)))}))})),j.trigger(this._scrollElement,"activate.bs.scrollspy",{relatedTarget:t})}_clear(){V.find(wn,this._config.target).filter((t=>t.classList.contains(yn))).forEach((t=>t.classList.remove(yn)))}static jQueryInterface(t){return this.each((function(){const e=An.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}j.on(window,"load.bs.scrollspy.data-api",(()=>{V.find('[data-bs-spy="scroll"]').forEach((t=>new An(t)))})),g(An);const Tn="active",On="fade",Cn="show",kn=".active",Ln=":scope > li > .active";class xn extends B{static get NAME(){return"tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains(Tn))return;let t;const e=n(this._element),i=this._element.closest(".nav, .list-group");if(i){const e="UL"===i.nodeName||"OL"===i.nodeName?Ln:kn;t=V.find(e,i),t=t[t.length-1]}const s=t?j.trigger(t,"hide.bs.tab",{relatedTarget:this._element}):null;if(j.trigger(this._element,"show.bs.tab",{relatedTarget:t}).defaultPrevented||null!==s&&s.defaultPrevented)return;this._activate(this._element,i);const o=()=>{j.trigger(t,"hidden.bs.tab",{relatedTarget:this._element}),j.trigger(this._element,"shown.bs.tab",{relatedTarget:t})};e?this._activate(e,e.parentNode,o):o()}_activate(t,e,i){const n=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?V.children(e,kn):V.find(Ln,e))[0],s=i&&n&&n.classList.contains(On),o=()=>this._transitionComplete(t,n,i);n&&s?(n.classList.remove(Cn),this._queueCallback(o,t,!0)):o()}_transitionComplete(t,e,i){if(e){e.classList.remove(Tn);const t=V.findOne(":scope > .dropdown-menu .active",e.parentNode);t&&t.classList.remove(Tn),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}t.classList.add(Tn),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),u(t),t.classList.contains(On)&&t.classList.add(Cn);let n=t.parentNode;if(n&&"LI"===n.nodeName&&(n=n.parentNode),n&&n.classList.contains("dropdown-menu")){const e=t.closest(".dropdown");e&&V.find(".dropdown-toggle",e).forEach((t=>t.classList.add(Tn))),t.setAttribute("aria-expanded",!0)}i&&i()}static jQueryInterface(t){return this.each((function(){const e=xn.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}j.on(document,"click.bs.tab.data-api",'[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),c(this)||xn.getOrCreateInstance(this).show()})),g(xn);const Dn="toast",Sn="hide",Nn="show",In="showing",Pn={animation:"boolean",autohide:"boolean",delay:"number"},jn={animation:!0,autohide:!0,delay:5e3};class Mn extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return Pn}static get Default(){return jn}static get NAME(){return Dn}show(){j.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(Sn),u(this._element),this._element.classList.add(Nn),this._element.classList.add(In),this._queueCallback((()=>{this._element.classList.remove(In),j.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this._element.classList.contains(Nn)&&(j.trigger(this._element,"hide.bs.toast").defaultPrevented||(this._element.classList.add(In),this._queueCallback((()=>{this._element.classList.add(Sn),this._element.classList.remove(In),this._element.classList.remove(Nn),j.trigger(this._element,"hidden.bs.toast")}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this._element.classList.contains(Nn)&&this._element.classList.remove(Nn),super.dispose()}_getConfig(t){return t={...jn,...U.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}},a(Dn,t,this.constructor.DefaultType),t}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){j.on(this._element,"mouseover.bs.toast",(t=>this._onInteraction(t,!0))),j.on(this._element,"mouseout.bs.toast",(t=>this._onInteraction(t,!1))),j.on(this._element,"focusin.bs.toast",(t=>this._onInteraction(t,!0))),j.on(this._element,"focusout.bs.toast",(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=Mn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(Mn),g(Mn),{Alert:W,Button:z,Carousel:st,Collapse:pt,Dropdown:hi,Modal:Hi,Offcanvas:Fi,Popover:gn,ScrollSpy:An,Tab:xn,Toast:Mn,Tooltip:un}}));
7
+ //# sourceMappingURL=bootstrap.bundle.min.js.map