homebridge-config-ui-x 5.0.0-beta.8 → 5.0.0-beta.81

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (319) hide show
  1. package/CHANGELOG.md +412 -31
  2. package/CONTRIBUTING.md +5 -4
  3. package/LICENSE +1 -1
  4. package/config.schema.json +35 -145
  5. package/dist/bin/hb-service.d.ts +2 -2
  6. package/dist/bin/hb-service.js +51 -50
  7. package/dist/bin/hb-service.js.map +1 -1
  8. package/dist/bin/platforms/darwin.js +2 -2
  9. package/dist/bin/platforms/darwin.js.map +1 -1
  10. package/dist/bin/platforms/win32.js +4 -2
  11. package/dist/bin/platforms/win32.js.map +1 -1
  12. package/dist/bin/standalone.js +1 -0
  13. package/dist/bin/standalone.js.map +1 -1
  14. package/dist/core/auth/auth.controller.d.ts +3 -3
  15. package/dist/core/auth/auth.controller.js.map +1 -1
  16. package/dist/core/auth/auth.module.js +1 -1
  17. package/dist/core/auth/auth.module.js.map +1 -1
  18. package/dist/core/auth/auth.service.js +10 -10
  19. package/dist/core/auth/auth.service.js.map +1 -1
  20. package/dist/core/auth/jwt.strategy.d.ts +3 -1
  21. package/dist/core/config/config.service.d.ts +8 -10
  22. package/dist/core/config/config.service.js +24 -19
  23. package/dist/core/config/config.service.js.map +1 -1
  24. package/dist/core/config/config.startup.js +2 -2
  25. package/dist/core/config/config.startup.js.map +1 -1
  26. package/dist/core/homebridge-ipc/homebridge-ipc.service.js +3 -3
  27. package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
  28. package/dist/index.js +6 -77
  29. package/dist/index.js.map +1 -1
  30. package/dist/main.js +1 -1
  31. package/dist/main.js.map +1 -1
  32. package/dist/modules/accessories/accessories.controller.js +5 -5
  33. package/dist/modules/accessories/accessories.controller.js.map +1 -1
  34. package/dist/modules/accessories/accessories.service.js +8 -7
  35. package/dist/modules/accessories/accessories.service.js.map +1 -1
  36. package/dist/modules/backup/backup.controller.js +7 -7
  37. package/dist/modules/backup/backup.controller.js.map +1 -1
  38. package/dist/modules/backup/backup.service.js +19 -79
  39. package/dist/modules/backup/backup.service.js.map +1 -1
  40. package/dist/modules/child-bridges/child-bridges.service.js +0 -7
  41. package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
  42. package/dist/modules/config-editor/config-editor.controller.d.ts +1 -1
  43. package/dist/modules/config-editor/config-editor.controller.js +8 -8
  44. package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
  45. package/dist/modules/config-editor/config-editor.service.d.ts +1 -1
  46. package/dist/modules/config-editor/config-editor.service.js +62 -64
  47. package/dist/modules/config-editor/config-editor.service.js.map +1 -1
  48. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +1 -1
  49. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +17 -13
  50. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  51. package/dist/modules/log/log.gateway.d.ts +2 -1
  52. package/dist/modules/log/log.gateway.js.map +1 -1
  53. package/dist/modules/log/log.service.js +3 -3
  54. package/dist/modules/log/log.service.js.map +1 -1
  55. package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
  56. package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
  57. package/dist/modules/platform-tools/docker/docker.service.js +1 -1
  58. package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
  59. package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
  60. package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
  61. package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
  62. package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
  63. package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
  64. package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
  65. package/dist/modules/platform-tools/linux/linux.service.js +2 -2
  66. package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
  67. package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
  68. package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
  69. package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
  70. package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
  71. package/dist/modules/plugins/plugins.controller.js +4 -4
  72. package/dist/modules/plugins/plugins.controller.js.map +1 -1
  73. package/dist/modules/plugins/plugins.service.d.ts +4 -1
  74. package/dist/modules/plugins/plugins.service.js +168 -103
  75. package/dist/modules/plugins/plugins.service.js.map +1 -1
  76. package/dist/modules/server/server.controller.d.ts +28 -3
  77. package/dist/modules/server/server.controller.js +137 -20
  78. package/dist/modules/server/server.controller.js.map +1 -1
  79. package/dist/modules/server/server.service.d.ts +27 -6
  80. package/dist/modules/server/server.service.js +212 -66
  81. package/dist/modules/server/server.service.js.map +1 -1
  82. package/dist/modules/status/status.controller.d.ts +0 -1
  83. package/dist/modules/status/status.controller.js +3 -4
  84. package/dist/modules/status/status.controller.js.map +1 -1
  85. package/dist/modules/status/status.gateway.d.ts +1 -1
  86. package/dist/modules/status/status.service.d.ts +1 -1
  87. package/dist/modules/status/status.service.js +17 -41
  88. package/dist/modules/status/status.service.js.map +1 -1
  89. package/dist/modules/users/users.controller.js +7 -7
  90. package/dist/modules/users/users.controller.js.map +1 -1
  91. package/dist/self-check.js +6 -6
  92. package/dist/self-check.js.map +1 -1
  93. package/package.json +45 -43
  94. package/public/3rdpartylicenses.txt +145 -62
  95. package/public/assets/hap-icons/airpurifier.svg +49 -16
  96. package/public/assets/hap-icons/airquality.svg +24 -13
  97. package/public/assets/hap-icons/co-sensor.svg +72 -0
  98. package/public/assets/hap-icons/co2-sensor.svg +72 -0
  99. package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
  100. package/public/assets/hap-icons/contactsensor-open.svg +80 -2
  101. package/public/assets/hap-icons/door-closed.svg +32 -2
  102. package/public/assets/hap-icons/door-open.svg +48 -2
  103. package/public/assets/hap-icons/fan-off.svg +24 -13
  104. package/public/assets/hap-icons/fan-on.svg +24 -13
  105. package/public/assets/hap-icons/garagedoor.svg +24 -13
  106. package/public/assets/hap-icons/humidity.svg +24 -13
  107. package/public/assets/hap-icons/irrigation-system.svg +47 -18
  108. package/public/assets/hap-icons/leaksensor.svg +52 -2
  109. package/public/assets/hap-icons/light.svg +47 -28
  110. package/public/assets/hap-icons/lightbulb.svg +24 -13
  111. package/public/assets/hap-icons/lock-locked.svg +24 -13
  112. package/public/assets/hap-icons/lock-unlocked.svg +24 -13
  113. package/public/assets/hap-icons/motionsensor.svg +100 -2
  114. package/public/assets/hap-icons/occupancysensor.svg +97 -2
  115. package/public/assets/hap-icons/outlet.svg +24 -13
  116. package/public/assets/hap-icons/securitysystem-active.svg +102 -2
  117. package/public/assets/hap-icons/securitysystem-off.svg +68 -2
  118. package/public/assets/hap-icons/smokesensor.svg +42 -9
  119. package/public/assets/hap-icons/speaker.svg +29 -13
  120. package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
  121. package/public/assets/hap-icons/switch.svg +24 -13
  122. package/public/assets/hap-icons/television.svg +15 -4
  123. package/public/assets/hap-icons/temperature.svg +24 -13
  124. package/public/assets/hap-icons/unknown.svg +24 -13
  125. package/public/assets/hap-icons/valve-generic.svg +27 -16
  126. package/public/assets/hap-icons/valve-irrigation.svg +37 -21
  127. package/public/assets/hap-icons/valve-showerhead.svg +52 -0
  128. package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
  129. package/public/assets/hap-icons/window-closed.svg +85 -2
  130. package/public/assets/hap-icons/window-open.svg +136 -2
  131. package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
  132. package/public/assets/hap-icons/windowcovering-open.svg +40 -44
  133. package/public/assets/homebridge-color-round.svg +36 -1
  134. package/public/assets/homebridge-logo.svg +11 -1
  135. package/public/assets/mask-icon.svg +5 -1
  136. package/public/assets/plugin-ui-utils/ui.js +3 -0
  137. package/public/assets/plugin-ui-utils/ui.js.map +1 -1
  138. package/public/chunk-2BYFJJKD.js +1 -0
  139. package/public/chunk-2HBIS5KD.js +14 -0
  140. package/public/chunk-2O6AXIBR.js +1 -0
  141. package/public/chunk-2SEP7Q76.js +1 -0
  142. package/public/chunk-2UZO6OQ7.js +23 -0
  143. package/public/chunk-3RCQ6L4J.js +6 -0
  144. package/public/chunk-4SITUFK3.js +1 -0
  145. package/public/{chunk-YRSHLHYL.js → chunk-4UM5QHY6.js} +1 -1
  146. package/public/chunk-57WSQ6T6.js +1 -0
  147. package/public/chunk-62DAT7AX.js +1 -0
  148. package/public/chunk-67A3U7JY.js +1 -0
  149. package/public/{chunk-CCUID66K.js → chunk-6US6MXBM.js} +1 -1
  150. package/public/{chunk-EA5J2VEJ.js → chunk-7VVMNL54.js} +1 -1
  151. package/public/chunk-7Z74FGCO.js +1 -0
  152. package/public/chunk-7ZNHDMCE.js +1 -0
  153. package/public/chunk-A7263J2F.js +1 -0
  154. package/public/{chunk-QE7DO6J3.js → chunk-ADC7QO6N.js} +2 -2
  155. package/public/chunk-AU74FUFM.js +1 -0
  156. package/public/chunk-BI2JONL7.js +1 -0
  157. package/public/{chunk-7EUQWCP5.js → chunk-BVWBB74Y.js} +2 -2
  158. package/public/chunk-CIDCYWQD.js +1 -0
  159. package/public/chunk-COJPC76A.js +1 -0
  160. package/public/chunk-D6GDUL63.js +5 -0
  161. package/public/{chunk-WNWWUCCZ.js → chunk-EGECSH4K.js} +3 -3
  162. package/public/chunk-EON6XHIW.js +20 -0
  163. package/public/chunk-F2CIREEO.js +1 -0
  164. package/public/chunk-F75NHZPV.js +1 -0
  165. package/public/chunk-FD54JRNF.js +1 -0
  166. package/public/chunk-FQEUOMOT.js +1 -0
  167. package/public/chunk-GJL2B6EX.js +1 -0
  168. package/public/{chunk-6TCHCTXZ.js → chunk-GN7IXG4L.js} +1 -1
  169. package/public/chunk-HI45ZEZU.js +1 -0
  170. package/public/chunk-HWJ734TY.js +1 -0
  171. package/public/chunk-I5VNJY5H.js +1 -0
  172. package/public/chunk-I7XHOSDH.js +1 -0
  173. package/public/{chunk-D2D564LE.js → chunk-IH7IL35X.js} +1 -1
  174. package/public/chunk-JIT72ITX.js +1 -0
  175. package/public/chunk-LBGUEPBU.js +1 -0
  176. package/public/chunk-LEMXCMWD.js +1 -0
  177. package/public/chunk-LIG3MQU2.js +1 -0
  178. package/public/chunk-MCY32ZEQ.js +1 -0
  179. package/public/{chunk-TSZZQKYF.js → chunk-MVL5EQPC.js} +1 -1
  180. package/public/chunk-MXAKDDIW.js +1 -0
  181. package/public/chunk-MZFFFGFF.js +1 -0
  182. package/public/chunk-OZ3D5PEN.js +1 -0
  183. package/public/chunk-P6HYOLET.js +1 -0
  184. package/public/chunk-PAZ5V5TQ.js +7 -0
  185. package/public/chunk-PDQGIGL6.js +1 -0
  186. package/public/chunk-PGJGS3YA.js +1 -0
  187. package/public/chunk-PL6ZMRTL.js +1 -0
  188. package/public/chunk-QAQ62ONT.js +1 -0
  189. package/public/chunk-QHRWSZEW.js +1 -0
  190. package/public/chunk-QOVSP2KD.js +1 -0
  191. package/public/chunk-QT6YV32Y.js +1 -0
  192. package/public/chunk-RKG5F4ZV.js +1 -0
  193. package/public/chunk-RMMQMQZX.js +1 -0
  194. package/public/chunk-RQA2H3J6.js +1 -0
  195. package/public/chunk-S2XBNDS5.js +1 -0
  196. package/public/chunk-SKS24AVF.js +1 -0
  197. package/public/chunk-SKVHW32E.js +5 -0
  198. package/public/chunk-TIXTDDTD.js +7 -0
  199. package/public/chunk-TP425OA6.js +1 -0
  200. package/public/chunk-TRIO3R5X.js +1 -0
  201. package/public/chunk-UBLIT2K3.js +1 -0
  202. package/public/{chunk-TZS4WGUK.js → chunk-UHT54HTE.js} +2 -2
  203. package/public/chunk-UNO5SD4B.js +1 -0
  204. package/public/chunk-USOUWLNH.js +2 -0
  205. package/public/chunk-VL2VV7JU.js +1 -0
  206. package/public/chunk-VQEPN6H2.js +1 -0
  207. package/public/chunk-VUKQDY5X.js +1 -0
  208. package/public/chunk-VUTUDBG5.js +1 -0
  209. package/public/chunk-VXLVIRES.js +1 -0
  210. package/public/chunk-W3624K3I.js +1 -0
  211. package/public/chunk-WCO7YV6E.js +8 -0
  212. package/public/chunk-XYRZUWP2.js +1 -0
  213. package/public/chunk-Y4XTCS5Q.js +41 -0
  214. package/public/chunk-Y5I5EFKZ.js +1 -0
  215. package/public/chunk-YDBOT4OU.js +1 -0
  216. package/public/chunk-YHXSTLHD.js +1 -0
  217. package/public/{chunk-JZZQRLNW.js → chunk-ZA436JJP.js} +1 -1
  218. package/public/chunk-ZOK6NY4K.js +8 -0
  219. package/public/chunk-ZVGCGGDU.js +1 -0
  220. package/public/index.html +2 -2
  221. package/public/main-N277YXB2.js +1 -0
  222. package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
  223. package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
  224. package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
  225. package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
  226. package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
  227. package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
  228. package/public/polyfills-4F4B5XMZ.js +2 -0
  229. package/public/styles-PGYQLREL.css +1 -0
  230. package/scripts/upgrade-install-plugin.sh +1 -1
  231. package/public/chunk-32ZJLZS4.js +0 -1
  232. package/public/chunk-34G5YV5T.js +0 -1
  233. package/public/chunk-37PRYZH6.js +0 -1
  234. package/public/chunk-3IX3CLER.js +0 -1
  235. package/public/chunk-3NB33IBB.js +0 -1
  236. package/public/chunk-5ABW4ZKF.js +0 -20
  237. package/public/chunk-5KSPDTFH.js +0 -1
  238. package/public/chunk-5OHKMFXO.js +0 -1
  239. package/public/chunk-656LQTVE.js +0 -14
  240. package/public/chunk-7T234PWV.js +0 -1
  241. package/public/chunk-AZC7XCGC.js +0 -1
  242. package/public/chunk-BKUGARB4.js +0 -7
  243. package/public/chunk-BPMSJ2VF.js +0 -1
  244. package/public/chunk-BY2TSVEY.js +0 -1
  245. package/public/chunk-C7QJOHXE.js +0 -1
  246. package/public/chunk-CKR46AVL.js +0 -1
  247. package/public/chunk-DLMGGPRM.js +0 -1
  248. package/public/chunk-DXZ6DCYP.js +0 -1
  249. package/public/chunk-EP66JAAV.js +0 -1
  250. package/public/chunk-FJF4WNUO.js +0 -1
  251. package/public/chunk-FQYNC4RH.js +0 -1
  252. package/public/chunk-HHG6WMVF.js +0 -1
  253. package/public/chunk-HHIHVUCL.js +0 -1
  254. package/public/chunk-HSJSWZHD.js +0 -1
  255. package/public/chunk-II2UAWC2.js +0 -6
  256. package/public/chunk-IMOTYOKQ.js +0 -8
  257. package/public/chunk-JDQ5PHOU.js +0 -1
  258. package/public/chunk-KG3DHJZY.js +0 -1
  259. package/public/chunk-KQJ7ONUG.js +0 -1
  260. package/public/chunk-LLGTFHIT.js +0 -1
  261. package/public/chunk-M346UY2G.js +0 -1
  262. package/public/chunk-MNBUOV7P.js +0 -1
  263. package/public/chunk-NI664X6I.js +0 -1
  264. package/public/chunk-NW6AFAD7.js +0 -1
  265. package/public/chunk-NZNNTHFQ.js +0 -1
  266. package/public/chunk-ORPWYWCL.js +0 -5
  267. package/public/chunk-P5FZV27L.js +0 -1
  268. package/public/chunk-PS4KQKK7.js +0 -1
  269. package/public/chunk-Q5YFESZW.js +0 -1
  270. package/public/chunk-QAEUHAL6.js +0 -1
  271. package/public/chunk-QBDPVXMM.js +0 -1
  272. package/public/chunk-QHPDGSZ6.js +0 -1
  273. package/public/chunk-QJYLB6LD.js +0 -1
  274. package/public/chunk-R2W5BRWY.js +0 -32
  275. package/public/chunk-RIN5QMTV.js +0 -1
  276. package/public/chunk-RKC5OBYP.js +0 -1
  277. package/public/chunk-RT7V3UYQ.js +0 -5
  278. package/public/chunk-SCR7PUV7.js +0 -1
  279. package/public/chunk-SOEXENDP.js +0 -1
  280. package/public/chunk-TCSXGQNF.js +0 -1
  281. package/public/chunk-TH2G22O2.js +0 -23
  282. package/public/chunk-TMD6JYTR.js +0 -1
  283. package/public/chunk-TO5O6L7A.js +0 -1
  284. package/public/chunk-TXOB7R5K.js +0 -7
  285. package/public/chunk-UG5DK2RQ.js +0 -2
  286. package/public/chunk-UYLV5ENO.js +0 -1
  287. package/public/chunk-VPSLX47Z.js +0 -1
  288. package/public/chunk-VVGJ5MFU.js +0 -1
  289. package/public/chunk-WAUGELUM.js +0 -1
  290. package/public/chunk-WHJOLAED.js +0 -1
  291. package/public/chunk-WHJSVGC7.js +0 -1
  292. package/public/chunk-WXTR3AXD.js +0 -1
  293. package/public/chunk-X2AWRY46.js +0 -1
  294. package/public/chunk-X3GZMTJ5.js +0 -1
  295. package/public/chunk-X7YNKLZW.js +0 -1
  296. package/public/chunk-XRPL3VU7.js +0 -1
  297. package/public/chunk-Y3RRGTUL.js +0 -1
  298. package/public/chunk-YD5MPMXA.js +0 -1
  299. package/public/chunk-YJB6Y76M.js +0 -1
  300. package/public/chunk-ZT23DWNL.js +0 -1
  301. package/public/main-35ZSDHG6.js +0 -1
  302. package/public/media/01-RQ3S2L53.png +0 -0
  303. package/public/media/02-VNCG2I2A.png +0 -0
  304. package/public/media/03-HI42L4ZG.png +0 -0
  305. package/public/media/04-FJLL55LZ.png +0 -0
  306. package/public/media/05-V3EO6SPT.png +0 -0
  307. package/public/media/06-EOJZCQZN.png +0 -0
  308. package/public/media/07-KMKB5PBD.png +0 -0
  309. package/public/media/08-UQJRF6B2.png +0 -0
  310. package/public/media/09-2DJQFRHH.png +0 -0
  311. package/public/media/arrow_left-CQT7FZM7.svg +0 -4
  312. package/public/media/arrow_right-SBUDRR2G.svg +0 -4
  313. package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
  314. package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
  315. package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
  316. package/public/polyfills-C6JHVXJJ.js +0 -2
  317. package/public/scripts-6GVLYD7F.js +0 -62
  318. package/public/styles-EG5MFQEM.css +0 -1
  319. /package/public/assets/{bootstrap-4 → bootstrap-5}/cssframework/assets.json +0 -0
@@ -1,62 +0,0 @@
1
- /*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */(function(U,st){"use strict";typeof module=="object"&&typeof module.exports=="object"?module.exports=U.document?st(U,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return st(a)}:st(U)})(typeof window<"u"?window:this,function(U,st){"use strict";var a=[],T=Object.getPrototypeOf,c=a.slice,O=a.flat?function(e){return a.flat.call(e)}:function(e){return a.concat.apply([],e)},L=a.push,k=a.indexOf,P={},j=P.toString,_=P.hasOwnProperty,C=_.toString,u=C.call(Object),d={},l=function(e){return typeof e=="function"&&typeof e.nodeType!="number"&&typeof e.item!="function"},f=function(e){return e!=null&&e===e.window},v=U.document,n={type:!0,src:!0,nonce:!0,noModule:!0};function s(e,h,E){var M,W,q=(E=E||v).createElement("script");if(q.text=e,h)for(M in n)(W=h[M]||h.getAttribute&&h.getAttribute(M))&&q.setAttribute(M,W);E.head.appendChild(q).parentNode.removeChild(q)}function i(e){return e==null?e+"":typeof e=="object"||typeof e=="function"?P[j.call(e)]||"object":typeof e}var o="3.7.1",p=/HTML$/i,t=function(e,h){return new t.fn.init(e,h)};function x(e){var h=!!e&&"length"in e&&e.length,E=i(e);return!l(e)&&!f(e)&&(E==="array"||h===0||typeof h=="number"&&0<h&&h-1 in e)}function m(e,h){return e.nodeName&&e.nodeName.toLowerCase()===h.toLowerCase()}t.fn=t.prototype={jquery:o,constructor:t,length:0,toArray:function(){return c.call(this)},get:function(e){return e==null?c.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var h=t.merge(this.constructor(),e);return h.prevObject=this,h},each:function(e){return t.each(this,e)},map:function(e){return this.pushStack(t.map(this,function(h,E){return e.call(h,E,h)}))},slice:function(){return this.pushStack(c.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(t.grep(this,function(e,h){return(h+1)%2}))},odd:function(){return this.pushStack(t.grep(this,function(e,h){return h%2}))},eq:function(e){var h=this.length,E=+e+(e<0?h:0);return this.pushStack(0<=E&&E<h?[this[E]]:[])},end:function(){return this.prevObject||this.constructor()},push:L,sort:a.sort,splice:a.splice},t.extend=t.fn.extend=function(){var e,h,E,M,W,q,X=arguments[0]||{},ft=1,ut=arguments.length,xt=!1;for(typeof X=="boolean"&&(xt=X,X=arguments[ft]||{},ft++),typeof X=="object"||l(X)||(X={}),ft===ut&&(X=this,ft--);ft<ut;ft++)if((e=arguments[ft])!=null)for(h in e)M=e[h],h!=="__proto__"&&X!==M&&(xt&&M&&(t.isPlainObject(M)||(W=Array.isArray(M)))?(E=X[h],q=W&&!Array.isArray(E)?[]:W||t.isPlainObject(E)?E:{},W=!1,X[h]=t.extend(xt,q,M)):M!==void 0&&(X[h]=M));return X},t.extend({expando:"jQuery"+(o+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var h,E;return!(!e||j.call(e)!=="[object Object]")&&(!(h=T(e))||typeof(E=_.call(h,"constructor")&&h.constructor)=="function"&&C.call(E)===u)},isEmptyObject:function(e){var h;for(h in e)return!1;return!0},globalEval:function(e,h,E){s(e,{nonce:h&&h.nonce},E)},each:function(e,h){var E,M=0;if(x(e))for(E=e.length;M<E&&h.call(e[M],M,e[M])!==!1;M++);else for(M in e)if(h.call(e[M],M,e[M])===!1)break;return e},text:function(e){var h,E="",M=0,W=e.nodeType;if(!W)for(;h=e[M++];)E+=t.text(h);return W===1||W===11?e.textContent:W===9?e.documentElement.textContent:W===3||W===4?e.nodeValue:E},makeArray:function(e,h){var E=h||[];return e!=null&&(x(Object(e))?t.merge(E,typeof e=="string"?[e]:e):L.call(E,e)),E},inArray:function(e,h,E){return h==null?-1:k.call(h,e,E)},isXMLDoc:function(e){var h=e&&e.namespaceURI,E=e&&(e.ownerDocument||e).documentElement;return!p.test(h||E&&E.nodeName||"HTML")},merge:function(e,h){for(var E=+h.length,M=0,W=e.length;M<E;M++)e[W++]=h[M];return e.length=W,e},grep:function(e,h,E){for(var M=[],W=0,q=e.length,X=!E;W<q;W++)!h(e[W],W)!==X&&M.push(e[W]);return M},map:function(e,h,E){var M,W,q=0,X=[];if(x(e))for(M=e.length;q<M;q++)(W=h(e[q],q,E))!=null&&X.push(W);else for(q in e)(W=h(e[q],q,E))!=null&&X.push(W);return O(X)},guid:1,support:d}),typeof Symbol=="function"&&(t.fn[Symbol.iterator]=a[Symbol.iterator]),t.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,h){P["[object "+h+"]"]=h.toLowerCase()});var S=a.pop,w=a.sort,A=a.splice,F="[\\x20\\t\\r\\n\\f]",N=new RegExp("^"+F+"+|((?:^|[^\\\\])(?:\\\\.)*)"+F+"+$","g");t.contains=function(e,h){var E=h&&h.parentNode;return e===E||!(!E||E.nodeType!==1||!(e.contains?e.contains(E):e.compareDocumentPosition&&16&e.compareDocumentPosition(E)))};var R=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;function B(e,h){return h?e==="\0"?"\uFFFD":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e}t.escapeSelector=function(e){return(e+"").replace(R,B)};var z=v,H=L;(function(){var e,h,E,M,W,q,X,ft,ut,xt,Tt=H,Nt=t.expando,_t=0,Ft=0,Jt=Ce(),ae=Ce(),se=Ce(),Se=Ce(),Ae=function(nt,vt){return nt===vt&&(W=!0),0},ze="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",qe="(?:\\\\[\\da-fA-F]{1,6}"+F+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",de="\\["+F+"*("+qe+")(?:"+F+"*([*^$|!~]?=)"+F+`*(?:'((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)"|(`+qe+"))|)"+F+"*\\]",tn=":("+qe+`)(?:\\((('((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)")|((?:\\\\.|[^\\\\()[\\]]|`+de+")*)|.*)\\)|)",me=new RegExp(F+"+","g"),_e=new RegExp("^"+F+"*,"+F+"*"),gn=new RegExp("^"+F+"*([>+~]|"+F+")"+F+"*"),jn=new RegExp(F+"|>"),Ue=new RegExp(tn),mn=new RegExp("^"+qe+"$"),Ye={ID:new RegExp("^#("+qe+")"),CLASS:new RegExp("^\\.("+qe+")"),TAG:new RegExp("^("+qe+"|[*])"),ATTR:new RegExp("^"+de),PSEUDO:new RegExp("^"+tn),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+F+"*(even|odd|(([+-]|)(\\d*)n|)"+F+"*(?:([+-]|)"+F+"*(\\d+)|))"+F+"*\\)|)","i"),bool:new RegExp("^(?:"+ze+")$","i"),needsContext:new RegExp("^"+F+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+F+"*((?:-\\d)?\\d*)"+F+"*\\)|)(?=[^-]|$)","i")},Qe=/^(?:input|select|textarea|button)$/i,un=/^h\d$/i,je=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Me=/[+~]/,Te=new RegExp("\\\\[\\da-fA-F]{1,6}"+F+"?|\\\\([^\\r\\n\\f])","g"),De=function(nt,vt){var kt="0x"+nt.slice(1)-65536;return vt||(kt<0?String.fromCharCode(kt+65536):String.fromCharCode(kt>>10|55296,1023&kt|56320))},Xe=function(){Ge()},Oe=Sn(function(nt){return nt.disabled===!0&&m(nt,"fieldset")},{dir:"parentNode",next:"legend"});try{Tt.apply(a=c.call(z.childNodes),z.childNodes),a[z.childNodes.length].nodeType}catch{Tt={apply:function(vt,kt){H.apply(vt,c.call(kt))},call:function(vt){H.apply(vt,c.call(arguments,1))}}}function te(nt,vt,kt,Mt){var Lt,Qt,Xt,Kt,$t,ve,le,ce=vt&&vt.ownerDocument,ge=vt?vt.nodeType:9;if(kt=kt||[],typeof nt!="string"||!nt||ge!==1&&ge!==9&&ge!==11)return kt;if(!Mt&&(Ge(vt),vt=vt||q,ft)){if(ge!==11&&($t=je.exec(nt)))if(Lt=$t[1]){if(ge===9){if(!(Xt=vt.getElementById(Lt)))return kt;if(Xt.id===Lt)return Tt.call(kt,Xt),kt}else if(ce&&(Xt=ce.getElementById(Lt))&&te.contains(vt,Xt)&&Xt.id===Lt)return Tt.call(kt,Xt),kt}else{if($t[2])return Tt.apply(kt,vt.getElementsByTagName(nt)),kt;if((Lt=$t[3])&&vt.getElementsByClassName)return Tt.apply(kt,vt.getElementsByClassName(Lt)),kt}if(!(Se[nt+" "]||ut&&ut.test(nt))){if(le=nt,ce=vt,ge===1&&(jn.test(nt)||gn.test(nt))){for((ce=Me.test(nt)&&Bn(vt.parentNode)||vt)==vt&&d.scope||((Kt=vt.getAttribute("id"))?Kt=t.escapeSelector(Kt):vt.setAttribute("id",Kt=Nt)),Qt=(ve=vn(nt)).length;Qt--;)ve[Qt]=(Kt?"#"+Kt:":scope")+" "+_n(ve[Qt]);le=ve.join(",")}try{return Tt.apply(kt,ce.querySelectorAll(le)),kt}catch{Se(nt,!0)}finally{Kt===Nt&&vt.removeAttribute("id")}}}return pr(nt.replace(N,"$1"),vt,kt,Mt)}function Ce(){var nt=[];return function vt(kt,Mt){return nt.push(kt+" ")>h.cacheLength&&delete vt[nt.shift()],vt[kt+" "]=Mt}}function ke(nt){return nt[Nt]=!0,nt}function xe(nt){var vt=q.createElement("fieldset");try{return!!nt(vt)}catch{return!1}finally{vt.parentNode&&vt.parentNode.removeChild(vt),vt=null}}function $e(nt){return function(vt){return m(vt,"input")&&vt.type===nt}}function cn(nt){return function(vt){return(m(vt,"input")||m(vt,"button"))&&vt.type===nt}}function wn(nt){return function(vt){return"form"in vt?vt.parentNode&&vt.disabled===!1?"label"in vt?"label"in vt.parentNode?vt.parentNode.disabled===nt:vt.disabled===nt:vt.isDisabled===nt||vt.isDisabled!==!nt&&Oe(vt)===nt:vt.disabled===nt:"label"in vt&&vt.disabled===nt}}function en(nt){return ke(function(vt){return vt=+vt,ke(function(kt,Mt){for(var Lt,Qt=nt([],kt.length,vt),Xt=Qt.length;Xt--;)kt[Lt=Qt[Xt]]&&(kt[Lt]=!(Mt[Lt]=kt[Lt]))})})}function Bn(nt){return nt&&typeof nt.getElementsByTagName<"u"&&nt}function Ge(nt){var vt,kt=nt?nt.ownerDocument||nt:z;return kt!=q&&kt.nodeType===9&&kt.documentElement&&(X=(q=kt).documentElement,ft=!t.isXMLDoc(q),xt=X.matches||X.webkitMatchesSelector||X.msMatchesSelector,X.msMatchesSelector&&z!=q&&(vt=q.defaultView)&&vt.top!==vt&&vt.addEventListener("unload",Xe),d.getById=xe(function(Mt){return X.appendChild(Mt).id=t.expando,!q.getElementsByName||!q.getElementsByName(t.expando).length}),d.disconnectedMatch=xe(function(Mt){return xt.call(Mt,"*")}),d.scope=xe(function(){return q.querySelectorAll(":scope")}),d.cssHas=xe(function(){try{return q.querySelector(":has(*,:jqfake)"),!1}catch{return!0}}),d.getById?(h.filter.ID=function(Mt){var Lt=Mt.replace(Te,De);return function(Qt){return Qt.getAttribute("id")===Lt}},h.find.ID=function(Mt,Lt){if(typeof Lt.getElementById<"u"&&ft){var Qt=Lt.getElementById(Mt);return Qt?[Qt]:[]}}):(h.filter.ID=function(Mt){var Lt=Mt.replace(Te,De);return function(Qt){var Xt=typeof Qt.getAttributeNode<"u"&&Qt.getAttributeNode("id");return Xt&&Xt.value===Lt}},h.find.ID=function(Mt,Lt){if(typeof Lt.getElementById<"u"&&ft){var Qt,Xt,Kt,$t=Lt.getElementById(Mt);if($t){if((Qt=$t.getAttributeNode("id"))&&Qt.value===Mt)return[$t];for(Kt=Lt.getElementsByName(Mt),Xt=0;$t=Kt[Xt++];)if((Qt=$t.getAttributeNode("id"))&&Qt.value===Mt)return[$t]}return[]}}),h.find.TAG=function(Mt,Lt){return typeof Lt.getElementsByTagName<"u"?Lt.getElementsByTagName(Mt):Lt.querySelectorAll(Mt)},h.find.CLASS=function(Mt,Lt){if(typeof Lt.getElementsByClassName<"u"&&ft)return Lt.getElementsByClassName(Mt)},ut=[],xe(function(Mt){var Lt;X.appendChild(Mt).innerHTML="<a id='"+Nt+"' href='' disabled='disabled'></a><select id='"+Nt+"-\r\\' disabled='disabled'><option selected=''></option></select>",Mt.querySelectorAll("[selected]").length||ut.push("\\["+F+"*(?:value|"+ze+")"),Mt.querySelectorAll("[id~="+Nt+"-]").length||ut.push("~="),Mt.querySelectorAll("a#"+Nt+"+*").length||ut.push(".#.+[+~]"),Mt.querySelectorAll(":checked").length||ut.push(":checked"),(Lt=q.createElement("input")).setAttribute("type","hidden"),Mt.appendChild(Lt).setAttribute("name","D"),X.appendChild(Mt).disabled=!0,Mt.querySelectorAll(":disabled").length!==2&&ut.push(":enabled",":disabled"),(Lt=q.createElement("input")).setAttribute("name",""),Mt.appendChild(Lt),Mt.querySelectorAll("[name='']").length||ut.push("\\["+F+"*name"+F+"*="+F+`*(?:''|"")`)}),d.cssHas||ut.push(":has"),ut=ut.length&&new RegExp(ut.join("|")),Ae=function(Mt,Lt){if(Mt===Lt)return W=!0,0;var Qt=!Mt.compareDocumentPosition-!Lt.compareDocumentPosition;return Qt||(1&(Qt=(Mt.ownerDocument||Mt)==(Lt.ownerDocument||Lt)?Mt.compareDocumentPosition(Lt):1)||!d.sortDetached&&Lt.compareDocumentPosition(Mt)===Qt?Mt===q||Mt.ownerDocument==z&&te.contains(z,Mt)?-1:Lt===q||Lt.ownerDocument==z&&te.contains(z,Lt)?1:M?k.call(M,Mt)-k.call(M,Lt):0:4&Qt?-1:1)}),q}for(e in te.matches=function(nt,vt){return te(nt,null,null,vt)},te.matchesSelector=function(nt,vt){if(Ge(nt),ft&&!Se[vt+" "]&&(!ut||!ut.test(vt)))try{var kt=xt.call(nt,vt);if(kt||d.disconnectedMatch||nt.document&&nt.document.nodeType!==11)return kt}catch{Se(vt,!0)}return 0<te(vt,q,null,[nt]).length},te.contains=function(nt,vt){return(nt.ownerDocument||nt)!=q&&Ge(nt),t.contains(nt,vt)},te.attr=function(nt,vt){(nt.ownerDocument||nt)!=q&&Ge(nt);var kt=h.attrHandle[vt.toLowerCase()],Mt=kt&&_.call(h.attrHandle,vt.toLowerCase())?kt(nt,vt,!ft):void 0;return Mt!==void 0?Mt:nt.getAttribute(vt)},te.error=function(nt){throw new Error("Syntax error, unrecognized expression: "+nt)},t.uniqueSort=function(nt){var vt,kt=[],Mt=0,Lt=0;if(W=!d.sortStable,M=!d.sortStable&&c.call(nt,0),w.call(nt,Ae),W){for(;vt=nt[Lt++];)vt===nt[Lt]&&(Mt=kt.push(Lt));for(;Mt--;)A.call(nt,kt[Mt],1)}return M=null,nt},t.fn.uniqueSort=function(){return this.pushStack(t.uniqueSort(c.apply(this)))},(h=t.expr={cacheLength:50,createPseudo:ke,match:Ye,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(nt){return nt[1]=nt[1].replace(Te,De),nt[3]=(nt[3]||nt[4]||nt[5]||"").replace(Te,De),nt[2]==="~="&&(nt[3]=" "+nt[3]+" "),nt.slice(0,4)},CHILD:function(nt){return nt[1]=nt[1].toLowerCase(),nt[1].slice(0,3)==="nth"?(nt[3]||te.error(nt[0]),nt[4]=+(nt[4]?nt[5]+(nt[6]||1):2*(nt[3]==="even"||nt[3]==="odd")),nt[5]=+(nt[7]+nt[8]||nt[3]==="odd")):nt[3]&&te.error(nt[0]),nt},PSEUDO:function(nt){var vt,kt=!nt[6]&&nt[2];return Ye.CHILD.test(nt[0])?null:(nt[3]?nt[2]=nt[4]||nt[5]||"":kt&&Ue.test(kt)&&(vt=vn(kt,!0))&&(vt=kt.indexOf(")",kt.length-vt)-kt.length)&&(nt[0]=nt[0].slice(0,vt),nt[2]=kt.slice(0,vt)),nt.slice(0,3))}},filter:{TAG:function(nt){var vt=nt.replace(Te,De).toLowerCase();return nt==="*"?function(){return!0}:function(kt){return m(kt,vt)}},CLASS:function(nt){var vt=Jt[nt+" "];return vt||(vt=new RegExp("(^|"+F+")"+nt+"("+F+"|$)"))&&Jt(nt,function(kt){return vt.test(typeof kt.className=="string"&&kt.className||typeof kt.getAttribute<"u"&&kt.getAttribute("class")||"")})},ATTR:function(nt,vt,kt){return function(Mt){var Lt=te.attr(Mt,nt);return Lt==null?vt==="!=":!vt||(Lt+="",vt==="="?Lt===kt:vt==="!="?Lt!==kt:vt==="^="?kt&&Lt.indexOf(kt)===0:vt==="*="?kt&&-1<Lt.indexOf(kt):vt==="$="?kt&&Lt.slice(-kt.length)===kt:vt==="~="?-1<(" "+Lt.replace(me," ")+" ").indexOf(kt):vt==="|="&&(Lt===kt||Lt.slice(0,kt.length+1)===kt+"-"))}},CHILD:function(nt,vt,kt,Mt,Lt){var Qt=nt.slice(0,3)!=="nth",Xt=nt.slice(-4)!=="last",Kt=vt==="of-type";return Mt===1&&Lt===0?function($t){return!!$t.parentNode}:function($t,ve,le){var ce,ge,re,Ee,Ie,Pe=Qt!==Xt?"nextSibling":"previousSibling",Ne=$t.parentNode,Fe=Kt&&$t.nodeName.toLowerCase(),Ve=!le&&!Kt,we=!1;if(Ne){if(Qt){for(;Pe;){for(re=$t;re=re[Pe];)if(Kt?m(re,Fe):re.nodeType===1)return!1;Ie=Pe=nt==="only"&&!Ie&&"nextSibling"}return!0}if(Ie=[Xt?Ne.firstChild:Ne.lastChild],Xt&&Ve){for(we=(Ee=(ce=(ge=Ne[Nt]||(Ne[Nt]={}))[nt]||[])[0]===_t&&ce[1])&&ce[2],re=Ee&&Ne.childNodes[Ee];re=++Ee&&re&&re[Pe]||(we=Ee=0)||Ie.pop();)if(re.nodeType===1&&++we&&re===$t){ge[nt]=[_t,Ee,we];break}}else if(Ve&&(we=Ee=(ce=(ge=$t[Nt]||($t[Nt]={}))[nt]||[])[0]===_t&&ce[1]),we===!1)for(;(re=++Ee&&re&&re[Pe]||(we=Ee=0)||Ie.pop())&&!((Kt?m(re,Fe):re.nodeType===1)&&++we&&(Ve&&((ge=re[Nt]||(re[Nt]={}))[nt]=[_t,we]),re===$t)););return(we-=Lt)===Mt||we%Mt==0&&0<=we/Mt}}},PSEUDO:function(nt,vt){var kt,Mt=h.pseudos[nt]||h.setFilters[nt.toLowerCase()]||te.error("unsupported pseudo: "+nt);return Mt[Nt]?Mt(vt):1<Mt.length?(kt=[nt,nt,"",vt],h.setFilters.hasOwnProperty(nt.toLowerCase())?ke(function(Lt,Qt){for(var Xt,Kt=Mt(Lt,vt),$t=Kt.length;$t--;)Lt[Xt=k.call(Lt,Kt[$t])]=!(Qt[Xt]=Kt[$t])}):function(Lt){return Mt(Lt,0,kt)}):Mt}},pseudos:{not:ke(function(nt){var vt=[],kt=[],Mt=zn(nt.replace(N,"$1"));return Mt[Nt]?ke(function(Lt,Qt,Xt,Kt){for(var $t,ve=Mt(Lt,null,Kt,[]),le=Lt.length;le--;)($t=ve[le])&&(Lt[le]=!(Qt[le]=$t))}):function(Lt,Qt,Xt){return vt[0]=Lt,Mt(vt,null,Xt,kt),vt[0]=null,!kt.pop()}}),has:ke(function(nt){return function(vt){return 0<te(nt,vt).length}}),contains:ke(function(nt){return nt=nt.replace(Te,De),function(vt){return-1<(vt.textContent||t.text(vt)).indexOf(nt)}}),lang:ke(function(nt){return mn.test(nt||"")||te.error("unsupported lang: "+nt),nt=nt.replace(Te,De).toLowerCase(),function(vt){var kt;do if(kt=ft?vt.lang:vt.getAttribute("xml:lang")||vt.getAttribute("lang"))return(kt=kt.toLowerCase())===nt||kt.indexOf(nt+"-")===0;while((vt=vt.parentNode)&&vt.nodeType===1);return!1}}),target:function(nt){var vt=U.location&&U.location.hash;return vt&&vt.slice(1)===nt.id},root:function(nt){return nt===X},focus:function(nt){return nt===function(){try{return q.activeElement}catch{}}()&&q.hasFocus()&&!!(nt.type||nt.href||~nt.tabIndex)},enabled:wn(!1),disabled:wn(!0),checked:function(nt){return m(nt,"input")&&!!nt.checked||m(nt,"option")&&!!nt.selected},selected:function(nt){return nt.parentNode&&nt.parentNode.selectedIndex,nt.selected===!0},empty:function(nt){for(nt=nt.firstChild;nt;nt=nt.nextSibling)if(nt.nodeType<6)return!1;return!0},parent:function(nt){return!h.pseudos.empty(nt)},header:function(nt){return un.test(nt.nodeName)},input:function(nt){return Qe.test(nt.nodeName)},button:function(nt){return m(nt,"input")&&nt.type==="button"||m(nt,"button")},text:function(nt){var vt;return m(nt,"input")&&nt.type==="text"&&((vt=nt.getAttribute("type"))==null||vt.toLowerCase()==="text")},first:en(function(){return[0]}),last:en(function(nt,vt){return[vt-1]}),eq:en(function(nt,vt,kt){return[kt<0?kt+vt:kt]}),even:en(function(nt,vt){for(var kt=0;kt<vt;kt+=2)nt.push(kt);return nt}),odd:en(function(nt,vt){for(var kt=1;kt<vt;kt+=2)nt.push(kt);return nt}),lt:en(function(nt,vt,kt){var Mt;for(Mt=kt<0?kt+vt:vt<kt?vt:kt;0<=--Mt;)nt.push(Mt);return nt}),gt:en(function(nt,vt,kt){for(var Mt=kt<0?kt+vt:kt;++Mt<vt;)nt.push(Mt);return nt})}}).pseudos.nth=h.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})h.pseudos[e]=$e(e);for(e in{submit:!0,reset:!0})h.pseudos[e]=cn(e);function hr(){}function vn(nt,vt){var kt,Mt,Lt,Qt,Xt,Kt,$t,ve=ae[nt+" "];if(ve)return vt?0:ve.slice(0);for(Xt=nt,Kt=[],$t=h.preFilter;Xt;){for(Qt in kt&&!(Mt=_e.exec(Xt))||(Mt&&(Xt=Xt.slice(Mt[0].length)||Xt),Kt.push(Lt=[])),kt=!1,(Mt=gn.exec(Xt))&&(kt=Mt.shift(),Lt.push({value:kt,type:Mt[0].replace(N," ")}),Xt=Xt.slice(kt.length)),h.filter)!(Mt=Ye[Qt].exec(Xt))||$t[Qt]&&!(Mt=$t[Qt](Mt))||(kt=Mt.shift(),Lt.push({value:kt,type:Qt,matches:Mt}),Xt=Xt.slice(kt.length));if(!kt)break}return vt?Xt.length:Xt?te.error(nt):ae(nt,Kt).slice(0)}function _n(nt){for(var vt=0,kt=nt.length,Mt="";vt<kt;vt++)Mt+=nt[vt].value;return Mt}function Sn(nt,vt,kt){var Mt=vt.dir,Lt=vt.next,Qt=Lt||Mt,Xt=kt&&Qt==="parentNode",Kt=Ft++;return vt.first?function($t,ve,le){for(;$t=$t[Mt];)if($t.nodeType===1||Xt)return nt($t,ve,le);return!1}:function($t,ve,le){var ce,ge,re=[_t,Kt];if(le){for(;$t=$t[Mt];)if(($t.nodeType===1||Xt)&&nt($t,ve,le))return!0}else for(;$t=$t[Mt];)if($t.nodeType===1||Xt)if(ge=$t[Nt]||($t[Nt]={}),Lt&&m($t,Lt))$t=$t[Mt]||$t;else{if((ce=ge[Qt])&&ce[0]===_t&&ce[1]===Kt)return re[2]=ce[2];if((ge[Qt]=re)[2]=nt($t,ve,le))return!0}return!1}}function Wn(nt){return 1<nt.length?function(vt,kt,Mt){for(var Lt=nt.length;Lt--;)if(!nt[Lt](vt,kt,Mt))return!1;return!0}:nt[0]}function Cn(nt,vt,kt,Mt,Lt){for(var Qt,Xt=[],Kt=0,$t=nt.length,ve=vt!=null;Kt<$t;Kt++)(Qt=nt[Kt])&&(kt&&!kt(Qt,Mt,Lt)||(Xt.push(Qt),ve&&vt.push(Kt)));return Xt}function Vn(nt,vt,kt,Mt,Lt,Qt){return Mt&&!Mt[Nt]&&(Mt=Vn(Mt)),Lt&&!Lt[Nt]&&(Lt=Vn(Lt,Qt)),ke(function(Xt,Kt,$t,ve){var le,ce,ge,re,Ee=[],Ie=[],Pe=Kt.length,Ne=Xt||function(Ve,we,nn){for(var He=0,kn=we.length;He<kn;He++)te(Ve,we[He],nn);return nn}(vt||"*",$t.nodeType?[$t]:$t,[]),Fe=!nt||!Xt&&vt?Ne:Cn(Ne,Ee,nt,$t,ve);if(kt?kt(Fe,re=Lt||(Xt?nt:Pe||Mt)?[]:Kt,$t,ve):re=Fe,Mt)for(le=Cn(re,Ie),Mt(le,[],$t,ve),ce=le.length;ce--;)(ge=le[ce])&&(re[Ie[ce]]=!(Fe[Ie[ce]]=ge));if(Xt){if(Lt||nt){if(Lt){for(le=[],ce=re.length;ce--;)(ge=re[ce])&&le.push(Fe[ce]=ge);Lt(null,re=[],le,ve)}for(ce=re.length;ce--;)(ge=re[ce])&&-1<(le=Lt?k.call(Xt,ge):Ee[ce])&&(Xt[le]=!(Kt[le]=ge))}}else re=Cn(re===Kt?re.splice(Pe,re.length):re),Lt?Lt(null,Kt,re,ve):Tt.apply(Kt,re)})}function Hn(nt){for(var vt,kt,Mt,Lt=nt.length,Qt=h.relative[nt[0].type],Xt=Qt||h.relative[" "],Kt=Qt?1:0,$t=Sn(function(ce){return ce===vt},Xt,!0),ve=Sn(function(ce){return-1<k.call(vt,ce)},Xt,!0),le=[function(ce,ge,re){var Ee=!Qt&&(re||ge!=E)||((vt=ge).nodeType?$t(ce,ge,re):ve(ce,ge,re));return vt=null,Ee}];Kt<Lt;Kt++)if(kt=h.relative[nt[Kt].type])le=[Sn(Wn(le),kt)];else{if((kt=h.filter[nt[Kt].type].apply(null,nt[Kt].matches))[Nt]){for(Mt=++Kt;Mt<Lt&&!h.relative[nt[Mt].type];Mt++);return Vn(1<Kt&&Wn(le),1<Kt&&_n(nt.slice(0,Kt-1).concat({value:nt[Kt-2].type===" "?"*":""})).replace(N,"$1"),kt,Kt<Mt&&Hn(nt.slice(Kt,Mt)),Mt<Lt&&Hn(nt=nt.slice(Mt)),Mt<Lt&&_n(nt))}le.push(kt)}return Wn(le)}function zn(nt,vt){var kt,Mt,Lt,Qt,Xt,Kt,$t=[],ve=[],le=se[nt+" "];if(!le){for(vt||(vt=vn(nt)),kt=vt.length;kt--;)(le=Hn(vt[kt]))[Nt]?$t.push(le):ve.push(le);(le=se(nt,(Mt=ve,Qt=0<(Lt=$t).length,Xt=0<Mt.length,Kt=function(ce,ge,re,Ee,Ie){var Pe,Ne,Fe,Ve=0,we="0",nn=ce&&[],He=[],kn=E,gr=ce||Xt&&h.find.TAG("*",Ie),mr=_t+=kn==null?1:Math.random()||.1,jr=gr.length;for(Ie&&(E=ge==q||ge||Ie);we!==jr&&(Pe=gr[we])!=null;we++){if(Xt&&Pe){for(Ne=0,ge||Pe.ownerDocument==q||(Ge(Pe),re=!ft);Fe=Mt[Ne++];)if(Fe(Pe,ge||q,re)){Tt.call(Ee,Pe);break}Ie&&(_t=mr)}Qt&&((Pe=!Fe&&Pe)&&Ve--,ce&&nn.push(Pe))}if(Ve+=we,Qt&&we!==Ve){for(Ne=0;Fe=Lt[Ne++];)Fe(nn,He,ge,re);if(ce){if(0<Ve)for(;we--;)nn[we]||He[we]||(He[we]=S.call(Ee));He=Cn(He)}Tt.apply(Ee,He),Ie&&!ce&&0<He.length&&1<Ve+Lt.length&&t.uniqueSort(Ee)}return Ie&&(_t=mr,E=kn),nn},Qt?ke(Kt):Kt))).selector=nt}return le}function pr(nt,vt,kt,Mt){var Lt,Qt,Xt,Kt,$t,ve=typeof nt=="function"&&nt,le=!Mt&&vn(nt=ve.selector||nt);if(kt=kt||[],le.length===1){if(2<(Qt=le[0]=le[0].slice(0)).length&&(Xt=Qt[0]).type==="ID"&&vt.nodeType===9&&ft&&h.relative[Qt[1].type]){if(!(vt=(h.find.ID(Xt.matches[0].replace(Te,De),vt)||[])[0]))return kt;ve&&(vt=vt.parentNode),nt=nt.slice(Qt.shift().value.length)}for(Lt=Ye.needsContext.test(nt)?0:Qt.length;Lt--&&(Xt=Qt[Lt],!h.relative[Kt=Xt.type]);)if(($t=h.find[Kt])&&(Mt=$t(Xt.matches[0].replace(Te,De),Me.test(Qt[0].type)&&Bn(vt.parentNode)||vt))){if(Qt.splice(Lt,1),!(nt=Mt.length&&_n(Qt)))return Tt.apply(kt,Mt),kt;break}}return(ve||zn(nt,le))(Mt,vt,!ft,kt,!vt||Me.test(nt)&&Bn(vt.parentNode)||vt),kt}hr.prototype=h.filters=h.pseudos,h.setFilters=new hr,d.sortStable=Nt.split("").sort(Ae).join("")===Nt,Ge(),d.sortDetached=xe(function(nt){return 1&nt.compareDocumentPosition(q.createElement("fieldset"))}),t.find=te,t.expr[":"]=t.expr.pseudos,t.unique=t.uniqueSort,te.compile=zn,te.select=pr,te.setDocument=Ge,te.tokenize=vn,te.escape=t.escapeSelector,te.getText=t.text,te.isXML=t.isXMLDoc,te.selectors=t.expr,te.support=t.support,te.uniqueSort=t.uniqueSort})();var G=function(e,h,E){for(var M=[],W=E!==void 0;(e=e[h])&&e.nodeType!==9;)if(e.nodeType===1){if(W&&t(e).is(E))break;M.push(e)}return M},K=function(e,h){for(var E=[];e;e=e.nextSibling)e.nodeType===1&&e!==h&&E.push(e);return E},ct=t.expr.match.needsContext,it=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function ht(e,h,E){return l(h)?t.grep(e,function(M,W){return!!h.call(M,W,M)!==E}):h.nodeType?t.grep(e,function(M){return M===h!==E}):typeof h!="string"?t.grep(e,function(M){return-1<k.call(h,M)!==E}):t.filter(h,e,E)}t.filter=function(e,h,E){var M=h[0];return E&&(e=":not("+e+")"),h.length===1&&M.nodeType===1?t.find.matchesSelector(M,e)?[M]:[]:t.find.matches(e,t.grep(h,function(W){return W.nodeType===1}))},t.fn.extend({find:function(e){var h,E,M=this.length,W=this;if(typeof e!="string")return this.pushStack(t(e).filter(function(){for(h=0;h<M;h++)if(t.contains(W[h],this))return!0}));for(E=this.pushStack([]),h=0;h<M;h++)t.find(e,W[h],E);return 1<M?t.uniqueSort(E):E},filter:function(e){return this.pushStack(ht(this,e||[],!1))},not:function(e){return this.pushStack(ht(this,e||[],!0))},is:function(e){return!!ht(this,typeof e=="string"&&ct.test(e)?t(e):e||[],!1).length}});var dt,St=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(t.fn.init=function(e,h,E){var M,W;if(!e)return this;if(E=E||dt,typeof e=="string"){if(!(M=e[0]==="<"&&e[e.length-1]===">"&&3<=e.length?[null,e,null]:St.exec(e))||!M[1]&&h)return!h||h.jquery?(h||E).find(e):this.constructor(h).find(e);if(M[1]){if(h=h instanceof t?h[0]:h,t.merge(this,t.parseHTML(M[1],h&&h.nodeType?h.ownerDocument||h:v,!0)),it.test(M[1])&&t.isPlainObject(h))for(M in h)l(this[M])?this[M](h[M]):this.attr(M,h[M]);return this}return(W=v.getElementById(M[2]))&&(this[0]=W,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):l(e)?E.ready!==void 0?E.ready(e):e(t):t.makeArray(e,this)}).prototype=t.fn,dt=t(v);var pt=/^(?:parents|prev(?:Until|All))/,Q={children:!0,contents:!0,next:!0,prev:!0};function et(e,h){for(;(e=e[h])&&e.nodeType!==1;);return e}t.fn.extend({has:function(e){var h=t(e,this),E=h.length;return this.filter(function(){for(var M=0;M<E;M++)if(t.contains(this,h[M]))return!0})},closest:function(e,h){var E,M=0,W=this.length,q=[],X=typeof e!="string"&&t(e);if(!ct.test(e)){for(;M<W;M++)for(E=this[M];E&&E!==h;E=E.parentNode)if(E.nodeType<11&&(X?-1<X.index(E):E.nodeType===1&&t.find.matchesSelector(E,e))){q.push(E);break}}return this.pushStack(1<q.length?t.uniqueSort(q):q)},index:function(e){return e?typeof e=="string"?k.call(t(e),this[0]):k.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,h){return this.pushStack(t.uniqueSort(t.merge(this.get(),t(e,h))))},addBack:function(e){return this.add(e==null?this.prevObject:this.prevObject.filter(e))}}),t.each({parent:function(e){var h=e.parentNode;return h&&h.nodeType!==11?h:null},parents:function(e){return G(e,"parentNode")},parentsUntil:function(e,h,E){return G(e,"parentNode",E)},next:function(e){return et(e,"nextSibling")},prev:function(e){return et(e,"previousSibling")},nextAll:function(e){return G(e,"nextSibling")},prevAll:function(e){return G(e,"previousSibling")},nextUntil:function(e,h,E){return G(e,"nextSibling",E)},prevUntil:function(e,h,E){return G(e,"previousSibling",E)},siblings:function(e){return K((e.parentNode||{}).firstChild,e)},children:function(e){return K(e.firstChild)},contents:function(e){return e.contentDocument!=null&&T(e.contentDocument)?e.contentDocument:(m(e,"template")&&(e=e.content||e),t.merge([],e.childNodes))}},function(e,h){t.fn[e]=function(E,M){var W=t.map(this,h,E);return e.slice(-5)!=="Until"&&(M=E),M&&typeof M=="string"&&(W=t.filter(M,W)),1<this.length&&(Q[e]||t.uniqueSort(W),pt.test(e)&&W.reverse()),this.pushStack(W)}});var rt=/[^\x20\t\r\n\f]+/g;function ot(e){return e}function gt(e){throw e}function J(e,h,E,M){var W;try{e&&l(W=e.promise)?W.call(e).done(h).fail(E):e&&l(W=e.then)?W.call(e,h,E):h.apply(void 0,[e].slice(M))}catch(q){E.apply(void 0,[q])}}t.Callbacks=function(e){var h,E;e=typeof e=="string"?(h=e,E={},t.each(h.match(rt)||[],function(_t,Ft){E[Ft]=!0}),E):t.extend({},e);var M,W,q,X,ft=[],ut=[],xt=-1,Tt=function(){for(X=X||e.once,q=M=!0;ut.length;xt=-1)for(W=ut.shift();++xt<ft.length;)ft[xt].apply(W[0],W[1])===!1&&e.stopOnFalse&&(xt=ft.length,W=!1);e.memory||(W=!1),M=!1,X&&(ft=W?[]:"")},Nt={add:function(){return ft&&(W&&!M&&(xt=ft.length-1,ut.push(W)),function _t(Ft){t.each(Ft,function(Jt,ae){l(ae)?e.unique&&Nt.has(ae)||ft.push(ae):ae&&ae.length&&i(ae)!=="string"&&_t(ae)})}(arguments),W&&!M&&Tt()),this},remove:function(){return t.each(arguments,function(_t,Ft){for(var Jt;-1<(Jt=t.inArray(Ft,ft,Jt));)ft.splice(Jt,1),Jt<=xt&&xt--}),this},has:function(_t){return _t?-1<t.inArray(_t,ft):0<ft.length},empty:function(){return ft&&(ft=[]),this},disable:function(){return X=ut=[],ft=W="",this},disabled:function(){return!ft},lock:function(){return X=ut=[],W||M||(ft=W=""),this},locked:function(){return!!X},fireWith:function(_t,Ft){return X||(Ft=[_t,(Ft=Ft||[]).slice?Ft.slice():Ft],ut.push(Ft),M||Tt()),this},fire:function(){return Nt.fireWith(this,arguments),this},fired:function(){return!!q}};return Nt},t.extend({Deferred:function(e){var h=[["notify","progress",t.Callbacks("memory"),t.Callbacks("memory"),2],["resolve","done",t.Callbacks("once memory"),t.Callbacks("once memory"),0,"resolved"],["reject","fail",t.Callbacks("once memory"),t.Callbacks("once memory"),1,"rejected"]],E="pending",M={state:function(){return E},always:function(){return W.done(arguments).fail(arguments),this},catch:function(q){return M.then(null,q)},pipe:function(){var q=arguments;return t.Deferred(function(X){t.each(h,function(ft,ut){var xt=l(q[ut[4]])&&q[ut[4]];W[ut[1]](function(){var Tt=xt&&xt.apply(this,arguments);Tt&&l(Tt.promise)?Tt.promise().progress(X.notify).done(X.resolve).fail(X.reject):X[ut[0]+"With"](this,xt?[Tt]:arguments)})}),q=null}).promise()},then:function(q,X,ft){var ut=0;function xt(Tt,Nt,_t,Ft){return function(){var Jt=this,ae=arguments,se=function(){var Ae,ze;if(!(Tt<ut)){if((Ae=_t.apply(Jt,ae))===Nt.promise())throw new TypeError("Thenable self-resolution");ze=Ae&&(typeof Ae=="object"||typeof Ae=="function")&&Ae.then,l(ze)?Ft?ze.call(Ae,xt(ut,Nt,ot,Ft),xt(ut,Nt,gt,Ft)):(ut++,ze.call(Ae,xt(ut,Nt,ot,Ft),xt(ut,Nt,gt,Ft),xt(ut,Nt,ot,Nt.notifyWith))):(_t!==ot&&(Jt=void 0,ae=[Ae]),(Ft||Nt.resolveWith)(Jt,ae))}},Se=Ft?se:function(){try{se()}catch(Ae){t.Deferred.exceptionHook&&t.Deferred.exceptionHook(Ae,Se.error),ut<=Tt+1&&(_t!==gt&&(Jt=void 0,ae=[Ae]),Nt.rejectWith(Jt,ae))}};Tt?Se():(t.Deferred.getErrorHook?Se.error=t.Deferred.getErrorHook():t.Deferred.getStackHook&&(Se.error=t.Deferred.getStackHook()),U.setTimeout(Se))}}return t.Deferred(function(Tt){h[0][3].add(xt(0,Tt,l(ft)?ft:ot,Tt.notifyWith)),h[1][3].add(xt(0,Tt,l(q)?q:ot)),h[2][3].add(xt(0,Tt,l(X)?X:gt))}).promise()},promise:function(q){return q!=null?t.extend(q,M):M}},W={};return t.each(h,function(q,X){var ft=X[2],ut=X[5];M[X[1]]=ft.add,ut&&ft.add(function(){E=ut},h[3-q][2].disable,h[3-q][3].disable,h[0][2].lock,h[0][3].lock),ft.add(X[3].fire),W[X[0]]=function(){return W[X[0]+"With"](this===W?void 0:this,arguments),this},W[X[0]+"With"]=ft.fireWith}),M.promise(W),e&&e.call(W,W),W},when:function(e){var h=arguments.length,E=h,M=Array(E),W=c.call(arguments),q=t.Deferred(),X=function(ft){return function(ut){M[ft]=this,W[ft]=1<arguments.length?c.call(arguments):ut,--h||q.resolveWith(M,W)}};if(h<=1&&(J(e,q.done(X(E)).resolve,q.reject,!h),q.state()==="pending"||l(W[E]&&W[E].then)))return q.then();for(;E--;)J(W[E],X(E),q.reject);return q.promise()}});var at=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;t.Deferred.exceptionHook=function(e,h){U.console&&U.console.warn&&e&&at.test(e.name)&&U.console.warn("jQuery.Deferred exception: "+e.message,e.stack,h)},t.readyException=function(e){U.setTimeout(function(){throw e})};var bt=t.Deferred();function yt(){v.removeEventListener("DOMContentLoaded",yt),U.removeEventListener("load",yt),t.ready()}t.fn.ready=function(e){return bt.then(e).catch(function(h){t.readyException(h)}),this},t.extend({isReady:!1,readyWait:1,ready:function(e){(e===!0?--t.readyWait:t.isReady)||(t.isReady=!0)!==e&&0<--t.readyWait||bt.resolveWith(v,[t])}}),t.ready.then=bt.then,v.readyState==="complete"||v.readyState!=="loading"&&!v.documentElement.doScroll?U.setTimeout(t.ready):(v.addEventListener("DOMContentLoaded",yt),U.addEventListener("load",yt));var lt=function(e,h,E,M,W,q,X){var ft=0,ut=e.length,xt=E==null;if(i(E)==="object")for(ft in W=!0,E)lt(e,h,ft,E[ft],!0,q,X);else if(M!==void 0&&(W=!0,l(M)||(X=!0),xt&&(X?(h.call(e,M),h=null):(xt=h,h=function(Tt,Nt,_t){return xt.call(t(Tt),_t)})),h))for(;ft<ut;ft++)h(e[ft],E,X?M:M.call(e[ft],ft,h(e[ft],E)));return W?e:xt?h.call(e):ut?h(e[0],E):q},At=/^-ms-/,Dt=/-([a-z])/g;function It(e,h){return h.toUpperCase()}function Pt(e){return e.replace(At,"ms-").replace(Dt,It)}var Ct=function(e){return e.nodeType===1||e.nodeType===9||!+e.nodeType};function Ot(){this.expando=t.expando+Ot.uid++}Ot.uid=1,Ot.prototype={cache:function(e){var h=e[this.expando];return h||(h={},Ct(e)&&(e.nodeType?e[this.expando]=h:Object.defineProperty(e,this.expando,{value:h,configurable:!0}))),h},set:function(e,h,E){var M,W=this.cache(e);if(typeof h=="string")W[Pt(h)]=E;else for(M in h)W[Pt(M)]=h[M];return W},get:function(e,h){return h===void 0?this.cache(e):e[this.expando]&&e[this.expando][Pt(h)]},access:function(e,h,E){return h===void 0||h&&typeof h=="string"&&E===void 0?this.get(e,h):(this.set(e,h,E),E!==void 0?E:h)},remove:function(e,h){var E,M=e[this.expando];if(M!==void 0){if(h!==void 0)for(E=(h=Array.isArray(h)?h.map(Pt):(h=Pt(h))in M?[h]:h.match(rt)||[]).length;E--;)delete M[h[E]];(h===void 0||t.isEmptyObject(M))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var h=e[this.expando];return h!==void 0&&!t.isEmptyObject(h)}};var mt=new Ot,zt=new Ot,ie=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Yt=/[A-Z]/g;function ue(e,h,E){var M,W;if(E===void 0&&e.nodeType===1)if(M="data-"+h.replace(Yt,"-$&").toLowerCase(),typeof(E=e.getAttribute(M))=="string"){try{E=(W=E)==="true"||W!=="false"&&(W==="null"?null:W===+W+""?+W:ie.test(W)?JSON.parse(W):W)}catch{}zt.set(e,h,E)}else E=void 0;return E}t.extend({hasData:function(e){return zt.hasData(e)||mt.hasData(e)},data:function(e,h,E){return zt.access(e,h,E)},removeData:function(e,h){zt.remove(e,h)},_data:function(e,h,E){return mt.access(e,h,E)},_removeData:function(e,h){mt.remove(e,h)}}),t.fn.extend({data:function(e,h){var E,M,W,q=this[0],X=q&&q.attributes;if(e===void 0){if(this.length&&(W=zt.get(q),q.nodeType===1&&!mt.get(q,"hasDataAttrs"))){for(E=X.length;E--;)X[E]&&(M=X[E].name).indexOf("data-")===0&&(M=Pt(M.slice(5)),ue(q,M,W[M]));mt.set(q,"hasDataAttrs",!0)}return W}return typeof e=="object"?this.each(function(){zt.set(this,e)}):lt(this,function(ft){var ut;if(q&&ft===void 0)return(ut=zt.get(q,e))!==void 0||(ut=ue(q,e))!==void 0?ut:void 0;this.each(function(){zt.set(this,e,ft)})},null,h,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){zt.remove(this,e)})}}),t.extend({queue:function(e,h,E){var M;if(e)return h=(h||"fx")+"queue",M=mt.get(e,h),E&&(!M||Array.isArray(E)?M=mt.access(e,h,t.makeArray(E)):M.push(E)),M||[]},dequeue:function(e,h){h=h||"fx";var E=t.queue(e,h),M=E.length,W=E.shift(),q=t._queueHooks(e,h);W==="inprogress"&&(W=E.shift(),M--),W&&(h==="fx"&&E.unshift("inprogress"),delete q.stop,W.call(e,function(){t.dequeue(e,h)},q)),!M&&q&&q.empty.fire()},_queueHooks:function(e,h){var E=h+"queueHooks";return mt.get(e,E)||mt.access(e,E,{empty:t.Callbacks("once memory").add(function(){mt.remove(e,[h+"queue",E])})})}}),t.fn.extend({queue:function(e,h){var E=2;return typeof e!="string"&&(h=e,e="fx",E--),arguments.length<E?t.queue(this[0],e):h===void 0?this:this.each(function(){var M=t.queue(this,e,h);t._queueHooks(this,e),e==="fx"&&M[0]!=="inprogress"&&t.dequeue(this,e)})},dequeue:function(e){return this.each(function(){t.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,h){var E,M=1,W=t.Deferred(),q=this,X=this.length,ft=function(){--M||W.resolveWith(q,[q])};for(typeof e!="string"&&(h=e,e=void 0),e=e||"fx";X--;)(E=mt.get(q[X],e+"queueHooks"))&&E.empty&&(M++,E.empty.add(ft));return ft(),W.promise(h)}});var oe=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ne=new RegExp("^(?:([+-])=|)("+oe+")([a-z%]*)$","i"),Rt=["Top","Right","Bottom","Left"],Wt=v.documentElement,qt=function(e){return t.contains(e.ownerDocument,e)},Gt={composed:!0};Wt.getRootNode&&(qt=function(e){return t.contains(e.ownerDocument,e)||e.getRootNode(Gt)===e.ownerDocument});var Zt=function(e,h){return(e=h||e).style.display==="none"||e.style.display===""&&qt(e)&&t.css(e,"display")==="none"};function D(e,h,E,M){var W,q,X=20,ft=M?function(){return M.cur()}:function(){return t.css(e,h,"")},ut=ft(),xt=E&&E[3]||(t.cssNumber[h]?"":"px"),Tt=e.nodeType&&(t.cssNumber[h]||xt!=="px"&&+ut)&&ne.exec(t.css(e,h));if(Tt&&Tt[3]!==xt){for(ut/=2,xt=xt||Tt[3],Tt=+ut||1;X--;)t.style(e,h,Tt+xt),(1-q)*(1-(q=ft()/ut||.5))<=0&&(X=0),Tt/=q;Tt*=2,t.style(e,h,Tt+xt),E=E||[]}return E&&(Tt=+Tt||+ut||0,W=E[1]?Tt+(E[1]+1)*E[2]:+E[2],M&&(M.unit=xt,M.start=Tt,M.end=W)),W}var V={};function y(e,h){for(var E,M,W,q,X,ft,ut,xt=[],Tt=0,Nt=e.length;Tt<Nt;Tt++)(M=e[Tt]).style&&(E=M.style.display,h?(E==="none"&&(xt[Tt]=mt.get(M,"display")||null,xt[Tt]||(M.style.display="")),M.style.display===""&&Zt(M)&&(xt[Tt]=(ut=X=q=void 0,X=(W=M).ownerDocument,ft=W.nodeName,(ut=V[ft])||(q=X.body.appendChild(X.createElement(ft)),ut=t.css(q,"display"),q.parentNode.removeChild(q),ut==="none"&&(ut="block"),V[ft]=ut)))):E!=="none"&&(xt[Tt]="none",mt.set(M,"display",E)));for(Tt=0;Tt<Nt;Tt++)xt[Tt]!=null&&(e[Tt].style.display=xt[Tt]);return e}t.fn.extend({show:function(){return y(this,!0)},hide:function(){return y(this)},toggle:function(e){return typeof e=="boolean"?e?this.show():this.hide():this.each(function(){Zt(this)?t(this).show():t(this).hide()})}});var I,Y,Z=/^(?:checkbox|radio)$/i,tt=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,wt=/^$|^module$|\/(?:java|ecma)script/i;I=v.createDocumentFragment().appendChild(v.createElement("div")),(Y=v.createElement("input")).setAttribute("type","radio"),Y.setAttribute("checked","checked"),Y.setAttribute("name","t"),I.appendChild(Y),d.checkClone=I.cloneNode(!0).cloneNode(!0).lastChild.checked,I.innerHTML="<textarea>x</textarea>",d.noCloneChecked=!!I.cloneNode(!0).lastChild.defaultValue,I.innerHTML="<option></option>",d.option=!!I.lastChild;var Et={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function jt(e,h){var E;return E=typeof e.getElementsByTagName<"u"?e.getElementsByTagName(h||"*"):typeof e.querySelectorAll<"u"?e.querySelectorAll(h||"*"):[],h===void 0||h&&m(e,h)?t.merge([e],E):E}function Bt(e,h){for(var E=0,M=e.length;E<M;E++)mt.set(e[E],"globalEval",!h||mt.get(h[E],"globalEval"))}Et.tbody=Et.tfoot=Et.colgroup=Et.caption=Et.thead,Et.th=Et.td,d.option||(Et.optgroup=Et.option=[1,"<select multiple='multiple'>","</select>"]);var Vt=/<|&#?\w+;/;function Ut(e,h,E,M,W){for(var q,X,ft,ut,xt,Tt,Nt=h.createDocumentFragment(),_t=[],Ft=0,Jt=e.length;Ft<Jt;Ft++)if((q=e[Ft])||q===0)if(i(q)==="object")t.merge(_t,q.nodeType?[q]:q);else if(Vt.test(q)){for(X=X||Nt.appendChild(h.createElement("div")),ft=(tt.exec(q)||["",""])[1].toLowerCase(),ut=Et[ft]||Et._default,X.innerHTML=ut[1]+t.htmlPrefilter(q)+ut[2],Tt=ut[0];Tt--;)X=X.lastChild;t.merge(_t,X.childNodes),(X=Nt.firstChild).textContent=""}else _t.push(h.createTextNode(q));for(Nt.textContent="",Ft=0;q=_t[Ft++];)if(M&&-1<t.inArray(q,M))W&&W.push(q);else if(xt=qt(q),X=jt(Nt.appendChild(q),"script"),xt&&Bt(X),E)for(Tt=0;q=X[Tt++];)wt.test(q.type||"")&&E.push(q);return Nt}var ee=/^([^.]*)(?:\.(.+)|)/;function Ht(){return!0}function he(){return!1}function pe(e,h,E,M,W,q){var X,ft;if(typeof h=="object"){for(ft in typeof E!="string"&&(M=M||E,E=void 0),h)pe(e,ft,E,M,h[ft],q);return e}if(M==null&&W==null?(W=E,M=E=void 0):W==null&&(typeof E=="string"?(W=M,M=void 0):(W=M,M=E,E=void 0)),W===!1)W=he;else if(!W)return e;return q===1&&(X=W,(W=function(ut){return t().off(ut),X.apply(this,arguments)}).guid=X.guid||(X.guid=t.guid++)),e.each(function(){t.event.add(this,h,W,M,E)})}function ye(e,h,E){E?(mt.set(e,h,!1),t.event.add(e,h,{namespace:!1,handler:function(M){var W,q=mt.get(this,h);if(1&M.isTrigger&&this[h]){if(q)(t.event.special[h]||{}).delegateType&&M.stopPropagation();else if(q=c.call(arguments),mt.set(this,h,q),this[h](),W=mt.get(this,h),mt.set(this,h,!1),q!==W)return M.stopImmediatePropagation(),M.preventDefault(),W}else q&&(mt.set(this,h,t.event.trigger(q[0],q.slice(1),this)),M.stopPropagation(),M.isImmediatePropagationStopped=Ht)}})):mt.get(e,h)===void 0&&t.event.add(e,h,Ht)}t.event={global:{},add:function(e,h,E,M,W){var q,X,ft,ut,xt,Tt,Nt,_t,Ft,Jt,ae,se=mt.get(e);if(Ct(e))for(E.handler&&(E=(q=E).handler,W=q.selector),W&&t.find.matchesSelector(Wt,W),E.guid||(E.guid=t.guid++),(ut=se.events)||(ut=se.events=Object.create(null)),(X=se.handle)||(X=se.handle=function(Se){return typeof t<"u"&&t.event.triggered!==Se.type?t.event.dispatch.apply(e,arguments):void 0}),xt=(h=(h||"").match(rt)||[""]).length;xt--;)Ft=ae=(ft=ee.exec(h[xt])||[])[1],Jt=(ft[2]||"").split(".").sort(),Ft&&(Nt=t.event.special[Ft]||{},Ft=(W?Nt.delegateType:Nt.bindType)||Ft,Nt=t.event.special[Ft]||{},Tt=t.extend({type:Ft,origType:ae,data:M,handler:E,guid:E.guid,selector:W,needsContext:W&&t.expr.match.needsContext.test(W),namespace:Jt.join(".")},q),(_t=ut[Ft])||((_t=ut[Ft]=[]).delegateCount=0,Nt.setup&&Nt.setup.call(e,M,Jt,X)!==!1||e.addEventListener&&e.addEventListener(Ft,X)),Nt.add&&(Nt.add.call(e,Tt),Tt.handler.guid||(Tt.handler.guid=E.guid)),W?_t.splice(_t.delegateCount++,0,Tt):_t.push(Tt),t.event.global[Ft]=!0)},remove:function(e,h,E,M,W){var q,X,ft,ut,xt,Tt,Nt,_t,Ft,Jt,ae,se=mt.hasData(e)&&mt.get(e);if(se&&(ut=se.events)){for(xt=(h=(h||"").match(rt)||[""]).length;xt--;)if(Ft=ae=(ft=ee.exec(h[xt])||[])[1],Jt=(ft[2]||"").split(".").sort(),Ft){for(Nt=t.event.special[Ft]||{},_t=ut[Ft=(M?Nt.delegateType:Nt.bindType)||Ft]||[],ft=ft[2]&&new RegExp("(^|\\.)"+Jt.join("\\.(?:.*\\.|)")+"(\\.|$)"),X=q=_t.length;q--;)Tt=_t[q],!W&&ae!==Tt.origType||E&&E.guid!==Tt.guid||ft&&!ft.test(Tt.namespace)||M&&M!==Tt.selector&&(M!=="**"||!Tt.selector)||(_t.splice(q,1),Tt.selector&&_t.delegateCount--,Nt.remove&&Nt.remove.call(e,Tt));X&&!_t.length&&(Nt.teardown&&Nt.teardown.call(e,Jt,se.handle)!==!1||t.removeEvent(e,Ft,se.handle),delete ut[Ft])}else for(Ft in ut)t.event.remove(e,Ft+h[xt],E,M,!0);t.isEmptyObject(ut)&&mt.remove(e,"handle events")}},dispatch:function(e){var h,E,M,W,q,X,ft=new Array(arguments.length),ut=t.event.fix(e),xt=(mt.get(this,"events")||Object.create(null))[ut.type]||[],Tt=t.event.special[ut.type]||{};for(ft[0]=ut,h=1;h<arguments.length;h++)ft[h]=arguments[h];if(ut.delegateTarget=this,!Tt.preDispatch||Tt.preDispatch.call(this,ut)!==!1){for(X=t.event.handlers.call(this,ut,xt),h=0;(W=X[h++])&&!ut.isPropagationStopped();)for(ut.currentTarget=W.elem,E=0;(q=W.handlers[E++])&&!ut.isImmediatePropagationStopped();)ut.rnamespace&&q.namespace!==!1&&!ut.rnamespace.test(q.namespace)||(ut.handleObj=q,ut.data=q.data,(M=((t.event.special[q.origType]||{}).handle||q.handler).apply(W.elem,ft))!==void 0&&(ut.result=M)===!1&&(ut.preventDefault(),ut.stopPropagation()));return Tt.postDispatch&&Tt.postDispatch.call(this,ut),ut.result}},handlers:function(e,h){var E,M,W,q,X,ft=[],ut=h.delegateCount,xt=e.target;if(ut&&xt.nodeType&&!(e.type==="click"&&1<=e.button)){for(;xt!==this;xt=xt.parentNode||this)if(xt.nodeType===1&&(e.type!=="click"||xt.disabled!==!0)){for(q=[],X={},E=0;E<ut;E++)X[W=(M=h[E]).selector+" "]===void 0&&(X[W]=M.needsContext?-1<t(W,this).index(xt):t.find(W,this,null,[xt]).length),X[W]&&q.push(M);q.length&&ft.push({elem:xt,handlers:q})}}return xt=this,ut<h.length&&ft.push({elem:xt,handlers:h.slice(ut)}),ft},addProp:function(e,h){Object.defineProperty(t.Event.prototype,e,{enumerable:!0,configurable:!0,get:l(h)?function(){if(this.originalEvent)return h(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(E){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:E})}})},fix:function(e){return e[t.expando]?e:new t.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var h=this||e;return Z.test(h.type)&&h.click&&m(h,"input")&&ye(h,"click",!0),!1},trigger:function(e){var h=this||e;return Z.test(h.type)&&h.click&&m(h,"input")&&ye(h,"click"),!0},_default:function(e){var h=e.target;return Z.test(h.type)&&h.click&&m(h,"input")&&mt.get(h,"click")||m(h,"a")}},beforeunload:{postDispatch:function(e){e.result!==void 0&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},t.removeEvent=function(e,h,E){e.removeEventListener&&e.removeEventListener(h,E)},t.Event=function(e,h){if(!(this instanceof t.Event))return new t.Event(e,h);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.defaultPrevented===void 0&&e.returnValue===!1?Ht:he,this.target=e.target&&e.target.nodeType===3?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,h&&t.extend(this,h),this.timeStamp=e&&e.timeStamp||Date.now(),this[t.expando]=!0},t.Event.prototype={constructor:t.Event,isDefaultPrevented:he,isPropagationStopped:he,isImmediatePropagationStopped:he,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Ht,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Ht,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Ht,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},t.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},t.event.addProp),t.each({focus:"focusin",blur:"focusout"},function(e,h){function E(M){if(v.documentMode){var W=mt.get(this,"handle"),q=t.event.fix(M);q.type=M.type==="focusin"?"focus":"blur",q.isSimulated=!0,W(M),q.target===q.currentTarget&&W(q)}else t.event.simulate(h,M.target,t.event.fix(M))}t.event.special[e]={setup:function(){var M;if(ye(this,e,!0),!v.documentMode)return!1;(M=mt.get(this,h))||this.addEventListener(h,E),mt.set(this,h,(M||0)+1)},trigger:function(){return ye(this,e),!0},teardown:function(){var M;if(!v.documentMode)return!1;(M=mt.get(this,h)-1)?mt.set(this,h,M):(this.removeEventListener(h,E),mt.remove(this,h))},_default:function(M){return mt.get(M.target,e)},delegateType:h},t.event.special[h]={setup:function(){var M=this.ownerDocument||this.document||this,W=v.documentMode?this:M,q=mt.get(W,h);q||(v.documentMode?this.addEventListener(h,E):M.addEventListener(e,E,!0)),mt.set(W,h,(q||0)+1)},teardown:function(){var M=this.ownerDocument||this.document||this,W=v.documentMode?this:M,q=mt.get(W,h)-1;q?mt.set(W,h,q):(v.documentMode?this.removeEventListener(h,E):M.removeEventListener(e,E,!0),mt.remove(W,h))}}}),t.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,h){t.event.special[e]={delegateType:h,bindType:h,handle:function(E){var M,W=E.relatedTarget,q=E.handleObj;return W&&(W===this||t.contains(this,W))||(E.type=q.origType,M=q.handler.apply(this,arguments),E.type=h),M}}}),t.fn.extend({on:function(e,h,E,M){return pe(this,e,h,E,M)},one:function(e,h,E,M){return pe(this,e,h,E,M,1)},off:function(e,h,E){var M,W;if(e&&e.preventDefault&&e.handleObj)return M=e.handleObj,t(e.delegateTarget).off(M.namespace?M.origType+"."+M.namespace:M.origType,M.selector,M.handler),this;if(typeof e=="object"){for(W in e)this.off(W,h,e[W]);return this}return h!==!1&&typeof h!="function"||(E=h,h=void 0),E===!1&&(E=he),this.each(function(){t.event.remove(this,e,E,h)})}});var fe=/<script|<style|<link/i,be=/checked\s*(?:[^=]|=\s*.checked.)/i,Re=/^\s*<!\[CDATA\[|\]\]>\s*$/g;function Le(e,h){return m(e,"table")&&m(h.nodeType!==11?h:h.firstChild,"tr")&&t(e).children("tbody")[0]||e}function rn(e){return e.type=(e.getAttribute("type")!==null)+"/"+e.type,e}function Ke(e){return(e.type||"").slice(0,5)==="true/"?e.type=e.type.slice(5):e.removeAttribute("type"),e}function on(e,h){var E,M,W,q,X,ft;if(h.nodeType===1){if(mt.hasData(e)&&(ft=mt.get(e).events))for(W in mt.remove(h,"handle events"),ft)for(E=0,M=ft[W].length;E<M;E++)t.event.add(h,W,ft[W][E]);zt.hasData(e)&&(q=zt.access(e),X=t.extend({},q),zt.set(h,X))}}function an(e,h,E,M){h=O(h);var W,q,X,ft,ut,xt,Tt=0,Nt=e.length,_t=Nt-1,Ft=h[0],Jt=l(Ft);if(Jt||1<Nt&&typeof Ft=="string"&&!d.checkClone&&be.test(Ft))return e.each(function(ae){var se=e.eq(ae);Jt&&(h[0]=Ft.call(this,ae,se.html())),an(se,h,E,M)});if(Nt&&(q=(W=Ut(h,e[0].ownerDocument,!1,e,M)).firstChild,W.childNodes.length===1&&(W=q),q||M)){for(ft=(X=t.map(jt(W,"script"),rn)).length;Tt<Nt;Tt++)ut=W,Tt!==_t&&(ut=t.clone(ut,!0,!0),ft&&t.merge(X,jt(ut,"script"))),E.call(e[Tt],ut,Tt);if(ft)for(xt=X[X.length-1].ownerDocument,t.map(X,Ke),Tt=0;Tt<ft;Tt++)ut=X[Tt],wt.test(ut.type||"")&&!mt.access(ut,"globalEval")&&t.contains(xt,ut)&&(ut.src&&(ut.type||"").toLowerCase()!=="module"?t._evalUrl&&!ut.noModule&&t._evalUrl(ut.src,{nonce:ut.nonce||ut.getAttribute("nonce")},xt):s(ut.textContent.replace(Re,""),ut,xt))}return e}function qn(e,h,E){for(var M,W=h?t.filter(h,e):e,q=0;(M=W[q])!=null;q++)E||M.nodeType!==1||t.cleanData(jt(M)),M.parentNode&&(E&&qt(M)&&Bt(jt(M,"script")),M.parentNode.removeChild(M));return e}t.extend({htmlPrefilter:function(e){return e},clone:function(e,h,E){var M,W,q,X,ft,ut,xt,Tt=e.cloneNode(!0),Nt=qt(e);if(!(d.noCloneChecked||e.nodeType!==1&&e.nodeType!==11||t.isXMLDoc(e)))for(X=jt(Tt),M=0,W=(q=jt(e)).length;M<W;M++)ft=q[M],ut=X[M],(xt=ut.nodeName.toLowerCase())==="input"&&Z.test(ft.type)?ut.checked=ft.checked:xt!=="input"&&xt!=="textarea"||(ut.defaultValue=ft.defaultValue);if(h)if(E)for(q=q||jt(e),X=X||jt(Tt),M=0,W=q.length;M<W;M++)on(q[M],X[M]);else on(e,Tt);return 0<(X=jt(Tt,"script")).length&&Bt(X,!Nt&&jt(e,"script")),Tt},cleanData:function(e){for(var h,E,M,W=t.event.special,q=0;(E=e[q])!==void 0;q++)if(Ct(E)){if(h=E[mt.expando]){if(h.events)for(M in h.events)W[M]?t.event.remove(E,M):t.removeEvent(E,M,h.handle);E[mt.expando]=void 0}E[zt.expando]&&(E[zt.expando]=void 0)}}}),t.fn.extend({detach:function(e){return qn(this,e,!0)},remove:function(e){return qn(this,e)},text:function(e){return lt(this,function(h){return h===void 0?t.text(this):this.empty().each(function(){this.nodeType!==1&&this.nodeType!==11&&this.nodeType!==9||(this.textContent=h)})},null,e,arguments.length)},append:function(){return an(this,arguments,function(e){this.nodeType!==1&&this.nodeType!==11&&this.nodeType!==9||Le(this,e).appendChild(e)})},prepend:function(){return an(this,arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var h=Le(this,e);h.insertBefore(e,h.firstChild)}})},before:function(){return an(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return an(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,h=0;(e=this[h])!=null;h++)e.nodeType===1&&(t.cleanData(jt(e,!1)),e.textContent="");return this},clone:function(e,h){return e=e!=null&&e,h=h==null?e:h,this.map(function(){return t.clone(this,e,h)})},html:function(e){return lt(this,function(h){var E=this[0]||{},M=0,W=this.length;if(h===void 0&&E.nodeType===1)return E.innerHTML;if(typeof h=="string"&&!fe.test(h)&&!Et[(tt.exec(h)||["",""])[1].toLowerCase()]){h=t.htmlPrefilter(h);try{for(;M<W;M++)(E=this[M]||{}).nodeType===1&&(t.cleanData(jt(E,!1)),E.innerHTML=h);E=0}catch{}}E&&this.empty().append(h)},null,e,arguments.length)},replaceWith:function(){var e=[];return an(this,arguments,function(h){var E=this.parentNode;t.inArray(this,e)<0&&(t.cleanData(jt(this)),E&&E.replaceChild(h,this))},e)}}),t.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,h){t.fn[e]=function(E){for(var M,W=[],q=t(E),X=q.length-1,ft=0;ft<=X;ft++)M=ft===X?this:this.clone(!0),t(q[ft])[h](M),L.apply(W,M.get());return this.pushStack(W)}});var Tn=new RegExp("^("+oe+")(?!px)[a-z%]+$","i"),En=/^--/,yn=function(e){var h=e.ownerDocument.defaultView;return h&&h.opener||(h=U),h.getComputedStyle(e)},Un=function(e,h,E){var M,W,q={};for(W in h)q[W]=e.style[W],e.style[W]=h[W];for(W in M=E.call(e),h)e.style[W]=q[W];return M},vr=new RegExp(Rt.join("|"),"i");function fn(e,h,E){var M,W,q,X,ft=En.test(h),ut=e.style;return(E=E||yn(e))&&(X=E.getPropertyValue(h)||E[h],ft&&X&&(X=X.replace(N,"$1")||void 0),X!==""||qt(e)||(X=t.style(e,h)),!d.pixelBoxStyles()&&Tn.test(X)&&vr.test(h)&&(M=ut.width,W=ut.minWidth,q=ut.maxWidth,ut.minWidth=ut.maxWidth=ut.width=X,X=E.width,ut.width=M,ut.minWidth=W,ut.maxWidth=q)),X!==void 0?X+"":X}function $n(e,h){return{get:function(){if(!e())return(this.get=h).apply(this,arguments);delete this.get}}}(function(){function e(){if(xt){ut.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",xt.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",Wt.appendChild(ut).appendChild(xt);var Tt=U.getComputedStyle(xt);E=Tt.top!=="1%",ft=h(Tt.marginLeft)===12,xt.style.right="60%",q=h(Tt.right)===36,M=h(Tt.width)===36,xt.style.position="absolute",W=h(xt.offsetWidth/3)===12,Wt.removeChild(ut),xt=null}}function h(Tt){return Math.round(parseFloat(Tt))}var E,M,W,q,X,ft,ut=v.createElement("div"),xt=v.createElement("div");xt.style&&(xt.style.backgroundClip="content-box",xt.cloneNode(!0).style.backgroundClip="",d.clearCloneStyle=xt.style.backgroundClip==="content-box",t.extend(d,{boxSizingReliable:function(){return e(),M},pixelBoxStyles:function(){return e(),q},pixelPosition:function(){return e(),E},reliableMarginLeft:function(){return e(),ft},scrollboxSize:function(){return e(),W},reliableTrDimensions:function(){var Tt,Nt,_t,Ft;return X==null&&(Tt=v.createElement("table"),Nt=v.createElement("tr"),_t=v.createElement("div"),Tt.style.cssText="position:absolute;left:-11111px;border-collapse:separate",Nt.style.cssText="box-sizing:content-box;border:1px solid",Nt.style.height="1px",_t.style.height="9px",_t.style.display="block",Wt.appendChild(Tt).appendChild(Nt).appendChild(_t),Ft=U.getComputedStyle(Nt),X=parseInt(Ft.height,10)+parseInt(Ft.borderTopWidth,10)+parseInt(Ft.borderBottomWidth,10)===Nt.offsetHeight,Wt.removeChild(Tt)),X}}))})();var Yn=["Webkit","Moz","ms"],Qn=v.createElement("div").style,Xn={};function An(e){var h=t.cssProps[e]||Xn[e];return h||(e in Qn?e:Xn[e]=function(E){for(var M=E[0].toUpperCase()+E.slice(1),W=Yn.length;W--;)if((E=Yn[W]+M)in Qn)return E}(e)||e)}var yr=/^(none|table(?!-c[ea]).+)/,br={position:"absolute",visibility:"hidden",display:"block"},Gn={letterSpacing:"0",fontWeight:"400"};function Kn(e,h,E){var M=ne.exec(h);return M?Math.max(0,M[2]-(E||0))+(M[3]||"px"):h}function Mn(e,h,E,M,W,q){var X=h==="width"?1:0,ft=0,ut=0,xt=0;if(E===(M?"border":"content"))return 0;for(;X<4;X+=2)E==="margin"&&(xt+=t.css(e,E+Rt[X],!0,W)),M?(E==="content"&&(ut-=t.css(e,"padding"+Rt[X],!0,W)),E!=="margin"&&(ut-=t.css(e,"border"+Rt[X]+"Width",!0,W))):(ut+=t.css(e,"padding"+Rt[X],!0,W),E!=="padding"?ut+=t.css(e,"border"+Rt[X]+"Width",!0,W):ft+=t.css(e,"border"+Rt[X]+"Width",!0,W));return!M&&0<=q&&(ut+=Math.max(0,Math.ceil(e["offset"+h[0].toUpperCase()+h.slice(1)]-q-ut-ft-.5))||0),ut+xt}function Jn(e,h,E){var M=yn(e),W=(!d.boxSizingReliable()||E)&&t.css(e,"boxSizing",!1,M)==="border-box",q=W,X=fn(e,h,M),ft="offset"+h[0].toUpperCase()+h.slice(1);if(Tn.test(X)){if(!E)return X;X="auto"}return(!d.boxSizingReliable()&&W||!d.reliableTrDimensions()&&m(e,"tr")||X==="auto"||!parseFloat(X)&&t.css(e,"display",!1,M)==="inline")&&e.getClientRects().length&&(W=t.css(e,"boxSizing",!1,M)==="border-box",(q=ft in e)&&(X=e[ft])),(X=parseFloat(X)||0)+Mn(e,h,E||(W?"border":"content"),q,M,X)+"px"}function Be(e,h,E,M,W){return new Be.prototype.init(e,h,E,M,W)}t.extend({cssHooks:{opacity:{get:function(e,h){if(h){var E=fn(e,"opacity");return E===""?"1":E}}}},cssNumber:{animationIterationCount:!0,aspectRatio:!0,borderImageSlice:!0,columnCount:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,scale:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeMiterlimit:!0,strokeOpacity:!0},cssProps:{},style:function(e,h,E,M){if(e&&e.nodeType!==3&&e.nodeType!==8&&e.style){var W,q,X,ft=Pt(h),ut=En.test(h),xt=e.style;if(ut||(h=An(ft)),X=t.cssHooks[h]||t.cssHooks[ft],E===void 0)return X&&"get"in X&&(W=X.get(e,!1,M))!==void 0?W:xt[h];(q=typeof E)=="string"&&(W=ne.exec(E))&&W[1]&&(E=D(e,h,W),q="number"),E!=null&&E==E&&(q!=="number"||ut||(E+=W&&W[3]||(t.cssNumber[ft]?"":"px")),d.clearCloneStyle||E!==""||h.indexOf("background")!==0||(xt[h]="inherit"),X&&"set"in X&&(E=X.set(e,E,M))===void 0||(ut?xt.setProperty(h,E):xt[h]=E))}},css:function(e,h,E,M){var W,q,X,ft=Pt(h);return En.test(h)||(h=An(ft)),(X=t.cssHooks[h]||t.cssHooks[ft])&&"get"in X&&(W=X.get(e,!0,E)),W===void 0&&(W=fn(e,h,M)),W==="normal"&&h in Gn&&(W=Gn[h]),E===""||E?(q=parseFloat(W),E===!0||isFinite(q)?q||0:W):W}}),t.each(["height","width"],function(e,h){t.cssHooks[h]={get:function(E,M,W){if(M)return!yr.test(t.css(E,"display"))||E.getClientRects().length&&E.getBoundingClientRect().width?Jn(E,h,W):Un(E,br,function(){return Jn(E,h,W)})},set:function(E,M,W){var q,X=yn(E),ft=!d.scrollboxSize()&&X.position==="absolute",ut=(ft||W)&&t.css(E,"boxSizing",!1,X)==="border-box",xt=W?Mn(E,h,W,ut,X):0;return ut&&ft&&(xt-=Math.ceil(E["offset"+h[0].toUpperCase()+h.slice(1)]-parseFloat(X[h])-Mn(E,h,"border",!1,X)-.5)),xt&&(q=ne.exec(M))&&(q[3]||"px")!=="px"&&(E.style[h]=M,M=t.css(E,h)),Kn(0,M,xt)}}}),t.cssHooks.marginLeft=$n(d.reliableMarginLeft,function(e,h){if(h)return(parseFloat(fn(e,"marginLeft"))||e.getBoundingClientRect().left-Un(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),t.each({margin:"",padding:"",border:"Width"},function(e,h){t.cssHooks[e+h]={expand:function(E){for(var M=0,W={},q=typeof E=="string"?E.split(" "):[E];M<4;M++)W[e+Rt[M]+h]=q[M]||q[M-2]||q[0];return W}},e!=="margin"&&(t.cssHooks[e+h].set=Kn)}),t.fn.extend({css:function(e,h){return lt(this,function(E,M,W){var q,X,ft={},ut=0;if(Array.isArray(M)){for(q=yn(E),X=M.length;ut<X;ut++)ft[M[ut]]=t.css(E,M[ut],!1,q);return ft}return W!==void 0?t.style(E,M,W):t.css(E,M)},e,h,1<arguments.length)}}),((t.Tween=Be).prototype={constructor:Be,init:function(e,h,E,M,W,q){this.elem=e,this.prop=E,this.easing=W||t.easing._default,this.options=h,this.start=this.now=this.cur(),this.end=M,this.unit=q||(t.cssNumber[E]?"":"px")},cur:function(){var e=Be.propHooks[this.prop];return e&&e.get?e.get(this):Be.propHooks._default.get(this)},run:function(e){var h,E=Be.propHooks[this.prop];return this.options.duration?this.pos=h=t.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=h=e,this.now=(this.end-this.start)*h+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),E&&E.set?E.set(this):Be.propHooks._default.set(this),this}}).init.prototype=Be.prototype,(Be.propHooks={_default:{get:function(e){var h;return e.elem.nodeType!==1||e.elem[e.prop]!=null&&e.elem.style[e.prop]==null?e.elem[e.prop]:(h=t.css(e.elem,e.prop,""))&&h!=="auto"?h:0},set:function(e){t.fx.step[e.prop]?t.fx.step[e.prop](e):e.elem.nodeType!==1||!t.cssHooks[e.prop]&&e.elem.style[An(e.prop)]==null?e.elem[e.prop]=e.now:t.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=Be.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},t.easing={linear:function(e){return e},swing:function(e){return .5-Math.cos(e*Math.PI)/2},_default:"swing"},t.fx=Be.prototype.init,t.fx.step={};var sn,bn,ln,Zn,xr=/^(?:toggle|show|hide)$/,wr=/queueHooks$/;function Pn(){bn&&(v.hidden===!1&&U.requestAnimationFrame?U.requestAnimationFrame(Pn):U.setTimeout(Pn,t.fx.interval),t.fx.tick())}function tr(){return U.setTimeout(function(){sn=void 0}),sn=Date.now()}function xn(e,h){var E,M=0,W={height:e};for(h=h?1:0;M<4;M+=2-h)W["margin"+(E=Rt[M])]=W["padding"+E]=e;return h&&(W.opacity=W.width=e),W}function er(e,h,E){for(var M,W=(We.tweeners[h]||[]).concat(We.tweeners["*"]),q=0,X=W.length;q<X;q++)if(M=W[q].call(E,h,e))return M}function We(e,h,E){var M,W,q=0,X=We.prefilters.length,ft=t.Deferred().always(function(){delete ut.elem}),ut=function(){if(W)return!1;for(var Nt=sn||tr(),_t=Math.max(0,xt.startTime+xt.duration-Nt),Ft=1-(_t/xt.duration||0),Jt=0,ae=xt.tweens.length;Jt<ae;Jt++)xt.tweens[Jt].run(Ft);return ft.notifyWith(e,[xt,Ft,_t]),Ft<1&&ae?_t:(ae||ft.notifyWith(e,[xt,1,0]),ft.resolveWith(e,[xt]),!1)},xt=ft.promise({elem:e,props:t.extend({},h),opts:t.extend(!0,{specialEasing:{},easing:t.easing._default},E),originalProperties:h,originalOptions:E,startTime:sn||tr(),duration:E.duration,tweens:[],createTween:function(Nt,_t){var Ft=t.Tween(e,xt.opts,Nt,_t,xt.opts.specialEasing[Nt]||xt.opts.easing);return xt.tweens.push(Ft),Ft},stop:function(Nt){var _t=0,Ft=Nt?xt.tweens.length:0;if(W)return this;for(W=!0;_t<Ft;_t++)xt.tweens[_t].run(1);return Nt?(ft.notifyWith(e,[xt,1,0]),ft.resolveWith(e,[xt,Nt])):ft.rejectWith(e,[xt,Nt]),this}}),Tt=xt.props;for(!function(Nt,_t){var Ft,Jt,ae,se,Se;for(Ft in Nt)if(ae=_t[Jt=Pt(Ft)],se=Nt[Ft],Array.isArray(se)&&(ae=se[1],se=Nt[Ft]=se[0]),Ft!==Jt&&(Nt[Jt]=se,delete Nt[Ft]),(Se=t.cssHooks[Jt])&&"expand"in Se)for(Ft in se=Se.expand(se),delete Nt[Jt],se)Ft in Nt||(Nt[Ft]=se[Ft],_t[Ft]=ae);else _t[Jt]=ae}(Tt,xt.opts.specialEasing);q<X;q++)if(M=We.prefilters[q].call(xt,e,Tt,xt.opts))return l(M.stop)&&(t._queueHooks(xt.elem,xt.opts.queue).stop=M.stop.bind(M)),M;return t.map(Tt,er,xt),l(xt.opts.start)&&xt.opts.start.call(e,xt),xt.progress(xt.opts.progress).done(xt.opts.done,xt.opts.complete).fail(xt.opts.fail).always(xt.opts.always),t.fx.timer(t.extend(ut,{elem:e,anim:xt,queue:xt.opts.queue})),xt}t.Animation=t.extend(We,{tweeners:{"*":[function(e,h){var E=this.createTween(e,h);return D(E.elem,e,ne.exec(h),E),E}]},tweener:function(e,h){l(e)?(h=e,e=["*"]):e=e.match(rt);for(var E,M=0,W=e.length;M<W;M++)E=e[M],We.tweeners[E]=We.tweeners[E]||[],We.tweeners[E].unshift(h)},prefilters:[function(e,h,E){var M,W,q,X,ft,ut,xt,Tt,Nt="width"in h||"height"in h,_t=this,Ft={},Jt=e.style,ae=e.nodeType&&Zt(e),se=mt.get(e,"fxshow");for(M in E.queue||((X=t._queueHooks(e,"fx")).unqueued==null&&(X.unqueued=0,ft=X.empty.fire,X.empty.fire=function(){X.unqueued||ft()}),X.unqueued++,_t.always(function(){_t.always(function(){X.unqueued--,t.queue(e,"fx").length||X.empty.fire()})})),h)if(W=h[M],xr.test(W)){if(delete h[M],q=q||W==="toggle",W===(ae?"hide":"show")){if(W!=="show"||!se||se[M]===void 0)continue;ae=!0}Ft[M]=se&&se[M]||t.style(e,M)}if((ut=!t.isEmptyObject(h))||!t.isEmptyObject(Ft))for(M in Nt&&e.nodeType===1&&(E.overflow=[Jt.overflow,Jt.overflowX,Jt.overflowY],(xt=se&&se.display)==null&&(xt=mt.get(e,"display")),(Tt=t.css(e,"display"))==="none"&&(xt?Tt=xt:(y([e],!0),xt=e.style.display||xt,Tt=t.css(e,"display"),y([e]))),(Tt==="inline"||Tt==="inline-block"&&xt!=null)&&t.css(e,"float")==="none"&&(ut||(_t.done(function(){Jt.display=xt}),xt==null&&(Tt=Jt.display,xt=Tt==="none"?"":Tt)),Jt.display="inline-block")),E.overflow&&(Jt.overflow="hidden",_t.always(function(){Jt.overflow=E.overflow[0],Jt.overflowX=E.overflow[1],Jt.overflowY=E.overflow[2]})),ut=!1,Ft)ut||(se?"hidden"in se&&(ae=se.hidden):se=mt.access(e,"fxshow",{display:xt}),q&&(se.hidden=!ae),ae&&y([e],!0),_t.done(function(){for(M in ae||y([e]),mt.remove(e,"fxshow"),Ft)t.style(e,M,Ft[M])})),ut=er(ae?se[M]:0,M,_t),M in se||(se[M]=ut.start,ae&&(ut.end=ut.start,ut.start=0))}],prefilter:function(e,h){h?We.prefilters.unshift(e):We.prefilters.push(e)}}),t.speed=function(e,h,E){var M=e&&typeof e=="object"?t.extend({},e):{complete:E||!E&&h||l(e)&&e,duration:e,easing:E&&h||h&&!l(h)&&h};return t.fx.off?M.duration=0:typeof M.duration!="number"&&(M.duration in t.fx.speeds?M.duration=t.fx.speeds[M.duration]:M.duration=t.fx.speeds._default),M.queue!=null&&M.queue!==!0||(M.queue="fx"),M.old=M.complete,M.complete=function(){l(M.old)&&M.old.call(this),M.queue&&t.dequeue(this,M.queue)},M},t.fn.extend({fadeTo:function(e,h,E,M){return this.filter(Zt).css("opacity",0).show().end().animate({opacity:h},e,E,M)},animate:function(e,h,E,M){var W=t.isEmptyObject(e),q=t.speed(h,E,M),X=function(){var ft=We(this,t.extend({},e),q);(W||mt.get(this,"finish"))&&ft.stop(!0)};return X.finish=X,W||q.queue===!1?this.each(X):this.queue(q.queue,X)},stop:function(e,h,E){var M=function(W){var q=W.stop;delete W.stop,q(E)};return typeof e!="string"&&(E=h,h=e,e=void 0),h&&this.queue(e||"fx",[]),this.each(function(){var W=!0,q=e!=null&&e+"queueHooks",X=t.timers,ft=mt.get(this);if(q)ft[q]&&ft[q].stop&&M(ft[q]);else for(q in ft)ft[q]&&ft[q].stop&&wr.test(q)&&M(ft[q]);for(q=X.length;q--;)X[q].elem!==this||e!=null&&X[q].queue!==e||(X[q].anim.stop(E),W=!1,X.splice(q,1));!W&&E||t.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var h,E=mt.get(this),M=E[e+"queue"],W=E[e+"queueHooks"],q=t.timers,X=M?M.length:0;for(E.finish=!0,t.queue(this,e,[]),W&&W.stop&&W.stop.call(this,!0),h=q.length;h--;)q[h].elem===this&&q[h].queue===e&&(q[h].anim.stop(!0),q.splice(h,1));for(h=0;h<X;h++)M[h]&&M[h].finish&&M[h].finish.call(this);delete E.finish})}}),t.each(["toggle","show","hide"],function(e,h){var E=t.fn[h];t.fn[h]=function(M,W,q){return M==null||typeof M=="boolean"?E.apply(this,arguments):this.animate(xn(h,!0),M,W,q)}}),t.each({slideDown:xn("show"),slideUp:xn("hide"),slideToggle:xn("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,h){t.fn[e]=function(E,M,W){return this.animate(h,E,M,W)}}),t.timers=[],t.fx.tick=function(){var e,h=0,E=t.timers;for(sn=Date.now();h<E.length;h++)(e=E[h])()||E[h]!==e||E.splice(h--,1);E.length||t.fx.stop(),sn=void 0},t.fx.timer=function(e){t.timers.push(e),t.fx.start()},t.fx.interval=13,t.fx.start=function(){bn||(bn=!0,Pn())},t.fx.stop=function(){bn=null},t.fx.speeds={slow:600,fast:200,_default:400},t.fn.delay=function(e,h){return e=t.fx&&t.fx.speeds[e]||e,h=h||"fx",this.queue(h,function(E,M){var W=U.setTimeout(E,e);M.stop=function(){U.clearTimeout(W)}})},ln=v.createElement("input"),Zn=v.createElement("select").appendChild(v.createElement("option")),ln.type="checkbox",d.checkOn=ln.value!=="",d.optSelected=Zn.selected,(ln=v.createElement("input")).value="t",ln.type="radio",d.radioValue=ln.value==="t";var nr,dn=t.expr.attrHandle;t.fn.extend({attr:function(e,h){return lt(this,t.attr,e,h,1<arguments.length)},removeAttr:function(e){return this.each(function(){t.removeAttr(this,e)})}}),t.extend({attr:function(e,h,E){var M,W,q=e.nodeType;if(q!==3&&q!==8&&q!==2)return typeof e.getAttribute>"u"?t.prop(e,h,E):(q===1&&t.isXMLDoc(e)||(W=t.attrHooks[h.toLowerCase()]||(t.expr.match.bool.test(h)?nr:void 0)),E!==void 0?E===null?void t.removeAttr(e,h):W&&"set"in W&&(M=W.set(e,E,h))!==void 0?M:(e.setAttribute(h,E+""),E):W&&"get"in W&&(M=W.get(e,h))!==null?M:(M=t.find.attr(e,h))==null?void 0:M)},attrHooks:{type:{set:function(e,h){if(!d.radioValue&&h==="radio"&&m(e,"input")){var E=e.value;return e.setAttribute("type",h),E&&(e.value=E),h}}}},removeAttr:function(e,h){var E,M=0,W=h&&h.match(rt);if(W&&e.nodeType===1)for(;E=W[M++];)e.removeAttribute(E)}}),nr={set:function(e,h,E){return h===!1?t.removeAttr(e,E):e.setAttribute(E,E),E}},t.each(t.expr.match.bool.source.match(/\w+/g),function(e,h){var E=dn[h]||t.find.attr;dn[h]=function(M,W,q){var X,ft,ut=W.toLowerCase();return q||(ft=dn[ut],dn[ut]=X,X=E(M,W,q)!=null?ut:null,dn[ut]=ft),X}});var _r=/^(?:input|select|textarea|button)$/i,Sr=/^(?:a|area)$/i;function Je(e){return(e.match(rt)||[]).join(" ")}function Ze(e){return e.getAttribute&&e.getAttribute("class")||""}function In(e){return Array.isArray(e)?e:typeof e=="string"&&e.match(rt)||[]}t.fn.extend({prop:function(e,h){return lt(this,t.prop,e,h,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[t.propFix[e]||e]})}}),t.extend({prop:function(e,h,E){var M,W,q=e.nodeType;if(q!==3&&q!==8&&q!==2)return q===1&&t.isXMLDoc(e)||(h=t.propFix[h]||h,W=t.propHooks[h]),E!==void 0?W&&"set"in W&&(M=W.set(e,E,h))!==void 0?M:e[h]=E:W&&"get"in W&&(M=W.get(e,h))!==null?M:e[h]},propHooks:{tabIndex:{get:function(e){var h=t.find.attr(e,"tabindex");return h?parseInt(h,10):_r.test(e.nodeName)||Sr.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),d.optSelected||(t.propHooks.selected={get:function(e){var h=e.parentNode;return h&&h.parentNode&&h.parentNode.selectedIndex,null},set:function(e){var h=e.parentNode;h&&(h.selectedIndex,h.parentNode&&h.parentNode.selectedIndex)}}),t.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){t.propFix[this.toLowerCase()]=this}),t.fn.extend({addClass:function(e){var h,E,M,W,q,X;return l(e)?this.each(function(ft){t(this).addClass(e.call(this,ft,Ze(this)))}):(h=In(e)).length?this.each(function(){if(M=Ze(this),E=this.nodeType===1&&" "+Je(M)+" "){for(q=0;q<h.length;q++)W=h[q],E.indexOf(" "+W+" ")<0&&(E+=W+" ");X=Je(E),M!==X&&this.setAttribute("class",X)}}):this},removeClass:function(e){var h,E,M,W,q,X;return l(e)?this.each(function(ft){t(this).removeClass(e.call(this,ft,Ze(this)))}):arguments.length?(h=In(e)).length?this.each(function(){if(M=Ze(this),E=this.nodeType===1&&" "+Je(M)+" "){for(q=0;q<h.length;q++)for(W=h[q];-1<E.indexOf(" "+W+" ");)E=E.replace(" "+W+" "," ");X=Je(E),M!==X&&this.setAttribute("class",X)}}):this:this.attr("class","")},toggleClass:function(e,h){var E,M,W,q,X=typeof e,ft=X==="string"||Array.isArray(e);return l(e)?this.each(function(ut){t(this).toggleClass(e.call(this,ut,Ze(this),h),h)}):typeof h=="boolean"&&ft?h?this.addClass(e):this.removeClass(e):(E=In(e),this.each(function(){if(ft)for(q=t(this),W=0;W<E.length;W++)M=E[W],q.hasClass(M)?q.removeClass(M):q.addClass(M);else e!==void 0&&X!=="boolean"||((M=Ze(this))&&mt.set(this,"__className__",M),this.setAttribute&&this.setAttribute("class",M||e===!1?"":mt.get(this,"__className__")||""))}))},hasClass:function(e){var h,E,M=0;for(h=" "+e+" ";E=this[M++];)if(E.nodeType===1&&-1<(" "+Je(Ze(E))+" ").indexOf(h))return!0;return!1}});var Cr=/\r/g;t.fn.extend({val:function(e){var h,E,M,W=this[0];return arguments.length?(M=l(e),this.each(function(q){var X;this.nodeType===1&&((X=M?e.call(this,q,t(this).val()):e)==null?X="":typeof X=="number"?X+="":Array.isArray(X)&&(X=t.map(X,function(ft){return ft==null?"":ft+""})),(h=t.valHooks[this.type]||t.valHooks[this.nodeName.toLowerCase()])&&"set"in h&&h.set(this,X,"value")!==void 0||(this.value=X))})):W?(h=t.valHooks[W.type]||t.valHooks[W.nodeName.toLowerCase()])&&"get"in h&&(E=h.get(W,"value"))!==void 0?E:typeof(E=W.value)=="string"?E.replace(Cr,""):E==null?"":E:void 0}}),t.extend({valHooks:{option:{get:function(e){var h=t.find.attr(e,"value");return h!=null?h:Je(t.text(e))}},select:{get:function(e){var h,E,M,W=e.options,q=e.selectedIndex,X=e.type==="select-one",ft=X?null:[],ut=X?q+1:W.length;for(M=q<0?ut:X?q:0;M<ut;M++)if(((E=W[M]).selected||M===q)&&!E.disabled&&(!E.parentNode.disabled||!m(E.parentNode,"optgroup"))){if(h=t(E).val(),X)return h;ft.push(h)}return ft},set:function(e,h){for(var E,M,W=e.options,q=t.makeArray(h),X=W.length;X--;)((M=W[X]).selected=-1<t.inArray(t.valHooks.option.get(M),q))&&(E=!0);return E||(e.selectedIndex=-1),q}}}}),t.each(["radio","checkbox"],function(){t.valHooks[this]={set:function(e,h){if(Array.isArray(h))return e.checked=-1<t.inArray(t(e).val(),h)}},d.checkOn||(t.valHooks[this].get=function(e){return e.getAttribute("value")===null?"on":e.value})});var hn=U.location,rr={guid:Date.now()},Dn=/\?/;t.parseXML=function(e){var h,E;if(!e||typeof e!="string")return null;try{h=new U.DOMParser().parseFromString(e,"text/xml")}catch{}return E=h&&h.getElementsByTagName("parsererror")[0],h&&!E||t.error("Invalid XML: "+(E?t.map(E.childNodes,function(M){return M.textContent}).join(`
2
- `):e)),h};var ir=/^(?:focusinfocus|focusoutblur)$/,or=function(e){e.stopPropagation()};t.extend(t.event,{trigger:function(e,h,E,M){var W,q,X,ft,ut,xt,Tt,Nt,_t=[E||v],Ft=_.call(e,"type")?e.type:e,Jt=_.call(e,"namespace")?e.namespace.split("."):[];if(q=Nt=X=E=E||v,E.nodeType!==3&&E.nodeType!==8&&!ir.test(Ft+t.event.triggered)&&(-1<Ft.indexOf(".")&&(Ft=(Jt=Ft.split(".")).shift(),Jt.sort()),ut=Ft.indexOf(":")<0&&"on"+Ft,(e=e[t.expando]?e:new t.Event(Ft,typeof e=="object"&&e)).isTrigger=M?2:3,e.namespace=Jt.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+Jt.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=E),h=h==null?[e]:t.makeArray(h,[e]),Tt=t.event.special[Ft]||{},M||!Tt.trigger||Tt.trigger.apply(E,h)!==!1)){if(!M&&!Tt.noBubble&&!f(E)){for(ft=Tt.delegateType||Ft,ir.test(ft+Ft)||(q=q.parentNode);q;q=q.parentNode)_t.push(q),X=q;X===(E.ownerDocument||v)&&_t.push(X.defaultView||X.parentWindow||U)}for(W=0;(q=_t[W++])&&!e.isPropagationStopped();)Nt=q,e.type=1<W?ft:Tt.bindType||Ft,(xt=(mt.get(q,"events")||Object.create(null))[e.type]&&mt.get(q,"handle"))&&xt.apply(q,h),(xt=ut&&q[ut])&&xt.apply&&Ct(q)&&(e.result=xt.apply(q,h),e.result===!1&&e.preventDefault());return e.type=Ft,M||e.isDefaultPrevented()||Tt._default&&Tt._default.apply(_t.pop(),h)!==!1||!Ct(E)||ut&&l(E[Ft])&&!f(E)&&((X=E[ut])&&(E[ut]=null),t.event.triggered=Ft,e.isPropagationStopped()&&Nt.addEventListener(Ft,or),E[Ft](),e.isPropagationStopped()&&Nt.removeEventListener(Ft,or),t.event.triggered=void 0,X&&(E[ut]=X)),e.result}},simulate:function(e,h,E){var M=t.extend(new t.Event,E,{type:e,isSimulated:!0});t.event.trigger(M,null,h)}}),t.fn.extend({trigger:function(e,h){return this.each(function(){t.event.trigger(e,h,this)})},triggerHandler:function(e,h){var E=this[0];if(E)return t.event.trigger(e,h,E,!0)}});var kr=/\[\]$/,ar=/\r?\n/g,Tr=/^(?:submit|button|image|reset|file)$/i,Er=/^(?:input|select|textarea|keygen)/i;function On(e,h,E,M){var W;if(Array.isArray(h))t.each(h,function(q,X){E||kr.test(e)?M(e,X):On(e+"["+(typeof X=="object"&&X!=null?q:"")+"]",X,E,M)});else if(E||i(h)!=="object")M(e,h);else for(W in h)On(e+"["+W+"]",h[W],E,M)}t.param=function(e,h){var E,M=[],W=function(q,X){var ft=l(X)?X():X;M[M.length]=encodeURIComponent(q)+"="+encodeURIComponent(ft==null?"":ft)};if(e==null)return"";if(Array.isArray(e)||e.jquery&&!t.isPlainObject(e))t.each(e,function(){W(this.name,this.value)});else for(E in e)On(E,e[E],h,W);return M.join("&")},t.fn.extend({serialize:function(){return t.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=t.prop(this,"elements");return e?t.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!t(this).is(":disabled")&&Er.test(this.nodeName)&&!Tr.test(e)&&(this.checked||!Z.test(e))}).map(function(e,h){var E=t(this).val();return E==null?null:Array.isArray(E)?t.map(E,function(M){return{name:h.name,value:M.replace(ar,`\r
3
- `)}}):{name:h.name,value:E.replace(ar,`\r
4
- `)}}).get()}});var Ar=/%20/g,Mr=/#.*$/,Pr=/([?&])_=[^&]*/,Ir=/^(.*?):[ \t]*([^\r\n]*)$/gm,Dr=/^(?:GET|HEAD)$/,Or=/^\/\//,sr={},Nn={},lr="*/".concat("*"),Ln=v.createElement("a");function ur(e){return function(h,E){typeof h!="string"&&(E=h,h="*");var M,W=0,q=h.toLowerCase().match(rt)||[];if(l(E))for(;M=q[W++];)M[0]==="+"?(M=M.slice(1)||"*",(e[M]=e[M]||[]).unshift(E)):(e[M]=e[M]||[]).push(E)}}function cr(e,h,E,M){var W={},q=e===Nn;function X(ft){var ut;return W[ft]=!0,t.each(e[ft]||[],function(xt,Tt){var Nt=Tt(h,E,M);return typeof Nt!="string"||q||W[Nt]?q?!(ut=Nt):void 0:(h.dataTypes.unshift(Nt),X(Nt),!1)}),ut}return X(h.dataTypes[0])||!W["*"]&&X("*")}function Fn(e,h){var E,M,W=t.ajaxSettings.flatOptions||{};for(E in h)h[E]!==void 0&&((W[E]?e:M||(M={}))[E]=h[E]);return M&&t.extend(!0,e,M),e}Ln.href=hn.href,t.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:hn.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(hn.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":lr,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":t.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,h){return h?Fn(Fn(e,t.ajaxSettings),h):Fn(t.ajaxSettings,e)},ajaxPrefilter:ur(sr),ajaxTransport:ur(Nn),ajax:function(e,h){typeof e=="object"&&(h=e,e=void 0),h=h||{};var E,M,W,q,X,ft,ut,xt,Tt,Nt,_t=t.ajaxSetup({},h),Ft=_t.context||_t,Jt=_t.context&&(Ft.nodeType||Ft.jquery)?t(Ft):t.event,ae=t.Deferred(),se=t.Callbacks("once memory"),Se=_t.statusCode||{},Ae={},ze={},qe="canceled",de={readyState:0,getResponseHeader:function(me){var _e;if(ut){if(!q)for(q={};_e=Ir.exec(W);)q[_e[1].toLowerCase()+" "]=(q[_e[1].toLowerCase()+" "]||[]).concat(_e[2]);_e=q[me.toLowerCase()+" "]}return _e==null?null:_e.join(", ")},getAllResponseHeaders:function(){return ut?W:null},setRequestHeader:function(me,_e){return ut==null&&(me=ze[me.toLowerCase()]=ze[me.toLowerCase()]||me,Ae[me]=_e),this},overrideMimeType:function(me){return ut==null&&(_t.mimeType=me),this},statusCode:function(me){var _e;if(me)if(ut)de.always(me[de.status]);else for(_e in me)Se[_e]=[Se[_e],me[_e]];return this},abort:function(me){var _e=me||qe;return E&&E.abort(_e),tn(0,_e),this}};if(ae.promise(de),_t.url=((e||_t.url||hn.href)+"").replace(Or,hn.protocol+"//"),_t.type=h.method||h.type||_t.method||_t.type,_t.dataTypes=(_t.dataType||"*").toLowerCase().match(rt)||[""],_t.crossDomain==null){ft=v.createElement("a");try{ft.href=_t.url,ft.href=ft.href,_t.crossDomain=Ln.protocol+"//"+Ln.host!=ft.protocol+"//"+ft.host}catch{_t.crossDomain=!0}}if(_t.data&&_t.processData&&typeof _t.data!="string"&&(_t.data=t.param(_t.data,_t.traditional)),cr(sr,_t,h,de),ut)return de;for(Tt in(xt=t.event&&_t.global)&&t.active++==0&&t.event.trigger("ajaxStart"),_t.type=_t.type.toUpperCase(),_t.hasContent=!Dr.test(_t.type),M=_t.url.replace(Mr,""),_t.hasContent?_t.data&&_t.processData&&(_t.contentType||"").indexOf("application/x-www-form-urlencoded")===0&&(_t.data=_t.data.replace(Ar,"+")):(Nt=_t.url.slice(M.length),_t.data&&(_t.processData||typeof _t.data=="string")&&(M+=(Dn.test(M)?"&":"?")+_t.data,delete _t.data),_t.cache===!1&&(M=M.replace(Pr,"$1"),Nt=(Dn.test(M)?"&":"?")+"_="+rr.guid+++Nt),_t.url=M+Nt),_t.ifModified&&(t.lastModified[M]&&de.setRequestHeader("If-Modified-Since",t.lastModified[M]),t.etag[M]&&de.setRequestHeader("If-None-Match",t.etag[M])),(_t.data&&_t.hasContent&&_t.contentType!==!1||h.contentType)&&de.setRequestHeader("Content-Type",_t.contentType),de.setRequestHeader("Accept",_t.dataTypes[0]&&_t.accepts[_t.dataTypes[0]]?_t.accepts[_t.dataTypes[0]]+(_t.dataTypes[0]!=="*"?", "+lr+"; q=0.01":""):_t.accepts["*"]),_t.headers)de.setRequestHeader(Tt,_t.headers[Tt]);if(_t.beforeSend&&(_t.beforeSend.call(Ft,de,_t)===!1||ut))return de.abort();if(qe="abort",se.add(_t.complete),de.done(_t.success),de.fail(_t.error),E=cr(Nn,_t,h,de)){if(de.readyState=1,xt&&Jt.trigger("ajaxSend",[de,_t]),ut)return de;_t.async&&0<_t.timeout&&(X=U.setTimeout(function(){de.abort("timeout")},_t.timeout));try{ut=!1,E.send(Ae,tn)}catch(me){if(ut)throw me;tn(-1,me)}}else tn(-1,"No Transport");function tn(me,_e,gn,jn){var Ue,mn,Ye,Qe,un,je=_e;ut||(ut=!0,X&&U.clearTimeout(X),E=void 0,W=jn||"",de.readyState=0<me?4:0,Ue=200<=me&&me<300||me===304,gn&&(Qe=function(Me,Te,De){for(var Xe,Oe,te,Ce,ke=Me.contents,xe=Me.dataTypes;xe[0]==="*";)xe.shift(),Xe===void 0&&(Xe=Me.mimeType||Te.getResponseHeader("Content-Type"));if(Xe){for(Oe in ke)if(ke[Oe]&&ke[Oe].test(Xe)){xe.unshift(Oe);break}}if(xe[0]in De)te=xe[0];else{for(Oe in De){if(!xe[0]||Me.converters[Oe+" "+xe[0]]){te=Oe;break}Ce||(Ce=Oe)}te=te||Ce}if(te)return te!==xe[0]&&xe.unshift(te),De[te]}(_t,de,gn)),!Ue&&-1<t.inArray("script",_t.dataTypes)&&t.inArray("json",_t.dataTypes)<0&&(_t.converters["text script"]=function(){}),Qe=function(Me,Te,De,Xe){var Oe,te,Ce,ke,xe,$e={},cn=Me.dataTypes.slice();if(cn[1])for(Ce in Me.converters)$e[Ce.toLowerCase()]=Me.converters[Ce];for(te=cn.shift();te;)if(Me.responseFields[te]&&(De[Me.responseFields[te]]=Te),!xe&&Xe&&Me.dataFilter&&(Te=Me.dataFilter(Te,Me.dataType)),xe=te,te=cn.shift()){if(te==="*")te=xe;else if(xe!=="*"&&xe!==te){if(!(Ce=$e[xe+" "+te]||$e["* "+te])){for(Oe in $e)if((ke=Oe.split(" "))[1]===te&&(Ce=$e[xe+" "+ke[0]]||$e["* "+ke[0]])){Ce===!0?Ce=$e[Oe]:$e[Oe]!==!0&&(te=ke[0],cn.unshift(ke[1]));break}}if(Ce!==!0)if(Ce&&Me.throws)Te=Ce(Te);else try{Te=Ce(Te)}catch(wn){return{state:"parsererror",error:Ce?wn:"No conversion from "+xe+" to "+te}}}}return{state:"success",data:Te}}(_t,Qe,de,Ue),Ue?(_t.ifModified&&((un=de.getResponseHeader("Last-Modified"))&&(t.lastModified[M]=un),(un=de.getResponseHeader("etag"))&&(t.etag[M]=un)),me===204||_t.type==="HEAD"?je="nocontent":me===304?je="notmodified":(je=Qe.state,mn=Qe.data,Ue=!(Ye=Qe.error))):(Ye=je,!me&&je||(je="error",me<0&&(me=0))),de.status=me,de.statusText=(_e||je)+"",Ue?ae.resolveWith(Ft,[mn,je,de]):ae.rejectWith(Ft,[de,je,Ye]),de.statusCode(Se),Se=void 0,xt&&Jt.trigger(Ue?"ajaxSuccess":"ajaxError",[de,_t,Ue?mn:Ye]),se.fireWith(Ft,[de,je]),xt&&(Jt.trigger("ajaxComplete",[de,_t]),--t.active||t.event.trigger("ajaxStop")))}return de},getJSON:function(e,h,E){return t.get(e,h,E,"json")},getScript:function(e,h){return t.get(e,void 0,h,"script")}}),t.each(["get","post"],function(e,h){t[h]=function(E,M,W,q){return l(M)&&(q=q||W,W=M,M=void 0),t.ajax(t.extend({url:E,type:h,dataType:q,data:M,success:W},t.isPlainObject(E)&&E))}}),t.ajaxPrefilter(function(e){var h;for(h in e.headers)h.toLowerCase()==="content-type"&&(e.contentType=e.headers[h]||"")}),t._evalUrl=function(e,h,E){return t.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(M){t.globalEval(M,h,E)}})},t.fn.extend({wrapAll:function(e){var h;return this[0]&&(l(e)&&(e=e.call(this[0])),h=t(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&h.insertBefore(this[0]),h.map(function(){for(var E=this;E.firstElementChild;)E=E.firstElementChild;return E}).append(this)),this},wrapInner:function(e){return l(e)?this.each(function(h){t(this).wrapInner(e.call(this,h))}):this.each(function(){var h=t(this),E=h.contents();E.length?E.wrapAll(e):h.append(e)})},wrap:function(e){var h=l(e);return this.each(function(E){t(this).wrapAll(h?e.call(this,E):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){t(this).replaceWith(this.childNodes)}),this}}),t.expr.pseudos.hidden=function(e){return!t.expr.pseudos.visible(e)},t.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},t.ajaxSettings.xhr=function(){try{return new U.XMLHttpRequest}catch{}};var Nr={0:200,1223:204},pn=t.ajaxSettings.xhr();d.cors=!!pn&&"withCredentials"in pn,d.ajax=pn=!!pn,t.ajaxTransport(function(e){var h,E;if(d.cors||pn&&!e.crossDomain)return{send:function(M,W){var q,X=e.xhr();if(X.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(q in e.xhrFields)X[q]=e.xhrFields[q];for(q in e.mimeType&&X.overrideMimeType&&X.overrideMimeType(e.mimeType),e.crossDomain||M["X-Requested-With"]||(M["X-Requested-With"]="XMLHttpRequest"),M)X.setRequestHeader(q,M[q]);h=function(ft){return function(){h&&(h=E=X.onload=X.onerror=X.onabort=X.ontimeout=X.onreadystatechange=null,ft==="abort"?X.abort():ft==="error"?typeof X.status!="number"?W(0,"error"):W(X.status,X.statusText):W(Nr[X.status]||X.status,X.statusText,(X.responseType||"text")!=="text"||typeof X.responseText!="string"?{binary:X.response}:{text:X.responseText},X.getAllResponseHeaders()))}},X.onload=h(),E=X.onerror=X.ontimeout=h("error"),X.onabort!==void 0?X.onabort=E:X.onreadystatechange=function(){X.readyState===4&&U.setTimeout(function(){h&&E()})},h=h("abort");try{X.send(e.hasContent&&e.data||null)}catch(ft){if(h)throw ft}},abort:function(){h&&h()}}}),t.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),t.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return t.globalEval(e),e}}}),t.ajaxPrefilter("script",function(e){e.cache===void 0&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),t.ajaxTransport("script",function(e){var h,E;if(e.crossDomain||e.scriptAttrs)return{send:function(M,W){h=t("<script>").attr(e.scriptAttrs||{}).prop({charset:e.scriptCharset,src:e.url}).on("load error",E=function(q){h.remove(),E=null,q&&W(q.type==="error"?404:200,q.type)}),v.head.appendChild(h[0])},abort:function(){E&&E()}}});var fr,dr=[],Rn=/(=)\?(?=&|$)|\?\?/;t.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=dr.pop()||t.expando+"_"+rr.guid++;return this[e]=!0,e}}),t.ajaxPrefilter("json jsonp",function(e,h,E){var M,W,q,X=e.jsonp!==!1&&(Rn.test(e.url)?"url":typeof e.data=="string"&&(e.contentType||"").indexOf("application/x-www-form-urlencoded")===0&&Rn.test(e.data)&&"data");if(X||e.dataTypes[0]==="jsonp")return M=e.jsonpCallback=l(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,X?e[X]=e[X].replace(Rn,"$1"+M):e.jsonp!==!1&&(e.url+=(Dn.test(e.url)?"&":"?")+e.jsonp+"="+M),e.converters["script json"]=function(){return q||t.error(M+" was not called"),q[0]},e.dataTypes[0]="json",W=U[M],U[M]=function(){q=arguments},E.always(function(){W===void 0?t(U).removeProp(M):U[M]=W,e[M]&&(e.jsonpCallback=h.jsonpCallback,dr.push(M)),q&&l(W)&&W(q[0]),q=W=void 0}),"script"}),d.createHTMLDocument=((fr=v.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",fr.childNodes.length===2),t.parseHTML=function(e,h,E){return typeof e!="string"?[]:(typeof h=="boolean"&&(E=h,h=!1),h||(d.createHTMLDocument?((M=(h=v.implementation.createHTMLDocument("")).createElement("base")).href=v.location.href,h.head.appendChild(M)):h=v),q=!E&&[],(W=it.exec(e))?[h.createElement(W[1])]:(W=Ut([e],h,q),q&&q.length&&t(q).remove(),t.merge([],W.childNodes)));var M,W,q},t.fn.load=function(e,h,E){var M,W,q,X=this,ft=e.indexOf(" ");return-1<ft&&(M=Je(e.slice(ft)),e=e.slice(0,ft)),l(h)?(E=h,h=void 0):h&&typeof h=="object"&&(W="POST"),0<X.length&&t.ajax({url:e,type:W||"GET",dataType:"html",data:h}).done(function(ut){q=arguments,X.html(M?t("<div>").append(t.parseHTML(ut)).find(M):ut)}).always(E&&function(ut,xt){X.each(function(){E.apply(this,q||[ut.responseText,xt,ut])})}),this},t.expr.pseudos.animated=function(e){return t.grep(t.timers,function(h){return e===h.elem}).length},t.offset={setOffset:function(e,h,E){var M,W,q,X,ft,ut,xt=t.css(e,"position"),Tt=t(e),Nt={};xt==="static"&&(e.style.position="relative"),ft=Tt.offset(),q=t.css(e,"top"),ut=t.css(e,"left"),(xt==="absolute"||xt==="fixed")&&-1<(q+ut).indexOf("auto")?(X=(M=Tt.position()).top,W=M.left):(X=parseFloat(q)||0,W=parseFloat(ut)||0),l(h)&&(h=h.call(e,E,t.extend({},ft))),h.top!=null&&(Nt.top=h.top-ft.top+X),h.left!=null&&(Nt.left=h.left-ft.left+W),"using"in h?h.using.call(e,Nt):Tt.css(Nt)}},t.fn.extend({offset:function(e){if(arguments.length)return e===void 0?this:this.each(function(W){t.offset.setOffset(this,e,W)});var h,E,M=this[0];return M?M.getClientRects().length?(h=M.getBoundingClientRect(),E=M.ownerDocument.defaultView,{top:h.top+E.pageYOffset,left:h.left+E.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,h,E,M=this[0],W={top:0,left:0};if(t.css(M,"position")==="fixed")h=M.getBoundingClientRect();else{for(h=this.offset(),E=M.ownerDocument,e=M.offsetParent||E.documentElement;e&&(e===E.body||e===E.documentElement)&&t.css(e,"position")==="static";)e=e.parentNode;e&&e!==M&&e.nodeType===1&&((W=t(e).offset()).top+=t.css(e,"borderTopWidth",!0),W.left+=t.css(e,"borderLeftWidth",!0))}return{top:h.top-W.top-t.css(M,"marginTop",!0),left:h.left-W.left-t.css(M,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent;e&&t.css(e,"position")==="static";)e=e.offsetParent;return e||Wt})}}),t.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,h){var E=h==="pageYOffset";t.fn[e]=function(M){return lt(this,function(W,q,X){var ft;if(f(W)?ft=W:W.nodeType===9&&(ft=W.defaultView),X===void 0)return ft?ft[h]:W[q];ft?ft.scrollTo(E?ft.pageXOffset:X,E?X:ft.pageYOffset):W[q]=X},e,M,arguments.length)}}),t.each(["top","left"],function(e,h){t.cssHooks[h]=$n(d.pixelPosition,function(E,M){if(M)return M=fn(E,h),Tn.test(M)?t(E).position()[h]+"px":M})}),t.each({Height:"height",Width:"width"},function(e,h){t.each({padding:"inner"+e,content:h,"":"outer"+e},function(E,M){t.fn[M]=function(W,q){var X=arguments.length&&(E||typeof W!="boolean"),ft=E||(W===!0||q===!0?"margin":"border");return lt(this,function(ut,xt,Tt){var Nt;return f(ut)?M.indexOf("outer")===0?ut["inner"+e]:ut.document.documentElement["client"+e]:ut.nodeType===9?(Nt=ut.documentElement,Math.max(ut.body["scroll"+e],Nt["scroll"+e],ut.body["offset"+e],Nt["offset"+e],Nt["client"+e])):Tt===void 0?t.css(ut,xt,ft):t.style(ut,xt,Tt,ft)},h,X?W:void 0,X)}})}),t.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,h){t.fn[h]=function(E){return this.on(h,E)}}),t.fn.extend({bind:function(e,h,E){return this.on(e,null,h,E)},unbind:function(e,h){return this.off(e,null,h)},delegate:function(e,h,E,M){return this.on(h,e,E,M)},undelegate:function(e,h,E){return arguments.length===1?this.off(e,"**"):this.off(h,e||"**",E)},hover:function(e,h){return this.on("mouseenter",e).on("mouseleave",h||e)}}),t.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,h){t.fn[h]=function(E,M){return 0<arguments.length?this.on(h,null,E,M):this.trigger(h)}});var Lr=/^[\s\uFEFF\xA0]+|([^\s\uFEFF\xA0])[\s\uFEFF\xA0]+$/g;t.proxy=function(e,h){var E,M,W;if(typeof h=="string"&&(E=e[h],h=e,e=E),l(e))return M=c.call(arguments,2),(W=function(){return e.apply(h||this,M.concat(c.call(arguments)))}).guid=e.guid=e.guid||t.guid++,W},t.holdReady=function(e){e?t.readyWait++:t.ready(!0)},t.isArray=Array.isArray,t.parseJSON=JSON.parse,t.nodeName=m,t.isFunction=l,t.isWindow=f,t.camelCase=Pt,t.type=i,t.now=Date.now,t.isNumeric=function(e){var h=t.type(e);return(h==="number"||h==="string")&&!isNaN(e-parseFloat(e))},t.trim=function(e){return e==null?"":(e+"").replace(Lr,"$1")},typeof define=="function"&&define.amd&&define("jquery",[],function(){return t});var Fr=U.jQuery,Rr=U.$;return t.noConflict=function(e){return U.$===t&&(U.$=Rr),e&&U.jQuery===t&&(U.jQuery=Fr),t},typeof st>"u"&&(U.jQuery=U.$=t),t}),function(U,st){typeof exports=="object"&&typeof module<"u"?module.exports=st():typeof define=="function"&&define.amd?define(st):U.Popper=st()}(this,function(){"use strict";function U(D){return D&&{}.toString.call(D)==="[object Function]"}function st(D,V){if(D.nodeType!==1)return[];var y=D.ownerDocument.defaultView,I=y.getComputedStyle(D,null);return V?I[V]:I}function a(D){return D.nodeName==="HTML"?D:D.parentNode||D.host}function T(D){if(!D)return document.body;switch(D.nodeName){case"HTML":case"BODY":return D.ownerDocument.body;case"#document":return D.body}var V=st(D),y=V.overflow,I=V.overflowX,Y=V.overflowY;return/(auto|scroll|overlay)/.test(y+Y+I)?D:T(a(D))}function c(D){return D&&D.referenceNode?D.referenceNode:D}function O(D){return D===11?zt:D===10?ie:zt||ie}function L(D){if(!D)return document.documentElement;for(var V=O(10)?document.body:null,y=D.offsetParent||null;y===V&&D.nextElementSibling;)y=(D=D.nextElementSibling).offsetParent;var I=y&&y.nodeName;return I&&I!=="BODY"&&I!=="HTML"?["TH","TD","TABLE"].indexOf(y.nodeName)!==-1&&st(y,"position")==="static"?L(y):y:D?D.ownerDocument.documentElement:document.documentElement}function k(D){var V=D.nodeName;return V!=="BODY"&&(V==="HTML"||L(D.firstElementChild)===D)}function P(D){return D.parentNode===null?D:P(D.parentNode)}function j(D,V){if(!D||!D.nodeType||!V||!V.nodeType)return document.documentElement;var y=D.compareDocumentPosition(V)&Node.DOCUMENT_POSITION_FOLLOWING,I=y?D:V,Y=y?V:D,Z=document.createRange();Z.setStart(I,0),Z.setEnd(Y,0);var tt=Z.commonAncestorContainer;if(D!==tt&&V!==tt||I.contains(Y))return k(tt)?tt:L(tt);var wt=P(D);return wt.host?j(wt.host,V):j(D,P(V).host)}function _(D){var V=1<arguments.length&&arguments[1]!==void 0?arguments[1]:"top",y=V==="top"?"scrollTop":"scrollLeft",I=D.nodeName;if(I==="BODY"||I==="HTML"){var Y=D.ownerDocument.documentElement,Z=D.ownerDocument.scrollingElement||Y;return Z[y]}return D[y]}function C(D,V){var y=2<arguments.length&&arguments[2]!==void 0&&arguments[2],I=_(V,"top"),Y=_(V,"left"),Z=y?-1:1;return D.top+=I*Z,D.bottom+=I*Z,D.left+=Y*Z,D.right+=Y*Z,D}function u(D,V){var y=V==="x"?"Left":"Top",I=y=="Left"?"Right":"Bottom";return parseFloat(D["border"+y+"Width"])+parseFloat(D["border"+I+"Width"])}function d(D,V,y,I){return It(V["offset"+D],V["scroll"+D],y["client"+D],y["offset"+D],y["scroll"+D],O(10)?parseInt(y["offset"+D])+parseInt(I["margin"+(D==="Height"?"Top":"Left")])+parseInt(I["margin"+(D==="Height"?"Bottom":"Right")]):0)}function l(D){var V=D.body,y=D.documentElement,I=O(10)&&getComputedStyle(y);return{height:d("Height",V,y,I),width:d("Width",V,y,I)}}function f(D){return ne({},D,{right:D.left+D.width,bottom:D.top+D.height})}function v(D){var V={};try{if(O(10)){V=D.getBoundingClientRect();var y=_(D,"top"),I=_(D,"left");V.top+=y,V.left+=I,V.bottom+=y,V.right+=I}else V=D.getBoundingClientRect()}catch{}var Y={left:V.left,top:V.top,width:V.right-V.left,height:V.bottom-V.top},Z=D.nodeName==="HTML"?l(D.ownerDocument):{},tt=Z.width||D.clientWidth||Y.width,wt=Z.height||D.clientHeight||Y.height,Et=D.offsetWidth-tt,jt=D.offsetHeight-wt;if(Et||jt){var Bt=st(D);Et-=u(Bt,"x"),jt-=u(Bt,"y"),Y.width-=Et,Y.height-=jt}return f(Y)}function n(D,V){var y=2<arguments.length&&arguments[2]!==void 0&&arguments[2],I=O(10),Y=V.nodeName==="HTML",Z=v(D),tt=v(V),wt=T(D),Et=st(V),jt=parseFloat(Et.borderTopWidth),Bt=parseFloat(Et.borderLeftWidth);y&&Y&&(tt.top=It(tt.top,0),tt.left=It(tt.left,0));var Vt=f({top:Z.top-tt.top-jt,left:Z.left-tt.left-Bt,width:Z.width,height:Z.height});if(Vt.marginTop=0,Vt.marginLeft=0,!I&&Y){var Ut=parseFloat(Et.marginTop),ee=parseFloat(Et.marginLeft);Vt.top-=jt-Ut,Vt.bottom-=jt-Ut,Vt.left-=Bt-ee,Vt.right-=Bt-ee,Vt.marginTop=Ut,Vt.marginLeft=ee}return(I&&!y?V.contains(wt):V===wt&&wt.nodeName!=="BODY")&&(Vt=C(Vt,V)),Vt}function s(D){var V=1<arguments.length&&arguments[1]!==void 0&&arguments[1],y=D.ownerDocument.documentElement,I=n(D,y),Y=It(y.clientWidth,window.innerWidth||0),Z=It(y.clientHeight,window.innerHeight||0),tt=V?0:_(y),wt=V?0:_(y,"left"),Et={top:tt-I.top+I.marginTop,left:wt-I.left+I.marginLeft,width:Y,height:Z};return f(Et)}function i(D){var V=D.nodeName;if(V==="BODY"||V==="HTML")return!1;if(st(D,"position")==="fixed")return!0;var y=a(D);return!!y&&i(y)}function o(D){if(!D||!D.parentElement||O())return document.documentElement;for(var V=D.parentElement;V&&st(V,"transform")==="none";)V=V.parentElement;return V||document.documentElement}function p(D,V,y,I){var Y=4<arguments.length&&arguments[4]!==void 0&&arguments[4],Z={top:0,left:0},tt=Y?o(D):j(D,c(V));if(I==="viewport")Z=s(tt,Y);else{var wt;I==="scrollParent"?(wt=T(a(V)),wt.nodeName==="BODY"&&(wt=D.ownerDocument.documentElement)):I==="window"?wt=D.ownerDocument.documentElement:wt=I;var Et=n(wt,tt,Y);if(wt.nodeName==="HTML"&&!i(tt)){var jt=l(D.ownerDocument),Bt=jt.height,Vt=jt.width;Z.top+=Et.top-Et.marginTop,Z.bottom=Bt+Et.top,Z.left+=Et.left-Et.marginLeft,Z.right=Vt+Et.left}else Z=Et}y=y||0;var Ut=typeof y=="number";return Z.left+=Ut?y:y.left||0,Z.top+=Ut?y:y.top||0,Z.right-=Ut?y:y.right||0,Z.bottom-=Ut?y:y.bottom||0,Z}function t(D){var V=D.width,y=D.height;return V*y}function x(D,V,y,I,Y){var Z=5<arguments.length&&arguments[5]!==void 0?arguments[5]:0;if(D.indexOf("auto")===-1)return D;var tt=p(y,I,Z,Y),wt={top:{width:tt.width,height:V.top-tt.top},right:{width:tt.right-V.right,height:tt.height},bottom:{width:tt.width,height:tt.bottom-V.bottom},left:{width:V.left-tt.left,height:tt.height}},Et=Object.keys(wt).map(function(Ut){return ne({key:Ut},wt[Ut],{area:t(wt[Ut])})}).sort(function(Ut,ee){return ee.area-Ut.area}),jt=Et.filter(function(Ut){var ee=Ut.width,Ht=Ut.height;return ee>=y.clientWidth&&Ht>=y.clientHeight}),Bt=0<jt.length?jt[0].key:Et[0].key,Vt=D.split("-")[1];return Bt+(Vt?"-"+Vt:"")}function m(D,V,y){var I=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null,Y=I?o(V):j(V,c(y));return n(y,Y,I)}function S(D){var V=D.ownerDocument.defaultView,y=V.getComputedStyle(D),I=parseFloat(y.marginTop||0)+parseFloat(y.marginBottom||0),Y=parseFloat(y.marginLeft||0)+parseFloat(y.marginRight||0),Z={width:D.offsetWidth+Y,height:D.offsetHeight+I};return Z}function w(D){var V={left:"right",right:"left",bottom:"top",top:"bottom"};return D.replace(/left|right|bottom|top/g,function(y){return V[y]})}function A(D,V,y){y=y.split("-")[0];var I=S(D),Y={width:I.width,height:I.height},Z=["right","left"].indexOf(y)!==-1,tt=Z?"top":"left",wt=Z?"left":"top",Et=Z?"height":"width",jt=Z?"width":"height";return Y[tt]=V[tt]+V[Et]/2-I[Et]/2,Y[wt]=y===wt?V[wt]-I[jt]:V[w(wt)],Y}function F(D,V){return Array.prototype.find?D.find(V):D.filter(V)[0]}function N(D,V,y){if(Array.prototype.findIndex)return D.findIndex(function(Y){return Y[V]===y});var I=F(D,function(Y){return Y[V]===y});return D.indexOf(I)}function R(D,V,y){var I=y===void 0?D:D.slice(0,N(D,"name",y));return I.forEach(function(Y){Y.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var Z=Y.function||Y.fn;Y.enabled&&U(Z)&&(V.offsets.popper=f(V.offsets.popper),V.offsets.reference=f(V.offsets.reference),V=Z(V,Y))}),V}function B(){if(!this.state.isDestroyed){var D={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};D.offsets.reference=m(this.state,this.popper,this.reference,this.options.positionFixed),D.placement=x(this.options.placement,D.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),D.originalPlacement=D.placement,D.positionFixed=this.options.positionFixed,D.offsets.popper=A(this.popper,D.offsets.reference,D.placement),D.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",D=R(this.modifiers,D),this.state.isCreated?this.options.onUpdate(D):(this.state.isCreated=!0,this.options.onCreate(D))}}function z(D,V){return D.some(function(y){var I=y.name,Y=y.enabled;return Y&&I===V})}function H(D){for(var V=[!1,"ms","Webkit","Moz","O"],y=D.charAt(0).toUpperCase()+D.slice(1),I=0;I<V.length;I++){var Y=V[I],Z=Y?""+Y+y:D;if(typeof document.body.style[Z]<"u")return Z}return null}function G(){return this.state.isDestroyed=!0,z(this.modifiers,"applyStyle")&&(this.popper.removeAttribute("x-placement"),this.popper.style.position="",this.popper.style.top="",this.popper.style.left="",this.popper.style.right="",this.popper.style.bottom="",this.popper.style.willChange="",this.popper.style[H("transform")]=""),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}function K(D){var V=D.ownerDocument;return V?V.defaultView:window}function ct(D,V,y,I){var Y=D.nodeName==="BODY",Z=Y?D.ownerDocument.defaultView:D;Z.addEventListener(V,y,{passive:!0}),Y||ct(T(Z.parentNode),V,y,I),I.push(Z)}function it(D,V,y,I){y.updateBound=I,K(D).addEventListener("resize",y.updateBound,{passive:!0});var Y=T(D);return ct(Y,"scroll",y.updateBound,y.scrollParents),y.scrollElement=Y,y.eventsEnabled=!0,y}function ht(){this.state.eventsEnabled||(this.state=it(this.reference,this.options,this.state,this.scheduleUpdate))}function dt(D,V){return K(D).removeEventListener("resize",V.updateBound),V.scrollParents.forEach(function(y){y.removeEventListener("scroll",V.updateBound)}),V.updateBound=null,V.scrollParents=[],V.scrollElement=null,V.eventsEnabled=!1,V}function St(){this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=dt(this.reference,this.state))}function pt(D){return D!==""&&!isNaN(parseFloat(D))&&isFinite(D)}function Q(D,V){Object.keys(V).forEach(function(y){var I="";["width","height","top","right","bottom","left"].indexOf(y)!==-1&&pt(V[y])&&(I="px"),D.style[y]=V[y]+I})}function et(D,V){Object.keys(V).forEach(function(y){var I=V[y];I===!1?D.removeAttribute(y):D.setAttribute(y,V[y])})}function rt(D,V){var y=D.offsets,I=y.popper,Y=y.reference,Z=Dt,tt=function(ee){return ee},wt=Z(Y.width),Et=Z(I.width),jt=["left","right"].indexOf(D.placement)!==-1,Bt=D.placement.indexOf("-")!==-1,Vt=V?jt||Bt||wt%2==Et%2?Z:At:tt,Ut=V?Z:tt;return{left:Vt(wt%2==1&&Et%2==1&&!Bt&&V?I.left-1:I.left),top:Ut(I.top),bottom:Ut(I.bottom),right:Vt(I.right)}}function ot(D,V,y){var I=F(D,function(tt){var wt=tt.name;return wt===V}),Y=!!I&&D.some(function(tt){return tt.name===y&&tt.enabled&&tt.order<I.order});if(!Y){var Z="`"+V+"`";console.warn("`"+y+"` modifier is required by "+Z+" modifier in order to work, be sure to include it before "+Z+"!")}return Y}function gt(D){return D==="end"?"start":D==="start"?"end":D}function J(D){var V=1<arguments.length&&arguments[1]!==void 0&&arguments[1],y=qt.indexOf(D),I=qt.slice(y+1).concat(qt.slice(0,y));return V?I.reverse():I}function at(D,V,y,I){var Y=D.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),Z=+Y[1],tt=Y[2];if(!Z)return D;if(tt.indexOf("%")===0){var wt;switch(tt){case"%p":wt=y;break;case"%":case"%r":default:wt=I}var Et=f(wt);return Et[V]/100*Z}if(tt==="vh"||tt==="vw"){var jt;return jt=tt==="vh"?It(document.documentElement.clientHeight,window.innerHeight||0):It(document.documentElement.clientWidth,window.innerWidth||0),jt/100*Z}return Z}function bt(D,V,y,I){var Y=[0,0],Z=["right","left"].indexOf(I)!==-1,tt=D.split(/(\+|\-)/).map(function(Bt){return Bt.trim()}),wt=tt.indexOf(F(tt,function(Bt){return Bt.search(/,|\s/)!==-1}));tt[wt]&&tt[wt].indexOf(",")===-1&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var Et=/\s*,\s*|\s+/,jt=wt===-1?[tt]:[tt.slice(0,wt).concat([tt[wt].split(Et)[0]]),[tt[wt].split(Et)[1]].concat(tt.slice(wt+1))];return jt=jt.map(function(Bt,Vt){var Ut=(Vt===1?!Z:Z)?"height":"width",ee=!1;return Bt.reduce(function(Ht,he){return Ht[Ht.length-1]===""&&["+","-"].indexOf(he)!==-1?(Ht[Ht.length-1]=he,ee=!0,Ht):ee?(Ht[Ht.length-1]+=he,ee=!1,Ht):Ht.concat(he)},[]).map(function(Ht){return at(Ht,Ut,V,y)})}),jt.forEach(function(Bt,Vt){Bt.forEach(function(Ut,ee){pt(Ut)&&(Y[Vt]+=Ut*(Bt[ee-1]==="-"?-1:1))})}),Y}function yt(D,V){var y,I=V.offset,Y=D.placement,Z=D.offsets,tt=Z.popper,wt=Z.reference,Et=Y.split("-")[0];return y=pt(+I)?[+I,0]:bt(I,tt,wt,Et),Et==="left"?(tt.top+=y[0],tt.left-=y[1]):Et==="right"?(tt.top+=y[0],tt.left+=y[1]):Et==="top"?(tt.left+=y[0],tt.top-=y[1]):Et==="bottom"&&(tt.left+=y[0],tt.top+=y[1]),D.popper=tt,D}var lt=Math.min,At=Math.floor,Dt=Math.round,It=Math.max,Pt=typeof window<"u"&&typeof document<"u"&&typeof navigator<"u",Ct=function(){for(var D=["Edge","Trident","Firefox"],V=0;V<D.length;V+=1)if(Pt&&0<=navigator.userAgent.indexOf(D[V]))return 1;return 0}(),Ot=Pt&&window.Promise,mt=Ot?function(D){var V=!1;return function(){V||(V=!0,window.Promise.resolve().then(function(){V=!1,D()}))}}:function(D){var V=!1;return function(){V||(V=!0,setTimeout(function(){V=!1,D()},Ct))}},zt=Pt&&!!(window.MSInputMethodContext&&document.documentMode),ie=Pt&&/MSIE 10/.test(navigator.userAgent),Yt=function(D,V){if(!(D instanceof V))throw new TypeError("Cannot call a class as a function")},ue=function(){function D(V,y){for(var I,Y=0;Y<y.length;Y++)I=y[Y],I.enumerable=I.enumerable||!1,I.configurable=!0,"value"in I&&(I.writable=!0),Object.defineProperty(V,I.key,I)}return function(V,y,I){return y&&D(V.prototype,y),I&&D(V,I),V}}(),oe=function(D,V,y){return V in D?Object.defineProperty(D,V,{value:y,enumerable:!0,configurable:!0,writable:!0}):D[V]=y,D},ne=Object.assign||function(D){for(var V,y=1;y<arguments.length;y++)for(var I in V=arguments[y],V)Object.prototype.hasOwnProperty.call(V,I)&&(D[I]=V[I]);return D},Rt=Pt&&/Firefox/i.test(navigator.userAgent),Wt=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"],qt=Wt.slice(3),Gt={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"},Zt=function(){function D(V,y){var I=this,Y=2<arguments.length&&arguments[2]!==void 0?arguments[2]:{};Yt(this,D),this.scheduleUpdate=function(){return requestAnimationFrame(I.update)},this.update=mt(this.update.bind(this)),this.options=ne({},D.Defaults,Y),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=V&&V.jquery?V[0]:V,this.popper=y&&y.jquery?y[0]:y,this.options.modifiers={},Object.keys(ne({},D.Defaults.modifiers,Y.modifiers)).forEach(function(tt){I.options.modifiers[tt]=ne({},D.Defaults.modifiers[tt]||{},Y.modifiers?Y.modifiers[tt]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(tt){return ne({name:tt},I.options.modifiers[tt])}).sort(function(tt,wt){return tt.order-wt.order}),this.modifiers.forEach(function(tt){tt.enabled&&U(tt.onLoad)&&tt.onLoad(I.reference,I.popper,I.options,tt,I.state)}),this.update();var Z=this.options.eventsEnabled;Z&&this.enableEventListeners(),this.state.eventsEnabled=Z}return ue(D,[{key:"update",value:function(){return B.call(this)}},{key:"destroy",value:function(){return G.call(this)}},{key:"enableEventListeners",value:function(){return ht.call(this)}},{key:"disableEventListeners",value:function(){return St.call(this)}}]),D}();return Zt.Utils=(typeof window>"u"?global:window).PopperUtils,Zt.placements=Wt,Zt.Defaults={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(D){var V=D.placement,y=V.split("-")[0],I=V.split("-")[1];if(I){var Y=D.offsets,Z=Y.reference,tt=Y.popper,wt=["bottom","top"].indexOf(y)!==-1,Et=wt?"left":"top",jt=wt?"width":"height",Bt={start:oe({},Et,Z[Et]),end:oe({},Et,Z[Et]+Z[jt]-tt[jt])};D.offsets.popper=ne({},tt,Bt[I])}return D}},offset:{order:200,enabled:!0,fn:yt,offset:0},preventOverflow:{order:300,enabled:!0,fn:function(D,V){var y=V.boundariesElement||L(D.instance.popper);D.instance.reference===y&&(y=L(y));var I=H("transform"),Y=D.instance.popper.style,Z=Y.top,tt=Y.left,wt=Y[I];Y.top="",Y.left="",Y[I]="";var Et=p(D.instance.popper,D.instance.reference,V.padding,y,D.positionFixed);Y.top=Z,Y.left=tt,Y[I]=wt,V.boundaries=Et;var jt=V.priority,Bt=D.offsets.popper,Vt={primary:function(Ut){var ee=Bt[Ut];return Bt[Ut]<Et[Ut]&&!V.escapeWithReference&&(ee=It(Bt[Ut],Et[Ut])),oe({},Ut,ee)},secondary:function(Ut){var ee=Ut==="right"?"left":"top",Ht=Bt[ee];return Bt[Ut]>Et[Ut]&&!V.escapeWithReference&&(Ht=lt(Bt[ee],Et[Ut]-(Ut==="right"?Bt.width:Bt.height))),oe({},ee,Ht)}};return jt.forEach(function(Ut){var ee=["left","top"].indexOf(Ut)===-1?"secondary":"primary";Bt=ne({},Bt,Vt[ee](Ut))}),D.offsets.popper=Bt,D},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(D){var V=D.offsets,y=V.popper,I=V.reference,Y=D.placement.split("-")[0],Z=At,tt=["top","bottom"].indexOf(Y)!==-1,wt=tt?"right":"bottom",Et=tt?"left":"top",jt=tt?"width":"height";return y[wt]<Z(I[Et])&&(D.offsets.popper[Et]=Z(I[Et])-y[jt]),y[Et]>Z(I[wt])&&(D.offsets.popper[Et]=Z(I[wt])),D}},arrow:{order:500,enabled:!0,fn:function(D,V){var y;if(!ot(D.instance.modifiers,"arrow","keepTogether"))return D;var I=V.element;if(typeof I=="string"){if(I=D.instance.popper.querySelector(I),!I)return D}else if(!D.instance.popper.contains(I))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),D;var Y=D.placement.split("-")[0],Z=D.offsets,tt=Z.popper,wt=Z.reference,Et=["left","right"].indexOf(Y)!==-1,jt=Et?"height":"width",Bt=Et?"Top":"Left",Vt=Bt.toLowerCase(),Ut=Et?"left":"top",ee=Et?"bottom":"right",Ht=S(I)[jt];wt[ee]-Ht<tt[Vt]&&(D.offsets.popper[Vt]-=tt[Vt]-(wt[ee]-Ht)),wt[Vt]+Ht>tt[ee]&&(D.offsets.popper[Vt]+=wt[Vt]+Ht-tt[ee]),D.offsets.popper=f(D.offsets.popper);var he=wt[Vt]+wt[jt]/2-Ht/2,pe=st(D.instance.popper),ye=parseFloat(pe["margin"+Bt]),fe=parseFloat(pe["border"+Bt+"Width"]),be=he-D.offsets.popper[Vt]-ye-fe;return be=It(lt(tt[jt]-Ht,be),0),D.arrowElement=I,D.offsets.arrow=(y={},oe(y,Vt,Dt(be)),oe(y,Ut,""),y),D},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(D,V){if(z(D.instance.modifiers,"inner")||D.flipped&&D.placement===D.originalPlacement)return D;var y=p(D.instance.popper,D.instance.reference,V.padding,V.boundariesElement,D.positionFixed),I=D.placement.split("-")[0],Y=w(I),Z=D.placement.split("-")[1]||"",tt=[];switch(V.behavior){case Gt.FLIP:tt=[I,Y];break;case Gt.CLOCKWISE:tt=J(I);break;case Gt.COUNTERCLOCKWISE:tt=J(I,!0);break;default:tt=V.behavior}return tt.forEach(function(wt,Et){if(I!==wt||tt.length===Et+1)return D;I=D.placement.split("-")[0],Y=w(I);var jt=D.offsets.popper,Bt=D.offsets.reference,Vt=At,Ut=I==="left"&&Vt(jt.right)>Vt(Bt.left)||I==="right"&&Vt(jt.left)<Vt(Bt.right)||I==="top"&&Vt(jt.bottom)>Vt(Bt.top)||I==="bottom"&&Vt(jt.top)<Vt(Bt.bottom),ee=Vt(jt.left)<Vt(y.left),Ht=Vt(jt.right)>Vt(y.right),he=Vt(jt.top)<Vt(y.top),pe=Vt(jt.bottom)>Vt(y.bottom),ye=I==="left"&&ee||I==="right"&&Ht||I==="top"&&he||I==="bottom"&&pe,fe=["top","bottom"].indexOf(I)!==-1,be=!!V.flipVariations&&(fe&&Z==="start"&&ee||fe&&Z==="end"&&Ht||!fe&&Z==="start"&&he||!fe&&Z==="end"&&pe),Re=!!V.flipVariationsByContent&&(fe&&Z==="start"&&Ht||fe&&Z==="end"&&ee||!fe&&Z==="start"&&pe||!fe&&Z==="end"&&he),Le=be||Re;(Ut||ye||Le)&&(D.flipped=!0,(Ut||ye)&&(I=tt[Et+1]),Le&&(Z=gt(Z)),D.placement=I+(Z?"-"+Z:""),D.offsets.popper=ne({},D.offsets.popper,A(D.instance.popper,D.offsets.reference,D.placement)),D=R(D.instance.modifiers,D,"flip"))}),D},behavior:"flip",padding:5,boundariesElement:"viewport",flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(D){var V=D.placement,y=V.split("-")[0],I=D.offsets,Y=I.popper,Z=I.reference,tt=["left","right"].indexOf(y)!==-1,wt=["top","left"].indexOf(y)===-1;return Y[tt?"left":"top"]=Z[y]-(wt?Y[tt?"width":"height"]:0),D.placement=w(V),D.offsets.popper=f(Y),D}},hide:{order:800,enabled:!0,fn:function(D){if(!ot(D.instance.modifiers,"hide","preventOverflow"))return D;var V=D.offsets.reference,y=F(D.instance.modifiers,function(I){return I.name==="preventOverflow"}).boundaries;if(V.bottom<y.top||V.left>y.right||V.top>y.bottom||V.right<y.left){if(D.hide===!0)return D;D.hide=!0,D.attributes["x-out-of-boundaries"]=""}else{if(D.hide===!1)return D;D.hide=!1,D.attributes["x-out-of-boundaries"]=!1}return D}},computeStyle:{order:850,enabled:!0,fn:function(D,V){var y=V.x,I=V.y,Y=D.offsets.popper,Z=F(D.instance.modifiers,function(be){return be.name==="applyStyle"}).gpuAcceleration;Z!==void 0&&console.warn("WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!");var tt,wt,Et=Z===void 0?V.gpuAcceleration:Z,jt=L(D.instance.popper),Bt=v(jt),Vt={position:Y.position},Ut=rt(D,2>window.devicePixelRatio||!Rt),ee=y==="bottom"?"top":"bottom",Ht=I==="right"?"left":"right",he=H("transform");if(wt=ee=="bottom"?jt.nodeName==="HTML"?-jt.clientHeight+Ut.bottom:-Bt.height+Ut.bottom:Ut.top,tt=Ht=="right"?jt.nodeName==="HTML"?-jt.clientWidth+Ut.right:-Bt.width+Ut.right:Ut.left,Et&&he)Vt[he]="translate3d("+tt+"px, "+wt+"px, 0)",Vt[ee]=0,Vt[Ht]=0,Vt.willChange="transform";else{var pe=ee=="bottom"?-1:1,ye=Ht=="right"?-1:1;Vt[ee]=wt*pe,Vt[Ht]=tt*ye,Vt.willChange=ee+", "+Ht}var fe={"x-placement":D.placement};return D.attributes=ne({},fe,D.attributes),D.styles=ne({},Vt,D.styles),D.arrowStyles=ne({},D.offsets.arrow,D.arrowStyles),D},gpuAcceleration:!0,x:"bottom",y:"right"},applyStyle:{order:900,enabled:!0,fn:function(D){return Q(D.instance.popper,D.styles),et(D.instance.popper,D.attributes),D.arrowElement&&Object.keys(D.arrowStyles).length&&Q(D.arrowElement,D.arrowStyles),D},onLoad:function(D,V,y,I,Y){var Z=m(Y,V,D,y.positionFixed),tt=x(y.placement,Z,V,D,y.modifiers.flip.boundariesElement,y.modifiers.flip.padding);return V.setAttribute("x-placement",tt),Q(V,{position:y.positionFixed?"fixed":"absolute"}),y},gpuAcceleration:void 0}}},Zt});/*!
5
- * Bootstrap v4.6.0 (https://getbootstrap.com/)
6
- * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
7
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
8
- */(function(U,st){typeof exports=="object"&&typeof module<"u"?st(exports,require("jquery"),require("popper.js")):typeof define=="function"&&define.amd?define(["exports","jquery","popper.js"],st):st((U=typeof globalThis<"u"?globalThis:U||self).bootstrap={},U.jQuery,U.Popper)})(this,function(U,st,a){"use strict";function T(D){return D&&typeof D=="object"&&"default"in D?D:{default:D}}var c=T(st),O=T(a);function L(D,V){for(var y=0;y<V.length;y++){var I=V[y];I.enumerable=I.enumerable||!1,I.configurable=!0,"value"in I&&(I.writable=!0),Object.defineProperty(D,I.key,I)}}function k(D,V,y){return V&&L(D.prototype,V),y&&L(D,y),D}function P(){return(P=Object.assign||function(D){for(var V=1;V<arguments.length;V++){var y=arguments[V];for(var I in y)Object.prototype.hasOwnProperty.call(y,I)&&(D[I]=y[I])}return D}).apply(this,arguments)}function j(D){var V=this,y=!1;return c.default(this).one(_.TRANSITION_END,function(){y=!0}),setTimeout(function(){y||_.triggerTransitionEnd(V)},D),this}var _={TRANSITION_END:"bsTransitionEnd",getUID:function(D){do D+=~~(1e6*Math.random());while(document.getElementById(D));return D},getSelectorFromElement:function(D){var V=D.getAttribute("data-target");if(!V||V==="#"){var y=D.getAttribute("href");V=y&&y!=="#"?y.trim():""}try{return document.querySelector(V)?V:null}catch{return null}},getTransitionDurationFromElement:function(D){if(!D)return 0;var V=c.default(D).css("transition-duration"),y=c.default(D).css("transition-delay"),I=parseFloat(V),Y=parseFloat(y);return I||Y?(V=V.split(",")[0],y=y.split(",")[0],1e3*(parseFloat(V)+parseFloat(y))):0},reflow:function(D){return D.offsetHeight},triggerTransitionEnd:function(D){c.default(D).trigger("transitionend")},supportsTransitionEnd:function(){return!0},isElement:function(D){return(D[0]||D).nodeType},typeCheckConfig:function(D,V,y){for(var I in y)if(Object.prototype.hasOwnProperty.call(y,I)){var Y=y[I],Z=V[I],tt=Z&&_.isElement(Z)?"element":(wt=Z)===null||typeof wt>"u"?""+wt:{}.toString.call(wt).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(Y).test(tt))throw new Error(D.toUpperCase()+': Option "'+I+'" provided type "'+tt+'" but expected type "'+Y+'".')}var wt},findShadowRoot:function(D){if(!document.documentElement.attachShadow)return null;if(typeof D.getRootNode=="function"){var V=D.getRootNode();return V instanceof ShadowRoot?V:null}return D instanceof ShadowRoot?D:D.parentNode?_.findShadowRoot(D.parentNode):null},jQueryDetection:function(){if(typeof c.default>"u")throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var D=c.default.fn.jquery.split(" ")[0].split(".");if(D[0]<2&&D[1]<9||D[0]===1&&D[1]===9&&D[2]<1||D[0]>=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};_.jQueryDetection(),c.default.fn.emulateTransitionEnd=j,c.default.event.special[_.TRANSITION_END]={bindType:"transitionend",delegateType:"transitionend",handle:function(D){if(c.default(D.target).is(this))return D.handleObj.handler.apply(this,arguments)}};var C="alert",u=c.default.fn[C],d=function(){function D(y){this._element=y}var V=D.prototype;return V.close=function(y){var I=this._element;y&&(I=this._getRootElement(y)),this._triggerCloseEvent(I).isDefaultPrevented()||this._removeElement(I)},V.dispose=function(){c.default.removeData(this._element,"bs.alert"),this._element=null},V._getRootElement=function(y){var I=_.getSelectorFromElement(y),Y=!1;return I&&(Y=document.querySelector(I)),Y||(Y=c.default(y).closest(".alert")[0]),Y},V._triggerCloseEvent=function(y){var I=c.default.Event("close.bs.alert");return c.default(y).trigger(I),I},V._removeElement=function(y){var I=this;if(c.default(y).removeClass("show"),c.default(y).hasClass("fade")){var Y=_.getTransitionDurationFromElement(y);c.default(y).one(_.TRANSITION_END,function(Z){return I._destroyElement(y,Z)}).emulateTransitionEnd(Y)}else this._destroyElement(y)},V._destroyElement=function(y){c.default(y).detach().trigger("closed.bs.alert").remove()},D._jQueryInterface=function(y){return this.each(function(){var I=c.default(this),Y=I.data("bs.alert");Y||(Y=new D(this),I.data("bs.alert",Y)),y==="close"&&Y[y](this)})},D._handleDismiss=function(y){return function(I){I&&I.preventDefault(),y.close(this)}},k(D,null,[{key:"VERSION",get:function(){return"4.6.0"}}]),D}();c.default(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',d._handleDismiss(new d)),c.default.fn[C]=d._jQueryInterface,c.default.fn[C].Constructor=d,c.default.fn[C].noConflict=function(){return c.default.fn[C]=u,d._jQueryInterface};var l=c.default.fn.button,f=function(){function D(y){this._element=y,this.shouldAvoidTriggerChange=!1}var V=D.prototype;return V.toggle=function(){var y=!0,I=!0,Y=c.default(this._element).closest('[data-toggle="buttons"]')[0];if(Y){var Z=this._element.querySelector('input:not([type="hidden"])');if(Z){if(Z.type==="radio")if(Z.checked&&this._element.classList.contains("active"))y=!1;else{var tt=Y.querySelector(".active");tt&&c.default(tt).removeClass("active")}y&&(Z.type!=="checkbox"&&Z.type!=="radio"||(Z.checked=!this._element.classList.contains("active")),this.shouldAvoidTriggerChange||c.default(Z).trigger("change")),Z.focus(),I=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(I&&this._element.setAttribute("aria-pressed",!this._element.classList.contains("active")),y&&c.default(this._element).toggleClass("active"))},V.dispose=function(){c.default.removeData(this._element,"bs.button"),this._element=null},D._jQueryInterface=function(y,I){return this.each(function(){var Y=c.default(this),Z=Y.data("bs.button");Z||(Z=new D(this),Y.data("bs.button",Z)),Z.shouldAvoidTriggerChange=I,y==="toggle"&&Z[y]()})},k(D,null,[{key:"VERSION",get:function(){return"4.6.0"}}]),D}();c.default(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(D){var V=D.target,y=V;if(c.default(V).hasClass("btn")||(V=c.default(V).closest(".btn")[0]),!V||V.hasAttribute("disabled")||V.classList.contains("disabled"))D.preventDefault();else{var I=V.querySelector('input:not([type="hidden"])');if(I&&(I.hasAttribute("disabled")||I.classList.contains("disabled")))return void D.preventDefault();y.tagName!=="INPUT"&&V.tagName==="LABEL"||f._jQueryInterface.call(c.default(V),"toggle",y.tagName==="INPUT")}}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(D){var V=c.default(D.target).closest(".btn")[0];c.default(V).toggleClass("focus",/^focus(in)?$/.test(D.type))}),c.default(window).on("load.bs.button.data-api",function(){for(var D=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),V=0,y=D.length;V<y;V++){var I=D[V],Y=I.querySelector('input:not([type="hidden"])');Y.checked||Y.hasAttribute("checked")?I.classList.add("active"):I.classList.remove("active")}for(var Z=0,tt=(D=[].slice.call(document.querySelectorAll('[data-toggle="button"]'))).length;Z<tt;Z++){var wt=D[Z];wt.getAttribute("aria-pressed")==="true"?wt.classList.add("active"):wt.classList.remove("active")}}),c.default.fn.button=f._jQueryInterface,c.default.fn.button.Constructor=f,c.default.fn.button.noConflict=function(){return c.default.fn.button=l,f._jQueryInterface};var v="carousel",n=".bs.carousel",s=c.default.fn[v],i={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},o={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},p={TOUCH:"touch",PEN:"pen"},t=function(){function D(y,I){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(I),this._element=y,this._indicatorsElement=this._element.querySelector(".carousel-indicators"),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=!!(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var V=D.prototype;return V.next=function(){this._isSliding||this._slide("next")},V.nextWhenVisible=function(){var y=c.default(this._element);!document.hidden&&y.is(":visible")&&y.css("visibility")!=="hidden"&&this.next()},V.prev=function(){this._isSliding||this._slide("prev")},V.pause=function(y){y||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(_.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},V.cycle=function(y){y||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},V.to=function(y){var I=this;this._activeElement=this._element.querySelector(".active.carousel-item");var Y=this._getItemIndex(this._activeElement);if(!(y>this._items.length-1||y<0))if(this._isSliding)c.default(this._element).one("slid.bs.carousel",function(){return I.to(y)});else{if(Y===y)return this.pause(),void this.cycle();var Z=y>Y?"next":"prev";this._slide(Z,this._items[y])}},V.dispose=function(){c.default(this._element).off(n),c.default.removeData(this._element,"bs.carousel"),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},V._getConfig=function(y){return y=P({},i,y),_.typeCheckConfig(v,y,o),y},V._handleSwipe=function(){var y=Math.abs(this.touchDeltaX);if(!(y<=40)){var I=y/this.touchDeltaX;this.touchDeltaX=0,I>0&&this.prev(),I<0&&this.next()}},V._addEventListeners=function(){var y=this;this._config.keyboard&&c.default(this._element).on("keydown.bs.carousel",function(I){return y._keydown(I)}),this._config.pause==="hover"&&c.default(this._element).on("mouseenter.bs.carousel",function(I){return y.pause(I)}).on("mouseleave.bs.carousel",function(I){return y.cycle(I)}),this._config.touch&&this._addTouchEventListeners()},V._addTouchEventListeners=function(){var y=this;if(this._touchSupported){var I=function(Z){y._pointerEvent&&p[Z.originalEvent.pointerType.toUpperCase()]?y.touchStartX=Z.originalEvent.clientX:y._pointerEvent||(y.touchStartX=Z.originalEvent.touches[0].clientX)},Y=function(Z){y._pointerEvent&&p[Z.originalEvent.pointerType.toUpperCase()]&&(y.touchDeltaX=Z.originalEvent.clientX-y.touchStartX),y._handleSwipe(),y._config.pause==="hover"&&(y.pause(),y.touchTimeout&&clearTimeout(y.touchTimeout),y.touchTimeout=setTimeout(function(tt){return y.cycle(tt)},500+y._config.interval))};c.default(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",function(Z){return Z.preventDefault()}),this._pointerEvent?(c.default(this._element).on("pointerdown.bs.carousel",function(Z){return I(Z)}),c.default(this._element).on("pointerup.bs.carousel",function(Z){return Y(Z)}),this._element.classList.add("pointer-event")):(c.default(this._element).on("touchstart.bs.carousel",function(Z){return I(Z)}),c.default(this._element).on("touchmove.bs.carousel",function(Z){return function(tt){tt.originalEvent.touches&&tt.originalEvent.touches.length>1?y.touchDeltaX=0:y.touchDeltaX=tt.originalEvent.touches[0].clientX-y.touchStartX}(Z)}),c.default(this._element).on("touchend.bs.carousel",function(Z){return Y(Z)}))}},V._keydown=function(y){if(!/input|textarea/i.test(y.target.tagName))switch(y.which){case 37:y.preventDefault(),this.prev();break;case 39:y.preventDefault(),this.next()}},V._getItemIndex=function(y){return this._items=y&&y.parentNode?[].slice.call(y.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(y)},V._getItemByDirection=function(y,I){var Y=y==="next",Z=y==="prev",tt=this._getItemIndex(I),wt=this._items.length-1;if((Z&&tt===0||Y&&tt===wt)&&!this._config.wrap)return I;var Et=(tt+(y==="prev"?-1:1))%this._items.length;return Et===-1?this._items[this._items.length-1]:this._items[Et]},V._triggerSlideEvent=function(y,I){var Y=this._getItemIndex(y),Z=this._getItemIndex(this._element.querySelector(".active.carousel-item")),tt=c.default.Event("slide.bs.carousel",{relatedTarget:y,direction:I,from:Z,to:Y});return c.default(this._element).trigger(tt),tt},V._setActiveIndicatorElement=function(y){if(this._indicatorsElement){var I=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));c.default(I).removeClass("active");var Y=this._indicatorsElement.children[this._getItemIndex(y)];Y&&c.default(Y).addClass("active")}},V._updateInterval=function(){var y=this._activeElement||this._element.querySelector(".active.carousel-item");if(y){var I=parseInt(y.getAttribute("data-interval"),10);I?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=I):this._config.interval=this._config.defaultInterval||this._config.interval}},V._slide=function(y,I){var Y,Z,tt,wt=this,Et=this._element.querySelector(".active.carousel-item"),jt=this._getItemIndex(Et),Bt=I||Et&&this._getItemByDirection(y,Et),Vt=this._getItemIndex(Bt),Ut=!!this._interval;if(y==="next"?(Y="carousel-item-left",Z="carousel-item-next",tt="left"):(Y="carousel-item-right",Z="carousel-item-prev",tt="right"),Bt&&c.default(Bt).hasClass("active"))this._isSliding=!1;else if(!this._triggerSlideEvent(Bt,tt).isDefaultPrevented()&&Et&&Bt){this._isSliding=!0,Ut&&this.pause(),this._setActiveIndicatorElement(Bt),this._activeElement=Bt;var ee=c.default.Event("slid.bs.carousel",{relatedTarget:Bt,direction:tt,from:jt,to:Vt});if(c.default(this._element).hasClass("slide")){c.default(Bt).addClass(Z),_.reflow(Bt),c.default(Et).addClass(Y),c.default(Bt).addClass(Y);var Ht=_.getTransitionDurationFromElement(Et);c.default(Et).one(_.TRANSITION_END,function(){c.default(Bt).removeClass(Y+" "+Z).addClass("active"),c.default(Et).removeClass("active "+Z+" "+Y),wt._isSliding=!1,setTimeout(function(){return c.default(wt._element).trigger(ee)},0)}).emulateTransitionEnd(Ht)}else c.default(Et).removeClass("active"),c.default(Bt).addClass("active"),this._isSliding=!1,c.default(this._element).trigger(ee);Ut&&this.cycle()}},D._jQueryInterface=function(y){return this.each(function(){var I=c.default(this).data("bs.carousel"),Y=P({},i,c.default(this).data());typeof y=="object"&&(Y=P({},Y,y));var Z=typeof y=="string"?y:Y.slide;if(I||(I=new D(this,Y),c.default(this).data("bs.carousel",I)),typeof y=="number")I.to(y);else if(typeof Z=="string"){if(typeof I[Z]>"u")throw new TypeError('No method named "'+Z+'"');I[Z]()}else Y.interval&&Y.ride&&(I.pause(),I.cycle())})},D._dataApiClickHandler=function(y){var I=_.getSelectorFromElement(this);if(I){var Y=c.default(I)[0];if(Y&&c.default(Y).hasClass("carousel")){var Z=P({},c.default(Y).data(),c.default(this).data()),tt=this.getAttribute("data-slide-to");tt&&(Z.interval=!1),D._jQueryInterface.call(c.default(Y),Z),tt&&c.default(Y).data("bs.carousel").to(tt),y.preventDefault()}}},k(D,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"Default",get:function(){return i}}]),D}();c.default(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",t._dataApiClickHandler),c.default(window).on("load.bs.carousel.data-api",function(){for(var D=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),V=0,y=D.length;V<y;V++){var I=c.default(D[V]);t._jQueryInterface.call(I,I.data())}}),c.default.fn[v]=t._jQueryInterface,c.default.fn[v].Constructor=t,c.default.fn[v].noConflict=function(){return c.default.fn[v]=s,t._jQueryInterface};var x="collapse",m=c.default.fn[x],S={toggle:!0,parent:""},w={toggle:"boolean",parent:"(string|element)"},A=function(){function D(y,I){this._isTransitioning=!1,this._element=y,this._config=this._getConfig(I),this._triggerArray=[].slice.call(document.querySelectorAll('[data-toggle="collapse"][href="#'+y.id+'"],[data-toggle="collapse"][data-target="#'+y.id+'"]'));for(var Y=[].slice.call(document.querySelectorAll('[data-toggle="collapse"]')),Z=0,tt=Y.length;Z<tt;Z++){var wt=Y[Z],Et=_.getSelectorFromElement(wt),jt=[].slice.call(document.querySelectorAll(Et)).filter(function(Bt){return Bt===y});Et!==null&&jt.length>0&&(this._selector=Et,this._triggerArray.push(wt))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var V=D.prototype;return V.toggle=function(){c.default(this._element).hasClass("show")?this.hide():this.show()},V.show=function(){var y,I,Y=this;if(!this._isTransitioning&&!c.default(this._element).hasClass("show")&&(this._parent&&(y=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter(function(jt){return typeof Y._config.parent=="string"?jt.getAttribute("data-parent")===Y._config.parent:jt.classList.contains("collapse")})).length===0&&(y=null),!(y&&(I=c.default(y).not(this._selector).data("bs.collapse"))&&I._isTransitioning))){var Z=c.default.Event("show.bs.collapse");if(c.default(this._element).trigger(Z),!Z.isDefaultPrevented()){y&&(D._jQueryInterface.call(c.default(y).not(this._selector),"hide"),I||c.default(y).data("bs.collapse",null));var tt=this._getDimension();c.default(this._element).removeClass("collapse").addClass("collapsing"),this._element.style[tt]=0,this._triggerArray.length&&c.default(this._triggerArray).removeClass("collapsed").attr("aria-expanded",!0),this.setTransitioning(!0);var wt="scroll"+(tt[0].toUpperCase()+tt.slice(1)),Et=_.getTransitionDurationFromElement(this._element);c.default(this._element).one(_.TRANSITION_END,function(){c.default(Y._element).removeClass("collapsing").addClass("collapse show"),Y._element.style[tt]="",Y.setTransitioning(!1),c.default(Y._element).trigger("shown.bs.collapse")}).emulateTransitionEnd(Et),this._element.style[tt]=this._element[wt]+"px"}}},V.hide=function(){var y=this;if(!this._isTransitioning&&c.default(this._element).hasClass("show")){var I=c.default.Event("hide.bs.collapse");if(c.default(this._element).trigger(I),!I.isDefaultPrevented()){var Y=this._getDimension();this._element.style[Y]=this._element.getBoundingClientRect()[Y]+"px",_.reflow(this._element),c.default(this._element).addClass("collapsing").removeClass("collapse show");var Z=this._triggerArray.length;if(Z>0)for(var tt=0;tt<Z;tt++){var wt=this._triggerArray[tt],Et=_.getSelectorFromElement(wt);Et!==null&&(c.default([].slice.call(document.querySelectorAll(Et))).hasClass("show")||c.default(wt).addClass("collapsed").attr("aria-expanded",!1))}this.setTransitioning(!0),this._element.style[Y]="";var jt=_.getTransitionDurationFromElement(this._element);c.default(this._element).one(_.TRANSITION_END,function(){y.setTransitioning(!1),c.default(y._element).removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")}).emulateTransitionEnd(jt)}}},V.setTransitioning=function(y){this._isTransitioning=y},V.dispose=function(){c.default.removeData(this._element,"bs.collapse"),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},V._getConfig=function(y){return(y=P({},S,y)).toggle=!!y.toggle,_.typeCheckConfig(x,y,w),y},V._getDimension=function(){return c.default(this._element).hasClass("width")?"width":"height"},V._getParent=function(){var y,I=this;_.isElement(this._config.parent)?(y=this._config.parent,typeof this._config.parent.jquery<"u"&&(y=this._config.parent[0])):y=document.querySelector(this._config.parent);var Y='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]',Z=[].slice.call(y.querySelectorAll(Y));return c.default(Z).each(function(tt,wt){I._addAriaAndCollapsedClass(D._getTargetFromElement(wt),[wt])}),y},V._addAriaAndCollapsedClass=function(y,I){var Y=c.default(y).hasClass("show");I.length&&c.default(I).toggleClass("collapsed",!Y).attr("aria-expanded",Y)},D._getTargetFromElement=function(y){var I=_.getSelectorFromElement(y);return I?document.querySelector(I):null},D._jQueryInterface=function(y){return this.each(function(){var I=c.default(this),Y=I.data("bs.collapse"),Z=P({},S,I.data(),typeof y=="object"&&y?y:{});if(!Y&&Z.toggle&&typeof y=="string"&&/show|hide/.test(y)&&(Z.toggle=!1),Y||(Y=new D(this,Z),I.data("bs.collapse",Y)),typeof y=="string"){if(typeof Y[y]>"u")throw new TypeError('No method named "'+y+'"');Y[y]()}})},k(D,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"Default",get:function(){return S}}]),D}();c.default(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(D){D.currentTarget.tagName==="A"&&D.preventDefault();var V=c.default(this),y=_.getSelectorFromElement(this),I=[].slice.call(document.querySelectorAll(y));c.default(I).each(function(){var Y=c.default(this),Z=Y.data("bs.collapse")?"toggle":V.data();A._jQueryInterface.call(Y,Z)})}),c.default.fn[x]=A._jQueryInterface,c.default.fn[x].Constructor=A,c.default.fn[x].noConflict=function(){return c.default.fn[x]=m,A._jQueryInterface};var F="dropdown",N=c.default.fn[F],R=new RegExp("38|40|27"),B={offset:0,flip:!0,boundary:"scrollParent",reference:"toggle",display:"dynamic",popperConfig:null},z={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)",reference:"(string|element)",display:"string",popperConfig:"(null|object)"},H=function(){function D(y,I){this._element=y,this._popper=null,this._config=this._getConfig(I),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var V=D.prototype;return V.toggle=function(){if(!this._element.disabled&&!c.default(this._element).hasClass("disabled")){var y=c.default(this._menu).hasClass("show");D._clearMenus(),y||this.show(!0)}},V.show=function(y){if(y===void 0&&(y=!1),!(this._element.disabled||c.default(this._element).hasClass("disabled")||c.default(this._menu).hasClass("show"))){var I={relatedTarget:this._element},Y=c.default.Event("show.bs.dropdown",I),Z=D._getParentFromElement(this._element);if(c.default(Z).trigger(Y),!Y.isDefaultPrevented()){if(!this._inNavbar&&y){if(typeof O.default>"u")throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");var tt=this._element;this._config.reference==="parent"?tt=Z:_.isElement(this._config.reference)&&(tt=this._config.reference,typeof this._config.reference.jquery<"u"&&(tt=this._config.reference[0])),this._config.boundary!=="scrollParent"&&c.default(Z).addClass("position-static"),this._popper=new O.default(tt,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&c.default(Z).closest(".navbar-nav").length===0&&c.default(document.body).children().on("mouseover",null,c.default.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),c.default(this._menu).toggleClass("show"),c.default(Z).toggleClass("show").trigger(c.default.Event("shown.bs.dropdown",I))}}},V.hide=function(){if(!this._element.disabled&&!c.default(this._element).hasClass("disabled")&&c.default(this._menu).hasClass("show")){var y={relatedTarget:this._element},I=c.default.Event("hide.bs.dropdown",y),Y=D._getParentFromElement(this._element);c.default(Y).trigger(I),I.isDefaultPrevented()||(this._popper&&this._popper.destroy(),c.default(this._menu).toggleClass("show"),c.default(Y).toggleClass("show").trigger(c.default.Event("hidden.bs.dropdown",y)))}},V.dispose=function(){c.default.removeData(this._element,"bs.dropdown"),c.default(this._element).off(".bs.dropdown"),this._element=null,this._menu=null,this._popper!==null&&(this._popper.destroy(),this._popper=null)},V.update=function(){this._inNavbar=this._detectNavbar(),this._popper!==null&&this._popper.scheduleUpdate()},V._addEventListeners=function(){var y=this;c.default(this._element).on("click.bs.dropdown",function(I){I.preventDefault(),I.stopPropagation(),y.toggle()})},V._getConfig=function(y){return y=P({},this.constructor.Default,c.default(this._element).data(),y),_.typeCheckConfig(F,y,this.constructor.DefaultType),y},V._getMenuElement=function(){if(!this._menu){var y=D._getParentFromElement(this._element);y&&(this._menu=y.querySelector(".dropdown-menu"))}return this._menu},V._getPlacement=function(){var y=c.default(this._element.parentNode),I="bottom-start";return y.hasClass("dropup")?I=c.default(this._menu).hasClass("dropdown-menu-right")?"top-end":"top-start":y.hasClass("dropright")?I="right-start":y.hasClass("dropleft")?I="left-start":c.default(this._menu).hasClass("dropdown-menu-right")&&(I="bottom-end"),I},V._detectNavbar=function(){return c.default(this._element).closest(".navbar").length>0},V._getOffset=function(){var y=this,I={};return typeof this._config.offset=="function"?I.fn=function(Y){return Y.offsets=P({},Y.offsets,y._config.offset(Y.offsets,y._element)||{}),Y}:I.offset=this._config.offset,I},V._getPopperConfig=function(){var y={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return this._config.display==="static"&&(y.modifiers.applyStyle={enabled:!1}),P({},y,this._config.popperConfig)},D._jQueryInterface=function(y){return this.each(function(){var I=c.default(this).data("bs.dropdown");if(I||(I=new D(this,typeof y=="object"?y:null),c.default(this).data("bs.dropdown",I)),typeof y=="string"){if(typeof I[y]>"u")throw new TypeError('No method named "'+y+'"');I[y]()}})},D._clearMenus=function(y){if(!y||y.which!==3&&(y.type!=="keyup"||y.which===9))for(var I=[].slice.call(document.querySelectorAll('[data-toggle="dropdown"]')),Y=0,Z=I.length;Y<Z;Y++){var tt=D._getParentFromElement(I[Y]),wt=c.default(I[Y]).data("bs.dropdown"),Et={relatedTarget:I[Y]};if(y&&y.type==="click"&&(Et.clickEvent=y),wt){var jt=wt._menu;if(c.default(tt).hasClass("show")&&!(y&&(y.type==="click"&&/input|textarea/i.test(y.target.tagName)||y.type==="keyup"&&y.which===9)&&c.default.contains(tt,y.target))){var Bt=c.default.Event("hide.bs.dropdown",Et);c.default(tt).trigger(Bt),Bt.isDefaultPrevented()||("ontouchstart"in document.documentElement&&c.default(document.body).children().off("mouseover",null,c.default.noop),I[Y].setAttribute("aria-expanded","false"),wt._popper&&wt._popper.destroy(),c.default(jt).removeClass("show"),c.default(tt).removeClass("show").trigger(c.default.Event("hidden.bs.dropdown",Et)))}}}},D._getParentFromElement=function(y){var I,Y=_.getSelectorFromElement(y);return Y&&(I=document.querySelector(Y)),I||y.parentNode},D._dataApiKeydownHandler=function(y){if(!(/input|textarea/i.test(y.target.tagName)?y.which===32||y.which!==27&&(y.which!==40&&y.which!==38||c.default(y.target).closest(".dropdown-menu").length):!R.test(y.which))&&!this.disabled&&!c.default(this).hasClass("disabled")){var I=D._getParentFromElement(this),Y=c.default(I).hasClass("show");if(Y||y.which!==27){if(y.preventDefault(),y.stopPropagation(),!Y||y.which===27||y.which===32)return y.which===27&&c.default(I.querySelector('[data-toggle="dropdown"]')).trigger("focus"),void c.default(this).trigger("click");var Z=[].slice.call(I.querySelectorAll(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)")).filter(function(wt){return c.default(wt).is(":visible")});if(Z.length!==0){var tt=Z.indexOf(y.target);y.which===38&&tt>0&&tt--,y.which===40&&tt<Z.length-1&&tt++,tt<0&&(tt=0),Z[tt].focus()}}}},k(D,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"Default",get:function(){return B}},{key:"DefaultType",get:function(){return z}}]),D}();c.default(document).on("keydown.bs.dropdown.data-api",'[data-toggle="dropdown"]',H._dataApiKeydownHandler).on("keydown.bs.dropdown.data-api",".dropdown-menu",H._dataApiKeydownHandler).on("click.bs.dropdown.data-api keyup.bs.dropdown.data-api",H._clearMenus).on("click.bs.dropdown.data-api",'[data-toggle="dropdown"]',function(D){D.preventDefault(),D.stopPropagation(),H._jQueryInterface.call(c.default(this),"toggle")}).on("click.bs.dropdown.data-api",".dropdown form",function(D){D.stopPropagation()}),c.default.fn[F]=H._jQueryInterface,c.default.fn[F].Constructor=H,c.default.fn[F].noConflict=function(){return c.default.fn[F]=N,H._jQueryInterface};var G=c.default.fn.modal,K={backdrop:!0,keyboard:!0,focus:!0,show:!0},ct={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},it=function(){function D(y,I){this._config=this._getConfig(I),this._element=y,this._dialog=y.querySelector(".modal-dialog"),this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollbarWidth=0}var V=D.prototype;return V.toggle=function(y){return this._isShown?this.hide():this.show(y)},V.show=function(y){var I=this;if(!this._isShown&&!this._isTransitioning){c.default(this._element).hasClass("fade")&&(this._isTransitioning=!0);var Y=c.default.Event("show.bs.modal",{relatedTarget:y});c.default(this._element).trigger(Y),this._isShown||Y.isDefaultPrevented()||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),c.default(this._element).on("click.dismiss.bs.modal",'[data-dismiss="modal"]',function(Z){return I.hide(Z)}),c.default(this._dialog).on("mousedown.dismiss.bs.modal",function(){c.default(I._element).one("mouseup.dismiss.bs.modal",function(Z){c.default(Z.target).is(I._element)&&(I._ignoreBackdropClick=!0)})}),this._showBackdrop(function(){return I._showElement(y)}))}},V.hide=function(y){var I=this;if(y&&y.preventDefault(),this._isShown&&!this._isTransitioning){var Y=c.default.Event("hide.bs.modal");if(c.default(this._element).trigger(Y),this._isShown&&!Y.isDefaultPrevented()){this._isShown=!1;var Z=c.default(this._element).hasClass("fade");if(Z&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),c.default(document).off("focusin.bs.modal"),c.default(this._element).removeClass("show"),c.default(this._element).off("click.dismiss.bs.modal"),c.default(this._dialog).off("mousedown.dismiss.bs.modal"),Z){var tt=_.getTransitionDurationFromElement(this._element);c.default(this._element).one(_.TRANSITION_END,function(wt){return I._hideModal(wt)}).emulateTransitionEnd(tt)}else this._hideModal()}}},V.dispose=function(){[window,this._element,this._dialog].forEach(function(y){return c.default(y).off(".bs.modal")}),c.default(document).off("focusin.bs.modal"),c.default.removeData(this._element,"bs.modal"),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._isTransitioning=null,this._scrollbarWidth=null},V.handleUpdate=function(){this._adjustDialog()},V._getConfig=function(y){return y=P({},K,y),_.typeCheckConfig("modal",y,ct),y},V._triggerBackdropTransition=function(){var y=this,I=c.default.Event("hidePrevented.bs.modal");if(c.default(this._element).trigger(I),!I.isDefaultPrevented()){var Y=this._element.scrollHeight>document.documentElement.clientHeight;Y||(this._element.style.overflowY="hidden"),this._element.classList.add("modal-static");var Z=_.getTransitionDurationFromElement(this._dialog);c.default(this._element).off(_.TRANSITION_END),c.default(this._element).one(_.TRANSITION_END,function(){y._element.classList.remove("modal-static"),Y||c.default(y._element).one(_.TRANSITION_END,function(){y._element.style.overflowY=""}).emulateTransitionEnd(y._element,Z)}).emulateTransitionEnd(Z),this._element.focus()}},V._showElement=function(y){var I=this,Y=c.default(this._element).hasClass("fade"),Z=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),c.default(this._dialog).hasClass("modal-dialog-scrollable")&&Z?Z.scrollTop=0:this._element.scrollTop=0,Y&&_.reflow(this._element),c.default(this._element).addClass("show"),this._config.focus&&this._enforceFocus();var tt=c.default.Event("shown.bs.modal",{relatedTarget:y}),wt=function(){I._config.focus&&I._element.focus(),I._isTransitioning=!1,c.default(I._element).trigger(tt)};if(Y){var Et=_.getTransitionDurationFromElement(this._dialog);c.default(this._dialog).one(_.TRANSITION_END,wt).emulateTransitionEnd(Et)}else wt()},V._enforceFocus=function(){var y=this;c.default(document).off("focusin.bs.modal").on("focusin.bs.modal",function(I){document!==I.target&&y._element!==I.target&&c.default(y._element).has(I.target).length===0&&y._element.focus()})},V._setEscapeEvent=function(){var y=this;this._isShown?c.default(this._element).on("keydown.dismiss.bs.modal",function(I){y._config.keyboard&&I.which===27?(I.preventDefault(),y.hide()):y._config.keyboard||I.which!==27||y._triggerBackdropTransition()}):this._isShown||c.default(this._element).off("keydown.dismiss.bs.modal")},V._setResizeEvent=function(){var y=this;this._isShown?c.default(window).on("resize.bs.modal",function(I){return y.handleUpdate(I)}):c.default(window).off("resize.bs.modal")},V._hideModal=function(){var y=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop(function(){c.default(document.body).removeClass("modal-open"),y._resetAdjustments(),y._resetScrollbar(),c.default(y._element).trigger("hidden.bs.modal")})},V._removeBackdrop=function(){this._backdrop&&(c.default(this._backdrop).remove(),this._backdrop=null)},V._showBackdrop=function(y){var I=this,Y=c.default(this._element).hasClass("fade")?"fade":"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",Y&&this._backdrop.classList.add(Y),c.default(this._backdrop).appendTo(document.body),c.default(this._element).on("click.dismiss.bs.modal",function(Et){I._ignoreBackdropClick?I._ignoreBackdropClick=!1:Et.target===Et.currentTarget&&(I._config.backdrop==="static"?I._triggerBackdropTransition():I.hide())}),Y&&_.reflow(this._backdrop),c.default(this._backdrop).addClass("show"),!y)return;if(!Y)return void y();var Z=_.getTransitionDurationFromElement(this._backdrop);c.default(this._backdrop).one(_.TRANSITION_END,y).emulateTransitionEnd(Z)}else if(!this._isShown&&this._backdrop){c.default(this._backdrop).removeClass("show");var tt=function(){I._removeBackdrop(),y&&y()};if(c.default(this._element).hasClass("fade")){var wt=_.getTransitionDurationFromElement(this._backdrop);c.default(this._backdrop).one(_.TRANSITION_END,tt).emulateTransitionEnd(wt)}else tt()}else y&&y()},V._adjustDialog=function(){var y=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&y&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!y&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},V._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},V._checkScrollbar=function(){var y=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(y.left+y.right)<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},V._setScrollbar=function(){var y=this;if(this._isBodyOverflowing){var I=[].slice.call(document.querySelectorAll(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top")),Y=[].slice.call(document.querySelectorAll(".sticky-top"));c.default(I).each(function(wt,Et){var jt=Et.style.paddingRight,Bt=c.default(Et).css("padding-right");c.default(Et).data("padding-right",jt).css("padding-right",parseFloat(Bt)+y._scrollbarWidth+"px")}),c.default(Y).each(function(wt,Et){var jt=Et.style.marginRight,Bt=c.default(Et).css("margin-right");c.default(Et).data("margin-right",jt).css("margin-right",parseFloat(Bt)-y._scrollbarWidth+"px")});var Z=document.body.style.paddingRight,tt=c.default(document.body).css("padding-right");c.default(document.body).data("padding-right",Z).css("padding-right",parseFloat(tt)+this._scrollbarWidth+"px")}c.default(document.body).addClass("modal-open")},V._resetScrollbar=function(){var y=[].slice.call(document.querySelectorAll(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top"));c.default(y).each(function(Z,tt){var wt=c.default(tt).data("padding-right");c.default(tt).removeData("padding-right"),tt.style.paddingRight=wt||""});var I=[].slice.call(document.querySelectorAll(".sticky-top"));c.default(I).each(function(Z,tt){var wt=c.default(tt).data("margin-right");typeof wt<"u"&&c.default(tt).css("margin-right",wt).removeData("margin-right")});var Y=c.default(document.body).data("padding-right");c.default(document.body).removeData("padding-right"),document.body.style.paddingRight=Y||""},V._getScrollbarWidth=function(){var y=document.createElement("div");y.className="modal-scrollbar-measure",document.body.appendChild(y);var I=y.getBoundingClientRect().width-y.clientWidth;return document.body.removeChild(y),I},D._jQueryInterface=function(y,I){return this.each(function(){var Y=c.default(this).data("bs.modal"),Z=P({},K,c.default(this).data(),typeof y=="object"&&y?y:{});if(Y||(Y=new D(this,Z),c.default(this).data("bs.modal",Y)),typeof y=="string"){if(typeof Y[y]>"u")throw new TypeError('No method named "'+y+'"');Y[y](I)}else Z.show&&Y.show(I)})},k(D,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"Default",get:function(){return K}}]),D}();c.default(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(D){var V,y=this,I=_.getSelectorFromElement(this);I&&(V=document.querySelector(I));var Y=c.default(V).data("bs.modal")?"toggle":P({},c.default(V).data(),c.default(this).data());this.tagName!=="A"&&this.tagName!=="AREA"||D.preventDefault();var Z=c.default(V).one("show.bs.modal",function(tt){tt.isDefaultPrevented()||Z.one("hidden.bs.modal",function(){c.default(y).is(":visible")&&y.focus()})});it._jQueryInterface.call(c.default(V),Y,this)}),c.default.fn.modal=it._jQueryInterface,c.default.fn.modal.Constructor=it,c.default.fn.modal.noConflict=function(){return c.default.fn.modal=G,it._jQueryInterface};var ht=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],dt={"*":["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:[]},St=/^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/gi,pt=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i;function Q(D,V,y){if(D.length===0)return D;if(y&&typeof y=="function")return y(D);for(var I=new window.DOMParser().parseFromString(D,"text/html"),Y=Object.keys(V),Z=[].slice.call(I.body.querySelectorAll("*")),tt=function(jt,Bt){var Vt=Z[jt],Ut=Vt.nodeName.toLowerCase();if(Y.indexOf(Vt.nodeName.toLowerCase())===-1)return Vt.parentNode.removeChild(Vt),"continue";var ee=[].slice.call(Vt.attributes),Ht=[].concat(V["*"]||[],V[Ut]||[]);ee.forEach(function(he){(function(pe,ye){var fe=pe.nodeName.toLowerCase();if(ye.indexOf(fe)!==-1)return ht.indexOf(fe)===-1||!!(pe.nodeValue.match(St)||pe.nodeValue.match(pt));for(var be=ye.filter(function(rn){return rn instanceof RegExp}),Re=0,Le=be.length;Re<Le;Re++)if(fe.match(be[Re]))return!0;return!1})(he,Ht)||Vt.removeAttribute(he.nodeName)})},wt=0,Et=Z.length;wt<Et;wt++)tt(wt);return I.body.innerHTML}var et="tooltip",rt=c.default.fn[et],ot=new RegExp("(^|\\s)bs-tooltip\\S+","g"),gt=["sanitize","whiteList","sanitizeFn"],J={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object",popperConfig:"(null|object)"},at={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},bt={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",customClass:"",sanitize:!0,sanitizeFn:null,whiteList:dt,popperConfig:null},yt={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"},lt=function(){function D(y,I){if(typeof O.default>"u")throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=y,this.config=this._getConfig(I),this.tip=null,this._setListeners()}var V=D.prototype;return V.enable=function(){this._isEnabled=!0},V.disable=function(){this._isEnabled=!1},V.toggleEnabled=function(){this._isEnabled=!this._isEnabled},V.toggle=function(y){if(this._isEnabled)if(y){var I=this.constructor.DATA_KEY,Y=c.default(y.currentTarget).data(I);Y||(Y=new this.constructor(y.currentTarget,this._getDelegateConfig()),c.default(y.currentTarget).data(I,Y)),Y._activeTrigger.click=!Y._activeTrigger.click,Y._isWithActiveTrigger()?Y._enter(null,Y):Y._leave(null,Y)}else{if(c.default(this.getTipElement()).hasClass("show"))return void this._leave(null,this);this._enter(null,this)}},V.dispose=function(){clearTimeout(this._timeout),c.default.removeData(this.element,this.constructor.DATA_KEY),c.default(this.element).off(this.constructor.EVENT_KEY),c.default(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&c.default(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},V.show=function(){var y=this;if(c.default(this.element).css("display")==="none")throw new Error("Please use show on visible elements");var I=c.default.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){c.default(this.element).trigger(I);var Y=_.findShadowRoot(this.element),Z=c.default.contains(Y!==null?Y:this.element.ownerDocument.documentElement,this.element);if(I.isDefaultPrevented()||!Z)return;var tt=this.getTipElement(),wt=_.getUID(this.constructor.NAME);tt.setAttribute("id",wt),this.element.setAttribute("aria-describedby",wt),this.setContent(),this.config.animation&&c.default(tt).addClass("fade");var Et=typeof this.config.placement=="function"?this.config.placement.call(this,tt,this.element):this.config.placement,jt=this._getAttachment(Et);this.addAttachmentClass(jt);var Bt=this._getContainer();c.default(tt).data(this.constructor.DATA_KEY,this),c.default.contains(this.element.ownerDocument.documentElement,this.tip)||c.default(tt).appendTo(Bt),c.default(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new O.default(this.element,tt,this._getPopperConfig(jt)),c.default(tt).addClass("show"),c.default(tt).addClass(this.config.customClass),"ontouchstart"in document.documentElement&&c.default(document.body).children().on("mouseover",null,c.default.noop);var Vt=function(){y.config.animation&&y._fixTransition();var ee=y._hoverState;y._hoverState=null,c.default(y.element).trigger(y.constructor.Event.SHOWN),ee==="out"&&y._leave(null,y)};if(c.default(this.tip).hasClass("fade")){var Ut=_.getTransitionDurationFromElement(this.tip);c.default(this.tip).one(_.TRANSITION_END,Vt).emulateTransitionEnd(Ut)}else Vt()}},V.hide=function(y){var I=this,Y=this.getTipElement(),Z=c.default.Event(this.constructor.Event.HIDE),tt=function(){I._hoverState!=="show"&&Y.parentNode&&Y.parentNode.removeChild(Y),I._cleanTipClass(),I.element.removeAttribute("aria-describedby"),c.default(I.element).trigger(I.constructor.Event.HIDDEN),I._popper!==null&&I._popper.destroy(),y&&y()};if(c.default(this.element).trigger(Z),!Z.isDefaultPrevented()){if(c.default(Y).removeClass("show"),"ontouchstart"in document.documentElement&&c.default(document.body).children().off("mouseover",null,c.default.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,c.default(this.tip).hasClass("fade")){var wt=_.getTransitionDurationFromElement(Y);c.default(Y).one(_.TRANSITION_END,tt).emulateTransitionEnd(wt)}else tt();this._hoverState=""}},V.update=function(){this._popper!==null&&this._popper.scheduleUpdate()},V.isWithContent=function(){return!!this.getTitle()},V.addAttachmentClass=function(y){c.default(this.getTipElement()).addClass("bs-tooltip-"+y)},V.getTipElement=function(){return this.tip=this.tip||c.default(this.config.template)[0],this.tip},V.setContent=function(){var y=this.getTipElement();this.setElementContent(c.default(y.querySelectorAll(".tooltip-inner")),this.getTitle()),c.default(y).removeClass("fade show")},V.setElementContent=function(y,I){typeof I!="object"||!I.nodeType&&!I.jquery?this.config.html?(this.config.sanitize&&(I=Q(I,this.config.whiteList,this.config.sanitizeFn)),y.html(I)):y.text(I):this.config.html?c.default(I).parent().is(y)||y.empty().append(I):y.text(c.default(I).text())},V.getTitle=function(){var y=this.element.getAttribute("data-original-title");return y||(y=typeof this.config.title=="function"?this.config.title.call(this.element):this.config.title),y},V._getPopperConfig=function(y){var I=this;return P({},{placement:y,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(Y){Y.originalPlacement!==Y.placement&&I._handlePopperPlacementChange(Y)},onUpdate:function(Y){return I._handlePopperPlacementChange(Y)}},this.config.popperConfig)},V._getOffset=function(){var y=this,I={};return typeof this.config.offset=="function"?I.fn=function(Y){return Y.offsets=P({},Y.offsets,y.config.offset(Y.offsets,y.element)||{}),Y}:I.offset=this.config.offset,I},V._getContainer=function(){return this.config.container===!1?document.body:_.isElement(this.config.container)?c.default(this.config.container):c.default(document).find(this.config.container)},V._getAttachment=function(y){return at[y.toUpperCase()]},V._setListeners=function(){var y=this;this.config.trigger.split(" ").forEach(function(I){if(I==="click")c.default(y.element).on(y.constructor.Event.CLICK,y.config.selector,function(tt){return y.toggle(tt)});else if(I!=="manual"){var Y=I==="hover"?y.constructor.Event.MOUSEENTER:y.constructor.Event.FOCUSIN,Z=I==="hover"?y.constructor.Event.MOUSELEAVE:y.constructor.Event.FOCUSOUT;c.default(y.element).on(Y,y.config.selector,function(tt){return y._enter(tt)}).on(Z,y.config.selector,function(tt){return y._leave(tt)})}}),this._hideModalHandler=function(){y.element&&y.hide()},c.default(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=P({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},V._fixTitle=function(){var y=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||y!=="string")&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},V._enter=function(y,I){var Y=this.constructor.DATA_KEY;(I=I||c.default(y.currentTarget).data(Y))||(I=new this.constructor(y.currentTarget,this._getDelegateConfig()),c.default(y.currentTarget).data(Y,I)),y&&(I._activeTrigger[y.type==="focusin"?"focus":"hover"]=!0),c.default(I.getTipElement()).hasClass("show")||I._hoverState==="show"?I._hoverState="show":(clearTimeout(I._timeout),I._hoverState="show",I.config.delay&&I.config.delay.show?I._timeout=setTimeout(function(){I._hoverState==="show"&&I.show()},I.config.delay.show):I.show())},V._leave=function(y,I){var Y=this.constructor.DATA_KEY;(I=I||c.default(y.currentTarget).data(Y))||(I=new this.constructor(y.currentTarget,this._getDelegateConfig()),c.default(y.currentTarget).data(Y,I)),y&&(I._activeTrigger[y.type==="focusout"?"focus":"hover"]=!1),I._isWithActiveTrigger()||(clearTimeout(I._timeout),I._hoverState="out",I.config.delay&&I.config.delay.hide?I._timeout=setTimeout(function(){I._hoverState==="out"&&I.hide()},I.config.delay.hide):I.hide())},V._isWithActiveTrigger=function(){for(var y in this._activeTrigger)if(this._activeTrigger[y])return!0;return!1},V._getConfig=function(y){var I=c.default(this.element).data();return Object.keys(I).forEach(function(Y){gt.indexOf(Y)!==-1&&delete I[Y]}),typeof(y=P({},this.constructor.Default,I,typeof y=="object"&&y?y:{})).delay=="number"&&(y.delay={show:y.delay,hide:y.delay}),typeof y.title=="number"&&(y.title=y.title.toString()),typeof y.content=="number"&&(y.content=y.content.toString()),_.typeCheckConfig(et,y,this.constructor.DefaultType),y.sanitize&&(y.template=Q(y.template,y.whiteList,y.sanitizeFn)),y},V._getDelegateConfig=function(){var y={};if(this.config)for(var I in this.config)this.constructor.Default[I]!==this.config[I]&&(y[I]=this.config[I]);return y},V._cleanTipClass=function(){var y=c.default(this.getTipElement()),I=y.attr("class").match(ot);I!==null&&I.length&&y.removeClass(I.join(""))},V._handlePopperPlacementChange=function(y){this.tip=y.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(y.placement))},V._fixTransition=function(){var y=this.getTipElement(),I=this.config.animation;y.getAttribute("x-placement")===null&&(c.default(y).removeClass("fade"),this.config.animation=!1,this.hide(),this.show(),this.config.animation=I)},D._jQueryInterface=function(y){return this.each(function(){var I=c.default(this),Y=I.data("bs.tooltip"),Z=typeof y=="object"&&y;if((Y||!/dispose|hide/.test(y))&&(Y||(Y=new D(this,Z),I.data("bs.tooltip",Y)),typeof y=="string")){if(typeof Y[y]>"u")throw new TypeError('No method named "'+y+'"');Y[y]()}})},k(D,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"Default",get:function(){return bt}},{key:"NAME",get:function(){return et}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return yt}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return J}}]),D}();c.default.fn[et]=lt._jQueryInterface,c.default.fn[et].Constructor=lt,c.default.fn[et].noConflict=function(){return c.default.fn[et]=rt,lt._jQueryInterface};var At="popover",Dt=c.default.fn[At],It=new RegExp("(^|\\s)bs-popover\\S+","g"),Pt=P({},lt.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),Ct=P({},lt.DefaultType,{content:"(string|element|function)"}),Ot={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"},mt=function(D){var V,y;function I(){return D.apply(this,arguments)||this}y=D,(V=I).prototype=Object.create(y.prototype),V.prototype.constructor=V,V.__proto__=y;var Y=I.prototype;return Y.isWithContent=function(){return this.getTitle()||this._getContent()},Y.addAttachmentClass=function(Z){c.default(this.getTipElement()).addClass("bs-popover-"+Z)},Y.getTipElement=function(){return this.tip=this.tip||c.default(this.config.template)[0],this.tip},Y.setContent=function(){var Z=c.default(this.getTipElement());this.setElementContent(Z.find(".popover-header"),this.getTitle());var tt=this._getContent();typeof tt=="function"&&(tt=tt.call(this.element)),this.setElementContent(Z.find(".popover-body"),tt),Z.removeClass("fade show")},Y._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},Y._cleanTipClass=function(){var Z=c.default(this.getTipElement()),tt=Z.attr("class").match(It);tt!==null&&tt.length>0&&Z.removeClass(tt.join(""))},I._jQueryInterface=function(Z){return this.each(function(){var tt=c.default(this).data("bs.popover"),wt=typeof Z=="object"?Z:null;if((tt||!/dispose|hide/.test(Z))&&(tt||(tt=new I(this,wt),c.default(this).data("bs.popover",tt)),typeof Z=="string")){if(typeof tt[Z]>"u")throw new TypeError('No method named "'+Z+'"');tt[Z]()}})},k(I,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"Default",get:function(){return Pt}},{key:"NAME",get:function(){return At}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return Ot}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return Ct}}]),I}(lt);c.default.fn[At]=mt._jQueryInterface,c.default.fn[At].Constructor=mt,c.default.fn[At].noConflict=function(){return c.default.fn[At]=Dt,mt._jQueryInterface};var zt="scrollspy",ie=c.default.fn[zt],Yt={offset:10,method:"auto",target:""},ue={offset:"number",method:"string",target:"(string|element)"},oe=function(){function D(y,I){var Y=this;this._element=y,this._scrollElement=y.tagName==="BODY"?window:y,this._config=this._getConfig(I),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,c.default(this._scrollElement).on("scroll.bs.scrollspy",function(Z){return Y._process(Z)}),this.refresh(),this._process()}var V=D.prototype;return V.refresh=function(){var y=this,I=this._scrollElement===this._scrollElement.window?"offset":"position",Y=this._config.method==="auto"?I:this._config.method,Z=Y==="position"?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map(function(tt){var wt,Et=_.getSelectorFromElement(tt);if(Et&&(wt=document.querySelector(Et)),wt){var jt=wt.getBoundingClientRect();if(jt.width||jt.height)return[c.default(wt)[Y]().top+Z,Et]}return null}).filter(function(tt){return tt}).sort(function(tt,wt){return tt[0]-wt[0]}).forEach(function(tt){y._offsets.push(tt[0]),y._targets.push(tt[1])})},V.dispose=function(){c.default.removeData(this._element,"bs.scrollspy"),c.default(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},V._getConfig=function(y){if(typeof(y=P({},Yt,typeof y=="object"&&y?y:{})).target!="string"&&_.isElement(y.target)){var I=c.default(y.target).attr("id");I||(I=_.getUID(zt),c.default(y.target).attr("id",I)),y.target="#"+I}return _.typeCheckConfig(zt,y,ue),y},V._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},V._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},V._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},V._process=function(){var y=this._getScrollTop()+this._config.offset,I=this._getScrollHeight(),Y=this._config.offset+I-this._getOffsetHeight();if(this._scrollHeight!==I&&this.refresh(),y>=Y){var Z=this._targets[this._targets.length-1];this._activeTarget!==Z&&this._activate(Z)}else{if(this._activeTarget&&y<this._offsets[0]&&this._offsets[0]>0)return this._activeTarget=null,void this._clear();for(var tt=this._offsets.length;tt--;)this._activeTarget!==this._targets[tt]&&y>=this._offsets[tt]&&(typeof this._offsets[tt+1]>"u"||y<this._offsets[tt+1])&&this._activate(this._targets[tt])}},V._activate=function(y){this._activeTarget=y,this._clear();var I=this._selector.split(",").map(function(Z){return Z+'[data-target="'+y+'"],'+Z+'[href="'+y+'"]'}),Y=c.default([].slice.call(document.querySelectorAll(I.join(","))));Y.hasClass("dropdown-item")?(Y.closest(".dropdown").find(".dropdown-toggle").addClass("active"),Y.addClass("active")):(Y.addClass("active"),Y.parents(".nav, .list-group").prev(".nav-link, .list-group-item").addClass("active"),Y.parents(".nav, .list-group").prev(".nav-item").children(".nav-link").addClass("active")),c.default(this._scrollElement).trigger("activate.bs.scrollspy",{relatedTarget:y})},V._clear=function(){[].slice.call(document.querySelectorAll(this._selector)).filter(function(y){return y.classList.contains("active")}).forEach(function(y){return y.classList.remove("active")})},D._jQueryInterface=function(y){return this.each(function(){var I=c.default(this).data("bs.scrollspy");if(I||(I=new D(this,typeof y=="object"&&y),c.default(this).data("bs.scrollspy",I)),typeof y=="string"){if(typeof I[y]>"u")throw new TypeError('No method named "'+y+'"');I[y]()}})},k(D,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"Default",get:function(){return Yt}}]),D}();c.default(window).on("load.bs.scrollspy.data-api",function(){for(var D=[].slice.call(document.querySelectorAll('[data-spy="scroll"]')),V=D.length;V--;){var y=c.default(D[V]);oe._jQueryInterface.call(y,y.data())}}),c.default.fn[zt]=oe._jQueryInterface,c.default.fn[zt].Constructor=oe,c.default.fn[zt].noConflict=function(){return c.default.fn[zt]=ie,oe._jQueryInterface};var ne=c.default.fn.tab,Rt=function(){function D(y){this._element=y}var V=D.prototype;return V.show=function(){var y=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&c.default(this._element).hasClass("active")||c.default(this._element).hasClass("disabled"))){var I,Y,Z=c.default(this._element).closest(".nav, .list-group")[0],tt=_.getSelectorFromElement(this._element);if(Z){var wt=Z.nodeName==="UL"||Z.nodeName==="OL"?"> li > .active":".active";Y=(Y=c.default.makeArray(c.default(Z).find(wt)))[Y.length-1]}var Et=c.default.Event("hide.bs.tab",{relatedTarget:this._element}),jt=c.default.Event("show.bs.tab",{relatedTarget:Y});if(Y&&c.default(Y).trigger(Et),c.default(this._element).trigger(jt),!jt.isDefaultPrevented()&&!Et.isDefaultPrevented()){tt&&(I=document.querySelector(tt)),this._activate(this._element,Z);var Bt=function(){var Vt=c.default.Event("hidden.bs.tab",{relatedTarget:y._element}),Ut=c.default.Event("shown.bs.tab",{relatedTarget:Y});c.default(Y).trigger(Vt),c.default(y._element).trigger(Ut)};I?this._activate(I,I.parentNode,Bt):Bt()}}},V.dispose=function(){c.default.removeData(this._element,"bs.tab"),this._element=null},V._activate=function(y,I,Y){var Z=this,tt=(!I||I.nodeName!=="UL"&&I.nodeName!=="OL"?c.default(I).children(".active"):c.default(I).find("> li > .active"))[0],wt=Y&&tt&&c.default(tt).hasClass("fade"),Et=function(){return Z._transitionComplete(y,tt,Y)};if(tt&&wt){var jt=_.getTransitionDurationFromElement(tt);c.default(tt).removeClass("show").one(_.TRANSITION_END,Et).emulateTransitionEnd(jt)}else Et()},V._transitionComplete=function(y,I,Y){if(I){c.default(I).removeClass("active");var Z=c.default(I.parentNode).find("> .dropdown-menu .active")[0];Z&&c.default(Z).removeClass("active"),I.getAttribute("role")==="tab"&&I.setAttribute("aria-selected",!1)}if(c.default(y).addClass("active"),y.getAttribute("role")==="tab"&&y.setAttribute("aria-selected",!0),_.reflow(y),y.classList.contains("fade")&&y.classList.add("show"),y.parentNode&&c.default(y.parentNode).hasClass("dropdown-menu")){var tt=c.default(y).closest(".dropdown")[0];if(tt){var wt=[].slice.call(tt.querySelectorAll(".dropdown-toggle"));c.default(wt).addClass("active")}y.setAttribute("aria-expanded",!0)}Y&&Y()},D._jQueryInterface=function(y){return this.each(function(){var I=c.default(this),Y=I.data("bs.tab");if(Y||(Y=new D(this),I.data("bs.tab",Y)),typeof y=="string"){if(typeof Y[y]>"u")throw new TypeError('No method named "'+y+'"');Y[y]()}})},k(D,null,[{key:"VERSION",get:function(){return"4.6.0"}}]),D}();c.default(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',function(D){D.preventDefault(),Rt._jQueryInterface.call(c.default(this),"show")}),c.default.fn.tab=Rt._jQueryInterface,c.default.fn.tab.Constructor=Rt,c.default.fn.tab.noConflict=function(){return c.default.fn.tab=ne,Rt._jQueryInterface};var Wt=c.default.fn.toast,qt={animation:"boolean",autohide:"boolean",delay:"number"},Gt={animation:!0,autohide:!0,delay:500},Zt=function(){function D(y,I){this._element=y,this._config=this._getConfig(I),this._timeout=null,this._setListeners()}var V=D.prototype;return V.show=function(){var y=this,I=c.default.Event("show.bs.toast");if(c.default(this._element).trigger(I),!I.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var Y=function(){y._element.classList.remove("showing"),y._element.classList.add("show"),c.default(y._element).trigger("shown.bs.toast"),y._config.autohide&&(y._timeout=setTimeout(function(){y.hide()},y._config.delay))};if(this._element.classList.remove("hide"),_.reflow(this._element),this._element.classList.add("showing"),this._config.animation){var Z=_.getTransitionDurationFromElement(this._element);c.default(this._element).one(_.TRANSITION_END,Y).emulateTransitionEnd(Z)}else Y()}},V.hide=function(){if(this._element.classList.contains("show")){var y=c.default.Event("hide.bs.toast");c.default(this._element).trigger(y),y.isDefaultPrevented()||this._close()}},V.dispose=function(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),c.default(this._element).off("click.dismiss.bs.toast"),c.default.removeData(this._element,"bs.toast"),this._element=null,this._config=null},V._getConfig=function(y){return y=P({},Gt,c.default(this._element).data(),typeof y=="object"&&y?y:{}),_.typeCheckConfig("toast",y,this.constructor.DefaultType),y},V._setListeners=function(){var y=this;c.default(this._element).on("click.dismiss.bs.toast",'[data-dismiss="toast"]',function(){return y.hide()})},V._close=function(){var y=this,I=function(){y._element.classList.add("hide"),c.default(y._element).trigger("hidden.bs.toast")};if(this._element.classList.remove("show"),this._config.animation){var Y=_.getTransitionDurationFromElement(this._element);c.default(this._element).one(_.TRANSITION_END,I).emulateTransitionEnd(Y)}else I()},V._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},D._jQueryInterface=function(y){return this.each(function(){var I=c.default(this),Y=I.data("bs.toast");if(Y||(Y=new D(this,typeof y=="object"&&y),I.data("bs.toast",Y)),typeof y=="string"){if(typeof Y[y]>"u")throw new TypeError('No method named "'+y+'"');Y[y](this)}})},k(D,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"DefaultType",get:function(){return qt}},{key:"Default",get:function(){return Gt}}]),D}();c.default.fn.toast=Zt._jQueryInterface,c.default.fn.toast.Constructor=Zt,c.default.fn.toast.noConflict=function(){return c.default.fn.toast=Wt,Zt._jQueryInterface},U.Alert=d,U.Button=f,U.Carousel=t,U.Collapse=A,U.Dropdown=H,U.Modal=it,U.Popover=mt,U.Scrollspy=oe,U.Tab=Rt,U.Toast=Zt,U.Tooltip=lt,U.Util=_,Object.defineProperty(U,"__esModule",{value:!0})});/*!
9
- * Material Design for Bootstrap 4
10
- * Version: MDB FREE 4.20.0
11
- *
12
- *
13
- * Copyright: Material Design for Bootstrap
14
- * https://mdbootstrap.com/
15
- *
16
- * Read the license: https://mdbootstrap.com/general/license/
17
- *
18
- *
19
- * Documentation: https://mdbootstrap.com/
20
- *
21
- * Getting started: https://mdbootstrap.com/docs/jquery/getting-started/download/
22
- *
23
- * Tutorials: https://mdbootstrap.com/education/bootstrap/
24
- *
25
- * Templates: https://mdbootstrap.com/templates/
26
- *
27
- * Support: https://mdbootstrap.com/support/
28
- *
29
- * Contact: office@mdbootstrap.com
30
- *
31
- * Attribution: Animate CSS, Twitter Bootstrap, Materialize CSS, Normalize CSS, Waves JS, WOW JS, Toastr, Chart.js, jquery.easing.js, velocity.min.js, chart.js, wow.js, scrolling-navbar.js, waves.js, forms-free.js, enhanced-modals.js, treeview.js
32
- */(function(U){var st={};function a(T){if(st[T])return st[T].exports;var c=st[T]={i:T,l:!1,exports:{}};return U[T].call(c.exports,c,c.exports,a),c.l=!0,c.exports}a.m=U,a.c=st,a.d=function(T,c,O){a.o(T,c)||Object.defineProperty(T,c,{enumerable:!0,get:O})},a.r=function(T){typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(T,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(T,"__esModule",{value:!0})},a.t=function(T,c){if(1&c&&(T=a(T)),8&c||4&c&&typeof T=="object"&&T&&T.__esModule)return T;var O=Object.create(null);if(a.r(O),Object.defineProperty(O,"default",{enumerable:!0,value:T}),2&c&&typeof T!="string")for(var L in T)a.d(O,L,function(k){return T[k]}.bind(null,L));return O},a.n=function(T){var c=T&&T.__esModule?function(){return T.default}:function(){return T};return a.d(c,"a",c),c},a.o=function(T,c){return Object.prototype.hasOwnProperty.call(T,c)},a.p="",a(a.s=152)})([function(U,st,a){(function(T){var c=function(O){return O&&O.Math==Math&&O};U.exports=c(typeof globalThis=="object"&&globalThis)||c(typeof window=="object"&&window)||c(typeof self=="object"&&self)||c(typeof T=="object"&&T)||Function("return this")()}).call(this,a(59))},function(U,st){U.exports=function(a){try{return!!a()}catch{return!0}}},function(U,st,a){var T=a(0),c=a(15),O=a(28),L=a(50),k=T.Symbol,P=c("wks");U.exports=function(j){return P[j]||(P[j]=L&&k[j]||(L?k:O)("Symbol."+j))}},function(U,st,a){var T=a(0),c=a(26).f,O=a(6),L=a(14),k=a(25),P=a(47),j=a(51);U.exports=function(_,C){var u,d,l,f,v,n=_.target,s=_.global,i=_.stat;if(u=s?T:i?T[n]||k(n,{}):(T[n]||{}).prototype)for(d in C){if(f=C[d],l=_.noTargetGet?(v=c(u,d))&&v.value:u[d],!j(s?d:n+(i?".":"#")+d,_.forced)&&l!==void 0){if(typeof f==typeof l)continue;P(f,l)}(_.sham||l&&l.sham)&&O(f,"sham",!0),L(u,d,f,_)}}},function(U,st){var a={}.hasOwnProperty;U.exports=function(T,c){return a.call(T,c)}},function(U,st){U.exports=function(a){return typeof a=="object"?a!==null:typeof a=="function"}},function(U,st,a){var T=a(9),c=a(8),O=a(17);U.exports=T?function(L,k,P){return c.f(L,k,O(1,P))}:function(L,k,P){return L[k]=P,L}},function(U,st,a){var T=a(5);U.exports=function(c){if(!T(c))throw TypeError(String(c)+" is not an object");return c}},function(U,st,a){var T=a(9),c=a(36),O=a(7),L=a(19),k=Object.defineProperty;st.f=T?k:function(P,j,_){if(O(P),j=L(j,!0),O(_),c)try{return k(P,j,_)}catch{}if("get"in _||"set"in _)throw TypeError("Accessors not supported");return"value"in _&&(P[j]=_.value),P}},function(U,st,a){var T=a(1);U.exports=!T(function(){return Object.defineProperty({},"a",{get:function(){return 7}}).a!=7})},function(U,st,a){var T=a(31),c=a(13);U.exports=function(O){return T(c(O))}},function(U,st,a){var T=a(12),c=Math.min;U.exports=function(O){return O>0?c(T(O),9007199254740991):0}},function(U,st){var a=Math.ceil,T=Math.floor;U.exports=function(c){return isNaN(c=+c)?0:(c>0?T:a)(c)}},function(U,st){U.exports=function(a){if(a==null)throw TypeError("Can't call method on "+a);return a}},function(U,st,a){var T=a(0),c=a(15),O=a(6),L=a(4),k=a(25),P=a(37),j=a(21),_=j.get,C=j.enforce,u=String(P).split("toString");c("inspectSource",function(d){return P.call(d)}),(U.exports=function(d,l,f,v){var n=!!v&&!!v.unsafe,s=!!v&&!!v.enumerable,i=!!v&&!!v.noTargetGet;typeof f=="function"&&(typeof l!="string"||L(f,"name")||O(f,"name",l),C(f).source=u.join(typeof l=="string"?l:"")),d!==T?(n?!i&&d[l]&&(s=!0):delete d[l],s?d[l]=f:O(d,l,f)):s?d[l]=f:k(l,f)})(Function.prototype,"toString",function(){return typeof this=="function"&&_(this).source||P.call(this)})},function(U,st,a){var T=a(24),c=a(61);(U.exports=function(O,L){return c[O]||(c[O]=L!==void 0?L:{})})("versions",[]).push({version:"3.3.2",mode:T?"pure":"global",copyright:"\xA9 2019 Denis Pushkarev (zloirock.ru)"})},function(U,st,a){var T=a(13);U.exports=function(c){return Object(T(c))}},function(U,st){U.exports=function(a,T){return{enumerable:!(1&a),configurable:!(2&a),writable:!(4&a),value:T}}},function(U,st){var a={}.toString;U.exports=function(T){return a.call(T).slice(8,-1)}},function(U,st,a){var T=a(5);U.exports=function(c,O){if(!T(c))return c;var L,k;if(O&&typeof(L=c.toString)=="function"&&!T(k=L.call(c))||typeof(L=c.valueOf)=="function"&&!T(k=L.call(c))||!O&&typeof(L=c.toString)=="function"&&!T(k=L.call(c)))return k;throw TypeError("Can't convert object to primitive value")}},function(U,st){U.exports={}},function(U,st,a){var T,c,O,L=a(62),k=a(0),P=a(5),j=a(6),_=a(4),C=a(22),u=a(20),d=k.WeakMap;if(L){var l=new d,f=l.get,v=l.has,n=l.set;T=function(i,o){return n.call(l,i,o),o},c=function(i){return f.call(l,i)||{}},O=function(i){return v.call(l,i)}}else{var s=C("state");u[s]=!0,T=function(i,o){return j(i,s,o),o},c=function(i){return _(i,s)?i[s]:{}},O=function(i){return _(i,s)}}U.exports={set:T,get:c,has:O,enforce:function(i){return O(i)?c(i):T(i,{})},getterFor:function(i){return function(o){var p;if(!P(o)||(p=c(o)).type!==i)throw TypeError("Incompatible receiver, "+i+" required");return p}}}},function(U,st,a){var T=a(15),c=a(28),O=T("keys");U.exports=function(L){return O[L]||(O[L]=c(L))}},function(U,st,a){var T=a(75),c=a(31),O=a(16),L=a(11),k=a(43),P=[].push,j=function(_){var C=_==1,u=_==2,d=_==3,l=_==4,f=_==6,v=_==5||f;return function(n,s,i,o){for(var p,t,x=O(n),m=c(x),S=T(s,i,3),w=L(m.length),A=0,F=o||k,N=C?F(n,w):u?F(n,0):void 0;w>A;A++)if((v||A in m)&&(t=S(p=m[A],A,x),_)){if(C)N[A]=t;else if(t)switch(_){case 3:return!0;case 5:return p;case 6:return A;case 2:P.call(N,p)}else if(l)return!1}return f?-1:d||l?l:N}};U.exports={forEach:j(0),map:j(1),filter:j(2),some:j(3),every:j(4),find:j(5),findIndex:j(6)}},function(U,st){U.exports=!1},function(U,st,a){var T=a(0),c=a(6);U.exports=function(O,L){try{c(T,O,L)}catch{T[O]=L}return L}},function(U,st,a){var T=a(9),c=a(46),O=a(17),L=a(10),k=a(19),P=a(4),j=a(36),_=Object.getOwnPropertyDescriptor;st.f=T?_:function(C,u){if(C=L(C),u=k(u,!0),j)try{return _(C,u)}catch{}if(P(C,u))return O(!c.f.call(C,u),C[u])}},function(U,st,a){var T=a(39),c=a(30).concat("length","prototype");st.f=Object.getOwnPropertyNames||function(O){return T(O,c)}},function(U,st){var a=0,T=Math.random();U.exports=function(c){return"Symbol("+String(c===void 0?"":c)+")_"+(++a+T).toString(36)}},function(U,st,a){var T=a(18);U.exports=Array.isArray||function(c){return T(c)=="Array"}},function(U,st){U.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(U,st,a){var T=a(1),c=a(18),O="".split;U.exports=T(function(){return!Object("z").propertyIsEnumerable(0)})?function(L){return c(L)=="String"?O.call(L,""):Object(L)}:Object},function(U,st,a){var T=a(12),c=Math.max,O=Math.min;U.exports=function(L,k){var P=T(L);return P<0?c(P+k,0):O(P,k)}},function(U,st,a){var T=a(1),c=a(2)("species");U.exports=function(O){return!T(function(){var L=[];return(L.constructor={})[c]=function(){return{foo:1}},L[O](Boolean).foo!==1})}},function(U,st,a){var T=a(7),c=a(79),O=a(30),L=a(20),k=a(80),P=a(38),j=a(22)("IE_PROTO"),_=function(){},C=function(){var u,d=P("iframe"),l=O.length;for(d.style.display="none",k.appendChild(d),d.src="javascript:",(u=d.contentWindow.document).open(),u.write("<script>document.F=Object</script>"),u.close(),C=u.F;l--;)delete C.prototype[O[l]];return C()};U.exports=Object.create||function(u,d){var l;return u!==null?(_.prototype=T(u),l=new _,_.prototype=null,l[j]=u):l=C(),d===void 0?l:c(l,d)},L[j]=!0},function(U,st,a){var T=a(48),c=a(0),O=function(L){return typeof L=="function"?L:void 0};U.exports=function(L,k){return arguments.length<2?O(T[L])||O(c[L]):T[L]&&T[L][k]||c[L]&&c[L][k]}},function(U,st,a){var T=a(9),c=a(1),O=a(38);U.exports=!T&&!c(function(){return Object.defineProperty(O("div"),"a",{get:function(){return 7}}).a!=7})},function(U,st,a){var T=a(15);U.exports=T("native-function-to-string",Function.toString)},function(U,st,a){var T=a(0),c=a(5),O=T.document,L=c(O)&&c(O.createElement);U.exports=function(k){return L?O.createElement(k):{}}},function(U,st,a){var T=a(4),c=a(10),O=a(41).indexOf,L=a(20);U.exports=function(k,P){var j,_=c(k),C=0,u=[];for(j in _)!T(L,j)&&T(_,j)&&u.push(j);for(;P.length>C;)T(_,j=P[C++])&&(~O(u,j)||u.push(j));return u}},function(U,st){U.exports={}},function(U,st,a){var T=a(10),c=a(11),O=a(32),L=function(k){return function(P,j,_){var C,u=T(P),d=c(u.length),l=O(_,d);if(k&&j!=j){for(;d>l;)if((C=u[l++])!=C)return!0}else for(;d>l;l++)if((k||l in u)&&u[l]===j)return k||l||0;return!k&&-1}};U.exports={includes:L(!0),indexOf:L(!1)}},function(U,st,a){var T=a(8).f,c=a(4),O=a(2)("toStringTag");U.exports=function(L,k,P){L&&!c(L=P?L:L.prototype,O)&&T(L,O,{configurable:!0,value:k})}},function(U,st,a){var T=a(5),c=a(29),O=a(2)("species");U.exports=function(L,k){var P;return c(L)&&(typeof(P=L.constructor)!="function"||P!==Array&&!c(P.prototype)?T(P)&&(P=P[O])===null&&(P=void 0):P=void 0),new(P===void 0?Array:P)(k===0?0:k)}},function(U,st,a){"use strict";var T=a(1);U.exports=function(c,O){var L=[][c];return!L||!T(function(){L.call(null,O||function(){throw 1},1)})}},function(U,st,a){"use strict";var T,c,O=a(68),L=RegExp.prototype.exec,k=String.prototype.replace,P=L,j=(T=/a/,c=/b*/g,L.call(T,"a"),L.call(c,"a"),T.lastIndex!==0||c.lastIndex!==0),_=/()??/.exec("")[1]!==void 0;(j||_)&&(P=function(C){var u,d,l,f,v=this;return _&&(d=new RegExp("^"+v.source+"$(?!\\s)",O.call(v))),j&&(u=v.lastIndex),l=L.call(v,C),j&&l&&(v.lastIndex=v.global?l.index+l[0].length:u),_&&l&&l.length>1&&k.call(l[0],d,function(){for(f=1;f<arguments.length-2;f++)arguments[f]===void 0&&(l[f]=void 0)}),l}),U.exports=P},function(U,st,a){"use strict";var T={}.propertyIsEnumerable,c=Object.getOwnPropertyDescriptor,O=c&&!T.call({1:2},1);st.f=O?function(L){var k=c(this,L);return!!k&&k.enumerable}:T},function(U,st,a){var T=a(4),c=a(63),O=a(26),L=a(8);U.exports=function(k,P){for(var j=c(P),_=L.f,C=O.f,u=0;u<j.length;u++){var d=j[u];T(k,d)||_(k,d,C(P,d))}}},function(U,st,a){U.exports=a(0)},function(U,st){st.f=Object.getOwnPropertySymbols},function(U,st,a){var T=a(1);U.exports=!!Object.getOwnPropertySymbols&&!T(function(){return!String(Symbol())})},function(U,st,a){var T=a(1),c=/#|\.prototype\./,O=function(_,C){var u=k[L(_)];return u==j||u!=P&&(typeof C=="function"?T(C):!!C)},L=O.normalize=function(_){return String(_).replace(c,".").toLowerCase()},k=O.data={},P=O.NATIVE="N",j=O.POLYFILL="P";U.exports=O},function(U,st,a){var T=a(39),c=a(30);U.exports=Object.keys||function(O){return T(O,c)}},function(U,st){U.exports=function(a){if(typeof a!="function")throw TypeError(String(a)+" is not a function");return a}},function(U,st,a){"use strict";var T=a(10),c=a(58),O=a(40),L=a(21),k=a(66),P=L.set,j=L.getterFor("Array Iterator");U.exports=k(Array,"Array",function(_,C){P(this,{type:"Array Iterator",target:T(_),index:0,kind:C})},function(){var _=j(this),C=_.target,u=_.kind,d=_.index++;return!C||d>=C.length?(_.target=void 0,{value:void 0,done:!0}):u=="keys"?{value:d,done:!1}:u=="values"?{value:C[d],done:!1}:{value:[d,C[d]],done:!1}},"values"),O.Arguments=O.Array,c("keys"),c("values"),c("entries")},function(U,st){(function(a){U.exports=a}).call(this,{})},function(U,st,a){"use strict";var T,c=a(9),O=a(0),L=a(5),k=a(4),P=a(76),j=a(6),_=a(14),C=a(8).f,u=a(60),d=a(70),l=a(2),f=a(28),v=O.DataView,n=v&&v.prototype,s=O.Int8Array,i=s&&s.prototype,o=O.Uint8ClampedArray,p=o&&o.prototype,t=s&&u(s),x=i&&u(i),m=Object.prototype,S=m.isPrototypeOf,w=l("toStringTag"),A=f("TYPED_ARRAY_TAG"),F=!(!O.ArrayBuffer||!v),N=F&&!!d&&P(O.opera)!=="Opera",R=!1,B={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},z=function(H){return L(H)&&k(B,P(H))};for(T in B)O[T]||(N=!1);if((!N||typeof t!="function"||t===Function.prototype)&&(t=function(){throw TypeError("Incorrect invocation")},N))for(T in B)O[T]&&d(O[T],t);if((!N||!x||x===m)&&(x=t.prototype,N))for(T in B)O[T]&&d(O[T].prototype,x);if(N&&u(p)!==x&&d(p,x),c&&!k(x,w))for(T in R=!0,C(x,w,{get:function(){return L(this)?this[A]:void 0}}),B)O[T]&&j(O[T],A,T);F&&d&&u(n)!==m&&d(n,m),U.exports={NATIVE_ARRAY_BUFFER:F,NATIVE_ARRAY_BUFFER_VIEWS:N,TYPED_ARRAY_TAG:R&&A,aTypedArray:function(H){if(z(H))return H;throw TypeError("Target is not a typed array")},aTypedArrayConstructor:function(H){if(d){if(S.call(t,H))return H}else for(var G in B)if(k(B,T)){var K=O[G];if(K&&(H===K||S.call(K,H)))return H}throw TypeError("Target is not a typed array constructor")},exportProto:function(H,G,K){if(c){if(K)for(var ct in B){var it=O[ct];it&&k(it.prototype,H)&&delete it.prototype[H]}x[H]&&!K||_(x,H,K?G:N&&i[H]||G)}},exportStatic:function(H,G,K){var ct,it;if(c){if(d){if(K)for(ct in B)(it=O[ct])&&k(it,H)&&delete it[H];if(t[H]&&!K)return;try{return _(t,H,K?G:N&&s[H]||G)}catch{}}for(ct in B)!(it=O[ct])||it[H]&&!K||_(it,H,G)}},isView:function(H){var G=P(H);return G==="DataView"||k(B,G)},isTypedArray:z,TypedArray:t,TypedArrayPrototype:x}},function(U,st,a){"use strict";var T=a(19),c=a(8),O=a(17);U.exports=function(L,k,P){var j=T(k);j in L?c.f(L,j,O(0,P)):L[j]=P}},function(U,st,a){var T=a(2),c=a(34),O=a(6),L=T("unscopables"),k=Array.prototype;k[L]==null&&O(k,L,c(null)),U.exports=function(P){k[L][P]=!0}},function(U,st){var a;a=function(){return this}();try{a=a||new Function("return this")()}catch{typeof window=="object"&&(a=window)}U.exports=a},function(U,st,a){var T=a(4),c=a(16),O=a(22),L=a(94),k=O("IE_PROTO"),P=Object.prototype;U.exports=L?Object.getPrototypeOf:function(j){return j=c(j),T(j,k)?j[k]:typeof j.constructor=="function"&&j instanceof j.constructor?j.constructor.prototype:j instanceof Object?P:null}},function(U,st,a){var T=a(0),c=a(25),O=T["__core-js_shared__"]||c("__core-js_shared__",{});U.exports=O},function(U,st,a){var T=a(0),c=a(37),O=T.WeakMap;U.exports=typeof O=="function"&&/native code/.test(c.call(O))},function(U,st,a){var T=a(35),c=a(27),O=a(49),L=a(7);U.exports=T("Reflect","ownKeys")||function(k){var P=c.f(L(k)),j=O.f;return j?P.concat(j(k)):P}},function(U,st,a){st.f=a(2)},function(U,st,a){var T=a(48),c=a(4),O=a(64),L=a(8).f;U.exports=function(k){var P=T.Symbol||(T.Symbol={});c(P,k)||L(P,k,{value:O.f(k)})}},function(U,st,a){"use strict";var T=a(3),c=a(93),O=a(60),L=a(70),k=a(42),P=a(6),j=a(14),_=a(2),C=a(24),u=a(40),d=a(67),l=d.IteratorPrototype,f=d.BUGGY_SAFARI_ITERATORS,v=_("iterator"),n=function(){return this};U.exports=function(s,i,o,p,t,x,m){c(o,i,p);var S,w,A,F=function(K){if(K===t&&H)return H;if(!f&&K in B)return B[K];switch(K){case"keys":case"values":case"entries":return function(){return new o(this,K)}}return function(){return new o(this)}},N=i+" Iterator",R=!1,B=s.prototype,z=B[v]||B["@@iterator"]||t&&B[t],H=!f&&z||F(t),G=i=="Array"&&B.entries||z;if(G&&(S=O(G.call(new s)),l!==Object.prototype&&S.next&&(C||O(S)===l||(L?L(S,l):typeof S[v]!="function"&&P(S,v,n)),k(S,N,!0,!0),C&&(u[N]=n))),t=="values"&&z&&z.name!=="values"&&(R=!0,H=function(){return z.call(this)}),C&&!m||B[v]===H||P(B,v,H),u[i]=H,t)if(w={values:F("values"),keys:x?H:F("keys"),entries:F("entries")},m)for(A in w)!f&&!R&&A in B||j(B,A,w[A]);else T({target:i,proto:!0,forced:f||R},w);return w}},function(U,st,a){"use strict";var T,c,O,L=a(60),k=a(6),P=a(4),j=a(2),_=a(24),C=j("iterator"),u=!1;[].keys&&("next"in(O=[].keys())?(c=L(L(O)))!==Object.prototype&&(T=c):u=!0),T==null&&(T={}),_||P(T,C)||k(T,C,function(){return this}),U.exports={IteratorPrototype:T,BUGGY_SAFARI_ITERATORS:u}},function(U,st,a){"use strict";var T=a(7);U.exports=function(){var c=T(this),O="";return c.global&&(O+="g"),c.ignoreCase&&(O+="i"),c.multiline&&(O+="m"),c.dotAll&&(O+="s"),c.unicode&&(O+="u"),c.sticky&&(O+="y"),O}},function(U,st,a){var T=a(12),c=a(13),O=function(L){return function(k,P){var j,_,C=String(c(k)),u=T(P),d=C.length;return u<0||u>=d?L?"":void 0:(j=C.charCodeAt(u))<55296||j>56319||u+1===d||(_=C.charCodeAt(u+1))<56320||_>57343?L?C.charAt(u):j:L?C.slice(u,u+2):_-56320+(j-55296<<10)+65536}};U.exports={codeAt:O(!1),charAt:O(!0)}},function(U,st,a){var T=a(7),c=a(88);U.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var O,L=!1,k={};try{(O=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(k,[]),L=k instanceof Array}catch{}return function(P,j){return T(P),c(j),L?O.call(P,j):P.__proto__=j,P}}():void 0)},function(U,st,a){var T=a(14),c=a(89),O=Object.prototype;c!==O.toString&&T(O,"toString",c,{unsafe:!0})},function(U,st,a){"use strict";var T=a(6),c=a(14),O=a(1),L=a(2),k=a(45),P=L("species"),j=!O(function(){var C=/./;return C.exec=function(){var u=[];return u.groups={a:"7"},u},"".replace(C,"$<a>")!=="7"}),_=!O(function(){var C=/(?:)/,u=C.exec;C.exec=function(){return u.apply(this,arguments)};var d="ab".split(C);return d.length!==2||d[0]!=="a"||d[1]!=="b"});U.exports=function(C,u,d,l){var f=L(C),v=!O(function(){var t={};return t[f]=function(){return 7},""[C](t)!=7}),n=v&&!O(function(){var t=!1,x=/a/;return x.exec=function(){return t=!0,null},C==="split"&&(x.constructor={},x.constructor[P]=function(){return x}),x[f](""),!t});if(!v||!n||C==="replace"&&!j||C==="split"&&!_){var s=/./[f],i=d(f,""[C],function(t,x,m,S,w){return x.exec===k?v&&!w?{done:!0,value:s.call(x,m,S)}:{done:!0,value:t.call(m,x,S)}:{done:!1}}),o=i[0],p=i[1];c(String.prototype,C,o),c(RegExp.prototype,f,u==2?function(t,x){return p.call(t,this,x)}:function(t){return p.call(t,this)}),l&&T(RegExp.prototype[f],"sham",!0)}}},function(U,st,a){var T=a(18),c=a(45);U.exports=function(O,L){var k=O.exec;if(typeof k=="function"){var P=k.call(O,L);if(typeof P!="object")throw TypeError("RegExp exec method returned something other than an Object or null");return P}if(T(O)!=="RegExp")throw TypeError("RegExp#exec called on incompatible receiver");return c.call(O,L)}},function(U,st){U.exports=`
33
- \v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`},function(U,st,a){var T=a(53);U.exports=function(c,O,L){if(T(c),O===void 0)return c;switch(L){case 0:return function(){return c.call(O)};case 1:return function(k){return c.call(O,k)};case 2:return function(k,P){return c.call(O,k,P)};case 3:return function(k,P,j){return c.call(O,k,P,j)}}return function(){return c.apply(O,arguments)}}},function(U,st,a){var T=a(18),c=a(2)("toStringTag"),O=T(function(){return arguments}())=="Arguments";U.exports=function(L){var k,P,j;return L===void 0?"Undefined":L===null?"Null":typeof(P=function(_,C){try{return _[C]}catch{}}(k=Object(L),c))=="string"?P:O?T(k):(j=T(k))=="Object"&&typeof k.callee=="function"?"Arguments":j}},function(U,st,a){"use strict";var T=a(69).charAt;U.exports=function(c,O,L){return O+(L?T(c,O).length:1)}},function(U,st,a){"use strict";var T=a(3),c=a(0),O=a(24),L=a(9),k=a(50),P=a(1),j=a(4),_=a(29),C=a(5),u=a(7),d=a(16),l=a(10),f=a(19),v=a(17),n=a(34),s=a(52),i=a(27),o=a(92),p=a(49),t=a(26),x=a(8),m=a(46),S=a(6),w=a(14),A=a(15),F=a(22),N=a(20),R=a(28),B=a(2),z=a(64),H=a(65),G=a(42),K=a(21),ct=a(23).forEach,it=F("hidden"),ht=B("toPrimitive"),dt=K.set,St=K.getterFor("Symbol"),pt=Object.prototype,Q=c.Symbol,et=c.JSON,rt=et&&et.stringify,ot=t.f,gt=x.f,J=o.f,at=m.f,bt=A("symbols"),yt=A("op-symbols"),lt=A("string-to-symbol-registry"),At=A("symbol-to-string-registry"),Dt=A("wks"),It=c.QObject,Pt=!It||!It.prototype||!It.prototype.findChild,Ct=L&&P(function(){return n(gt({},"a",{get:function(){return gt(this,"a",{value:7}).a}})).a!=7})?function(Rt,Wt,qt){var Gt=ot(pt,Wt);Gt&&delete pt[Wt],gt(Rt,Wt,qt),Gt&&Rt!==pt&&gt(pt,Wt,Gt)}:gt,Ot=function(Rt,Wt){var qt=bt[Rt]=n(Q.prototype);return dt(qt,{type:"Symbol",tag:Rt,description:Wt}),L||(qt.description=Wt),qt},mt=k&&typeof Q.iterator=="symbol"?function(Rt){return typeof Rt=="symbol"}:function(Rt){return Object(Rt)instanceof Q},zt=function(Rt,Wt,qt){Rt===pt&&zt(yt,Wt,qt),u(Rt);var Gt=f(Wt,!0);return u(qt),j(bt,Gt)?(qt.enumerable?(j(Rt,it)&&Rt[it][Gt]&&(Rt[it][Gt]=!1),qt=n(qt,{enumerable:v(0,!1)})):(j(Rt,it)||gt(Rt,it,v(1,{})),Rt[it][Gt]=!0),Ct(Rt,Gt,qt)):gt(Rt,Gt,qt)},ie=function(Rt,Wt){u(Rt);var qt=l(Wt),Gt=s(qt).concat(ne(qt));return ct(Gt,function(Zt){L&&!Yt.call(qt,Zt)||zt(Rt,Zt,qt[Zt])}),Rt},Yt=function(Rt){var Wt=f(Rt,!0),qt=at.call(this,Wt);return!(this===pt&&j(bt,Wt)&&!j(yt,Wt))&&(!(qt||!j(this,Wt)||!j(bt,Wt)||j(this,it)&&this[it][Wt])||qt)},ue=function(Rt,Wt){var qt=l(Rt),Gt=f(Wt,!0);if(qt!==pt||!j(bt,Gt)||j(yt,Gt)){var Zt=ot(qt,Gt);return!Zt||!j(bt,Gt)||j(qt,it)&&qt[it][Gt]||(Zt.enumerable=!0),Zt}},oe=function(Rt){var Wt=J(l(Rt)),qt=[];return ct(Wt,function(Gt){j(bt,Gt)||j(N,Gt)||qt.push(Gt)}),qt},ne=function(Rt){var Wt=Rt===pt,qt=J(Wt?yt:l(Rt)),Gt=[];return ct(qt,function(Zt){!j(bt,Zt)||Wt&&!j(pt,Zt)||Gt.push(bt[Zt])}),Gt};k||(w((Q=function(){if(this instanceof Q)throw TypeError("Symbol is not a constructor");var Rt=arguments.length&&arguments[0]!==void 0?String(arguments[0]):void 0,Wt=R(Rt),qt=function(Gt){this===pt&&qt.call(yt,Gt),j(this,it)&&j(this[it],Wt)&&(this[it][Wt]=!1),Ct(this,Wt,v(1,Gt))};return L&&Pt&&Ct(pt,Wt,{configurable:!0,set:qt}),Ot(Wt,Rt)}).prototype,"toString",function(){return St(this).tag}),m.f=Yt,x.f=zt,t.f=ue,i.f=o.f=oe,p.f=ne,L&&(gt(Q.prototype,"description",{configurable:!0,get:function(){return St(this).description}}),O||w(pt,"propertyIsEnumerable",Yt,{unsafe:!0})),z.f=function(Rt){return Ot(B(Rt),Rt)}),T({global:!0,wrap:!0,forced:!k,sham:!k},{Symbol:Q}),ct(s(Dt),function(Rt){H(Rt)}),T({target:"Symbol",stat:!0,forced:!k},{for:function(Rt){var Wt=String(Rt);if(j(lt,Wt))return lt[Wt];var qt=Q(Wt);return lt[Wt]=qt,At[qt]=Wt,qt},keyFor:function(Rt){if(!mt(Rt))throw TypeError(Rt+" is not a symbol");if(j(At,Rt))return At[Rt]},useSetter:function(){Pt=!0},useSimple:function(){Pt=!1}}),T({target:"Object",stat:!0,forced:!k,sham:!L},{create:function(Rt,Wt){return Wt===void 0?n(Rt):ie(n(Rt),Wt)},defineProperty:zt,defineProperties:ie,getOwnPropertyDescriptor:ue}),T({target:"Object",stat:!0,forced:!k},{getOwnPropertyNames:oe,getOwnPropertySymbols:ne}),T({target:"Object",stat:!0,forced:P(function(){p.f(1)})},{getOwnPropertySymbols:function(Rt){return p.f(d(Rt))}}),et&&T({target:"JSON",stat:!0,forced:!k||P(function(){var Rt=Q();return rt([Rt])!="[null]"||rt({a:Rt})!="{}"||rt(Object(Rt))!="{}"})},{stringify:function(Rt){for(var Wt,qt,Gt=[Rt],Zt=1;arguments.length>Zt;)Gt.push(arguments[Zt++]);if(qt=Wt=Gt[1],(C(Wt)||Rt!==void 0)&&!mt(Rt))return _(Wt)||(Wt=function(D,V){if(typeof qt=="function"&&(V=qt.call(this,D,V)),!mt(V))return V}),Gt[1]=Wt,rt.apply(et,Gt)}}),Q.prototype[ht]||S(Q.prototype,ht,Q.prototype.valueOf),G(Q,"Symbol"),N[it]=!0},function(U,st,a){var T=a(9),c=a(8),O=a(7),L=a(52);U.exports=T?Object.defineProperties:function(k,P){O(k);for(var j,_=L(P),C=_.length,u=0;C>u;)c.f(k,j=_[u++],P[j]);return k}},function(U,st,a){var T=a(35);U.exports=T("document","documentElement")},function(U,st,a){"use strict";var T=a(3),c=a(9),O=a(0),L=a(4),k=a(5),P=a(8).f,j=a(47),_=O.Symbol;if(c&&typeof _=="function"&&(!("description"in _.prototype)||_().description!==void 0)){var C={},u=function(){var n=arguments.length<1||arguments[0]===void 0?void 0:String(arguments[0]),s=this instanceof u?new _(n):n===void 0?_():_(n);return n===""&&(C[s]=!0),s};j(u,_);var d=u.prototype=_.prototype;d.constructor=u;var l=d.toString,f=String(_("test"))=="Symbol(test)",v=/^Symbol\((.*)\)[^)]+$/;P(d,"description",{configurable:!0,get:function(){var n=k(this)?this.valueOf():this,s=l.call(n);if(L(C,n))return"";var i=f?s.slice(7,-1):s.replace(v,"$1");return i===""?void 0:i}}),T({global:!0,forced:!0},{Symbol:u})}},function(U,st,a){a(65)("iterator")},function(U,st,a){"use strict";var T=a(3),c=a(45);T({target:"RegExp",proto:!0,forced:/./.exec!==c},{exec:c})},function(U,st,a){"use strict";var T=a(69).charAt,c=a(21),O=a(66),L=c.set,k=c.getterFor("String Iterator");O(String,"String",function(P){L(this,{type:"String Iterator",string:String(P),index:0})},function(){var P,j=k(this),_=j.string,C=j.index;return C>=_.length?{value:void 0,done:!0}:(P=T(_,C),j.index+=P.length,{value:P,done:!1})})},function(U,st,a){var T=a(0),c=a(86),O=a(54),L=a(6),k=a(2),P=k("iterator"),j=k("toStringTag"),_=O.values;for(var C in c){var u=T[C],d=u&&u.prototype;if(d){if(d[P]!==_)try{L(d,P,_)}catch{d[P]=_}if(d[j]||L(d,j,C),c[C]){for(var l in O)if(d[l]!==O[l])try{L(d,l,O[l])}catch{d[l]=O[l]}}}}},function(U,st){U.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},function(U,st){U.exports=function(a){if(!a.webpackPolyfill){var T=Object.create(a);T.children||(T.children=[]),Object.defineProperty(T,"loaded",{enumerable:!0,get:function(){return T.l}}),Object.defineProperty(T,"id",{enumerable:!0,get:function(){return T.i}}),Object.defineProperty(T,"exports",{enumerable:!0}),T.webpackPolyfill=1}return T}},function(U,st,a){var T=a(5);U.exports=function(c){if(!T(c)&&c!==null)throw TypeError("Can't set "+String(c)+" as a prototype");return c}},function(U,st,a){"use strict";var T=a(76),c={};c[a(2)("toStringTag")]="z",U.exports=String(c)!=="[object z]"?function(){return"[object "+T(this)+"]"}:c.toString},function(U,st,a){var T=a(13),c="["+a(74)+"]",O=RegExp("^"+c+c+"*"),L=RegExp(c+c+"*$"),k=function(P){return function(j){var _=String(T(j));return 1&P&&(_=_.replace(O,"")),2&P&&(_=_.replace(L,"")),_}};U.exports={start:k(1),end:k(2),trim:k(3)}},function(U,st,a){"use strict";var T=a(3),c=a(41).indexOf,O=a(44),L=[].indexOf,k=!!L&&1/[1].indexOf(1,-0)<0,P=O("indexOf");T({target:"Array",proto:!0,forced:k||P},{indexOf:function(j){return k?L.apply(this,arguments)||0:c(this,j,arguments.length>1?arguments[1]:void 0)}})},function(U,st,a){var T=a(10),c=a(27).f,O={}.toString,L=typeof window=="object"&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];U.exports.f=function(k){return L&&O.call(k)=="[object Window]"?function(P){try{return c(P)}catch{return L.slice()}}(k):c(T(k))}},function(U,st,a){"use strict";var T=a(67).IteratorPrototype,c=a(34),O=a(17),L=a(42),k=a(40),P=function(){return this};U.exports=function(j,_,C){var u=_+" Iterator";return j.prototype=c(T,{next:O(1,C)}),L(j,u,!1,!0),k[u]=P,j}},function(U,st,a){var T=a(1);U.exports=!T(function(){function c(){}return c.prototype.constructor=null,Object.getPrototypeOf(new c)!==c.prototype})},function(U,st,a){"use strict";var T=a(3),c=a(23).map;T({target:"Array",proto:!0,forced:!a(33)("map")},{map:function(O){return c(this,O,arguments.length>1?arguments[1]:void 0)}})},function(U,st,a){"use strict";var T=a(3),c=a(5),O=a(29),L=a(32),k=a(11),P=a(10),j=a(57),_=a(33),C=a(2)("species"),u=[].slice,d=Math.max;T({target:"Array",proto:!0,forced:!_("slice")},{slice:function(l,f){var v,n,s,i=P(this),o=k(i.length),p=L(l,o),t=L(f===void 0?o:f,o);if(O(i)&&(typeof(v=i.constructor)!="function"||v!==Array&&!O(v.prototype)?c(v)&&(v=v[C])===null&&(v=void 0):v=void 0,v===Array||v===void 0))return u.call(i,p,t);for(n=new(v===void 0?Array:v)(d(t-p,0)),s=0;p<t;p++,s++)p in i&&j(n,s,i[p]);return n.length=s,n}})},function(U,st,a){"use strict";var T=a(3),c=a(32),O=a(12),L=a(11),k=a(16),P=a(43),j=a(57),_=a(33),C=Math.max,u=Math.min;T({target:"Array",proto:!0,forced:!_("splice")},{splice:function(d,l){var f,v,n,s,i,o,p=k(this),t=L(p.length),x=c(d,t),m=arguments.length;if(m===0?f=v=0:m===1?(f=0,v=t-x):(f=m-2,v=u(C(O(l),0),t-x)),t+f-v>9007199254740991)throw TypeError("Maximum allowed length exceeded");for(n=P(p,v),s=0;s<v;s++)(i=x+s)in p&&j(n,s,p[i]);if(n.length=v,f<v){for(s=x;s<t-v;s++)o=s+f,(i=s+v)in p?p[o]=p[i]:delete p[o];for(s=t;s>t-v+f;s--)delete p[s-1]}else if(f>v)for(s=t-v;s>x;s--)o=s+f-1,(i=s+v-1)in p?p[o]=p[i]:delete p[o];for(s=0;s<f;s++)p[s+x]=arguments[s+2];return p.length=t-v+f,n}})},function(U,st,a){"use strict";var T=a(72),c=a(7),O=a(16),L=a(11),k=a(12),P=a(13),j=a(77),_=a(73),C=Math.max,u=Math.min,d=Math.floor,l=/\$([$&'`]|\d\d?|<[^>]*>)/g,f=/\$([$&'`]|\d\d?)/g;T("replace",2,function(v,n,s){return[function(o,p){var t=P(this),x=o==null?void 0:o[v];return x!==void 0?x.call(o,t,p):n.call(String(t),o,p)},function(o,p){var t=s(n,o,this,p);if(t.done)return t.value;var x=c(o),m=String(this),S=typeof p=="function";S||(p=String(p));var w=x.global;if(w){var A=x.unicode;x.lastIndex=0}for(var F=[];;){var N=_(x,m);if(N===null||(F.push(N),!w))break;String(N[0])===""&&(x.lastIndex=j(m,L(x.lastIndex),A))}for(var R,B="",z=0,H=0;H<F.length;H++){N=F[H];for(var G=String(N[0]),K=C(u(k(N.index),m.length),0),ct=[],it=1;it<N.length;it++)ct.push((R=N[it])===void 0?R:String(R));var ht=N.groups;if(S){var dt=[G].concat(ct,K,m);ht!==void 0&&dt.push(ht);var St=String(p.apply(void 0,dt))}else St=i(G,m,K,ct,ht,p);K>=z&&(B+=m.slice(z,K)+St,z=K+G.length)}return B+m.slice(z)}];function i(o,p,t,x,m,S){var w=t+o.length,A=x.length,F=f;return m!==void 0&&(m=O(m),F=l),n.call(S,F,function(N,R){var B;switch(R.charAt(0)){case"$":return"$";case"&":return o;case"`":return p.slice(0,t);case"'":return p.slice(w);case"<":B=m[R.slice(1,-1)];break;default:var z=+R;if(z===0)return N;if(z>A){var H=d(z/10);return H===0?N:H<=A?x[H-1]===void 0?R.charAt(1):x[H-1]+R.charAt(1):N}B=x[z-1]}return B===void 0?"":B})}})},function(U,st,a){"use strict";var T=a(3),c=a(23).filter;T({target:"Array",proto:!0,forced:!a(33)("filter")},{filter:function(O){return c(this,O,arguments.length>1?arguments[1]:void 0)}})},function(U,st,a){"use strict";var T=a(3),c=a(23).find,O=a(58),L=!0;"find"in[]&&Array(1).find(function(){L=!1}),T({target:"Array",proto:!0,forced:L},{find:function(k){return c(this,k,arguments.length>1?arguments[1]:void 0)}}),O("find")},function(U,st,a){"use strict";var T=a(3),c=a(31),O=a(10),L=a(44),k=[].join,P=c!=Object,j=L("join",",");T({target:"Array",proto:!0,forced:P||j},{join:function(_){return k.call(O(this),_===void 0?",":_)}})},function(U,st,a){"use strict";var T=a(3),c=a(1),O=a(29),L=a(5),k=a(16),P=a(11),j=a(57),_=a(43),C=a(33),u=a(2)("isConcatSpreadable"),d=!c(function(){var v=[];return v[u]=!1,v.concat()[0]!==v}),l=C("concat"),f=function(v){if(!L(v))return!1;var n=v[u];return n!==void 0?!!n:O(v)};T({target:"Array",proto:!0,forced:!d||!l},{concat:function(v){var n,s,i,o,p,t=k(this),x=_(t,0),m=0;for(n=-1,i=arguments.length;n<i;n++)if(p=n===-1?t:arguments[n],f(p)){if(m+(o=P(p.length))>9007199254740991)throw TypeError("Maximum allowed index exceeded");for(s=0;s<o;s++,m++)s in p&&j(x,m,p[s])}else{if(m>=9007199254740991)throw TypeError("Maximum allowed index exceeded");j(x,m++,p)}return x.length=m,x}})},function(U,st,a){var T=a(7),c=a(53),O=a(2)("species");U.exports=function(L,k){var P,j=T(L).constructor;return j===void 0||(P=T(j)[O])==null?k:c(P)}},function(U,st,a){var T=a(14),c=Date.prototype,O=c.toString,L=c.getTime;new Date(NaN)+""!="Invalid Date"&&T(c,"toString",function(){var k=L.call(this);return k==k?O.call(this):"Invalid Date"})},function(U,st,a){var T=a(3),c=a(108);T({global:!0,forced:parseFloat!=c},{parseFloat:c})},function(U,st,a){"use strict";var T=a(14),c=a(7),O=a(1),L=a(68),k=RegExp.prototype,P=k.toString,j=O(function(){return P.call({source:"a",flags:"b"})!="/a/b"}),_=P.name!="toString";(j||_)&&T(RegExp.prototype,"toString",function(){var C=c(this),u=String(C.source),d=C.flags;return"/"+u+"/"+String(d===void 0&&C instanceof RegExp&&!("flags"in k)?L.call(C):d)},{unsafe:!0})},function(U,st,a){var T=a(53),c=a(16),O=a(31),L=a(11),k=function(P){return function(j,_,C,u){T(_);var d=c(j),l=O(d),f=L(d.length),v=P?f-1:0,n=P?-1:1;if(C<2)for(;;){if(v in l){u=l[v],v+=n;break}if(v+=n,P?v<0:f<=v)throw TypeError("Reduce of empty array with no initial value")}for(;P?v>=0:f>v;v+=n)v in l&&(u=_(u,l[v],v,d));return u}};U.exports={left:k(!1),right:k(!0)}},function(U,st,a){var T=a(0),c=a(90).trim,O=a(74),L=T.parseFloat,k=1/L(O+"-0")!=-1/0;U.exports=k?function(P){var j=c(String(P)),_=L(j);return _===0&&j.charAt(0)=="-"?-0:_}:L},function(U,st,a){"use strict";var T=a(72),c=a(110),O=a(7),L=a(13),k=a(103),P=a(77),j=a(11),_=a(73),C=a(45),u=a(1),d=[].push,l=Math.min,f=!u(function(){return!RegExp(4294967295,"y")});T("split",2,function(v,n,s){var i;return i="abbc".split(/(b)*/)[1]=="c"||"test".split(/(?:)/,-1).length!=4||"ab".split(/(?:ab)*/).length!=2||".".split(/(.?)(.?)/).length!=4||".".split(/()()/).length>1||"".split(/.?/).length?function(o,p){var t=String(L(this)),x=p===void 0?4294967295:p>>>0;if(x===0)return[];if(o===void 0)return[t];if(!c(o))return n.call(t,o,x);for(var m,S,w,A=[],F=(o.ignoreCase?"i":"")+(o.multiline?"m":"")+(o.unicode?"u":"")+(o.sticky?"y":""),N=0,R=new RegExp(o.source,F+"g");(m=C.call(R,t))&&!((S=R.lastIndex)>N&&(A.push(t.slice(N,m.index)),m.length>1&&m.index<t.length&&d.apply(A,m.slice(1)),w=m[0].length,N=S,A.length>=x));)R.lastIndex===m.index&&R.lastIndex++;return N===t.length?!w&&R.test("")||A.push(""):A.push(t.slice(N)),A.length>x?A.slice(0,x):A}:"0".split(void 0,0).length?function(o,p){return o===void 0&&p===0?[]:n.call(this,o,p)}:n,[function(o,p){var t=L(this),x=o==null?void 0:o[v];return x!==void 0?x.call(o,t,p):i.call(String(t),o,p)},function(o,p){var t=s(i,o,this,p,i!==n);if(t.done)return t.value;var x=O(o),m=String(this),S=k(x,RegExp),w=x.unicode,A=(x.ignoreCase?"i":"")+(x.multiline?"m":"")+(x.unicode?"u":"")+(f?"y":"g"),F=new S(f?x:"^(?:"+x.source+")",A),N=p===void 0?4294967295:p>>>0;if(N===0)return[];if(m.length===0)return _(F,m)===null?[m]:[];for(var R=0,B=0,z=[];B<m.length;){F.lastIndex=f?B:0;var H,G=_(F,f?m:m.slice(B));if(G===null||(H=l(j(F.lastIndex+(f?0:B)),m.length))===R)B=P(m,B,w);else{if(z.push(m.slice(R,B)),z.length===N)return z;for(var K=1;K<=G.length-1;K++)if(z.push(G[K]),z.length===N)return z;B=R=H}}return z.push(m.slice(R)),z}]},!f)},function(U,st,a){var T=a(5),c=a(18),O=a(2)("match");U.exports=function(L){var k;return T(L)&&((k=L[O])!==void 0?!!k:c(L)=="RegExp")}},function(U,st,a){"use strict";var T=a(23).forEach,c=a(44);U.exports=c("forEach")?function(O){return T(this,O,arguments.length>1?arguments[1]:void 0)}:[].forEach},function(U,st,a){var T=a(5),c=a(70);U.exports=function(O,L,k){var P,j;return c&&typeof(P=L.constructor)=="function"&&P!==k&&T(j=P.prototype)&&j!==k.prototype&&c(O,j),O}},function(U,st,a){"use strict";var T=a(72),c=a(7),O=a(11),L=a(13),k=a(77),P=a(73);T("match",1,function(j,_,C){return[function(u){var d=L(this),l=u==null?void 0:u[j];return l!==void 0?l.call(u,d):new RegExp(u)[j](String(d))},function(u){var d=C(_,u,this);if(d.done)return d.value;var l=c(u),f=String(this);if(!l.global)return P(l,f);var v=l.unicode;l.lastIndex=0;for(var n,s=[],i=0;(n=P(l,f))!==null;){var o=String(n[0]);s[i]=o,o===""&&(l.lastIndex=k(f,O(l.lastIndex),v)),i++}return i===0?null:s}]})},function(U,st,a){"use strict";var T=a(3),c=a(12),O=a(115),L=a(116),k=a(1),P=1 .toFixed,j=Math.floor,_=function(C,u,d){return u===0?d:u%2==1?_(C,u-1,d*C):_(C*C,u/2,d)};T({target:"Number",proto:!0,forced:P&&(8e-5.toFixed(3)!=="0.000"||.9.toFixed(0)!=="1"||1.255.toFixed(2)!=="1.25"||0xde0b6b3a7640080.toFixed(0)!=="1000000000000000128")||!k(function(){P.call({})})},{toFixed:function(C){var u,d,l,f,v=O(this),n=c(C),s=[0,0,0,0,0,0],i="",o="0",p=function(m,S){for(var w=-1,A=S;++w<6;)A+=m*s[w],s[w]=A%1e7,A=j(A/1e7)},t=function(m){for(var S=6,w=0;--S>=0;)w+=s[S],s[S]=j(w/m),w=w%m*1e7},x=function(){for(var m=6,S="";--m>=0;)if(S!==""||m===0||s[m]!==0){var w=String(s[m]);S=S===""?w:S+L.call("0",7-w.length)+w}return S};if(n<0||n>20)throw RangeError("Incorrect fraction digits");if(v!=v)return"NaN";if(v<=-1e21||v>=1e21)return String(v);if(v<0&&(i="-",v=-v),v>1e-21)if(d=(u=function(m){for(var S=0,w=m;w>=4096;)S+=12,w/=4096;for(;w>=2;)S+=1,w/=2;return S}(v*_(2,69,1))-69)<0?v*_(2,-u,1):v/_(2,u,1),d*=4503599627370496,(u=52-u)>0){for(p(0,d),l=n;l>=7;)p(1e7,0),l-=7;for(p(_(10,l,1),0),l=u-1;l>=23;)t(1<<23),l-=23;t(1<<l),p(1,1),t(2),o=x()}else p(0,d),p(1<<-u,0),o=x()+L.call("0",n);return o=n>0?i+((f=o.length)<=n?"0."+L.call("0",n-f)+o:o.slice(0,f-n)+"."+o.slice(f-n)):i+o}})},function(U,st,a){var T=a(18);U.exports=function(c){if(typeof c!="number"&&T(c)!="Number")throw TypeError("Incorrect invocation");return+c}},function(U,st,a){"use strict";var T=a(12),c=a(13);U.exports="".repeat||function(O){var L=String(c(this)),k="",P=T(O);if(P<0||P==1/0)throw RangeError("Wrong number of repetitions");for(;P>0;(P>>>=1)&&(L+=L))1&P&&(k+=L);return k}},,,function(U,st,a){"use strict";var T=a(3),c=a(111);T({target:"Array",proto:!0,forced:[].forEach!=c},{forEach:c})},function(U,st,a){"use strict";var T=a(3),c=a(107).left;T({target:"Array",proto:!0,forced:a(44)("reduce")},{reduce:function(O){return c(this,O,arguments.length,arguments.length>1?arguments[1]:void 0)}})},function(U,st,a){"use strict";var T=a(3),c=a(29),O=[].reverse,L=[1,2];T({target:"Array",proto:!0,forced:String(L)===String(L.reverse())},{reverse:function(){return c(this)&&(this.length=this.length),O.call(this)}})},function(U,st,a){"use strict";var T=a(3),c=a(53),O=a(16),L=a(1),k=a(44),P=[].sort,j=[1,2,3],_=L(function(){j.sort(void 0)}),C=L(function(){j.sort(null)}),u=k("sort");T({target:"Array",proto:!0,forced:_||!C||u},{sort:function(d){return d===void 0?P.call(O(this)):P.call(O(this),c(d))}})},function(U,st,a){"use strict";var T=a(9),c=a(0),O=a(51),L=a(14),k=a(4),P=a(18),j=a(112),_=a(19),C=a(1),u=a(34),d=a(27).f,l=a(26).f,f=a(8).f,v=a(90).trim,n=c.Number,s=n.prototype,i=P(u(s))=="Number",o=function(S){var w,A,F,N,R,B,z,H,G=_(S,!1);if(typeof G=="string"&&G.length>2){if((w=(G=v(G)).charCodeAt(0))===43||w===45){if((A=G.charCodeAt(2))===88||A===120)return NaN}else if(w===48){switch(G.charCodeAt(1)){case 66:case 98:F=2,N=49;break;case 79:case 111:F=8,N=55;break;default:return+G}for(B=(R=G.slice(2)).length,z=0;z<B;z++)if((H=R.charCodeAt(z))<48||H>N)return NaN;return parseInt(R,F)}}return+G};if(O("Number",!n(" 0o1")||!n("0b1")||n("+0x1"))){for(var p,t=function(S){var w=arguments.length<1?0:S,A=this;return A instanceof t&&(i?C(function(){s.valueOf.call(A)}):P(A)!="Number")?j(new n(o(w)),A,t):o(w)},x=T?d(n):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),m=0;x.length>m;m++)k(n,p=x[m])&&!k(t,p)&&f(t,p,l(n,p));t.prototype=s,s.constructor=t,L(c,"Number",t)}},function(U,st,a){var T=a(3),c=a(128);T({global:!0,forced:parseInt!=c},{parseInt:c})},function(U,st,a){var T=a(0),c=a(86),O=a(111),L=a(6);for(var k in c){var P=T[k],j=P&&P.prototype;if(j&&j.forEach!==O)try{L(j,"forEach",O)}catch{j.forEach=O}}},function(U,st,a){"use strict";var T=a(35),c=a(8),O=a(2),L=a(9),k=O("species");U.exports=function(P){var j=T(P),_=c.f;L&&j&&!j[k]&&_(j,k,{configurable:!0,get:function(){return this}})}},function(U,st,a){var T=a(9),c=a(8).f,O=Function.prototype,L=O.toString,k=/^\s*function ([^ (]*)/;!T||"name"in O||c(O,"name",{configurable:!0,get:function(){try{return L.call(this).match(k)[1]}catch{return""}}})},function(U,st,a){var T=a(0),c=a(90).trim,O=a(74),L=T.parseInt,k=/^[+-]?0[Xx]/,P=L(O+"08")!==8||L(O+"0x16")!==22;U.exports=P?function(j,_){var C=c(String(j));return L(C,_>>>0||(k.test(C)?16:10))}:L},function(U,st,a){var T=a(9),c=a(0),O=a(51),L=a(112),k=a(8).f,P=a(27).f,j=a(110),_=a(68),C=a(14),u=a(1),d=a(126),l=a(2)("match"),f=c.RegExp,v=f.prototype,n=/a/g,s=/a/g,i=new f(n)!==n;if(T&&O("RegExp",!i||u(function(){return s[l]=!1,f(n)!=n||f(s)==s||f(n,"i")!="/a/i"}))){for(var o=function(m,S){var w=this instanceof o,A=j(m),F=S===void 0;return!w&&A&&m.constructor===o&&F?m:L(i?new f(A&&!F?m.source:m,S):f((A=m instanceof o)?m.source:m,A&&F?_.call(m):S),w?this:v,o)},p=function(m){m in o||k(o,m,{configurable:!0,get:function(){return f[m]},set:function(S){f[m]=S}})},t=P(f),x=0;t.length>x;)p(t[x++]);v.constructor=o,o.prototype=v,C(c,"RegExp",o)}d("RegExp")},function(U,st,a){"use strict";var T=a(10),c=a(12),O=a(11),L=a(44),k=Math.min,P=[].lastIndexOf,j=!!P&&1/[1].lastIndexOf(1,-0)<0,_=L("lastIndexOf");U.exports=j||_?function(C){if(j)return P.apply(this,arguments)||0;var u=T(this),d=O(u.length),l=d-1;for(arguments.length>1&&(l=k(l,c(arguments[1]))),l<0&&(l=d+l);l>=0;l--)if(l in u&&u[l]===C)return l||0;return-1}:P},,function(U,st,a){"use strict";var T=a(16),c=a(32),O=a(11);U.exports=function(L){for(var k=T(this),P=O(k.length),j=arguments.length,_=c(j>1?arguments[1]:void 0,P),C=j>2?arguments[2]:void 0,u=C===void 0?P:c(C,P);u>_;)k[_++]=L;return k}},function(U,st,a){"use strict";a.r(st),a(100),a(101),a(95),a(123),a(83),a(98);function T(c,O){for(var L=0;L<O.length;L++){var k=O[L];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(c,k.key,k)}}jQuery(function(c){new(function(){function O(){(function(j,_){if(!(j instanceof _))throw new TypeError("Cannot call a class as a function")})(this,O),this.inputSelector="".concat(["text","password","email","url","tel","number","search","search-md","date"].map(function(j){return"input[type=".concat(j,"]")}).join(", "),", textarea"),this.textAreaSelector=".materialize-textarea",this.$text=c(".md-textarea-auto"),this.$body=c("body"),this.$document=c(document)}var L,k,P;return L=O,(k=[{key:"init",value:function(){var j,_=this;this.$text.length&&(j=window.attachEvent?function(C,u,d){C.attachEvent("on".concat(u),d)}:function(C,u,d){C.addEventListener(u,d,!1)},this.$text.each(function(){var C=this;function u(){C.style.height="auto",C.style.height="".concat(C.scrollHeight,"px")}function d(){window.setTimeout(u,0)}j(C,"change",u),j(C,"cut",d),j(C,"paste",d),j(C,"drop",d),j(C,"keydown",d),u()})),c(this.inputSelector).each(function(C,u){var d=c(u),l=u.validity.badInput;_.updateTextFields(d),l&&_.toggleActiveClass(d,"add")}),this.addOnFocusEvent(),this.addOnBlurEvent(),this.addOnChangeEvent(),this.addOnResetEvent(),this.appendHiddenDiv(),this.makeActiveAutofocus(),c(this.textAreaSelector).each(this.textAreaAutoResize),this.$body.on("keyup keydown",this.textAreaSelector,this.textAreaAutoResize)}},{key:"makeActiveAutofocus",value:function(){this.toggleActiveClass(c("input[autofocus]"),"add")}},{key:"toggleActiveClass",value:function(j,_){var C;_="".concat(_,"Class"),C=j.parent().hasClass("timepicker")?"label":"label, i, .input-prefix",j.siblings(C)[_]("active")}},{key:"addOnFocusEvent",value:function(){var j=this;this.$document.on("focus",this.inputSelector,function(_){j.toggleActiveClass(c(_.target),"add"),c(_.target).attr("type")=="date"&&c(_.target).css("color","#495057")})}},{key:"addOnBlurEvent",value:function(){var j=this;this.$document.on("blur",this.inputSelector,function(_){var C=c(_.target),u=!C.val(),d=!_.target.validity.badInput,l=C.attr("placeholder")===void 0;u&&d&&l&&(j.toggleActiveClass(C,"remove"),C.attr("type")=="date"&&C.css("color","transparent")),!u&&d&&l&&(C.siblings("i, .input-prefix").removeClass("active"),C.attr("type")=="date"&&C.css("color","#495057")),j.validateField(C)})}},{key:"addOnChangeEvent",value:function(){var j=this;this.$document.on("change",this.inputSelector,function(_){var C=c(_.target);j.updateTextFields(C),j.validateField(C)})}},{key:"addOnResetEvent",value:function(){var j=this;this.$document.on("reset",function(_){var C=c(_.target);C.is("form")&&(C.find(j.inputSelector).removeClass("valid invalid").each(function(u,d){var l=c(d),f=!l.val(),v=!l.attr("placeholder");f&&v&&j.toggleActiveClass(l,"remove")}),C.find("select.initialized").each(function(u,d){var l=c(d),f=l.siblings("input.select-dropdown"),v=l.children("[selected]").val();l.val(v),f.val(v)}))})}},{key:"appendHiddenDiv",value:function(){if(!c(".hiddendiv").first().length){var j=c('<div class="hiddendiv common"></div>');this.$body.append(j)}}},{key:"updateTextFields",value:function(j){var _=!!j.val(),C=!!j.attr("placeholder"),u=_||C?"add":"remove",d=j.siblings("label").hasClass("active"),l=!!j.siblings("label")[0];j.attr("type")!=="date"&&this.toggleActiveClass(j,u),j.attr("type")=="date"&&!d&&l?j.css("color","transparent"):j.attr("type")=="date"&&_&&this.toggleActiveClass(j,u)}},{key:"validateField",value:function(j){if(j.hasClass("validate")){var _=j.val(),C=!_.length,u=!j[0].validity.badInput;if(C&&u)j.removeClass("valid").removeClass("invalid");else{var d=j[0].validity.valid,l=Number(j.attr("length"))||0;d&&(!l||l>_.length)?j.removeClass("invalid").addClass("valid"):j.removeClass("valid").addClass("invalid")}}}},{key:"textAreaAutoResize",value:function(){var j=c(this);if(j.val().length){var _=c(".hiddendiv"),C=j.css("font-family"),u=j.css("font-size");u&&_.css("font-size",u),C&&_.css("font-family",C),j.attr("wrap")==="off"&&_.css("overflow-wrap","normal").css("white-space","pre"),_.text("".concat(j.val(),`
34
- `));var d=_.html().replace(/\n/g,"<br>");_.html(d),_.css("width",j.is(":visible")?j.width():c(window).width()/2),j.css("height",_.height())}}}])&&T(L.prototype,k),P&&T(L,P),O}())().init()})},function(U,st){jQuery(function(a){a(window).on("scroll",function(){var T=a(".navbar");T.length&&a(".scrolling-navbar")[T.offset().top>50?"addClass":"removeClass"]("top-nav-collapse")})})},function(U,st,a){"use strict";a.r(st),a(100),jQuery(function(T){T.fn.mdbTreeview=function(){var c=T(this);c.hasClass("treeview")&&function(O){O.find(".rotate").each(function(){var L=T(this);L.off("click"),L.on("click",function(){var k=T(this);k.siblings(".nested").toggleClass("active"),k.toggleClass("down")})})}(c),c.hasClass("treeview-animated")&&function(O){var L=O.find(".treeview-animated-element"),k=O.find(".closed");O.find(".nested").hide(),k.off("click"),k.on("click",function(){var P=T(this),j=P.siblings(".nested"),_=P.children(".fa-angle-right");P.toggleClass("open"),_.toggleClass("down"),j.hasClass("active")?j.removeClass("active").slideUp():j.addClass("active").slideDown()}),L.off("click"),L.on("click",function(){var P=T(this);P.hasClass("opened")?P.removeClass("opened"):(L.removeClass("opened"),P.addClass("opened"))})}(c),c.hasClass("treeview-colorful")&&function(O){var L=O.find(".treeview-colorful-element"),k=O.find(".treeview-colorful-items-header");O.find(".nested").hide(),k.off("click"),k.on("click",function(){var P=T(this),j=P.siblings(".nested"),_=P.children(".fa-plus-circle"),C=P.children(".fa-minus-circle");P.toggleClass("open"),_.removeClass("fa-plus-circle"),_.addClass("fa-minus-circle"),C.removeClass("fa-minus-circle"),C.addClass("fa-plus-circle"),j.hasClass("active")?j.removeClass("active").slideUp():j.addClass("active").slideDown()}),L.off("click"),L.on("click",function(){var P=T(this);P.hasClass("opened")?L.removeClass("opened"):(L.removeClass("opened"),P.addClass("opened"))})}(c)}})},function(U,st,a){"use strict";a.r(st),a(96),a(104),a(71),a(106);function T(L,k){if(!(L instanceof k))throw new TypeError("Cannot call a class as a function")}function c(L,k){for(var P=0;P<k.length;P++){var j=k[P];j.enumerable=j.enumerable||!1,j.configurable=!0,"value"in j&&(j.writable=!0),Object.defineProperty(L,j.key,j)}}function O(L,k,P){return k&&c(L.prototype,k),P&&c(L,P),L}jQuery(function(L){var k=function(){function j(){T(this,j)}return O(j,[{key:"init",value:function(){L(".wow").wow()}}]),j}(),P=function(){function j(_,C){T(this,j),this.$wowElement=_,this.customization=C,this.animated=!0,this.options=this.assignElementCustomization()}return O(j,[{key:"init",value:function(){var _=this;L(window).scroll(function(){_.animated?_.hide():_.mdbWow()}),this.appear()}},{key:"assignElementCustomization",value:function(){return{animationName:this.$wowElement.css("animation-name"),offset:100,iteration:this.fallback().or(this.$wowElement.data("wow-iteration")).or(1).value(),duration:this.fallback().or(this.$wowElement.data("wow-duration")).or(1e3).value(),delay:this.fallback().or(this.$wowElement.data("wow-delay")).or(0).value()}}},{key:"mdbWow",value:function(){var _=this;this.$wowElement.css("visibility")!=="visible"&&this.shouldElementBeVisible(!0)&&(setTimeout(function(){return _.$wowElement.removeClass("animated")},this.countRemoveTime()),this.appear())}},{key:"appear",value:function(){this.$wowElement.addClass("animated"),this.$wowElement.css({visibility:"visible","animation-name":this.options.animationName,"animation-iteration-count":this.options.iteration,"animation-duration":this.options.duration,"animation-delay":this.options.delay})}},{key:"hide",value:function(){var _=this;this.shouldElementBeVisible(!1)?(this.$wowElement.removeClass("animated"),this.$wowElement.css({"animation-name":"none",visibility:"hidden"})):setTimeout(function(){_.$wowElement.removeClass("animated")},this.countRemoveTime()),this.mdbWow(),this.animated=!this.animated}},{key:"shouldElementBeVisible",value:function(_){var C=this.getOffset(this.$wowElement[0]),u=this.$wowElement.height(),d=L(document).height(),l=window.innerHeight,f=window.scrollY,v=l+f-this.options.offset>C,n=l+f-this.options.offset>C+u,s=f<C,i=f<C+u,o=l+f===d,p=C+this.options.offset>d,t=l+f-this.options.offset<C,x=f>C+this.options.offset,m=f<C+this.options.offset,S=C+u>d-this.options.offset;return _?v&&s||n&&i||o&&p:v&&x||t&&m||S}},{key:"countRemoveTime",value:function(){var _=1e3*this.$wowElement.css("animation-duration").slice(0,-1),C=0;return this.options.duration&&(C=_+this.checkOptionsStringFormat(this.options.duration)),this.options.delay&&(C+=this.checkOptionsStringFormat(this.options.delay)),C}},{key:"checkOptionsStringFormat",value:function(_){var C;if(_.toString().slice(-1)==="s")C=_.toString().slice(0,-1);else{if(isNaN(_.toString().slice(-1)))return console.log("Not supported animation customization format.");C=_}return C}},{key:"getOffset",value:function(_){var C=_.getBoundingClientRect(),u=document.body,d=document.documentElement,l=window.pageYOffset||d.scrollTop||u.scrollTop,f=d.clientTop||u.clientTop||0,v=C.top+l-f;return Math.round(v)}},{key:"fallback",value:function(){return{_value:void 0,or:function(_){return _!==void 0&&this._value===void 0&&(this._value=_),this},value:function(){return this._value}}}}]),j}();L.fn.wow=function(j){this.each(function(){new P(L(this),j).init()})},window.WOW=k})},,,,,,,,function(U,st,a){var T=a(3),c=a(132),O=a(58);T({target:"Array",proto:!0},{fill:c}),O("fill")},function(U,st,a){a(3)({target:"Number",stat:!0},{MAX_SAFE_INTEGER:9007199254740991})},function(U,st,a){a(3)({target:"Number",stat:!0},{MIN_SAFE_INTEGER:-9007199254740991})},function(U,st,a){var T=a(3),c=a(16),O=a(52);T({target:"Object",stat:!0,forced:a(1)(function(){O(1)})},{keys:function(L){return O(c(L))}})},function(U,st,a){"use strict";var T=a(0),c=a(9),O=a(56).NATIVE_ARRAY_BUFFER,L=a(6),k=a(171),P=a(1),j=a(149),_=a(12),C=a(11),u=a(150),d=a(27).f,l=a(8).f,f=a(132),v=a(42),n=a(21),s=n.get,i=n.set,o=T.ArrayBuffer,p=o,t=T.DataView,x=T.Math,m=T.RangeError,S=x.abs,w=x.pow,A=x.floor,F=x.log,N=x.LN2,R=function(J,at,bt){var yt,lt,At,Dt=new Array(bt),It=8*bt-at-1,Pt=(1<<It)-1,Ct=Pt>>1,Ot=at===23?w(2,-24)-w(2,-77):0,mt=J<0||J===0&&1/J<0?1:0,zt=0;for((J=S(J))!=J||J===1/0?(lt=J!=J?1:0,yt=Pt):(yt=A(F(J)/N),J*(At=w(2,-yt))<1&&(yt--,At*=2),(J+=yt+Ct>=1?Ot/At:Ot*w(2,1-Ct))*At>=2&&(yt++,At/=2),yt+Ct>=Pt?(lt=0,yt=Pt):yt+Ct>=1?(lt=(J*At-1)*w(2,at),yt+=Ct):(lt=J*w(2,Ct-1)*w(2,at),yt=0));at>=8;Dt[zt++]=255&lt,lt/=256,at-=8);for(yt=yt<<at|lt,It+=at;It>0;Dt[zt++]=255&yt,yt/=256,It-=8);return Dt[--zt]|=128*mt,Dt},B=function(J,at){var bt,yt=J.length,lt=8*yt-at-1,At=(1<<lt)-1,Dt=At>>1,It=lt-7,Pt=yt-1,Ct=J[Pt--],Ot=127&Ct;for(Ct>>=7;It>0;Ot=256*Ot+J[Pt],Pt--,It-=8);for(bt=Ot&(1<<-It)-1,Ot>>=-It,It+=at;It>0;bt=256*bt+J[Pt],Pt--,It-=8);if(Ot===0)Ot=1-Dt;else{if(Ot===At)return bt?NaN:Ct?-1/0:1/0;bt+=w(2,at),Ot-=Dt}return(Ct?-1:1)*bt*w(2,Ot-at)},z=function(J){return J[3]<<24|J[2]<<16|J[1]<<8|J[0]},H=function(J){return[255&J]},G=function(J){return[255&J,J>>8&255]},K=function(J){return[255&J,J>>8&255,J>>16&255,J>>24&255]},ct=function(J){return R(J,23,4)},it=function(J){return R(J,52,8)},ht=function(J,at){l(J.prototype,at,{get:function(){return s(this)[at]}})},dt=function(J,at,bt,yt){var lt=u(+bt),At=s(J);if(lt+at>At.byteLength)throw m("Wrong index");var Dt=s(At.buffer).bytes,It=lt+At.byteOffset,Pt=Dt.slice(It,It+at);return yt?Pt:Pt.reverse()},St=function(J,at,bt,yt,lt,At){var Dt=u(+bt),It=s(J);if(Dt+at>It.byteLength)throw m("Wrong index");for(var Pt=s(It.buffer).bytes,Ct=Dt+It.byteOffset,Ot=yt(+lt),mt=0;mt<at;mt++)Pt[Ct+mt]=Ot[At?mt:at-mt-1]};if(O){if(!P(function(){o(1)})||!P(function(){new o(-1)})||P(function(){return new o,new o(1.5),new o(NaN),o.name!="ArrayBuffer"})){for(var pt,Q=(p=function(J){return j(this,p),new o(u(J))}).prototype=o.prototype,et=d(o),rt=0;et.length>rt;)(pt=et[rt++])in p||L(p,pt,o[pt]);Q.constructor=p}var ot=new t(new p(2)),gt=t.prototype.setInt8;ot.setInt8(0,2147483648),ot.setInt8(1,2147483649),!ot.getInt8(0)&&ot.getInt8(1)||k(t.prototype,{setInt8:function(J,at){gt.call(this,J,at<<24>>24)},setUint8:function(J,at){gt.call(this,J,at<<24>>24)}},{unsafe:!0})}else p=function(J){j(this,p,"ArrayBuffer");var at=u(J);i(this,{bytes:f.call(new Array(at),0),byteLength:at}),c||(this.byteLength=at)},t=function(J,at,bt){j(this,t,"DataView"),j(J,p,"DataView");var yt=s(J).byteLength,lt=_(at);if(lt<0||lt>yt)throw m("Wrong offset");if(lt+(bt=bt===void 0?yt-lt:C(bt))>yt)throw m("Wrong length");i(this,{buffer:J,byteLength:bt,byteOffset:lt}),c||(this.buffer=J,this.byteLength=bt,this.byteOffset=lt)},c&&(ht(p,"byteLength"),ht(t,"buffer"),ht(t,"byteLength"),ht(t,"byteOffset")),k(t.prototype,{getInt8:function(J){return dt(this,1,J)[0]<<24>>24},getUint8:function(J){return dt(this,1,J)[0]},getInt16:function(J){var at=dt(this,2,J,arguments.length>1?arguments[1]:void 0);return(at[1]<<8|at[0])<<16>>16},getUint16:function(J){var at=dt(this,2,J,arguments.length>1?arguments[1]:void 0);return at[1]<<8|at[0]},getInt32:function(J){return z(dt(this,4,J,arguments.length>1?arguments[1]:void 0))},getUint32:function(J){return z(dt(this,4,J,arguments.length>1?arguments[1]:void 0))>>>0},getFloat32:function(J){return B(dt(this,4,J,arguments.length>1?arguments[1]:void 0),23)},getFloat64:function(J){return B(dt(this,8,J,arguments.length>1?arguments[1]:void 0),52)},setInt8:function(J,at){St(this,1,J,H,at)},setUint8:function(J,at){St(this,1,J,H,at)},setInt16:function(J,at){St(this,2,J,G,at,arguments.length>2?arguments[2]:void 0)},setUint16:function(J,at){St(this,2,J,G,at,arguments.length>2?arguments[2]:void 0)},setInt32:function(J,at){St(this,4,J,K,at,arguments.length>2?arguments[2]:void 0)},setUint32:function(J,at){St(this,4,J,K,at,arguments.length>2?arguments[2]:void 0)},setFloat32:function(J,at){St(this,4,J,ct,at,arguments.length>2?arguments[2]:void 0)},setFloat64:function(J,at){St(this,8,J,it,at,arguments.length>2?arguments[2]:void 0)}});v(p,"ArrayBuffer"),v(t,"DataView"),U.exports={ArrayBuffer:p,DataView:t}},function(U,st){U.exports=function(a,T,c){if(!(a instanceof T))throw TypeError("Incorrect "+(c?c+" ":"")+"invocation");return a}},function(U,st,a){var T=a(12),c=a(11);U.exports=function(O){if(O===void 0)return 0;var L=T(O),k=c(L);if(L!==k)throw RangeError("Wrong length or index");return k}},function(U,st,a){var T=a(176);U.exports=function(c,O){var L=T(c);if(L%O)throw RangeError("Wrong offset");return L}},function(U,st,a){a(153),U.exports=a(154)},function(U,st,a){},function(U,st,a){"use strict";a.r(st),a(155),a(156),a(162),a(167),a(168),a(169),a(204),a(133),a(134),a(135),a(136)},function(U,st,a){"use strict";(function(T){var c,O;a(78),a(81),a(82),a(99),a(91),a(54),a(101),a(95),a(96),a(127),a(71),a(83),a(84),a(109),a(85);function L(k){return(L=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(P){return typeof P}:function(P){return P&&typeof Symbol=="function"&&P.constructor===Symbol&&P!==Symbol.prototype?"symbol":typeof P})(k)}/*!
35
- * bsCustomFileInput v1.3.2 (https://github.com/Johann-S/bs-custom-file-input)
36
- * Copyright 2018 - 2019 Johann-S <johann.servoire@gmail.com>
37
- * Licensed under MIT (https://github.com/Johann-S/bs-custom-file-input/blob/master/LICENSE)
38
- */c=void 0,O=function(){var k={CUSTOMFILE:'.custom-file input[type="file"]',CUSTOMFILELABEL:".custom-file-label",FORM:"form",INPUT:"input"},P=function(n){var s="",i=n.parentNode.querySelector(k.CUSTOMFILELABEL);return i&&(s=i.innerHTML),s},j=function(n){if(n.childNodes.length>0)for(var s=[].slice.call(n.childNodes),i=0;i<s.length;i++){var o=s[i];if(o.nodeType!==3)return o}return n},_=function(n){var s=n.bsCustomFileInput.defaultText,i=n.parentNode.querySelector(k.CUSTOMFILELABEL);i&&(j(i).innerHTML=s)},C=!!window.File,u=function(n){if(n.hasAttribute("multiple")&&C)return[].slice.call(n.files).map(function(i){return i.name}).join(", ");if(n.value.indexOf("fakepath")!==-1){var s=n.value.split("\\");return s[s.length-1]}return n.value};function d(){var n=this.parentNode.querySelector(k.CUSTOMFILELABEL);if(n){var s=j(n),i=u(this);i.length?s.innerHTML=i:_(this)}}function l(){for(var n=[].slice.call(this.querySelectorAll(k.INPUT)).filter(function(o){return!!o.bsCustomFileInput}),s=0,i=n.length;s<i;s++)_(n[s])}var f="reset",v="change";return{init:function(n,s){n===void 0&&(n=k.CUSTOMFILE),s===void 0&&(s=k.FORM);for(var i=[].slice.call(document.querySelectorAll(n)),o=[].slice.call(document.querySelectorAll(s)),p=0,t=i.length;p<t;p++){var x=i[p];Object.defineProperty(x,"bsCustomFileInput",{value:{defaultText:P(x)},writable:!0}),d.call(x),x.addEventListener(v,d)}for(var m=0,S=o.length;m<S;m++)o[m].addEventListener(f,l),Object.defineProperty(o[m],"bsCustomFileInput",{value:!0,writable:!0})},destroy:function(){for(var n=[].slice.call(document.querySelectorAll(k.FORM)).filter(function(m){return!!m.bsCustomFileInput}),s=[].slice.call(document.querySelectorAll(k.INPUT)).filter(function(m){return!!m.bsCustomFileInput}),i=0,o=s.length;i<o;i++){var p=s[i];_(p),p.bsCustomFileInput=void 0,p.removeEventListener(v,d)}for(var t=0,x=n.length;t<x;t++)n[t].removeEventListener(f,l),n[t].bsCustomFileInput=void 0}}},(typeof exports>"u"?"undefined":L(exports))==="object"&&T!==void 0?T.exports=O():typeof define=="function"&&a(55)?define(O):(c=c||self).bsCustomFileInput=O(),document.addEventListener("DOMContentLoaded",function(){bsCustomFileInput.init()})}).call(this,a(87)(U))},function(U,st,a){"use strict";(function(T,c){var O;a(78),a(81),a(82),a(102),a(144),a(99),a(157),a(119),a(91),a(54),a(101),a(95),a(120),a(121),a(96),a(122),a(97),a(104),a(158),a(159),a(123),a(161),a(145),a(146),a(114),a(147),a(71),a(105),a(124),a(83),a(106),a(84),a(113),a(109),a(125),a(85);function L(k){return(L=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(P){return typeof P}:function(P){return P&&typeof Symbol=="function"&&P.constructor===Symbol&&P!==Symbol.prototype?"symbol":typeof P})(k)}/*!
39
- * Chart.js
40
- * http://chartjs.org/
41
- * Version: 2.7.3
42
- *
43
- * Copyright 2018 Chart.js Contributors
44
- * Released under the MIT license
45
- * https://github.com/chartjs/Chart.js/blob/master/LICENSE.md
46
- */(function(k){(typeof exports>"u"?"undefined":L(exports))==="object"&&T!==void 0?T.exports=k():typeof define=="function"&&a(55)?define([],k):(typeof window<"u"?window:c!==void 0?c:typeof self<"u"?self:this).Chart=k()})(function(){return function k(P,j,_){function C(l,f){if(!j[l]){if(!P[l]){if(!f&&typeof O=="function"&&O)return O(l,!0);if(u)return u(l,!0);var v=new Error("Cannot find module '"+l+"'");throw v.code="MODULE_NOT_FOUND",v}var n=j[l]={exports:{}};P[l][0].call(n.exports,function(s){return C(P[l][1][s]||s)},n,n.exports,k,P,j,_)}return j[l].exports}for(var u=typeof O=="function"&&O,d=0;d<_.length;d++)C(_[d]);return C}({1:[function(k,P,j){},{}],2:[function(k,P,j){var _=k(6);function C(p){if(p){var t=[0,0,0],x=1,m=p.match(/^#([a-fA-F0-9]{3})$/i);if(m){m=m[1];for(var S=0;S<t.length;S++)t[S]=parseInt(m[S]+m[S],16)}else if(m=p.match(/^#([a-fA-F0-9]{6})$/i))for(m=m[1],S=0;S<t.length;S++)t[S]=parseInt(m.slice(2*S,2*S+2),16);else if(m=p.match(/^rgba?\(\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/i)){for(S=0;S<t.length;S++)t[S]=parseInt(m[S+1]);x=parseFloat(m[4])}else if(m=p.match(/^rgba?\(\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/i)){for(S=0;S<t.length;S++)t[S]=Math.round(2.55*parseFloat(m[S+1]));x=parseFloat(m[4])}else if(m=p.match(/(\w+)/)){if(m[1]=="transparent")return[0,0,0,0];if(!(t=_[m[1]]))return}for(S=0;S<t.length;S++)t[S]=n(t[S],0,255);return x=x||x==0?n(x,0,1):1,t[3]=x,t}}function u(p){if(p){var t=p.match(/^hsla?\(\s*([+-]?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)/);if(t){var x=parseFloat(t[4]);return[n(parseInt(t[1]),0,360),n(parseFloat(t[2]),0,100),n(parseFloat(t[3]),0,100),n(isNaN(x)?1:x,0,1)]}}}function d(p){if(p){var t=p.match(/^hwb\(\s*([+-]?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)/);if(t){var x=parseFloat(t[4]);return[n(parseInt(t[1]),0,360),n(parseFloat(t[2]),0,100),n(parseFloat(t[3]),0,100),n(isNaN(x)?1:x,0,1)]}}}function l(p,t){return t===void 0&&(t=p[3]!==void 0?p[3]:1),"rgba("+p[0]+", "+p[1]+", "+p[2]+", "+t+")"}function f(p,t){return"rgba("+Math.round(p[0]/255*100)+"%, "+Math.round(p[1]/255*100)+"%, "+Math.round(p[2]/255*100)+"%, "+(t||p[3]||1)+")"}function v(p,t){return t===void 0&&(t=p[3]!==void 0?p[3]:1),"hsla("+p[0]+", "+p[1]+"%, "+p[2]+"%, "+t+")"}function n(p,t,x){return Math.min(Math.max(t,p),x)}function s(p){var t=p.toString(16).toUpperCase();return t.length<2?"0"+t:t}P.exports={getRgba:C,getHsla:u,getRgb:function(p){var t=C(p);return t&&t.slice(0,3)},getHsl:function(p){var t=u(p);return t&&t.slice(0,3)},getHwb:d,getAlpha:function(p){var t=C(p);if(t||(t=u(p))||(t=d(p)))return t[3]},hexString:function(p){return"#"+s(p[0])+s(p[1])+s(p[2])},rgbString:function(p,t){return t<1||p[3]&&p[3]<1?l(p,t):"rgb("+p[0]+", "+p[1]+", "+p[2]+")"},rgbaString:l,percentString:function(p,t){if(t<1||p[3]&&p[3]<1)return f(p,t);var x=Math.round(p[0]/255*100),m=Math.round(p[1]/255*100),S=Math.round(p[2]/255*100);return"rgb("+x+"%, "+m+"%, "+S+"%)"},percentaString:f,hslString:function(p,t){return t<1||p[3]&&p[3]<1?v(p,t):"hsl("+p[0]+", "+p[1]+"%, "+p[2]+"%)"},hslaString:v,hwbString:function(p,t){return t===void 0&&(t=p[3]!==void 0?p[3]:1),"hwb("+p[0]+", "+p[1]+"%, "+p[2]+"%"+(t!==void 0&&t!==1?", "+t:"")+")"},keyword:function(p){return i[p.slice(0,3)]}};var i={};for(var o in _)i[_[o]]=o},{6:6}],3:[function(k,P,j){var _=k(5),C=k(2),u=function d(l){return l instanceof d?l:this instanceof d?(this.valid=!1,this.values={rgb:[0,0,0],hsl:[0,0,0],hsv:[0,0,0],hwb:[0,0,0],cmyk:[0,0,0,0],alpha:1},void(typeof l=="string"?(f=C.getRgba(l))?this.setValues("rgb",f):(f=C.getHsla(l))?this.setValues("hsl",f):(f=C.getHwb(l))&&this.setValues("hwb",f):L(l)==="object"&&((f=l).r!==void 0||f.red!==void 0?this.setValues("rgb",f):f.l!==void 0||f.lightness!==void 0?this.setValues("hsl",f):f.v!==void 0||f.value!==void 0?this.setValues("hsv",f):f.w!==void 0||f.whiteness!==void 0?this.setValues("hwb",f):f.c===void 0&&f.cyan===void 0||this.setValues("cmyk",f)))):new d(l);var f};(u.prototype={isValid:function(){return this.valid},rgb:function(){return this.setSpace("rgb",arguments)},hsl:function(){return this.setSpace("hsl",arguments)},hsv:function(){return this.setSpace("hsv",arguments)},hwb:function(){return this.setSpace("hwb",arguments)},cmyk:function(){return this.setSpace("cmyk",arguments)},rgbArray:function(){return this.values.rgb},hslArray:function(){return this.values.hsl},hsvArray:function(){return this.values.hsv},hwbArray:function(){var d=this.values;return d.alpha!==1?d.hwb.concat([d.alpha]):d.hwb},cmykArray:function(){return this.values.cmyk},rgbaArray:function(){var d=this.values;return d.rgb.concat([d.alpha])},hslaArray:function(){var d=this.values;return d.hsl.concat([d.alpha])},alpha:function(d){return d===void 0?this.values.alpha:(this.setValues("alpha",d),this)},red:function(d){return this.setChannel("rgb",0,d)},green:function(d){return this.setChannel("rgb",1,d)},blue:function(d){return this.setChannel("rgb",2,d)},hue:function(d){return d&&(d=(d%=360)<0?360+d:d),this.setChannel("hsl",0,d)},saturation:function(d){return this.setChannel("hsl",1,d)},lightness:function(d){return this.setChannel("hsl",2,d)},saturationv:function(d){return this.setChannel("hsv",1,d)},whiteness:function(d){return this.setChannel("hwb",1,d)},blackness:function(d){return this.setChannel("hwb",2,d)},value:function(d){return this.setChannel("hsv",2,d)},cyan:function(d){return this.setChannel("cmyk",0,d)},magenta:function(d){return this.setChannel("cmyk",1,d)},yellow:function(d){return this.setChannel("cmyk",2,d)},black:function(d){return this.setChannel("cmyk",3,d)},hexString:function(){return C.hexString(this.values.rgb)},rgbString:function(){return C.rgbString(this.values.rgb,this.values.alpha)},rgbaString:function(){return C.rgbaString(this.values.rgb,this.values.alpha)},percentString:function(){return C.percentString(this.values.rgb,this.values.alpha)},hslString:function(){return C.hslString(this.values.hsl,this.values.alpha)},hslaString:function(){return C.hslaString(this.values.hsl,this.values.alpha)},hwbString:function(){return C.hwbString(this.values.hwb,this.values.alpha)},keyword:function(){return C.keyword(this.values.rgb,this.values.alpha)},rgbNumber:function(){var d=this.values.rgb;return d[0]<<16|d[1]<<8|d[2]},luminosity:function(){for(var d=this.values.rgb,l=[],f=0;f<d.length;f++){var v=d[f]/255;l[f]=v<=.03928?v/12.92:Math.pow((v+.055)/1.055,2.4)}return .2126*l[0]+.7152*l[1]+.0722*l[2]},contrast:function(d){var l=this.luminosity(),f=d.luminosity();return l>f?(l+.05)/(f+.05):(f+.05)/(l+.05)},level:function(d){var l=this.contrast(d);return l>=7.1?"AAA":l>=4.5?"AA":""},dark:function(){var d=this.values.rgb;return(299*d[0]+587*d[1]+114*d[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var d=[],l=0;l<3;l++)d[l]=255-this.values.rgb[l];return this.setValues("rgb",d),this},lighten:function(d){var l=this.values.hsl;return l[2]+=l[2]*d,this.setValues("hsl",l),this},darken:function(d){var l=this.values.hsl;return l[2]-=l[2]*d,this.setValues("hsl",l),this},saturate:function(d){var l=this.values.hsl;return l[1]+=l[1]*d,this.setValues("hsl",l),this},desaturate:function(d){var l=this.values.hsl;return l[1]-=l[1]*d,this.setValues("hsl",l),this},whiten:function(d){var l=this.values.hwb;return l[1]+=l[1]*d,this.setValues("hwb",l),this},blacken:function(d){var l=this.values.hwb;return l[2]+=l[2]*d,this.setValues("hwb",l),this},greyscale:function(){var d=this.values.rgb,l=.3*d[0]+.59*d[1]+.11*d[2];return this.setValues("rgb",[l,l,l]),this},clearer:function(d){var l=this.values.alpha;return this.setValues("alpha",l-l*d),this},opaquer:function(d){var l=this.values.alpha;return this.setValues("alpha",l+l*d),this},rotate:function(d){var l=this.values.hsl,f=(l[0]+d)%360;return l[0]=f<0?360+f:f,this.setValues("hsl",l),this},mix:function(d,l){var f=d,v=l===void 0?.5:l,n=2*v-1,s=this.alpha()-f.alpha(),i=((n*s==-1?n:(n+s)/(1+n*s))+1)/2,o=1-i;return this.rgb(i*this.red()+o*f.red(),i*this.green()+o*f.green(),i*this.blue()+o*f.blue()).alpha(this.alpha()*v+f.alpha()*(1-v))},toJSON:function(){return this.rgb()},clone:function(){var d,l,f=new u,v=this.values,n=f.values;for(var s in v)v.hasOwnProperty(s)&&(d=v[s],(l={}.toString.call(d))==="[object Array]"?n[s]=d.slice(0):l==="[object Number]"?n[s]=d:console.error("unexpected color value:",d));return f}}).spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},u.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},u.prototype.getValues=function(d){for(var l=this.values,f={},v=0;v<d.length;v++)f[d.charAt(v)]=l[d][v];return l.alpha!==1&&(f.a=l.alpha),f},u.prototype.setValues=function(d,l){var f,v,n=this.values,s=this.spaces,i=this.maxes,o=1;if(this.valid=!0,d==="alpha")o=l;else if(l.length)n[d]=l.slice(0,d.length),o=l[d.length];else if(l[d.charAt(0)]!==void 0){for(f=0;f<d.length;f++)n[d][f]=l[d.charAt(f)];o=l.a}else if(l[s[d][0]]!==void 0){var p=s[d];for(f=0;f<d.length;f++)n[d][f]=l[p[f]];o=l.alpha}if(n.alpha=Math.max(0,Math.min(1,o===void 0?n.alpha:o)),d==="alpha")return!1;for(f=0;f<d.length;f++)v=Math.max(0,Math.min(i[d][f],n[d][f])),n[d][f]=Math.round(v);for(var t in s)t!==d&&(n[t]=_[d][t](n[d]));return!0},u.prototype.setSpace=function(d,l){var f=l[0];return f===void 0?this.getValues(d):(typeof f=="number"&&(f=Array.prototype.slice.call(l)),this.setValues(d,f),this)},u.prototype.setChannel=function(d,l,f){var v=this.values[d];return f===void 0?v[l]:f===v[l]?this:(v[l]=f,this.setValues(d,v),this)},typeof window<"u"&&(window.Color=u),P.exports=u},{2:2,5:5}],4:[function(k,P,j){function _(B){var z,H,G=B[0]/255,K=B[1]/255,ct=B[2]/255,it=Math.min(G,K,ct),ht=Math.max(G,K,ct),dt=ht-it;return ht==it?z=0:G==ht?z=(K-ct)/dt:K==ht?z=2+(ct-G)/dt:ct==ht&&(z=4+(G-K)/dt),(z=Math.min(60*z,360))<0&&(z+=360),H=(it+ht)/2,[z,100*(ht==it?0:H<=.5?dt/(ht+it):dt/(2-ht-it)),100*H]}function C(B){var z,H,G=B[0],K=B[1],ct=B[2],it=Math.min(G,K,ct),ht=Math.max(G,K,ct),dt=ht-it;return H=ht==0?0:dt/ht*1e3/10,ht==it?z=0:G==ht?z=(K-ct)/dt:K==ht?z=2+(ct-G)/dt:ct==ht&&(z=4+(G-K)/dt),(z=Math.min(60*z,360))<0&&(z+=360),[z,H,ht/255*1e3/10]}function u(B){var z=B[0],H=B[1],G=B[2];return[_(B)[0],100*(1/255*Math.min(z,Math.min(H,G))),100*(G=1-1/255*Math.max(z,Math.max(H,G)))]}function d(B){var z,H=B[0]/255,G=B[1]/255,K=B[2]/255;return[100*((1-H-(z=Math.min(1-H,1-G,1-K)))/(1-z)||0),100*((1-G-z)/(1-z)||0),100*((1-K-z)/(1-z)||0),100*z]}function l(B){return N[JSON.stringify(B)]}function f(B){var z=B[0]/255,H=B[1]/255,G=B[2]/255;return[100*(.4124*(z=z>.04045?Math.pow((z+.055)/1.055,2.4):z/12.92)+.3576*(H=H>.04045?Math.pow((H+.055)/1.055,2.4):H/12.92)+.1805*(G=G>.04045?Math.pow((G+.055)/1.055,2.4):G/12.92)),100*(.2126*z+.7152*H+.0722*G),100*(.0193*z+.1192*H+.9505*G)]}function v(B){var z=f(B),H=z[0],G=z[1],K=z[2];return G/=100,K/=108.883,H=(H/=95.047)>.008856?Math.pow(H,1/3):7.787*H+16/116,[116*(G=G>.008856?Math.pow(G,1/3):7.787*G+16/116)-16,500*(H-G),200*(G-(K=K>.008856?Math.pow(K,1/3):7.787*K+16/116))]}function n(B){var z,H,G,K,ct,it=B[0]/360,ht=B[1]/100,dt=B[2]/100;if(ht==0)return[ct=255*dt,ct,ct];z=2*dt-(H=dt<.5?dt*(1+ht):dt+ht-dt*ht),K=[0,0,0];for(var St=0;St<3;St++)(G=it+1/3*-(St-1))<0&&G++,G>1&&G--,ct=6*G<1?z+6*(H-z)*G:2*G<1?H:3*G<2?z+(H-z)*(2/3-G)*6:z,K[St]=255*ct;return K}function s(B){var z=B[0]/60,H=B[1]/100,G=B[2]/100,K=Math.floor(z)%6,ct=z-Math.floor(z),it=255*G*(1-H),ht=255*G*(1-H*ct),dt=255*G*(1-H*(1-ct));switch(G*=255,K){case 0:return[G,dt,it];case 1:return[ht,G,it];case 2:return[it,G,dt];case 3:return[it,ht,G];case 4:return[dt,it,G];case 5:return[G,it,ht]}}function i(B){var z,H,G,K,ct=B[0]/360,it=B[1]/100,ht=B[2]/100,dt=it+ht;switch(dt>1&&(it/=dt,ht/=dt),G=6*ct-(z=Math.floor(6*ct)),1&z&&(G=1-G),K=it+G*((H=1-ht)-it),z){default:case 6:case 0:r=H,g=K,b=it;break;case 1:r=K,g=H,b=it;break;case 2:r=it,g=H,b=K;break;case 3:r=it,g=K,b=H;break;case 4:r=K,g=it,b=H;break;case 5:r=H,g=it,b=K}return[255*r,255*g,255*b]}function o(B){var z=B[0]/100,H=B[1]/100,G=B[2]/100,K=B[3]/100;return[255*(1-Math.min(1,z*(1-K)+K)),255*(1-Math.min(1,H*(1-K)+K)),255*(1-Math.min(1,G*(1-K)+K))]}function p(B){var z,H,G,K=B[0]/100,ct=B[1]/100,it=B[2]/100;return H=-.9689*K+1.8758*ct+.0415*it,G=.0557*K+-.204*ct+1.057*it,z=(z=3.2406*K+-1.5372*ct+-.4986*it)>.0031308?1.055*Math.pow(z,1/2.4)-.055:z*=12.92,H=H>.0031308?1.055*Math.pow(H,1/2.4)-.055:H*=12.92,G=G>.0031308?1.055*Math.pow(G,1/2.4)-.055:G*=12.92,[255*(z=Math.min(Math.max(0,z),1)),255*(H=Math.min(Math.max(0,H),1)),255*(G=Math.min(Math.max(0,G),1))]}function t(B){var z=B[0],H=B[1],G=B[2];return H/=100,G/=108.883,z=(z/=95.047)>.008856?Math.pow(z,1/3):7.787*z+16/116,[116*(H=H>.008856?Math.pow(H,1/3):7.787*H+16/116)-16,500*(z-H),200*(H-(G=G>.008856?Math.pow(G,1/3):7.787*G+16/116))]}function x(B){var z,H,G,K,ct=B[0],it=B[1],ht=B[2];return ct<=8?K=(H=100*ct/903.3)/100*7.787+16/116:(H=100*Math.pow((ct+16)/116,3),K=Math.pow(H/100,1/3)),[z=z/95.047<=.008856?z=95.047*(it/500+K-16/116)/7.787:95.047*Math.pow(it/500+K,3),H,G=G/108.883<=.008859?G=108.883*(K-ht/200-16/116)/7.787:108.883*Math.pow(K-ht/200,3)]}function m(B){var z,H=B[0],G=B[1],K=B[2];return(z=360*Math.atan2(K,G)/2/Math.PI)<0&&(z+=360),[H,Math.sqrt(G*G+K*K),z]}function S(B){return p(x(B))}function w(B){var z,H=B[0],G=B[1];return z=B[2]/360*2*Math.PI,[H,G*Math.cos(z),G*Math.sin(z)]}function A(B){return F[B]}P.exports={rgb2hsl:_,rgb2hsv:C,rgb2hwb:u,rgb2cmyk:d,rgb2keyword:l,rgb2xyz:f,rgb2lab:v,rgb2lch:function(B){return m(v(B))},hsl2rgb:n,hsl2hsv:function(B){var z=B[0],H=B[1]/100,G=B[2]/100;return G===0?[0,0,0]:[z,100*(2*(H*=(G*=2)<=1?G:2-G)/(G+H)),100*((G+H)/2)]},hsl2hwb:function(B){return u(n(B))},hsl2cmyk:function(B){return d(n(B))},hsl2keyword:function(B){return l(n(B))},hsv2rgb:s,hsv2hsl:function(B){var z,H,G=B[0],K=B[1]/100,ct=B[2]/100;return z=K*ct,[G,100*(z=(z/=(H=(2-K)*ct)<=1?H:2-H)||0),100*(H/=2)]},hsv2hwb:function(B){return u(s(B))},hsv2cmyk:function(B){return d(s(B))},hsv2keyword:function(B){return l(s(B))},hwb2rgb:i,hwb2hsl:function(B){return _(i(B))},hwb2hsv:function(B){return C(i(B))},hwb2cmyk:function(B){return d(i(B))},hwb2keyword:function(B){return l(i(B))},cmyk2rgb:o,cmyk2hsl:function(B){return _(o(B))},cmyk2hsv:function(B){return C(o(B))},cmyk2hwb:function(B){return u(o(B))},cmyk2keyword:function(B){return l(o(B))},keyword2rgb:A,keyword2hsl:function(B){return _(A(B))},keyword2hsv:function(B){return C(A(B))},keyword2hwb:function(B){return u(A(B))},keyword2cmyk:function(B){return d(A(B))},keyword2lab:function(B){return v(A(B))},keyword2xyz:function(B){return f(A(B))},xyz2rgb:p,xyz2lab:t,xyz2lch:function(B){return m(t(B))},lab2xyz:x,lab2rgb:S,lab2lch:m,lch2lab:w,lch2xyz:function(B){return x(w(B))},lch2rgb:function(B){return S(w(B))}};var F={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},N={};for(var R in F)N[JSON.stringify(F[R])]=R},{}],5:[function(k,P,j){var _=k(4),C=function(){return new v};for(var u in _){C[u+"Raw"]=function(n){return function(s){return typeof s=="number"&&(s=Array.prototype.slice.call(arguments)),_[n](s)}}(u);var d=/(\w+)2(\w+)/.exec(u),l=d[1],f=d[2];(C[l]=C[l]||{})[f]=C[u]=function(n){return function(s){typeof s=="number"&&(s=Array.prototype.slice.call(arguments));var i=_[n](s);if(typeof i=="string"||i===void 0)return i;for(var o=0;o<i.length;o++)i[o]=Math.round(i[o]);return i}}(u)}var v=function(){this.convs={}};v.prototype.routeSpace=function(n,s){var i=s[0];return i===void 0?this.getValues(n):(typeof i=="number"&&(i=Array.prototype.slice.call(s)),this.setValues(n,i))},v.prototype.setValues=function(n,s){return this.space=n,this.convs={},this.convs[n]=s,this},v.prototype.getValues=function(n){var s=this.convs[n];if(!s){var i=this.space,o=this.convs[i];s=C[i][n](o),this.convs[n]=s}return s},["rgb","hsl","hsv","cmyk","keyword"].forEach(function(n){v.prototype[n]=function(s){return this.routeSpace(n,arguments)}}),P.exports=C},{4:4}],6:[function(k,P,j){P.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},{}],7:[function(k,P,j){var _=k(30)();_.helpers=k(46),k(28)(_),_.Animation=k(22),_.animationService=k(23),_.defaults=k(26),_.Element=k(27),_.elements=k(41),_.Interaction=k(29),_.layouts=k(31),_.platform=k(49),_.plugins=k(32),_.Scale=k(33),_.scaleService=k(34),_.Ticks=k(35),_.Tooltip=k(36),k(24)(_),k(25)(_),k(56)(_),k(54)(_),k(55)(_),k(57)(_),k(58)(_),k(59)(_),k(15)(_),k(16)(_),k(17)(_),k(18)(_),k(19)(_),k(20)(_),k(21)(_),k(8)(_),k(9)(_),k(10)(_),k(11)(_),k(12)(_),k(13)(_),k(14)(_);var C=k(50);for(var u in C)C.hasOwnProperty(u)&&_.plugins.register(C[u]);_.platform.initialize(),P.exports=_,typeof window<"u"&&(window.Chart=_),_.Legend=C.legend._element,_.Title=C.title._element,_.pluginService=_.plugins,_.PluginBase=_.Element.extend({}),_.canvasHelpers=_.helpers.canvas,_.layoutService=_.layouts},{10:10,11:11,12:12,13:13,14:14,15:15,16:16,17:17,18:18,19:19,20:20,21:21,22:22,23:23,24:24,25:25,26:26,27:27,28:28,29:29,30:30,31:31,32:32,33:33,34:34,35:35,36:36,41:41,46:46,49:49,50:50,54:54,55:55,56:56,57:57,58:58,59:59,8:8,9:9}],8:[function(k,P,j){P.exports=function(_){_.Bar=function(C,u){return u.type="bar",new _(C,u)}}},{}],9:[function(k,P,j){P.exports=function(_){_.Bubble=function(C,u){return u.type="bubble",new _(C,u)}}},{}],10:[function(k,P,j){P.exports=function(_){_.Doughnut=function(C,u){return u.type="doughnut",new _(C,u)}}},{}],11:[function(k,P,j){P.exports=function(_){_.Line=function(C,u){return u.type="line",new _(C,u)}}},{}],12:[function(k,P,j){P.exports=function(_){_.PolarArea=function(C,u){return u.type="polarArea",new _(C,u)}}},{}],13:[function(k,P,j){P.exports=function(_){_.Radar=function(C,u){return u.type="radar",new _(C,u)}}},{}],14:[function(k,P,j){P.exports=function(_){_.Scatter=function(C,u){return u.type="scatter",new _(C,u)}}},{}],15:[function(k,P,j){var _=k(26),C=k(41),u=k(46);_._set("bar",{hover:{mode:"label"},scales:{xAxes:[{type:"category",categoryPercentage:.8,barPercentage:.9,offset:!0,gridLines:{offsetGridLines:!0}}],yAxes:[{type:"linear"}]}}),_._set("horizontalBar",{hover:{mode:"index",axis:"y"},scales:{xAxes:[{type:"linear",position:"bottom"}],yAxes:[{position:"left",type:"category",categoryPercentage:.8,barPercentage:.9,offset:!0,gridLines:{offsetGridLines:!0}}]},elements:{rectangle:{borderSkipped:"left"}},tooltips:{callbacks:{title:function(d,l){var f="";return d.length>0&&(d[0].yLabel?f=d[0].yLabel:l.labels.length>0&&d[0].index<l.labels.length&&(f=l.labels[d[0].index])),f},label:function(d,l){return(l.datasets[d.datasetIndex].label||"")+": "+d.xLabel}},mode:"index",axis:"y"}}),P.exports=function(d){d.controllers.bar=d.DatasetController.extend({dataElementType:C.Rectangle,initialize:function(){var l,f=this;d.DatasetController.prototype.initialize.apply(f,arguments),(l=f.getMeta()).stack=f.getDataset().stack,l.bar=!0},update:function(l){var f,v,n=this.getMeta().data;for(this._ruler=this.getRuler(),f=0,v=n.length;f<v;++f)this.updateElement(n[f],f,l)},updateElement:function(l,f,v){var n=this,s=n.chart,i=n.getMeta(),o=n.getDataset(),p=l.custom||{},t=s.options.elements.rectangle;l._xScale=n.getScaleForId(i.xAxisID),l._yScale=n.getScaleForId(i.yAxisID),l._datasetIndex=n.index,l._index=f,l._model={datasetLabel:o.label,label:s.data.labels[f],borderSkipped:p.borderSkipped?p.borderSkipped:t.borderSkipped,backgroundColor:p.backgroundColor?p.backgroundColor:u.valueAtIndexOrDefault(o.backgroundColor,f,t.backgroundColor),borderColor:p.borderColor?p.borderColor:u.valueAtIndexOrDefault(o.borderColor,f,t.borderColor),borderWidth:p.borderWidth?p.borderWidth:u.valueAtIndexOrDefault(o.borderWidth,f,t.borderWidth)},n.updateElementGeometry(l,f,v),l.pivot()},updateElementGeometry:function(l,f,v){var n=this,s=l._model,i=n.getValueScale(),o=i.getBasePixel(),p=i.isHorizontal(),t=n._ruler||n.getRuler(),x=n.calculateBarValuePixels(n.index,f),m=n.calculateBarIndexPixels(n.index,f,t);s.horizontal=p,s.base=v?o:x.base,s.x=p?v?o:x.head:m.center,s.y=p?m.center:v?o:x.head,s.height=p?m.size:void 0,s.width=p?void 0:m.size},getValueScaleId:function(){return this.getMeta().yAxisID},getIndexScaleId:function(){return this.getMeta().xAxisID},getValueScale:function(){return this.getScaleForId(this.getValueScaleId())},getIndexScale:function(){return this.getScaleForId(this.getIndexScaleId())},_getStacks:function(l){var f,v,n=this.chart,s=this.getIndexScale().options.stacked,i=l===void 0?n.data.datasets.length:l+1,o=[];for(f=0;f<i;++f)(v=n.getDatasetMeta(f)).bar&&n.isDatasetVisible(f)&&(s===!1||s===!0&&o.indexOf(v.stack)===-1||s===void 0&&(v.stack===void 0||o.indexOf(v.stack)===-1))&&o.push(v.stack);return o},getStackCount:function(){return this._getStacks().length},getStackIndex:function(l,f){var v=this._getStacks(l),n=f!==void 0?v.indexOf(f):-1;return n===-1?v.length-1:n},getRuler:function(){var l,f,v=this.getIndexScale(),n=this.getStackCount(),s=this.index,i=v.isHorizontal(),o=i?v.left:v.top,p=o+(i?v.width:v.height),t=[];for(l=0,f=this.getMeta().data.length;l<f;++l)t.push(v.getPixelForValue(null,l,s));return{min:u.isNullOrUndef(v.options.barThickness)?function(x,m){var S,w,A,F,N=x.isHorizontal()?x.width:x.height,R=x.getTicks();for(A=1,F=m.length;A<F;++A)N=Math.min(N,m[A]-m[A-1]);for(A=0,F=R.length;A<F;++A)w=x.getPixelForTick(A),N=A>0?Math.min(N,w-S):N,S=w;return N}(v,t):-1,pixels:t,start:o,end:p,stackCount:n,scale:v}},calculateBarValuePixels:function(l,f){var v,n,s,i,o,p,t=this.chart,x=this.getMeta(),m=this.getValueScale(),S=t.data.datasets,w=m.getRightValue(S[l].data[f]),A=m.options.stacked,F=x.stack,N=0;if(A||A===void 0&&F!==void 0)for(v=0;v<l;++v)(n=t.getDatasetMeta(v)).bar&&n.stack===F&&n.controller.getValueScaleId()===m.id&&t.isDatasetVisible(v)&&(s=m.getRightValue(S[v].data[f]),(w<0&&s<0||w>=0&&s>0)&&(N+=s));return i=m.getPixelForValue(N),{size:p=((o=m.getPixelForValue(N+w))-i)/2,base:i,head:o,center:o+p/2}},calculateBarIndexPixels:function(l,f,v){var n=v.scale.options,s=n.barThickness==="flex"?function(t,x,m){var S,w=x.pixels,A=w[t],F=t>0?w[t-1]:null,N=t<w.length-1?w[t+1]:null,R=m.categoryPercentage;return F===null&&(F=A-(N===null?x.end-A:N-A)),N===null&&(N=A+A-F),S=A-(A-F)/2*R,{chunk:(N-F)/2*R/x.stackCount,ratio:m.barPercentage,start:S}}(f,v,n):function(t,x,m){var S,w,A=m.barThickness,F=x.stackCount,N=x.pixels[t];return u.isNullOrUndef(A)?(S=x.min*m.categoryPercentage,w=m.barPercentage):(S=A*F,w=1),{chunk:S/F,ratio:w,start:N-S/2}}(f,v,n),i=this.getStackIndex(l,this.getMeta().stack),o=s.start+s.chunk*i+s.chunk/2,p=Math.min(u.valueOrDefault(n.maxBarThickness,1/0),s.chunk*s.ratio);return{base:o-p/2,head:o+p/2,center:o,size:p}},draw:function(){var l=this.chart,f=this.getValueScale(),v=this.getMeta().data,n=this.getDataset(),s=v.length,i=0;for(u.canvas.clipArea(l.ctx,l.chartArea);i<s;++i)isNaN(f.getRightValue(n.data[i]))||v[i].draw();u.canvas.unclipArea(l.ctx)}}),d.controllers.horizontalBar=d.controllers.bar.extend({getValueScaleId:function(){return this.getMeta().xAxisID},getIndexScaleId:function(){return this.getMeta().yAxisID}})}},{26:26,41:41,46:46}],16:[function(k,P,j){var _=k(26),C=k(41),u=k(46);_._set("bubble",{hover:{mode:"single"},scales:{xAxes:[{type:"linear",position:"bottom",id:"x-axis-0"}],yAxes:[{type:"linear",position:"left",id:"y-axis-0"}]},tooltips:{callbacks:{title:function(){return""},label:function(d,l){var f=l.datasets[d.datasetIndex].label||"",v=l.datasets[d.datasetIndex].data[d.index];return f+": ("+d.xLabel+", "+d.yLabel+", "+v.r+")"}}}}),P.exports=function(d){d.controllers.bubble=d.DatasetController.extend({dataElementType:C.Point,update:function(l){var f=this,v=f.getMeta().data;u.each(v,function(n,s){f.updateElement(n,s,l)})},updateElement:function(l,f,v){var n=this,s=n.getMeta(),i=l.custom||{},o=n.getScaleForId(s.xAxisID),p=n.getScaleForId(s.yAxisID),t=n._resolveElementOptions(l,f),x=n.getDataset().data[f],m=n.index,S=v?o.getPixelForDecimal(.5):o.getPixelForValue(L(x)==="object"?x:NaN,f,m),w=v?p.getBasePixel():p.getPixelForValue(x,f,m);l._xScale=o,l._yScale=p,l._options=t,l._datasetIndex=m,l._index=f,l._model={backgroundColor:t.backgroundColor,borderColor:t.borderColor,borderWidth:t.borderWidth,hitRadius:t.hitRadius,pointStyle:t.pointStyle,rotation:t.rotation,radius:v?0:t.radius,skip:i.skip||isNaN(S)||isNaN(w),x:S,y:w},l.pivot()},setHoverStyle:function(l){var f=l._model,v=l._options;l.$previousStyle={backgroundColor:f.backgroundColor,borderColor:f.borderColor,borderWidth:f.borderWidth,radius:f.radius},f.backgroundColor=u.valueOrDefault(v.hoverBackgroundColor,u.getHoverColor(v.backgroundColor)),f.borderColor=u.valueOrDefault(v.hoverBorderColor,u.getHoverColor(v.borderColor)),f.borderWidth=u.valueOrDefault(v.hoverBorderWidth,v.borderWidth),f.radius=v.radius+v.hoverRadius},_resolveElementOptions:function(l,f){var v,n,s,i=this.chart,o=i.data.datasets[this.index],p=l.custom||{},t=i.options.elements.point,x=u.options.resolve,m=o.data[f],S={},w={chart:i,dataIndex:f,dataset:o,datasetIndex:this.index},A=["backgroundColor","borderColor","borderWidth","hoverBackgroundColor","hoverBorderColor","hoverBorderWidth","hoverRadius","hitRadius","pointStyle","rotation"];for(v=0,n=A.length;v<n;++v)S[s=A[v]]=x([p[s],o[s],t[s]],w,f);return S.radius=x([p.radius,m?m.r:void 0,o.radius,t.radius],w,f),S}})}},{26:26,41:41,46:46}],17:[function(k,P,j){var _=k(26),C=k(41),u=k(46);_._set("doughnut",{animation:{animateRotate:!0,animateScale:!1},hover:{mode:"single"},legendCallback:function(d){var l=[];l.push('<ul class="'+d.id+'-legend">');var f=d.data,v=f.datasets,n=f.labels;if(v.length)for(var s=0;s<v[0].data.length;++s)l.push('<li><span style="background-color:'+v[0].backgroundColor[s]+'"></span>'),n[s]&&l.push(n[s]),l.push("</li>");return l.push("</ul>"),l.join("")},legend:{labels:{generateLabels:function(d){var l=d.data;return l.labels.length&&l.datasets.length?l.labels.map(function(f,v){var n=d.getDatasetMeta(0),s=l.datasets[0],i=n.data[v],o=i&&i.custom||{},p=u.valueAtIndexOrDefault,t=d.options.elements.arc;return{text:f,fillStyle:o.backgroundColor?o.backgroundColor:p(s.backgroundColor,v,t.backgroundColor),strokeStyle:o.borderColor?o.borderColor:p(s.borderColor,v,t.borderColor),lineWidth:o.borderWidth?o.borderWidth:p(s.borderWidth,v,t.borderWidth),hidden:isNaN(s.data[v])||n.data[v].hidden,index:v}}):[]}},onClick:function(d,l){var f,v,n,s=l.index,i=this.chart;for(f=0,v=(i.data.datasets||[]).length;f<v;++f)(n=i.getDatasetMeta(f)).data[s]&&(n.data[s].hidden=!n.data[s].hidden);i.update()}},cutoutPercentage:50,rotation:-.5*Math.PI,circumference:2*Math.PI,tooltips:{callbacks:{title:function(){return""},label:function(d,l){var f=l.labels[d.index],v=": "+l.datasets[d.datasetIndex].data[d.index];return u.isArray(f)?(f=f.slice())[0]+=v:f+=v,f}}}}),_._set("pie",u.clone(_.doughnut)),_._set("pie",{cutoutPercentage:0}),P.exports=function(d){d.controllers.doughnut=d.controllers.pie=d.DatasetController.extend({dataElementType:C.Arc,linkScales:u.noop,getRingIndex:function(l){for(var f=0,v=0;v<l;++v)this.chart.isDatasetVisible(v)&&++f;return f},update:function(l){var f=this,v=f.chart,n=v.chartArea,s=v.options,i=s.elements.arc,o=n.right-n.left-i.borderWidth,p=n.bottom-n.top-i.borderWidth,t=Math.min(o,p),x={x:0,y:0},m=f.getMeta(),S=s.cutoutPercentage,w=s.circumference;if(w<2*Math.PI){var A=s.rotation%(2*Math.PI),F=(A+=2*Math.PI*(A>=Math.PI?-1:A<-Math.PI?1:0))+w,N={x:Math.cos(A),y:Math.sin(A)},R={x:Math.cos(F),y:Math.sin(F)},B=A<=0&&F>=0||A<=2*Math.PI&&2*Math.PI<=F,z=A<=.5*Math.PI&&.5*Math.PI<=F||A<=2.5*Math.PI&&2.5*Math.PI<=F,H=A<=-Math.PI&&-Math.PI<=F||A<=Math.PI&&Math.PI<=F,G=A<=.5*-Math.PI&&.5*-Math.PI<=F||A<=1.5*Math.PI&&1.5*Math.PI<=F,K=S/100,ct={x:H?-1:Math.min(N.x*(N.x<0?1:K),R.x*(R.x<0?1:K)),y:G?-1:Math.min(N.y*(N.y<0?1:K),R.y*(R.y<0?1:K))},it={x:B?1:Math.max(N.x*(N.x>0?1:K),R.x*(R.x>0?1:K)),y:z?1:Math.max(N.y*(N.y>0?1:K),R.y*(R.y>0?1:K))},ht={width:.5*(it.x-ct.x),height:.5*(it.y-ct.y)};t=Math.min(o/ht.width,p/ht.height),x={x:-.5*(it.x+ct.x),y:-.5*(it.y+ct.y)}}v.borderWidth=f.getMaxBorderWidth(m.data),v.outerRadius=Math.max((t-v.borderWidth)/2,0),v.innerRadius=Math.max(S?v.outerRadius/100*S:0,0),v.radiusLength=(v.outerRadius-v.innerRadius)/v.getVisibleDatasetCount(),v.offsetX=x.x*v.outerRadius,v.offsetY=x.y*v.outerRadius,m.total=f.calculateTotal(),f.outerRadius=v.outerRadius-v.radiusLength*f.getRingIndex(f.index),f.innerRadius=Math.max(f.outerRadius-v.radiusLength,0),u.each(m.data,function(dt,St){f.updateElement(dt,St,l)})},updateElement:function(l,f,v){var n=this,s=n.chart,i=s.chartArea,o=s.options,p=o.animation,t=(i.left+i.right)/2,x=(i.top+i.bottom)/2,m=o.rotation,S=o.rotation,w=n.getDataset(),A=v&&p.animateRotate||l.hidden?0:n.calculateCircumference(w.data[f])*(o.circumference/(2*Math.PI)),F=v&&p.animateScale?0:n.innerRadius,N=v&&p.animateScale?0:n.outerRadius,R=u.valueAtIndexOrDefault;u.extend(l,{_datasetIndex:n.index,_index:f,_model:{x:t+s.offsetX,y:x+s.offsetY,startAngle:m,endAngle:S,circumference:A,outerRadius:N,innerRadius:F,label:R(w.label,f,s.data.labels[f])}});var B=l._model,z=l.custom||{},H=u.valueAtIndexOrDefault,G=this.chart.options.elements.arc;B.backgroundColor=z.backgroundColor?z.backgroundColor:H(w.backgroundColor,f,G.backgroundColor),B.borderColor=z.borderColor?z.borderColor:H(w.borderColor,f,G.borderColor),B.borderWidth=z.borderWidth?z.borderWidth:H(w.borderWidth,f,G.borderWidth),v&&p.animateRotate||(B.startAngle=f===0?o.rotation:n.getMeta().data[f-1]._model.endAngle,B.endAngle=B.startAngle+B.circumference),l.pivot()},calculateTotal:function(){var l,f=this.getDataset(),v=this.getMeta(),n=0;return u.each(v.data,function(s,i){l=f.data[i],isNaN(l)||s.hidden||(n+=Math.abs(l))}),n},calculateCircumference:function(l){var f=this.getMeta().total;return f>0&&!isNaN(l)?2*Math.PI*(Math.abs(l)/f):0},getMaxBorderWidth:function(l){for(var f,v,n=0,s=this.index,i=l.length,o=0;o<i;o++)f=l[o]._model?l[o]._model.borderWidth:0,n=(v=l[o]._chart?l[o]._chart.config.data.datasets[s].hoverBorderWidth:0)>(n=f>n?f:n)?v:n;return n}})}},{26:26,41:41,46:46}],18:[function(k,P,j){var _=k(26),C=k(41),u=k(46);_._set("line",{showLines:!0,spanGaps:!1,hover:{mode:"label"},scales:{xAxes:[{type:"category",id:"x-axis-0"}],yAxes:[{type:"linear",id:"y-axis-0"}]}}),P.exports=function(d){function l(f,v){return u.valueOrDefault(f.showLine,v.showLines)}d.controllers.line=d.DatasetController.extend({datasetElementType:C.Line,dataElementType:C.Point,update:function(f){var v,n,s,i=this,o=i.getMeta(),p=o.dataset,t=o.data||[],x=i.chart.options,m=x.elements.line,S=i.getScaleForId(o.yAxisID),w=i.getDataset(),A=l(w,x);for(A&&(s=p.custom||{},w.tension!==void 0&&w.lineTension===void 0&&(w.lineTension=w.tension),p._scale=S,p._datasetIndex=i.index,p._children=t,p._model={spanGaps:w.spanGaps?w.spanGaps:x.spanGaps,tension:s.tension?s.tension:u.valueOrDefault(w.lineTension,m.tension),backgroundColor:s.backgroundColor?s.backgroundColor:w.backgroundColor||m.backgroundColor,borderWidth:s.borderWidth?s.borderWidth:w.borderWidth||m.borderWidth,borderColor:s.borderColor?s.borderColor:w.borderColor||m.borderColor,borderCapStyle:s.borderCapStyle?s.borderCapStyle:w.borderCapStyle||m.borderCapStyle,borderDash:s.borderDash?s.borderDash:w.borderDash||m.borderDash,borderDashOffset:s.borderDashOffset?s.borderDashOffset:w.borderDashOffset||m.borderDashOffset,borderJoinStyle:s.borderJoinStyle?s.borderJoinStyle:w.borderJoinStyle||m.borderJoinStyle,fill:s.fill?s.fill:w.fill!==void 0?w.fill:m.fill,steppedLine:s.steppedLine?s.steppedLine:u.valueOrDefault(w.steppedLine,m.stepped),cubicInterpolationMode:s.cubicInterpolationMode?s.cubicInterpolationMode:u.valueOrDefault(w.cubicInterpolationMode,m.cubicInterpolationMode)},p.pivot()),v=0,n=t.length;v<n;++v)i.updateElement(t[v],v,f);for(A&&p._model.tension!==0&&i.updateBezierControlPoints(),v=0,n=t.length;v<n;++v)t[v].pivot()},getPointBackgroundColor:function(f,v){var n=this.chart.options.elements.point.backgroundColor,s=this.getDataset(),i=f.custom||{};return i.backgroundColor?n=i.backgroundColor:s.pointBackgroundColor?n=u.valueAtIndexOrDefault(s.pointBackgroundColor,v,n):s.backgroundColor&&(n=s.backgroundColor),n},getPointBorderColor:function(f,v){var n=this.chart.options.elements.point.borderColor,s=this.getDataset(),i=f.custom||{};return i.borderColor?n=i.borderColor:s.pointBorderColor?n=u.valueAtIndexOrDefault(s.pointBorderColor,v,n):s.borderColor&&(n=s.borderColor),n},getPointBorderWidth:function(f,v){var n=this.chart.options.elements.point.borderWidth,s=this.getDataset(),i=f.custom||{};return isNaN(i.borderWidth)?!isNaN(s.pointBorderWidth)||u.isArray(s.pointBorderWidth)?n=u.valueAtIndexOrDefault(s.pointBorderWidth,v,n):isNaN(s.borderWidth)||(n=s.borderWidth):n=i.borderWidth,n},getPointRotation:function(f,v){var n=this.chart.options.elements.point.rotation,s=this.getDataset(),i=f.custom||{};return isNaN(i.rotation)?isNaN(s.pointRotation)&&!u.isArray(s.pointRotation)||(n=u.valueAtIndexOrDefault(s.pointRotation,v,n)):n=i.rotation,n},updateElement:function(f,v,n){var s,i,o=this,p=o.getMeta(),t=f.custom||{},x=o.getDataset(),m=o.index,S=x.data[v],w=o.getScaleForId(p.yAxisID),A=o.getScaleForId(p.xAxisID),F=o.chart.options.elements.point;x.radius!==void 0&&x.pointRadius===void 0&&(x.pointRadius=x.radius),x.hitRadius!==void 0&&x.pointHitRadius===void 0&&(x.pointHitRadius=x.hitRadius),s=A.getPixelForValue(L(S)==="object"?S:NaN,v,m),i=n?w.getBasePixel():o.calculatePointY(S,v,m),f._xScale=A,f._yScale=w,f._datasetIndex=m,f._index=v,f._model={x:s,y:i,skip:t.skip||isNaN(s)||isNaN(i),radius:t.radius||u.valueAtIndexOrDefault(x.pointRadius,v,F.radius),pointStyle:t.pointStyle||u.valueAtIndexOrDefault(x.pointStyle,v,F.pointStyle),rotation:o.getPointRotation(f,v),backgroundColor:o.getPointBackgroundColor(f,v),borderColor:o.getPointBorderColor(f,v),borderWidth:o.getPointBorderWidth(f,v),tension:p.dataset._model?p.dataset._model.tension:0,steppedLine:!!p.dataset._model&&p.dataset._model.steppedLine,hitRadius:t.hitRadius||u.valueAtIndexOrDefault(x.pointHitRadius,v,F.hitRadius)}},calculatePointY:function(f,v,n){var s,i,o,p=this.chart,t=this.getMeta(),x=this.getScaleForId(t.yAxisID),m=0,S=0;if(x.options.stacked){for(s=0;s<n;s++)if(i=p.data.datasets[s],(o=p.getDatasetMeta(s)).type==="line"&&o.yAxisID===x.id&&p.isDatasetVisible(s)){var w=Number(x.getRightValue(i.data[v]));w<0?S+=w||0:m+=w||0}var A=Number(x.getRightValue(f));return A<0?x.getPixelForValue(S+A):x.getPixelForValue(m+A)}return x.getPixelForValue(f)},updateBezierControlPoints:function(){var f,v,n,s,i=this.getMeta(),o=this.chart.chartArea,p=i.data||[];function t(x,m,S){return Math.max(Math.min(x,S),m)}if(i.dataset._model.spanGaps&&(p=p.filter(function(x){return!x._model.skip})),i.dataset._model.cubicInterpolationMode==="monotone")u.splineCurveMonotone(p);else for(f=0,v=p.length;f<v;++f)n=p[f]._model,s=u.splineCurve(u.previousItem(p,f)._model,n,u.nextItem(p,f)._model,i.dataset._model.tension),n.controlPointPreviousX=s.previous.x,n.controlPointPreviousY=s.previous.y,n.controlPointNextX=s.next.x,n.controlPointNextY=s.next.y;if(this.chart.options.elements.line.capBezierPoints)for(f=0,v=p.length;f<v;++f)(n=p[f]._model).controlPointPreviousX=t(n.controlPointPreviousX,o.left,o.right),n.controlPointPreviousY=t(n.controlPointPreviousY,o.top,o.bottom),n.controlPointNextX=t(n.controlPointNextX,o.left,o.right),n.controlPointNextY=t(n.controlPointNextY,o.top,o.bottom)},draw:function(){var f,v=this.chart,n=this.getMeta(),s=n.data||[],i=v.chartArea,o=s.length,p=0;for(l(this.getDataset(),v.options)&&(f=(n.dataset._model.borderWidth||0)/2,u.canvas.clipArea(v.ctx,{left:i.left,right:i.right,top:i.top-f,bottom:i.bottom+f}),n.dataset.draw(),u.canvas.unclipArea(v.ctx));p<o;++p)s[p].draw(i)},setHoverStyle:function(f){var v=this.chart.data.datasets[f._datasetIndex],n=f._index,s=f.custom||{},i=f._model;f.$previousStyle={backgroundColor:i.backgroundColor,borderColor:i.borderColor,borderWidth:i.borderWidth,radius:i.radius},i.backgroundColor=s.hoverBackgroundColor||u.valueAtIndexOrDefault(v.pointHoverBackgroundColor,n,u.getHoverColor(i.backgroundColor)),i.borderColor=s.hoverBorderColor||u.valueAtIndexOrDefault(v.pointHoverBorderColor,n,u.getHoverColor(i.borderColor)),i.borderWidth=s.hoverBorderWidth||u.valueAtIndexOrDefault(v.pointHoverBorderWidth,n,i.borderWidth),i.radius=s.hoverRadius||u.valueAtIndexOrDefault(v.pointHoverRadius,n,this.chart.options.elements.point.hoverRadius)}})}},{26:26,41:41,46:46}],19:[function(k,P,j){var _=k(26),C=k(41),u=k(46);_._set("polarArea",{scale:{type:"radialLinear",angleLines:{display:!1},gridLines:{circular:!0},pointLabels:{display:!1},ticks:{beginAtZero:!0}},animation:{animateRotate:!0,animateScale:!0},startAngle:-.5*Math.PI,legendCallback:function(d){var l=[];l.push('<ul class="'+d.id+'-legend">');var f=d.data,v=f.datasets,n=f.labels;if(v.length)for(var s=0;s<v[0].data.length;++s)l.push('<li><span style="background-color:'+v[0].backgroundColor[s]+'"></span>'),n[s]&&l.push(n[s]),l.push("</li>");return l.push("</ul>"),l.join("")},legend:{labels:{generateLabels:function(d){var l=d.data;return l.labels.length&&l.datasets.length?l.labels.map(function(f,v){var n=d.getDatasetMeta(0),s=l.datasets[0],i=n.data[v].custom||{},o=u.valueAtIndexOrDefault,p=d.options.elements.arc;return{text:f,fillStyle:i.backgroundColor?i.backgroundColor:o(s.backgroundColor,v,p.backgroundColor),strokeStyle:i.borderColor?i.borderColor:o(s.borderColor,v,p.borderColor),lineWidth:i.borderWidth?i.borderWidth:o(s.borderWidth,v,p.borderWidth),hidden:isNaN(s.data[v])||n.data[v].hidden,index:v}}):[]}},onClick:function(d,l){var f,v,n,s=l.index,i=this.chart;for(f=0,v=(i.data.datasets||[]).length;f<v;++f)(n=i.getDatasetMeta(f)).data[s].hidden=!n.data[s].hidden;i.update()}},tooltips:{callbacks:{title:function(){return""},label:function(d,l){return l.labels[d.index]+": "+d.yLabel}}}}),P.exports=function(d){d.controllers.polarArea=d.DatasetController.extend({dataElementType:C.Arc,linkScales:u.noop,update:function(l){var f,v,n,s=this,i=s.getDataset(),o=s.getMeta(),p=s.chart.options.startAngle||0,t=s._starts=[],x=s._angles=[];for(s._updateRadius(),o.count=s.countVisibleElements(),f=0,v=i.data.length;f<v;f++)t[f]=p,n=s._computeAngle(f),x[f]=n,p+=n;u.each(o.data,function(m,S){s.updateElement(m,S,l)})},_updateRadius:function(){var l=this,f=l.chart,v=f.chartArea,n=f.options,s=n.elements.arc,i=Math.min(v.right-v.left,v.bottom-v.top);f.outerRadius=Math.max((i-s.borderWidth/2)/2,0),f.innerRadius=Math.max(n.cutoutPercentage?f.outerRadius/100*n.cutoutPercentage:1,0),f.radiusLength=(f.outerRadius-f.innerRadius)/f.getVisibleDatasetCount(),l.outerRadius=f.outerRadius-f.radiusLength*l.index,l.innerRadius=l.outerRadius-f.radiusLength},updateElement:function(l,f,v){var n=this,s=n.chart,i=n.getDataset(),o=s.options,p=o.animation,t=s.scale,x=s.data.labels,m=t.xCenter,S=t.yCenter,w=o.startAngle,A=l.hidden?0:t.getDistanceFromCenterForValue(i.data[f]),F=n._starts[f],N=F+(l.hidden?0:n._angles[f]),R=p.animateScale?0:t.getDistanceFromCenterForValue(i.data[f]);u.extend(l,{_datasetIndex:n.index,_index:f,_scale:t,_model:{x:m,y:S,innerRadius:0,outerRadius:v?R:A,startAngle:v&&p.animateRotate?w:F,endAngle:v&&p.animateRotate?w:N,label:u.valueAtIndexOrDefault(x,f,x[f])}});var B=this.chart.options.elements.arc,z=l.custom||{},H=u.valueAtIndexOrDefault,G=l._model;G.backgroundColor=z.backgroundColor?z.backgroundColor:H(i.backgroundColor,f,B.backgroundColor),G.borderColor=z.borderColor?z.borderColor:H(i.borderColor,f,B.borderColor),G.borderWidth=z.borderWidth?z.borderWidth:H(i.borderWidth,f,B.borderWidth),l.pivot()},countVisibleElements:function(){var l=this.getDataset(),f=this.getMeta(),v=0;return u.each(f.data,function(n,s){isNaN(l.data[s])||n.hidden||v++}),v},_computeAngle:function(l){var f=this,v=this.getMeta().count,n=f.getDataset(),s=f.getMeta();if(isNaN(n.data[l])||s.data[l].hidden)return 0;var i={chart:f.chart,dataIndex:l,dataset:n,datasetIndex:f.index};return u.options.resolve([f.chart.options.elements.arc.angle,2*Math.PI/v],i,l)}})}},{26:26,41:41,46:46}],20:[function(k,P,j){var _=k(26),C=k(41),u=k(46);_._set("radar",{scale:{type:"radialLinear"},elements:{line:{tension:0}}}),P.exports=function(d){d.controllers.radar=d.DatasetController.extend({datasetElementType:C.Line,dataElementType:C.Point,linkScales:u.noop,update:function(l){var f=this,v=f.getMeta(),n=v.dataset,s=v.data,i=n.custom||{},o=f.getDataset(),p=f.chart.options.elements.line,t=f.chart.scale;o.tension!==void 0&&o.lineTension===void 0&&(o.lineTension=o.tension),u.extend(v.dataset,{_datasetIndex:f.index,_scale:t,_children:s,_loop:!0,_model:{tension:i.tension?i.tension:u.valueOrDefault(o.lineTension,p.tension),backgroundColor:i.backgroundColor?i.backgroundColor:o.backgroundColor||p.backgroundColor,borderWidth:i.borderWidth?i.borderWidth:o.borderWidth||p.borderWidth,borderColor:i.borderColor?i.borderColor:o.borderColor||p.borderColor,fill:i.fill?i.fill:o.fill!==void 0?o.fill:p.fill,borderCapStyle:i.borderCapStyle?i.borderCapStyle:o.borderCapStyle||p.borderCapStyle,borderDash:i.borderDash?i.borderDash:o.borderDash||p.borderDash,borderDashOffset:i.borderDashOffset?i.borderDashOffset:o.borderDashOffset||p.borderDashOffset,borderJoinStyle:i.borderJoinStyle?i.borderJoinStyle:o.borderJoinStyle||p.borderJoinStyle}}),v.dataset.pivot(),u.each(s,function(x,m){f.updateElement(x,m,l)},f),f.updateBezierControlPoints()},updateElement:function(l,f,v){var n=this,s=l.custom||{},i=n.getDataset(),o=n.chart.scale,p=n.chart.options.elements.point,t=o.getPointPositionForValue(f,i.data[f]);i.radius!==void 0&&i.pointRadius===void 0&&(i.pointRadius=i.radius),i.hitRadius!==void 0&&i.pointHitRadius===void 0&&(i.pointHitRadius=i.hitRadius),u.extend(l,{_datasetIndex:n.index,_index:f,_scale:o,_model:{x:v?o.xCenter:t.x,y:v?o.yCenter:t.y,tension:s.tension?s.tension:u.valueOrDefault(i.lineTension,n.chart.options.elements.line.tension),radius:s.radius?s.radius:u.valueAtIndexOrDefault(i.pointRadius,f,p.radius),backgroundColor:s.backgroundColor?s.backgroundColor:u.valueAtIndexOrDefault(i.pointBackgroundColor,f,p.backgroundColor),borderColor:s.borderColor?s.borderColor:u.valueAtIndexOrDefault(i.pointBorderColor,f,p.borderColor),borderWidth:s.borderWidth?s.borderWidth:u.valueAtIndexOrDefault(i.pointBorderWidth,f,p.borderWidth),pointStyle:s.pointStyle?s.pointStyle:u.valueAtIndexOrDefault(i.pointStyle,f,p.pointStyle),rotation:s.rotation?s.rotation:u.valueAtIndexOrDefault(i.pointRotation,f,p.rotation),hitRadius:s.hitRadius?s.hitRadius:u.valueAtIndexOrDefault(i.pointHitRadius,f,p.hitRadius)}}),l._model.skip=s.skip?s.skip:isNaN(l._model.x)||isNaN(l._model.y)},updateBezierControlPoints:function(){var l=this.chart.chartArea,f=this.getMeta();u.each(f.data,function(v,n){var s=v._model,i=u.splineCurve(u.previousItem(f.data,n,!0)._model,s,u.nextItem(f.data,n,!0)._model,s.tension);s.controlPointPreviousX=Math.max(Math.min(i.previous.x,l.right),l.left),s.controlPointPreviousY=Math.max(Math.min(i.previous.y,l.bottom),l.top),s.controlPointNextX=Math.max(Math.min(i.next.x,l.right),l.left),s.controlPointNextY=Math.max(Math.min(i.next.y,l.bottom),l.top),v.pivot()})},setHoverStyle:function(l){var f=this.chart.data.datasets[l._datasetIndex],v=l.custom||{},n=l._index,s=l._model;l.$previousStyle={backgroundColor:s.backgroundColor,borderColor:s.borderColor,borderWidth:s.borderWidth,radius:s.radius},s.radius=v.hoverRadius?v.hoverRadius:u.valueAtIndexOrDefault(f.pointHoverRadius,n,this.chart.options.elements.point.hoverRadius),s.backgroundColor=v.hoverBackgroundColor?v.hoverBackgroundColor:u.valueAtIndexOrDefault(f.pointHoverBackgroundColor,n,u.getHoverColor(s.backgroundColor)),s.borderColor=v.hoverBorderColor?v.hoverBorderColor:u.valueAtIndexOrDefault(f.pointHoverBorderColor,n,u.getHoverColor(s.borderColor)),s.borderWidth=v.hoverBorderWidth?v.hoverBorderWidth:u.valueAtIndexOrDefault(f.pointHoverBorderWidth,n,s.borderWidth)}})}},{26:26,41:41,46:46}],21:[function(k,P,j){k(26)._set("scatter",{hover:{mode:"single"},scales:{xAxes:[{id:"x-axis-1",type:"linear",position:"bottom"}],yAxes:[{id:"y-axis-1",type:"linear",position:"left"}]},showLines:!1,tooltips:{callbacks:{title:function(){return""},label:function(_){return"("+_.xLabel+", "+_.yLabel+")"}}}}),P.exports=function(_){_.controllers.scatter=_.controllers.line}},{26:26}],22:[function(k,P,j){var _=k(27);j=P.exports=_.extend({chart:null,currentStep:0,numSteps:60,easing:"",render:null,onAnimationProgress:null,onAnimationComplete:null}),Object.defineProperty(j.prototype,"animationObject",{get:function(){return this}}),Object.defineProperty(j.prototype,"chartInstance",{get:function(){return this.chart},set:function(C){this.chart=C}})},{27:27}],23:[function(k,P,j){var _=k(26),C=k(46);_._set("global",{animation:{duration:1e3,easing:"easeOutQuart",onProgress:C.noop,onComplete:C.noop}}),P.exports={frameDuration:17,animations:[],dropFrames:0,request:null,addAnimation:function(u,d,l,f){var v,n,s=this.animations;for(d.chart=u,f||(u.animating=!0),v=0,n=s.length;v<n;++v)if(s[v].chart===u)return void(s[v]=d);s.push(d),s.length===1&&this.requestAnimationFrame()},cancelAnimation:function(u){var d=C.findIndex(this.animations,function(l){return l.chart===u});d!==-1&&(this.animations.splice(d,1),u.animating=!1)},requestAnimationFrame:function(){var u=this;u.request===null&&(u.request=C.requestAnimFrame.call(window,function(){u.request=null,u.startDigest()}))},startDigest:function(){var u=this,d=Date.now(),l=0;u.dropFrames>1&&(l=Math.floor(u.dropFrames),u.dropFrames=u.dropFrames%1),u.advance(1+l);var f=Date.now();u.dropFrames+=(f-d)/u.frameDuration,u.animations.length>0&&u.requestAnimationFrame()},advance:function(u){for(var d,l,f=this.animations,v=0;v<f.length;)l=(d=f[v]).chart,d.currentStep=(d.currentStep||0)+u,d.currentStep=Math.min(d.currentStep,d.numSteps),C.callback(d.render,[l,d],l),C.callback(d.onAnimationProgress,[d],l),d.currentStep>=d.numSteps?(C.callback(d.onAnimationComplete,[d],l),l.animating=!1,f.splice(v,1)):++v}}},{26:26,46:46}],24:[function(k,P,j){var _=k(22),C=k(23),u=k(26),d=k(46),l=k(29),f=k(31),v=k(49),n=k(32),s=k(34),i=k(36);P.exports=function(o){function p(x){var m=x.options;d.each(x.scales,function(S){f.removeBox(x,S)}),m=d.configMerge(o.defaults.global,o.defaults[x.config.type],m),x.options=x.config.options=m,x.ensureScalesHaveIDs(),x.buildOrUpdateScales(),x.tooltip._options=m.tooltips,x.tooltip.initialize()}function t(x){return x==="top"||x==="bottom"}o.types={},o.instances={},o.controllers={},d.extend(o.prototype,{construct:function(x,m){var S=this;m=function(R){var B=(R=R||{}).data=R.data||{};return B.datasets=B.datasets||[],B.labels=B.labels||[],R.options=d.configMerge(u.global,u[R.type],R.options||{}),R}(m);var w=v.acquireContext(x,m),A=w&&w.canvas,F=A&&A.height,N=A&&A.width;S.id=d.uid(),S.ctx=w,S.canvas=A,S.config=m,S.width=N,S.height=F,S.aspectRatio=F?N/F:null,S.options=m.options,S._bufferedRender=!1,S.chart=S,S.controller=S,o.instances[S.id]=S,Object.defineProperty(S,"data",{get:function(){return S.config.data},set:function(R){S.config.data=R}}),w&&A?(S.initialize(),S.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var x=this;return n.notify(x,"beforeInit"),d.retinaScale(x,x.options.devicePixelRatio),x.bindEvents(),x.options.responsive&&x.resize(!0),x.ensureScalesHaveIDs(),x.buildOrUpdateScales(),x.initToolTip(),n.notify(x,"afterInit"),x},clear:function(){return d.canvas.clear(this),this},stop:function(){return C.cancelAnimation(this),this},resize:function(x){var m=this,S=m.options,w=m.canvas,A=S.maintainAspectRatio&&m.aspectRatio||null,F=Math.max(0,Math.floor(d.getMaximumWidth(w))),N=Math.max(0,Math.floor(A?F/A:d.getMaximumHeight(w)));if((m.width!==F||m.height!==N)&&(w.width=m.width=F,w.height=m.height=N,w.style.width=F+"px",w.style.height=N+"px",d.retinaScale(m,S.devicePixelRatio),!x)){var R={width:F,height:N};n.notify(m,"resize",[R]),m.options.onResize&&m.options.onResize(m,R),m.stop(),m.update({duration:m.options.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var x=this.options,m=x.scales||{},S=x.scale;d.each(m.xAxes,function(w,A){w.id=w.id||"x-axis-"+A}),d.each(m.yAxes,function(w,A){w.id=w.id||"y-axis-"+A}),S&&(S.id=S.id||"scale")},buildOrUpdateScales:function(){var x=this,m=x.options,S=x.scales||{},w=[],A=Object.keys(S).reduce(function(F,N){return F[N]=!1,F},{});m.scales&&(w=w.concat((m.scales.xAxes||[]).map(function(F){return{options:F,dtype:"category",dposition:"bottom"}}),(m.scales.yAxes||[]).map(function(F){return{options:F,dtype:"linear",dposition:"left"}}))),m.scale&&w.push({options:m.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),d.each(w,function(F){var N=F.options,R=N.id,B=d.valueOrDefault(N.type,F.dtype);t(N.position)!==t(F.dposition)&&(N.position=F.dposition),A[R]=!0;var z=null;if(R in S&&S[R].type===B)(z=S[R]).options=N,z.ctx=x.ctx,z.chart=x;else{var H=s.getScaleConstructor(B);if(!H)return;z=new H({id:R,type:B,options:N,ctx:x.ctx,chart:x}),S[z.id]=z}z.mergeTicksOptions(),F.isDefault&&(x.scale=z)}),d.each(A,function(F,N){F||delete S[N]}),x.scales=S,s.addScalesToLayout(this)},buildOrUpdateControllers:function(){var x=this,m=[],S=[];return d.each(x.data.datasets,function(w,A){var F=x.getDatasetMeta(A),N=w.type||x.config.type;if(F.type&&F.type!==N&&(x.destroyDatasetMeta(A),F=x.getDatasetMeta(A)),F.type=N,m.push(F.type),F.controller)F.controller.updateIndex(A),F.controller.linkScales();else{var R=o.controllers[F.type];if(R===void 0)throw new Error('"'+F.type+'" is not a chart type.');F.controller=new R(x,A),S.push(F.controller)}},x),S},resetElements:function(){var x=this;d.each(x.data.datasets,function(m,S){x.getDatasetMeta(S).controller.reset()},x)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(x){var m=this;if(x&&L(x)==="object"||(x={duration:x,lazy:arguments[1]}),p(m),n._invalidate(m),n.notify(m,"beforeUpdate")!==!1){m.tooltip._data=m.data;var S=m.buildOrUpdateControllers();d.each(m.data.datasets,function(w,A){m.getDatasetMeta(A).controller.buildOrUpdateElements()},m),m.updateLayout(),m.options.animation&&m.options.animation.duration&&d.each(S,function(w){w.reset()}),m.updateDatasets(),m.tooltip.initialize(),m.lastActive=[],n.notify(m,"afterUpdate"),m._bufferedRender?m._bufferedRequest={duration:x.duration,easing:x.easing,lazy:x.lazy}:m.render(x)}},updateLayout:function(){n.notify(this,"beforeLayout")!==!1&&(f.update(this,this.width,this.height),n.notify(this,"afterScaleUpdate"),n.notify(this,"afterLayout"))},updateDatasets:function(){if(n.notify(this,"beforeDatasetsUpdate")!==!1){for(var x=0,m=this.data.datasets.length;x<m;++x)this.updateDataset(x);n.notify(this,"afterDatasetsUpdate")}},updateDataset:function(x){var m=this.getDatasetMeta(x),S={meta:m,index:x};n.notify(this,"beforeDatasetUpdate",[S])!==!1&&(m.controller.update(),n.notify(this,"afterDatasetUpdate",[S]))},render:function(x){var m=this;x&&L(x)==="object"||(x={duration:x,lazy:arguments[1]});var S=x.duration,w=x.lazy;if(n.notify(m,"beforeRender")!==!1){var A=m.options.animation,F=function(R){n.notify(m,"afterRender"),d.callback(A&&A.onComplete,[R],m)};if(A&&(S!==void 0&&S!==0||S===void 0&&A.duration!==0)){var N=new _({numSteps:(S||A.duration)/16.66,easing:x.easing||A.easing,render:function(R,B){var z=d.easing.effects[B.easing],H=B.currentStep,G=H/B.numSteps;R.draw(z(G),G,H)},onAnimationProgress:A.onProgress,onAnimationComplete:F});C.addAnimation(m,N,S,w)}else m.draw(),F(new _({numSteps:0,chart:m}));return m}},draw:function(x){var m=this;m.clear(),d.isNullOrUndef(x)&&(x=1),m.transition(x),m.width<=0||m.height<=0||n.notify(m,"beforeDraw",[x])!==!1&&(d.each(m.boxes,function(S){S.draw(m.chartArea)},m),m.scale&&m.scale.draw(),m.drawDatasets(x),m._drawTooltip(x),n.notify(m,"afterDraw",[x]))},transition:function(x){for(var m=0,S=(this.data.datasets||[]).length;m<S;++m)this.isDatasetVisible(m)&&this.getDatasetMeta(m).controller.transition(x);this.tooltip.transition(x)},drawDatasets:function(x){var m=this;if(n.notify(m,"beforeDatasetsDraw",[x])!==!1){for(var S=(m.data.datasets||[]).length-1;S>=0;--S)m.isDatasetVisible(S)&&m.drawDataset(S,x);n.notify(m,"afterDatasetsDraw",[x])}},drawDataset:function(x,m){var S=this.getDatasetMeta(x),w={meta:S,index:x,easingValue:m};n.notify(this,"beforeDatasetDraw",[w])!==!1&&(S.controller.draw(m),n.notify(this,"afterDatasetDraw",[w]))},_drawTooltip:function(x){var m=this.tooltip,S={tooltip:m,easingValue:x};n.notify(this,"beforeTooltipDraw",[S])!==!1&&(m.draw(),n.notify(this,"afterTooltipDraw",[S]))},getElementAtEvent:function(x){return l.modes.single(this,x)},getElementsAtEvent:function(x){return l.modes.label(this,x,{intersect:!0})},getElementsAtXAxis:function(x){return l.modes["x-axis"](this,x,{intersect:!0})},getElementsAtEventForMode:function(x,m,S){var w=l.modes[m];return typeof w=="function"?w(this,x,S):[]},getDatasetAtEvent:function(x){return l.modes.dataset(this,x,{intersect:!0})},getDatasetMeta:function(x){var m=this.data.datasets[x];m._meta||(m._meta={});var S=m._meta[this.id];return S||(S=m._meta[this.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null}),S},getVisibleDatasetCount:function(){for(var x=0,m=0,S=this.data.datasets.length;m<S;++m)this.isDatasetVisible(m)&&x++;return x},isDatasetVisible:function(x){var m=this.getDatasetMeta(x);return typeof m.hidden=="boolean"?!m.hidden:!this.data.datasets[x].hidden},generateLegend:function(){return this.options.legendCallback(this)},destroyDatasetMeta:function(x){var m=this.id,S=this.data.datasets[x],w=S._meta&&S._meta[m];w&&(w.controller.destroy(),delete S._meta[m])},destroy:function(){var x,m,S=this,w=S.canvas;for(S.stop(),x=0,m=S.data.datasets.length;x<m;++x)S.destroyDatasetMeta(x);w&&(S.unbindEvents(),d.canvas.clear(S),v.releaseContext(S.ctx),S.canvas=null,S.ctx=null),n.notify(S,"destroy"),delete o.instances[S.id]},toBase64Image:function(){return this.canvas.toDataURL.apply(this.canvas,arguments)},initToolTip:function(){var x=this;x.tooltip=new i({_chart:x,_chartInstance:x,_data:x.data,_options:x.options.tooltips},x)},bindEvents:function(){var x=this,m=x._listeners={},S=function(){x.eventHandler.apply(x,arguments)};d.each(x.options.events,function(w){v.addEventListener(x,w,S),m[w]=S}),x.options.responsive&&(S=function(){x.resize()},v.addEventListener(x,"resize",S),m.resize=S)},unbindEvents:function(){var x=this,m=x._listeners;m&&(delete x._listeners,d.each(m,function(S,w){v.removeEventListener(x,w,S)}))},updateHoverStyle:function(x,m,S){var w,A,F,N=S?"setHoverStyle":"removeHoverStyle";for(A=0,F=x.length;A<F;++A)(w=x[A])&&this.getDatasetMeta(w._datasetIndex).controller[N](w)},eventHandler:function(x){var m=this,S=m.tooltip;if(n.notify(m,"beforeEvent",[x])!==!1){m._bufferedRender=!0,m._bufferedRequest=null;var w=m.handleEvent(x);S&&(w=S._start?S.handleEvent(x):w|S.handleEvent(x)),n.notify(m,"afterEvent",[x]);var A=m._bufferedRequest;return A?m.render(A):w&&!m.animating&&(m.stop(),m.render({duration:m.options.hover.animationDuration,lazy:!0})),m._bufferedRender=!1,m._bufferedRequest=null,m}},handleEvent:function(x){var m,S=this,w=S.options||{},A=w.hover;return S.lastActive=S.lastActive||[],x.type==="mouseout"?S.active=[]:S.active=S.getElementsAtEventForMode(x,A.mode,A),d.callback(w.onHover||w.hover.onHover,[x.native,S.active],S),x.type!=="mouseup"&&x.type!=="click"||w.onClick&&w.onClick.call(S,x.native,S.active),S.lastActive.length&&S.updateHoverStyle(S.lastActive,A.mode,!1),S.active.length&&A.mode&&S.updateHoverStyle(S.active,A.mode,!0),m=!d.arrayEquals(S.active,S.lastActive),S.lastActive=S.active,m}}),o.Controller=o}},{22:22,23:23,26:26,29:29,31:31,32:32,34:34,36:36,46:46,49:49}],25:[function(k,P,j){var _=k(46);P.exports=function(C){var u=["push","pop","shift","splice","unshift"];function d(l,f){var v=l._chartjs;if(v){var n=v.listeners,s=n.indexOf(f);s!==-1&&n.splice(s,1),n.length>0||(u.forEach(function(i){delete l[i]}),delete l._chartjs)}}C.DatasetController=function(l,f){this.initialize(l,f)},_.extend(C.DatasetController.prototype,{datasetElementType:null,dataElementType:null,initialize:function(l,f){this.chart=l,this.index=f,this.linkScales(),this.addElements()},updateIndex:function(l){this.index=l},linkScales:function(){var l=this,f=l.getMeta(),v=l.getDataset();f.xAxisID!==null&&f.xAxisID in l.chart.scales||(f.xAxisID=v.xAxisID||l.chart.options.scales.xAxes[0].id),f.yAxisID!==null&&f.yAxisID in l.chart.scales||(f.yAxisID=v.yAxisID||l.chart.options.scales.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(l){return this.chart.scales[l]},reset:function(){this.update(!0)},destroy:function(){this._data&&d(this._data,this)},createMetaDataset:function(){var l=this.datasetElementType;return l&&new l({_chart:this.chart,_datasetIndex:this.index})},createMetaData:function(l){var f=this.dataElementType;return f&&new f({_chart:this.chart,_datasetIndex:this.index,_index:l})},addElements:function(){var l,f,v=this.getMeta(),n=this.getDataset().data||[],s=v.data;for(l=0,f=n.length;l<f;++l)s[l]=s[l]||this.createMetaData(l);v.dataset=v.dataset||this.createMetaDataset()},addElementAndReset:function(l){var f=this.createMetaData(l);this.getMeta().data.splice(l,0,f),this.updateElement(f,l,!0)},buildOrUpdateElements:function(){var l,f,v=this,n=v.getDataset(),s=n.data||(n.data=[]);v._data!==s&&(v._data&&d(v._data,v),f=v,(l=s)._chartjs?l._chartjs.listeners.push(f):(Object.defineProperty(l,"_chartjs",{configurable:!0,enumerable:!1,value:{listeners:[f]}}),u.forEach(function(i){var o="onData"+i.charAt(0).toUpperCase()+i.slice(1),p=l[i];Object.defineProperty(l,i,{configurable:!0,enumerable:!1,value:function(){var t=Array.prototype.slice.call(arguments),x=p.apply(this,t);return _.each(l._chartjs.listeners,function(m){typeof m[o]=="function"&&m[o].apply(m,t)}),x}})})),v._data=s),v.resyncElements()},update:_.noop,transition:function(l){for(var f=this.getMeta(),v=f.data||[],n=v.length,s=0;s<n;++s)v[s].transition(l);f.dataset&&f.dataset.transition(l)},draw:function(){var l=this.getMeta(),f=l.data||[],v=f.length,n=0;for(l.dataset&&l.dataset.draw();n<v;++n)f[n].draw()},removeHoverStyle:function(l){_.merge(l._model,l.$previousStyle||{}),delete l.$previousStyle},setHoverStyle:function(l){var f=this.chart.data.datasets[l._datasetIndex],v=l._index,n=l.custom||{},s=_.valueAtIndexOrDefault,i=_.getHoverColor,o=l._model;l.$previousStyle={backgroundColor:o.backgroundColor,borderColor:o.borderColor,borderWidth:o.borderWidth},o.backgroundColor=n.hoverBackgroundColor?n.hoverBackgroundColor:s(f.hoverBackgroundColor,v,i(o.backgroundColor)),o.borderColor=n.hoverBorderColor?n.hoverBorderColor:s(f.hoverBorderColor,v,i(o.borderColor)),o.borderWidth=n.hoverBorderWidth?n.hoverBorderWidth:s(f.hoverBorderWidth,v,o.borderWidth)},resyncElements:function(){var l=this.getMeta(),f=this.getDataset().data,v=l.data.length,n=f.length;n<v?l.data.splice(n,v-n):n>v&&this.insertElements(v,n-v)},insertElements:function(l,f){for(var v=0;v<f;++v)this.addElementAndReset(l+v)},onDataPush:function(){this.insertElements(this.getDataset().data.length-1,arguments.length)},onDataPop:function(){this.getMeta().data.pop()},onDataShift:function(){this.getMeta().data.shift()},onDataSplice:function(l,f){this.getMeta().data.splice(l,f),this.insertElements(l,arguments.length-2)},onDataUnshift:function(){this.insertElements(0,arguments.length)}}),C.DatasetController.extend=_.inherits}},{46:46}],26:[function(k,P,j){var _=k(46);P.exports={_set:function(C,u){return _.merge(this[C]||(this[C]={}),u)}}},{46:46}],27:[function(k,P,j){var _=k(3),C=k(46),u=function(d){C.extend(this,d),this.initialize.apply(this,arguments)};C.extend(u.prototype,{initialize:function(){this.hidden=!1},pivot:function(){var d=this;return d._view||(d._view=C.clone(d._model)),d._start={},d},transition:function(d){var l=this,f=l._model,v=l._start,n=l._view;return f&&d!==1?(n||(n=l._view={}),v||(v=l._start={}),function(s,i,o,p){var t,x,m,S,w,A,F,N,R,B=Object.keys(o);for(t=0,x=B.length;t<x;++t)if(A=o[m=B[t]],i.hasOwnProperty(m)||(i[m]=A),(S=i[m])!==A&&m[0]!=="_"){if(s.hasOwnProperty(m)||(s[m]=S),w=s[m],(F=L(A))===L(w)){if(F==="string"){if((N=_(w)).valid&&(R=_(A)).valid){i[m]=R.mix(N,p).rgbString();continue}}else if(F==="number"&&isFinite(w)&&isFinite(A)){i[m]=w+(A-w)*p;continue}}i[m]=A}}(v,n,f,d),l):(l._view=f,l._start=null,l)},tooltipPosition:function(){return{x:this._model.x,y:this._model.y}},hasValue:function(){return C.isNumber(this._model.x)&&C.isNumber(this._model.y)}}),u.extend=C.inherits,P.exports=u},{3:3,46:46}],28:[function(k,P,j){var _=k(3),C=k(26),u=k(46),d=k(34);P.exports=function(){function l(n,s,i){var o;return typeof n=="string"?(o=parseInt(n,10),n.indexOf("%")!==-1&&(o=o/100*s.parentNode[i])):o=n,o}function f(n){return n!=null&&n!=="none"}function v(n,s,i){var o=document.defaultView,p=u._getParentNode(n),t=o.getComputedStyle(n)[s],x=o.getComputedStyle(p)[s],m=f(t),S=f(x),w=Number.POSITIVE_INFINITY;return m||S?Math.min(m?l(t,n,i):w,S?l(x,p,i):w):"none"}u.configMerge=function(){return u.merge(u.clone(arguments[0]),[].slice.call(arguments,1),{merger:function(n,s,i,o){var p=s[n]||{},t=i[n];n==="scales"?s[n]=u.scaleMerge(p,t):n==="scale"?s[n]=u.merge(p,[d.getScaleDefaults(t.type),t]):u._merger(n,s,i,o)}})},u.scaleMerge=function(){return u.merge(u.clone(arguments[0]),[].slice.call(arguments,1),{merger:function(n,s,i,o){if(n==="xAxes"||n==="yAxes"){var p,t,x,m=i[n].length;for(s[n]||(s[n]=[]),p=0;p<m;++p)x=i[n][p],t=u.valueOrDefault(x.type,n==="xAxes"?"category":"linear"),p>=s[n].length&&s[n].push({}),!s[n][p].type||x.type&&x.type!==s[n][p].type?u.merge(s[n][p],[d.getScaleDefaults(t),x]):u.merge(s[n][p],x)}else u._merger(n,s,i,o)}})},u.where=function(n,s){if(u.isArray(n)&&Array.prototype.filter)return n.filter(s);var i=[];return u.each(n,function(o){s(o)&&i.push(o)}),i},u.findIndex=Array.prototype.findIndex?function(n,s,i){return n.findIndex(s,i)}:function(n,s,i){i=i===void 0?n:i;for(var o=0,p=n.length;o<p;++o)if(s.call(i,n[o],o,n))return o;return-1},u.findNextWhere=function(n,s,i){u.isNullOrUndef(i)&&(i=-1);for(var o=i+1;o<n.length;o++){var p=n[o];if(s(p))return p}},u.findPreviousWhere=function(n,s,i){u.isNullOrUndef(i)&&(i=n.length);for(var o=i-1;o>=0;o--){var p=n[o];if(s(p))return p}},u.isNumber=function(n){return!isNaN(parseFloat(n))&&isFinite(n)},u.almostEquals=function(n,s,i){return Math.abs(n-s)<i},u.almostWhole=function(n,s){var i=Math.round(n);return i-s<n&&i+s>n},u.max=function(n){return n.reduce(function(s,i){return isNaN(i)?s:Math.max(s,i)},Number.NEGATIVE_INFINITY)},u.min=function(n){return n.reduce(function(s,i){return isNaN(i)?s:Math.min(s,i)},Number.POSITIVE_INFINITY)},u.sign=Math.sign?function(n){return Math.sign(n)}:function(n){return(n=+n)==0||isNaN(n)?n:n>0?1:-1},u.log10=Math.log10?function(n){return Math.log10(n)}:function(n){var s=Math.log(n)*Math.LOG10E,i=Math.round(s);return n===Math.pow(10,i)?i:s},u.toRadians=function(n){return n*(Math.PI/180)},u.toDegrees=function(n){return n*(180/Math.PI)},u.getAngleFromPoint=function(n,s){var i=s.x-n.x,o=s.y-n.y,p=Math.sqrt(i*i+o*o),t=Math.atan2(o,i);return t<-.5*Math.PI&&(t+=2*Math.PI),{angle:t,distance:p}},u.distanceBetweenPoints=function(n,s){return Math.sqrt(Math.pow(s.x-n.x,2)+Math.pow(s.y-n.y,2))},u.aliasPixel=function(n){return n%2==0?0:.5},u.splineCurve=function(n,s,i,o){var p=n.skip?s:n,t=s,x=i.skip?s:i,m=Math.sqrt(Math.pow(t.x-p.x,2)+Math.pow(t.y-p.y,2)),S=Math.sqrt(Math.pow(x.x-t.x,2)+Math.pow(x.y-t.y,2)),w=m/(m+S),A=S/(m+S),F=o*(w=isNaN(w)?0:w),N=o*(A=isNaN(A)?0:A);return{previous:{x:t.x-F*(x.x-p.x),y:t.y-F*(x.y-p.y)},next:{x:t.x+N*(x.x-p.x),y:t.y+N*(x.y-p.y)}}},u.EPSILON=Number.EPSILON||1e-14,u.splineCurveMonotone=function(n){var s,i,o,p,t,x,m,S,w,A=(n||[]).map(function(R){return{model:R._model,deltaK:0,mK:0}}),F=A.length;for(s=0;s<F;++s)if(!(o=A[s]).model.skip){if(i=s>0?A[s-1]:null,(p=s<F-1?A[s+1]:null)&&!p.model.skip){var N=p.model.x-o.model.x;o.deltaK=N!==0?(p.model.y-o.model.y)/N:0}!i||i.model.skip?o.mK=o.deltaK:!p||p.model.skip?o.mK=i.deltaK:this.sign(i.deltaK)!==this.sign(o.deltaK)?o.mK=0:o.mK=(i.deltaK+o.deltaK)/2}for(s=0;s<F-1;++s)o=A[s],p=A[s+1],o.model.skip||p.model.skip||(u.almostEquals(o.deltaK,0,this.EPSILON)?o.mK=p.mK=0:(t=o.mK/o.deltaK,x=p.mK/o.deltaK,(S=Math.pow(t,2)+Math.pow(x,2))<=9||(m=3/Math.sqrt(S),o.mK=t*m*o.deltaK,p.mK=x*m*o.deltaK)));for(s=0;s<F;++s)(o=A[s]).model.skip||(i=s>0?A[s-1]:null,p=s<F-1?A[s+1]:null,i&&!i.model.skip&&(w=(o.model.x-i.model.x)/3,o.model.controlPointPreviousX=o.model.x-w,o.model.controlPointPreviousY=o.model.y-w*o.mK),p&&!p.model.skip&&(w=(p.model.x-o.model.x)/3,o.model.controlPointNextX=o.model.x+w,o.model.controlPointNextY=o.model.y+w*o.mK))},u.nextItem=function(n,s,i){return i?s>=n.length-1?n[0]:n[s+1]:s>=n.length-1?n[n.length-1]:n[s+1]},u.previousItem=function(n,s,i){return i?s<=0?n[n.length-1]:n[s-1]:s<=0?n[0]:n[s-1]},u.niceNum=function(n,s){var i=Math.floor(u.log10(n)),o=n/Math.pow(10,i);return(s?o<1.5?1:o<3?2:o<7?5:10:o<=1?1:o<=2?2:o<=5?5:10)*Math.pow(10,i)},u.requestAnimFrame=typeof window>"u"?function(n){n()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(n){return window.setTimeout(n,1e3/60)},u.getRelativePosition=function(n,s){var i,o,p=n.originalEvent||n,t=n.target||n.srcElement,x=t.getBoundingClientRect(),m=p.touches;m&&m.length>0?(i=m[0].clientX,o=m[0].clientY):(i=p.clientX,o=p.clientY);var S=parseFloat(u.getStyle(t,"padding-left")),w=parseFloat(u.getStyle(t,"padding-top")),A=parseFloat(u.getStyle(t,"padding-right")),F=parseFloat(u.getStyle(t,"padding-bottom")),N=x.right-x.left-S-A,R=x.bottom-x.top-w-F;return{x:i=Math.round((i-x.left-S)/N*t.width/s.currentDevicePixelRatio),y:o=Math.round((o-x.top-w)/R*t.height/s.currentDevicePixelRatio)}},u.getConstraintWidth=function(n){return v(n,"max-width","clientWidth")},u.getConstraintHeight=function(n){return v(n,"max-height","clientHeight")},u._calculatePadding=function(n,s,i){return(s=u.getStyle(n,s)).indexOf("%")>-1?i/parseInt(s,10):parseInt(s,10)},u._getParentNode=function(n){var s=n.parentNode;return s&&s.host&&(s=s.host),s},u.getMaximumWidth=function(n){var s=u._getParentNode(n);if(!s)return n.clientWidth;var i=s.clientWidth,o=i-u._calculatePadding(s,"padding-left",i)-u._calculatePadding(s,"padding-right",i),p=u.getConstraintWidth(n);return isNaN(p)?o:Math.min(o,p)},u.getMaximumHeight=function(n){var s=u._getParentNode(n);if(!s)return n.clientHeight;var i=s.clientHeight,o=i-u._calculatePadding(s,"padding-top",i)-u._calculatePadding(s,"padding-bottom",i),p=u.getConstraintHeight(n);return isNaN(p)?o:Math.min(o,p)},u.getStyle=function(n,s){return n.currentStyle?n.currentStyle[s]:document.defaultView.getComputedStyle(n,null).getPropertyValue(s)},u.retinaScale=function(n,s){var i=n.currentDevicePixelRatio=s||typeof window<"u"&&window.devicePixelRatio||1;if(i!==1){var o=n.canvas,p=n.height,t=n.width;o.height=p*i,o.width=t*i,n.ctx.scale(i,i),o.style.height||o.style.width||(o.style.height=p+"px",o.style.width=t+"px")}},u.fontString=function(n,s,i){return s+" "+n+"px "+i},u.longestText=function(n,s,i,o){var p=(o=o||{}).data=o.data||{},t=o.garbageCollect=o.garbageCollect||[];o.font!==s&&(p=o.data={},t=o.garbageCollect=[],o.font=s),n.font=s;var x=0;u.each(i,function(w){w!=null&&u.isArray(w)!==!0?x=u.measureText(n,p,t,x,w):u.isArray(w)&&u.each(w,function(A){A==null||u.isArray(A)||(x=u.measureText(n,p,t,x,A))})});var m=t.length/2;if(m>i.length){for(var S=0;S<m;S++)delete p[t[S]];t.splice(0,m)}return x},u.measureText=function(n,s,i,o,p){var t=s[p];return t||(t=s[p]=n.measureText(p).width,i.push(p)),t>o&&(o=t),o},u.numberOfLabelLines=function(n){var s=1;return u.each(n,function(i){u.isArray(i)&&i.length>s&&(s=i.length)}),s},u.color=_?function(n){return n instanceof CanvasGradient&&(n=C.global.defaultColor),_(n)}:function(n){return console.error("Color.js not found!"),n},u.getHoverColor=function(n){return n instanceof CanvasPattern?n:u.color(n).saturate(.5).darken(.1).rgbString()}}},{26:26,3:3,34:34,46:46}],29:[function(k,P,j){var _=k(46);function C(n,s){return n.native?{x:n.x,y:n.y}:_.getRelativePosition(n,s)}function u(n,s){var i,o,p,t,x;for(o=0,t=n.data.datasets.length;o<t;++o)if(n.isDatasetVisible(o))for(p=0,x=(i=n.getDatasetMeta(o)).data.length;p<x;++p){var m=i.data[p];m._view.skip||s(m)}}function d(n,s){var i=[];return u(n,function(o){o.inRange(s.x,s.y)&&i.push(o)}),i}function l(n,s,i,o){var p=Number.POSITIVE_INFINITY,t=[];return u(n,function(x){if(!i||x.inRange(s.x,s.y)){var m=x.getCenterPoint(),S=o(s,m);S<p?(t=[x],p=S):S===p&&t.push(x)}}),t}function f(n){var s=n.indexOf("x")!==-1,i=n.indexOf("y")!==-1;return function(o,p){var t=s?Math.abs(o.x-p.x):0,x=i?Math.abs(o.y-p.y):0;return Math.sqrt(Math.pow(t,2)+Math.pow(x,2))}}function v(n,s,i){var o=C(s,n);i.axis=i.axis||"x";var p=f(i.axis),t=i.intersect?d(n,o):l(n,o,!1,p),x=[];return t.length?(n.data.datasets.forEach(function(m,S){if(n.isDatasetVisible(S)){var w=n.getDatasetMeta(S).data[t[0]._index];w&&!w._view.skip&&x.push(w)}}),x):[]}P.exports={modes:{single:function(n,s){var i=C(s,n),o=[];return u(n,function(p){if(p.inRange(i.x,i.y))return o.push(p),o}),o.slice(0,1)},label:v,index:v,dataset:function(n,s,i){var o=C(s,n);i.axis=i.axis||"xy";var p=f(i.axis),t=i.intersect?d(n,o):l(n,o,!1,p);return t.length>0&&(t=n.getDatasetMeta(t[0]._datasetIndex).data),t},"x-axis":function(n,s){return v(n,s,{intersect:!1})},point:function(n,s){return d(n,C(s,n))},nearest:function(n,s,i){var o=C(s,n);i.axis=i.axis||"xy";var p=f(i.axis),t=l(n,o,i.intersect,p);return t.length>1&&t.sort(function(x,m){var S=x.getArea()-m.getArea();return S===0&&(S=x._datasetIndex-m._datasetIndex),S}),t.slice(0,1)},x:function(n,s,i){var o=C(s,n),p=[],t=!1;return u(n,function(x){x.inXRange(o.x)&&p.push(x),x.inRange(o.x,o.y)&&(t=!0)}),i.intersect&&!t&&(p=[]),p},y:function(n,s,i){var o=C(s,n),p=[],t=!1;return u(n,function(x){x.inYRange(o.y)&&p.push(x),x.inRange(o.x,o.y)&&(t=!0)}),i.intersect&&!t&&(p=[]),p}}}},{46:46}],30:[function(k,P,j){k(26)._set("global",{responsive:!0,responsiveAnimationDuration:0,maintainAspectRatio:!0,events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,defaultColor:"rgba(0,0,0,0.1)",defaultFontColor:"#666",defaultFontFamily:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",defaultFontSize:12,defaultFontStyle:"normal",showLines:!0,elements:{},layout:{padding:{top:0,right:0,bottom:0,left:0}}}),P.exports=function(){var _=function(C,u){return this.construct(C,u),this};return _.Chart=_,_}},{26:26}],31:[function(k,P,j){var _=k(46);function C(d,l){return _.where(d,function(f){return f.position===l})}function u(d,l){d.forEach(function(f,v){return f._tmpIndex_=v,f}),d.sort(function(f,v){var n=l?v:f,s=l?f:v;return n.weight===s.weight?n._tmpIndex_-s._tmpIndex_:n.weight-s.weight}),d.forEach(function(f){delete f._tmpIndex_})}P.exports={defaults:{},addBox:function(d,l){d.boxes||(d.boxes=[]),l.fullWidth=l.fullWidth||!1,l.position=l.position||"top",l.weight=l.weight||0,d.boxes.push(l)},removeBox:function(d,l){var f=d.boxes?d.boxes.indexOf(l):-1;f!==-1&&d.boxes.splice(f,1)},configure:function(d,l,f){for(var v,n=["fullWidth","position","weight"],s=n.length,i=0;i<s;++i)v=n[i],f.hasOwnProperty(v)&&(l[v]=f[v])},update:function(d,l,f){if(d){var v=d.options.layout||{},n=_.options.toPadding(v.padding),s=n.left,i=n.right,o=n.top,p=n.bottom,t=C(d.boxes,"left"),x=C(d.boxes,"right"),m=C(d.boxes,"top"),S=C(d.boxes,"bottom"),w=C(d.boxes,"chartArea");u(t,!0),u(x,!1),u(m,!0),u(S,!1);var A=l-s-i,F=f-o-p,N=F/2,R=(l-A/2)/(t.length+x.length),B=(f-N)/(m.length+S.length),z=A,H=F,G=[];_.each(t.concat(x,m,S),function(lt){var At,Dt=lt.isHorizontal();Dt?(At=lt.update(lt.fullWidth?A:z,B),H-=At.height):(At=lt.update(R,H),z-=At.width),G.push({horizontal:Dt,minSize:At,box:lt})});var K=0,ct=0,it=0,ht=0;_.each(m.concat(S),function(lt){if(lt.getPadding){var At=lt.getPadding();K=Math.max(K,At.left),ct=Math.max(ct,At.right)}}),_.each(t.concat(x),function(lt){if(lt.getPadding){var At=lt.getPadding();it=Math.max(it,At.top),ht=Math.max(ht,At.bottom)}});var dt=s,St=i,pt=o,Q=p;_.each(t.concat(x),bt),_.each(t,function(lt){dt+=lt.width}),_.each(x,function(lt){St+=lt.width}),_.each(m.concat(S),bt),_.each(m,function(lt){pt+=lt.height}),_.each(S,function(lt){Q+=lt.height}),_.each(t.concat(x),function(lt){var At=_.findNextWhere(G,function(It){return It.box===lt}),Dt={left:0,right:0,top:pt,bottom:Q};At&&lt.update(At.minSize.width,H,Dt)}),dt=s,St=i,pt=o,Q=p,_.each(t,function(lt){dt+=lt.width}),_.each(x,function(lt){St+=lt.width}),_.each(m,function(lt){pt+=lt.height}),_.each(S,function(lt){Q+=lt.height});var et=Math.max(K-dt,0);dt+=et,St+=Math.max(ct-St,0);var rt=Math.max(it-pt,0);pt+=rt,Q+=Math.max(ht-Q,0);var ot=f-pt-Q,gt=l-dt-St;gt===z&&ot===H||(_.each(t,function(lt){lt.height=ot}),_.each(x,function(lt){lt.height=ot}),_.each(m,function(lt){lt.fullWidth||(lt.width=gt)}),_.each(S,function(lt){lt.fullWidth||(lt.width=gt)}),H=ot,z=gt);var J=s+et,at=o+rt;_.each(t.concat(m),yt),J+=z,at+=H,_.each(x,yt),_.each(S,yt),d.chartArea={left:dt,top:pt,right:dt+z,bottom:pt+H},_.each(w,function(lt){lt.left=d.chartArea.left,lt.top=d.chartArea.top,lt.right=d.chartArea.right,lt.bottom=d.chartArea.bottom,lt.update(z,H)})}function bt(lt){var At=_.findNextWhere(G,function(It){return It.box===lt});if(At)if(lt.isHorizontal()){var Dt={left:Math.max(dt,K),right:Math.max(St,ct),top:0,bottom:0};lt.update(lt.fullWidth?A:z,F/2,Dt)}else lt.update(At.minSize.width,H)}function yt(lt){lt.isHorizontal()?(lt.left=lt.fullWidth?s:dt,lt.right=lt.fullWidth?l-i:dt+z,lt.top=at,lt.bottom=at+lt.height,at=lt.bottom):(lt.left=J,lt.right=J+lt.width,lt.top=pt,lt.bottom=pt+H,J=lt.right)}}}},{46:46}],32:[function(k,P,j){var _=k(26),C=k(46);_._set("global",{plugins:{}}),P.exports={_plugins:[],_cacheId:0,register:function(u){var d=this._plugins;[].concat(u).forEach(function(l){d.indexOf(l)===-1&&d.push(l)}),this._cacheId++},unregister:function(u){var d=this._plugins;[].concat(u).forEach(function(l){var f=d.indexOf(l);f!==-1&&d.splice(f,1)}),this._cacheId++},clear:function(){this._plugins=[],this._cacheId++},count:function(){return this._plugins.length},getAll:function(){return this._plugins},notify:function(u,d,l){var f,v,n,s,i,o=this.descriptors(u),p=o.length;for(f=0;f<p;++f)if(typeof(i=(n=(v=o[f]).plugin)[d])=="function"&&((s=[u].concat(l||[])).push(v.options),i.apply(n,s)===!1))return!1;return!0},descriptors:function(u){var d=u.$plugins||(u.$plugins={});if(d.id===this._cacheId)return d.descriptors;var l=[],f=[],v=u&&u.config||{},n=v.options&&v.options.plugins||{};return this._plugins.concat(v.plugins||[]).forEach(function(s){if(l.indexOf(s)===-1){var i=s.id,o=n[i];o!==!1&&(o===!0&&(o=C.clone(_.global.plugins[i])),l.push(s),f.push({plugin:s,options:o||{}}))}}),d.descriptors=f,d.id=this._cacheId,f},_invalidate:function(u){delete u.$plugins}}},{26:26,46:46}],33:[function(k,P,j){var _=k(26),C=k(27),u=k(46),d=k(35);function l(i){var o,p,t=[];for(o=0,p=i.length;o<p;++o)t.push(i[o].label);return t}function f(i,o,p){var t=i.getPixelForTick(o);return p&&(t-=o===0?(i.getPixelForTick(1)-t)/2:(t-i.getPixelForTick(o-1))/2),t}function v(i,o,p){return u.isArray(o)?u.longestText(i,p,o):i.measureText(o).width}function n(i){var o=u.valueOrDefault,p=_.global,t=o(i.fontSize,p.defaultFontSize),x=o(i.fontStyle,p.defaultFontStyle),m=o(i.fontFamily,p.defaultFontFamily);return{size:t,style:x,family:m,font:u.fontString(t,x,m)}}function s(i){return u.options.toLineHeight(u.valueOrDefault(i.lineHeight,1.2),u.valueOrDefault(i.fontSize,_.global.defaultFontSize))}_._set("scale",{display:!0,position:"left",offset:!1,gridLines:{display:!0,color:"rgba(0, 0, 0, 0.1)",lineWidth:1,drawBorder:!0,drawOnChartArea:!0,drawTicks:!0,tickMarkLength:10,zeroLineWidth:1,zeroLineColor:"rgba(0,0,0,0.25)",zeroLineBorderDash:[],zeroLineBorderDashOffset:0,offsetGridLines:!1,borderDash:[],borderDashOffset:0},scaleLabel:{display:!1,labelString:"",lineHeight:1.2,padding:{top:4,bottom:4}},ticks:{beginAtZero:!1,minRotation:0,maxRotation:50,mirror:!1,padding:0,reverse:!1,display:!0,autoSkip:!0,autoSkipPadding:0,labelOffset:0,callback:d.formatters.values,minor:{},major:{}}}),P.exports=C.extend({getPadding:function(){return{left:this.paddingLeft||0,top:this.paddingTop||0,right:this.paddingRight||0,bottom:this.paddingBottom||0}},getTicks:function(){return this._ticks},mergeTicksOptions:function(){var i=this.options.ticks;for(var o in i.minor===!1&&(i.minor={display:!1}),i.major===!1&&(i.major={display:!1}),i)o!=="major"&&o!=="minor"&&(i.minor[o]===void 0&&(i.minor[o]=i[o]),i.major[o]===void 0&&(i.major[o]=i[o]))},beforeUpdate:function(){u.callback(this.options.beforeUpdate,[this])},update:function(i,o,p){var t,x,m,S,w,A,F=this;for(F.beforeUpdate(),F.maxWidth=i,F.maxHeight=o,F.margins=u.extend({left:0,right:0,top:0,bottom:0},p),F.longestTextCache=F.longestTextCache||{},F.beforeSetDimensions(),F.setDimensions(),F.afterSetDimensions(),F.beforeDataLimits(),F.determineDataLimits(),F.afterDataLimits(),F.beforeBuildTicks(),w=F.buildTicks()||[],F.afterBuildTicks(),F.beforeTickToLabelConversion(),m=F.convertTicksToLabels(w)||F.ticks,F.afterTickToLabelConversion(),F.ticks=m,t=0,x=m.length;t<x;++t)S=m[t],(A=w[t])?A.label=S:w.push(A={label:S,major:!1});return F._ticks=w,F.beforeCalculateTickRotation(),F.calculateTickRotation(),F.afterCalculateTickRotation(),F.beforeFit(),F.fit(),F.afterFit(),F.afterUpdate(),F.minSize},afterUpdate:function(){u.callback(this.options.afterUpdate,[this])},beforeSetDimensions:function(){u.callback(this.options.beforeSetDimensions,[this])},setDimensions:function(){var i=this;i.isHorizontal()?(i.width=i.maxWidth,i.left=0,i.right=i.width):(i.height=i.maxHeight,i.top=0,i.bottom=i.height),i.paddingLeft=0,i.paddingTop=0,i.paddingRight=0,i.paddingBottom=0},afterSetDimensions:function(){u.callback(this.options.afterSetDimensions,[this])},beforeDataLimits:function(){u.callback(this.options.beforeDataLimits,[this])},determineDataLimits:u.noop,afterDataLimits:function(){u.callback(this.options.afterDataLimits,[this])},beforeBuildTicks:function(){u.callback(this.options.beforeBuildTicks,[this])},buildTicks:u.noop,afterBuildTicks:function(){u.callback(this.options.afterBuildTicks,[this])},beforeTickToLabelConversion:function(){u.callback(this.options.beforeTickToLabelConversion,[this])},convertTicksToLabels:function(){var i=this.options.ticks;this.ticks=this.ticks.map(i.userCallback||i.callback,this)},afterTickToLabelConversion:function(){u.callback(this.options.afterTickToLabelConversion,[this])},beforeCalculateTickRotation:function(){u.callback(this.options.beforeCalculateTickRotation,[this])},calculateTickRotation:function(){var i=this,o=i.ctx,p=i.options.ticks,t=l(i._ticks),x=n(p);o.font=x.font;var m=p.minRotation||0;if(t.length&&i.options.display&&i.isHorizontal())for(var S,w=u.longestText(o,x.font,t,i.longestTextCache),A=w,F=i.getPixelForTick(1)-i.getPixelForTick(0)-6;A>F&&m<p.maxRotation;){var N=u.toRadians(m);if(S=Math.cos(N),Math.sin(N)*w>i.maxHeight){m--;break}m++,A=S*w}i.labelRotation=m},afterCalculateTickRotation:function(){u.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){u.callback(this.options.beforeFit,[this])},fit:function(){var i=this,o=i.minSize={width:0,height:0},p=l(i._ticks),t=i.options,x=t.ticks,m=t.scaleLabel,S=t.gridLines,w=t.display,A=i.isHorizontal(),F=n(x),N=t.gridLines.tickMarkLength;if(o.width=A?i.isFullWidth()?i.maxWidth-i.margins.left-i.margins.right:i.maxWidth:w&&S.drawTicks?N:0,o.height=A?w&&S.drawTicks?N:0:i.maxHeight,m.display&&w){var R=s(m)+u.options.toPadding(m.padding).height;A?o.height+=R:o.width+=R}if(x.display&&w){var B=u.longestText(i.ctx,F.font,p,i.longestTextCache),z=u.numberOfLabelLines(p),H=.5*F.size,G=i.options.ticks.padding;if(A){i.longestLabelWidth=B;var K=u.toRadians(i.labelRotation),ct=Math.cos(K),it=Math.sin(K)*B+F.size*z+H*(z-1)+H;o.height=Math.min(i.maxHeight,o.height+it+G),i.ctx.font=F.font;var ht=v(i.ctx,p[0],F.font),dt=v(i.ctx,p[p.length-1],F.font);i.labelRotation!==0?(i.paddingLeft=t.position==="bottom"?ct*ht+3:ct*H+3,i.paddingRight=t.position==="bottom"?ct*H+3:ct*dt+3):(i.paddingLeft=ht/2+3,i.paddingRight=dt/2+3)}else x.mirror?B=0:B+=G+H,o.width=Math.min(i.maxWidth,o.width+B),i.paddingTop=F.size/2,i.paddingBottom=F.size/2}i.handleMargins(),i.width=o.width,i.height=o.height},handleMargins:function(){var i=this;i.margins&&(i.paddingLeft=Math.max(i.paddingLeft-i.margins.left,0),i.paddingTop=Math.max(i.paddingTop-i.margins.top,0),i.paddingRight=Math.max(i.paddingRight-i.margins.right,0),i.paddingBottom=Math.max(i.paddingBottom-i.margins.bottom,0))},afterFit:function(){u.callback(this.options.afterFit,[this])},isHorizontal:function(){return this.options.position==="top"||this.options.position==="bottom"},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(i){if(u.isNullOrUndef(i))return NaN;if(typeof i=="number"&&!isFinite(i))return NaN;if(i){if(this.isHorizontal()){if(i.x!==void 0)return this.getRightValue(i.x)}else if(i.y!==void 0)return this.getRightValue(i.y)}return i},getLabelForIndex:u.noop,getPixelForValue:u.noop,getValueForPixel:u.noop,getPixelForTick:function(i){var o=this,p=o.options.offset;if(o.isHorizontal()){var t=(o.width-(o.paddingLeft+o.paddingRight))/Math.max(o._ticks.length-(p?0:1),1),x=t*i+o.paddingLeft;p&&(x+=t/2);var m=o.left+Math.round(x);return m+=o.isFullWidth()?o.margins.left:0}var S=o.height-(o.paddingTop+o.paddingBottom);return o.top+i*(S/(o._ticks.length-1))},getPixelForDecimal:function(i){var o=this;if(o.isHorizontal()){var p=(o.width-(o.paddingLeft+o.paddingRight))*i+o.paddingLeft,t=o.left+Math.round(p);return t+=o.isFullWidth()?o.margins.left:0}return o.top+i*o.height},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var i=this.min,o=this.max;return this.beginAtZero?0:i<0&&o<0?o:i>0&&o>0?i:0},_autoSkip:function(i){var o,p,t,x,m=this,S=m.isHorizontal(),w=m.options.ticks.minor,A=i.length,F=u.toRadians(m.labelRotation),N=Math.cos(F),R=m.longestLabelWidth*N,B=[];for(w.maxTicksLimit&&(x=w.maxTicksLimit),S&&(o=!1,(R+w.autoSkipPadding)*A>m.width-(m.paddingLeft+m.paddingRight)&&(o=1+Math.floor((R+w.autoSkipPadding)*A/(m.width-(m.paddingLeft+m.paddingRight)))),x&&A>x&&(o=Math.max(o,Math.floor(A/x)))),p=0;p<A;p++)t=i[p],(o>1&&p%o>0||p%o==0&&p+o>=A)&&p!==A-1&&delete t.label,B.push(t);return B},draw:function(i){var o=this,p=o.options;if(p.display){var t=o.ctx,x=_.global,m=p.ticks.minor,S=p.ticks.major||m,w=p.gridLines,A=p.scaleLabel,F=o.labelRotation!==0,N=o.isHorizontal(),R=m.autoSkip?o._autoSkip(o.getTicks()):o.getTicks(),B=u.valueOrDefault(m.fontColor,x.defaultFontColor),z=n(m),H=u.valueOrDefault(S.fontColor,x.defaultFontColor),G=n(S),K=w.drawTicks?w.tickMarkLength:0,ct=u.valueOrDefault(A.fontColor,x.defaultFontColor),it=n(A),ht=u.options.toPadding(A.padding),dt=u.toRadians(o.labelRotation),St=[],pt=o.options.gridLines.lineWidth,Q=p.position==="right"?o.left:o.right-pt-K,et=p.position==="right"?o.left+K:o.right,rt=p.position==="bottom"?o.top+pt:o.bottom-K-pt,ot=p.position==="bottom"?o.top+pt+K:o.bottom+pt;if(u.each(R,function(Ct,Ot){if(!u.isNullOrUndef(Ct.label)){var mt,zt,ie,Yt,ue,oe,ne,Rt,Wt,qt,Gt,Zt,D,V,y=Ct.label;Ot===o.zeroLineIndex&&p.offset===w.offsetGridLines?(mt=w.zeroLineWidth,zt=w.zeroLineColor,ie=w.zeroLineBorderDash,Yt=w.zeroLineBorderDashOffset):(mt=u.valueAtIndexOrDefault(w.lineWidth,Ot),zt=u.valueAtIndexOrDefault(w.color,Ot),ie=u.valueOrDefault(w.borderDash,x.borderDash),Yt=u.valueOrDefault(w.borderDashOffset,x.borderDashOffset));var I="middle",Y="middle",Z=m.padding;if(N){var tt=K+Z;p.position==="bottom"?(Y=F?"middle":"top",I=F?"right":"center",V=o.top+tt):(Y=F?"middle":"bottom",I=F?"left":"center",V=o.bottom-tt);var wt=f(o,Ot,w.offsetGridLines&&R.length>1);wt<o.left&&(zt="rgba(0,0,0,0)"),wt+=u.aliasPixel(mt),D=o.getPixelForTick(Ot)+m.labelOffset,ue=ne=Wt=Gt=wt,oe=rt,Rt=ot,qt=i.top,Zt=i.bottom+pt}else{var Et,jt=p.position==="left";m.mirror?(I=jt?"left":"right",Et=Z):(I=jt?"right":"left",Et=K+Z),D=jt?o.right-Et:o.left+Et;var Bt=f(o,Ot,w.offsetGridLines&&R.length>1);Bt<o.top&&(zt="rgba(0,0,0,0)"),Bt+=u.aliasPixel(mt),V=o.getPixelForTick(Ot)+m.labelOffset,ue=Q,ne=et,Wt=i.left,Gt=i.right+pt,oe=Rt=qt=Zt=Bt}St.push({tx1:ue,ty1:oe,tx2:ne,ty2:Rt,x1:Wt,y1:qt,x2:Gt,y2:Zt,labelX:D,labelY:V,glWidth:mt,glColor:zt,glBorderDash:ie,glBorderDashOffset:Yt,rotation:-1*dt,label:y,major:Ct.major,textBaseline:Y,textAlign:I})}}),u.each(St,function(Ct){if(w.display&&(t.save(),t.lineWidth=Ct.glWidth,t.strokeStyle=Ct.glColor,t.setLineDash&&(t.setLineDash(Ct.glBorderDash),t.lineDashOffset=Ct.glBorderDashOffset),t.beginPath(),w.drawTicks&&(t.moveTo(Ct.tx1,Ct.ty1),t.lineTo(Ct.tx2,Ct.ty2)),w.drawOnChartArea&&(t.moveTo(Ct.x1,Ct.y1),t.lineTo(Ct.x2,Ct.y2)),t.stroke(),t.restore()),m.display){t.save(),t.translate(Ct.labelX,Ct.labelY),t.rotate(Ct.rotation),t.font=Ct.major?G.font:z.font,t.fillStyle=Ct.major?H:B,t.textBaseline=Ct.textBaseline,t.textAlign=Ct.textAlign;var Ot=Ct.label;if(u.isArray(Ot))for(var mt=Ot.length,zt=1.5*z.size,ie=o.isHorizontal()?0:-zt*(mt-1)/2,Yt=0;Yt<mt;++Yt)t.fillText(""+Ot[Yt],0,ie),ie+=zt;else t.fillText(Ot,0,0);t.restore()}}),A.display){var gt,J,at=0,bt=s(A)/2;if(N)gt=o.left+(o.right-o.left)/2,J=p.position==="bottom"?o.bottom-bt-ht.bottom:o.top+bt+ht.top;else{var yt=p.position==="left";gt=yt?o.left+bt+ht.top:o.right-bt-ht.top,J=o.top+(o.bottom-o.top)/2,at=yt?-.5*Math.PI:.5*Math.PI}t.save(),t.translate(gt,J),t.rotate(at),t.textAlign="center",t.textBaseline="middle",t.fillStyle=ct,t.font=it.font,t.fillText(A.labelString,0,0),t.restore()}if(w.drawBorder){t.lineWidth=u.valueAtIndexOrDefault(w.lineWidth,0),t.strokeStyle=u.valueAtIndexOrDefault(w.color,0);var lt=o.left,At=o.right+pt,Dt=o.top,It=o.bottom+pt,Pt=u.aliasPixel(t.lineWidth);N?(Dt=It=p.position==="top"?o.bottom:o.top,Dt+=Pt,It+=Pt):(lt=At=p.position==="left"?o.right:o.left,lt+=Pt,At+=Pt),t.beginPath(),t.moveTo(lt,Dt),t.lineTo(At,It),t.stroke()}}}})},{26:26,27:27,35:35,46:46}],34:[function(k,P,j){var _=k(26),C=k(46),u=k(31);P.exports={constructors:{},defaults:{},registerScaleType:function(d,l,f){this.constructors[d]=l,this.defaults[d]=C.clone(f)},getScaleConstructor:function(d){return this.constructors.hasOwnProperty(d)?this.constructors[d]:void 0},getScaleDefaults:function(d){return this.defaults.hasOwnProperty(d)?C.merge({},[_.scale,this.defaults[d]]):{}},updateScaleDefaults:function(d,l){this.defaults.hasOwnProperty(d)&&(this.defaults[d]=C.extend(this.defaults[d],l))},addScalesToLayout:function(d){C.each(d.scales,function(l){l.fullWidth=l.options.fullWidth,l.position=l.options.position,l.weight=l.options.weight,u.addBox(d,l)})}}},{26:26,31:31,46:46}],35:[function(k,P,j){var _=k(46);P.exports={formatters:{values:function(C){return _.isArray(C)?C:""+C},linear:function(C,u,d){var l=d.length>3?d[2]-d[1]:d[1]-d[0];Math.abs(l)>1&&C!==Math.floor(C)&&(l=C-Math.floor(C));var f=_.log10(Math.abs(l)),v="";if(C!==0)if(Math.max(Math.abs(d[0]),Math.abs(d[d.length-1]))<1e-4){var n=_.log10(Math.abs(C));v=C.toExponential(Math.floor(n)-Math.floor(f))}else{var s=-1*Math.floor(f);s=Math.max(Math.min(s,20),0),v=C.toFixed(s)}else v="0";return v},logarithmic:function(C,u,d){var l=C/Math.pow(10,Math.floor(_.log10(C)));return C===0?"0":l===1||l===2||l===5||u===0||u===d.length-1?C.toExponential():""}}}},{46:46}],36:[function(k,P,j){var _=k(26),C=k(27),u=k(46);_._set("global",{tooltips:{enabled:!0,custom:null,mode:"nearest",position:"average",intersect:!0,backgroundColor:"rgba(0,0,0,0.8)",titleFontStyle:"bold",titleSpacing:2,titleMarginBottom:6,titleFontColor:"#fff",titleAlign:"left",bodySpacing:2,bodyFontColor:"#fff",bodyAlign:"left",footerFontStyle:"bold",footerSpacing:2,footerMarginTop:6,footerFontColor:"#fff",footerAlign:"left",yPadding:6,xPadding:6,caretPadding:2,caretSize:5,cornerRadius:6,multiKeyBackground:"#fff",displayColors:!0,borderColor:"rgba(0,0,0,0)",borderWidth:0,callbacks:{beforeTitle:u.noop,title:function(i,o){var p="",t=o.labels,x=t?t.length:0;if(i.length>0){var m=i[0];m.xLabel?p=m.xLabel:x>0&&m.index<x&&(p=t[m.index])}return p},afterTitle:u.noop,beforeBody:u.noop,beforeLabel:u.noop,label:function(i,o){var p=o.datasets[i.datasetIndex].label||"";return p&&(p+=": "),p+=i.yLabel,p},labelColor:function(i,o){var p=o.getDatasetMeta(i.datasetIndex).data[i.index]._view;return{borderColor:p.borderColor,backgroundColor:p.backgroundColor}},labelTextColor:function(){return this._options.bodyFontColor},afterLabel:u.noop,afterBody:u.noop,beforeFooter:u.noop,footer:u.noop,afterFooter:u.noop}}});var d={average:function(i){if(!i.length)return!1;var o,p,t=0,x=0,m=0;for(o=0,p=i.length;o<p;++o){var S=i[o];if(S&&S.hasValue()){var w=S.tooltipPosition();t+=w.x,x+=w.y,++m}}return{x:Math.round(t/m),y:Math.round(x/m)}},nearest:function(i,o){var p,t,x,m=o.x,S=o.y,w=Number.POSITIVE_INFINITY;for(p=0,t=i.length;p<t;++p){var A=i[p];if(A&&A.hasValue()){var F=A.getCenterPoint(),N=u.distanceBetweenPoints(o,F);N<w&&(w=N,x=A)}}if(x){var R=x.tooltipPosition();m=R.x,S=R.y}return{x:m,y:S}}};function l(i,o){var p=u.color(i);return p.alpha(o*p.alpha()).rgbaString()}function f(i,o){return o&&(u.isArray(o)?Array.prototype.push.apply(i,o):i.push(o)),i}function v(i){return(typeof i=="string"||i instanceof String)&&i.indexOf(`
47
- `)>-1?i.split(`
48
- `):i}function n(i){var o=_.global,p=u.valueOrDefault;return{xPadding:i.xPadding,yPadding:i.yPadding,xAlign:i.xAlign,yAlign:i.yAlign,bodyFontColor:i.bodyFontColor,_bodyFontFamily:p(i.bodyFontFamily,o.defaultFontFamily),_bodyFontStyle:p(i.bodyFontStyle,o.defaultFontStyle),_bodyAlign:i.bodyAlign,bodyFontSize:p(i.bodyFontSize,o.defaultFontSize),bodySpacing:i.bodySpacing,titleFontColor:i.titleFontColor,_titleFontFamily:p(i.titleFontFamily,o.defaultFontFamily),_titleFontStyle:p(i.titleFontStyle,o.defaultFontStyle),titleFontSize:p(i.titleFontSize,o.defaultFontSize),_titleAlign:i.titleAlign,titleSpacing:i.titleSpacing,titleMarginBottom:i.titleMarginBottom,footerFontColor:i.footerFontColor,_footerFontFamily:p(i.footerFontFamily,o.defaultFontFamily),_footerFontStyle:p(i.footerFontStyle,o.defaultFontStyle),footerFontSize:p(i.footerFontSize,o.defaultFontSize),_footerAlign:i.footerAlign,footerSpacing:i.footerSpacing,footerMarginTop:i.footerMarginTop,caretSize:i.caretSize,cornerRadius:i.cornerRadius,backgroundColor:i.backgroundColor,opacity:0,legendColorBackground:i.multiKeyBackground,displayColors:i.displayColors,borderColor:i.borderColor,borderWidth:i.borderWidth}}function s(i){return f([],v(i))}(P.exports=C.extend({initialize:function(){this._model=n(this._options),this._lastActive=[]},getTitle:function(){var i=this,o=i._options,p=o.callbacks,t=p.beforeTitle.apply(i,arguments),x=p.title.apply(i,arguments),m=p.afterTitle.apply(i,arguments),S=[];return S=f(S,v(t)),S=f(S,v(x)),S=f(S,v(m))},getBeforeBody:function(){return s(this._options.callbacks.beforeBody.apply(this,arguments))},getBody:function(i,o){var p=this,t=p._options.callbacks,x=[];return u.each(i,function(m){var S={before:[],lines:[],after:[]};f(S.before,v(t.beforeLabel.call(p,m,o))),f(S.lines,t.label.call(p,m,o)),f(S.after,v(t.afterLabel.call(p,m,o))),x.push(S)}),x},getAfterBody:function(){return s(this._options.callbacks.afterBody.apply(this,arguments))},getFooter:function(){var i=this,o=i._options.callbacks,p=o.beforeFooter.apply(i,arguments),t=o.footer.apply(i,arguments),x=o.afterFooter.apply(i,arguments),m=[];return m=f(m,v(p)),m=f(m,v(t)),m=f(m,v(x))},update:function(i){var o,p,t,x,m,S,w,A=this,F=A._options,N=A._model,R=A._model=n(F),B=A._active,z=A._data,H={xAlign:N.xAlign,yAlign:N.yAlign},G={x:N.x,y:N.y},K={width:N.width,height:N.height},ct={x:N.caretX,y:N.caretY};if(B.length){R.opacity=1;var it=[],ht=[];ct=d[F.position].call(A,B,A._eventPosition);var dt=[];for(o=0,p=B.length;o<p;++o)dt.push((t=B[o],x=void 0,m=void 0,S=void 0,w=void 0,x=t._xScale,m=t._yScale||t._scale,S=t._index,w=t._datasetIndex,{xLabel:x?x.getLabelForIndex(S,w):"",yLabel:m?m.getLabelForIndex(S,w):"",index:S,datasetIndex:w,x:t._model.x,y:t._model.y}));F.filter&&(dt=dt.filter(function(St){return F.filter(St,z)})),F.itemSort&&(dt=dt.sort(function(St,pt){return F.itemSort(St,pt,z)})),u.each(dt,function(St){it.push(F.callbacks.labelColor.call(A,St,A._chart)),ht.push(F.callbacks.labelTextColor.call(A,St,A._chart))}),R.title=A.getTitle(dt,z),R.beforeBody=A.getBeforeBody(dt,z),R.body=A.getBody(dt,z),R.afterBody=A.getAfterBody(dt,z),R.footer=A.getFooter(dt,z),R.x=Math.round(ct.x),R.y=Math.round(ct.y),R.caretPadding=F.caretPadding,R.labelColors=it,R.labelTextColors=ht,R.dataPoints=dt,K=function(St,pt){var Q=St._chart.ctx,et=2*pt.yPadding,rt=0,ot=pt.body,gt=ot.reduce(function(It,Pt){return It+Pt.before.length+Pt.lines.length+Pt.after.length},0);gt+=pt.beforeBody.length+pt.afterBody.length;var J=pt.title.length,at=pt.footer.length,bt=pt.titleFontSize,yt=pt.bodyFontSize,lt=pt.footerFontSize;et+=J*bt,et+=J?(J-1)*pt.titleSpacing:0,et+=J?pt.titleMarginBottom:0,et+=gt*yt,et+=gt?(gt-1)*pt.bodySpacing:0,et+=at?pt.footerMarginTop:0,et+=at*lt,et+=at?(at-1)*pt.footerSpacing:0;var At=0,Dt=function(It){rt=Math.max(rt,Q.measureText(It).width+At)};return Q.font=u.fontString(bt,pt._titleFontStyle,pt._titleFontFamily),u.each(pt.title,Dt),Q.font=u.fontString(yt,pt._bodyFontStyle,pt._bodyFontFamily),u.each(pt.beforeBody.concat(pt.afterBody),Dt),At=pt.displayColors?yt+2:0,u.each(ot,function(It){u.each(It.before,Dt),u.each(It.lines,Dt),u.each(It.after,Dt)}),At=0,Q.font=u.fontString(lt,pt._footerFontStyle,pt._footerFontFamily),u.each(pt.footer,Dt),{width:rt+=2*pt.xPadding,height:et}}(this,R),G=function(St,pt,Q,et){var rt=St.x,ot=St.y,gt=St.caretSize,J=St.caretPadding,at=St.cornerRadius,bt=Q.xAlign,yt=Q.yAlign,lt=gt+J,At=at+J;return bt==="right"?rt-=pt.width:bt==="center"&&((rt-=pt.width/2)+pt.width>et.width&&(rt=et.width-pt.width),rt<0&&(rt=0)),yt==="top"?ot+=lt:ot-=yt==="bottom"?pt.height+lt:pt.height/2,yt==="center"?bt==="left"?rt+=lt:bt==="right"&&(rt-=lt):bt==="left"?rt-=At:bt==="right"&&(rt+=At),{x:rt,y:ot}}(R,K,H=function(St,pt){var Q,et,rt,ot,gt,J=St._model,at=St._chart,bt=St._chart.chartArea,yt="center",lt="center";J.y<pt.height?lt="top":J.y>at.height-pt.height&&(lt="bottom");var At=(bt.left+bt.right)/2,Dt=(bt.top+bt.bottom)/2;lt==="center"?(Q=function(Pt){return Pt<=At},et=function(Pt){return Pt>At}):(Q=function(Pt){return Pt<=pt.width/2},et=function(Pt){return Pt>=at.width-pt.width/2}),rt=function(Pt){return Pt+pt.width+J.caretSize+J.caretPadding>at.width},ot=function(Pt){return Pt-pt.width-J.caretSize-J.caretPadding<0},gt=function(Pt){return Pt<=Dt?"top":"bottom"},Q(J.x)?(yt="left",rt(J.x)&&(yt="center",lt=gt(J.y))):et(J.x)&&(yt="right",ot(J.x)&&(yt="center",lt=gt(J.y)));var It=St._options;return{xAlign:It.xAlign?It.xAlign:yt,yAlign:It.yAlign?It.yAlign:lt}}(this,K),A._chart)}else R.opacity=0;return R.xAlign=H.xAlign,R.yAlign=H.yAlign,R.x=G.x,R.y=G.y,R.width=K.width,R.height=K.height,R.caretX=ct.x,R.caretY=ct.y,A._model=R,i&&F.custom&&F.custom.call(A,R),A},drawCaret:function(i,o){var p=this._chart.ctx,t=this._view,x=this.getCaretPosition(i,o,t);p.lineTo(x.x1,x.y1),p.lineTo(x.x2,x.y2),p.lineTo(x.x3,x.y3)},getCaretPosition:function(i,o,p){var t,x,m,S,w,A,F=p.caretSize,N=p.cornerRadius,R=p.xAlign,B=p.yAlign,z=i.x,H=i.y,G=o.width,K=o.height;if(B==="center")w=H+K/2,R==="left"?(x=(t=z)-F,m=t,S=w+F,A=w-F):(x=(t=z+G)+F,m=t,S=w-F,A=w+F);else if(R==="left"?(t=(x=z+N+F)-F,m=x+F):R==="right"?(t=(x=z+G-N-F)-F,m=x+F):(t=(x=p.caretX)-F,m=x+F),B==="top")w=(S=H)-F,A=S;else{w=(S=H+K)+F,A=S;var ct=m;m=t,t=ct}return{x1:t,x2:x,x3:m,y1:S,y2:w,y3:A}},drawTitle:function(i,o,p,t){var x=o.title;if(x.length){p.textAlign=o._titleAlign,p.textBaseline="top";var m,S,w=o.titleFontSize,A=o.titleSpacing;for(p.fillStyle=l(o.titleFontColor,t),p.font=u.fontString(w,o._titleFontStyle,o._titleFontFamily),m=0,S=x.length;m<S;++m)p.fillText(x[m],i.x,i.y),i.y+=w+A,m+1===x.length&&(i.y+=o.titleMarginBottom-A)}},drawBody:function(i,o,p,t){var x=o.bodyFontSize,m=o.bodySpacing,S=o.body;p.textAlign=o._bodyAlign,p.textBaseline="top",p.font=u.fontString(x,o._bodyFontStyle,o._bodyFontFamily);var w=0,A=function(N){p.fillText(N,i.x+w,i.y),i.y+=x+m};p.fillStyle=l(o.bodyFontColor,t),u.each(o.beforeBody,A);var F=o.displayColors;w=F?x+2:0,u.each(S,function(N,R){var B=l(o.labelTextColors[R],t);p.fillStyle=B,u.each(N.before,A),u.each(N.lines,function(z){F&&(p.fillStyle=l(o.legendColorBackground,t),p.fillRect(i.x,i.y,x,x),p.lineWidth=1,p.strokeStyle=l(o.labelColors[R].borderColor,t),p.strokeRect(i.x,i.y,x,x),p.fillStyle=l(o.labelColors[R].backgroundColor,t),p.fillRect(i.x+1,i.y+1,x-2,x-2),p.fillStyle=B),A(z)}),u.each(N.after,A)}),w=0,u.each(o.afterBody,A),i.y-=m},drawFooter:function(i,o,p,t){var x=o.footer;x.length&&(i.y+=o.footerMarginTop,p.textAlign=o._footerAlign,p.textBaseline="top",p.fillStyle=l(o.footerFontColor,t),p.font=u.fontString(o.footerFontSize,o._footerFontStyle,o._footerFontFamily),u.each(x,function(m){p.fillText(m,i.x,i.y),i.y+=o.footerFontSize+o.footerSpacing}))},drawBackground:function(i,o,p,t,x){p.fillStyle=l(o.backgroundColor,x),p.strokeStyle=l(o.borderColor,x),p.lineWidth=o.borderWidth;var m=o.xAlign,S=o.yAlign,w=i.x,A=i.y,F=t.width,N=t.height,R=o.cornerRadius;p.beginPath(),p.moveTo(w+R,A),S==="top"&&this.drawCaret(i,t),p.lineTo(w+F-R,A),p.quadraticCurveTo(w+F,A,w+F,A+R),S==="center"&&m==="right"&&this.drawCaret(i,t),p.lineTo(w+F,A+N-R),p.quadraticCurveTo(w+F,A+N,w+F-R,A+N),S==="bottom"&&this.drawCaret(i,t),p.lineTo(w+R,A+N),p.quadraticCurveTo(w,A+N,w,A+N-R),S==="center"&&m==="left"&&this.drawCaret(i,t),p.lineTo(w,A+R),p.quadraticCurveTo(w,A,w+R,A),p.closePath(),p.fill(),o.borderWidth>0&&p.stroke()},draw:function(){var i=this._chart.ctx,o=this._view;if(o.opacity!==0){var p={width:o.width,height:o.height},t={x:o.x,y:o.y},x=Math.abs(o.opacity<.001)?0:o.opacity,m=o.title.length||o.beforeBody.length||o.body.length||o.afterBody.length||o.footer.length;this._options.enabled&&m&&(this.drawBackground(t,o,i,p,x),t.x+=o.xPadding,t.y+=o.yPadding,this.drawTitle(t,o,i,x),this.drawBody(t,o,i,x),this.drawFooter(t,o,i,x))}},handleEvent:function(i){var o,p=this,t=p._options;return p._lastActive=p._lastActive||[],i.type==="mouseout"?p._active=[]:p._active=p._chart.getElementsAtEventForMode(i,t.mode,t),(o=!u.arrayEquals(p._active,p._lastActive))&&(p._lastActive=p._active,(t.enabled||t.custom)&&(p._eventPosition={x:i.x,y:i.y},p.update(!0),p.pivot())),o}})).positioners=d},{26:26,27:27,46:46}],37:[function(k,P,j){var _=k(26),C=k(27),u=k(46);_._set("global",{elements:{arc:{backgroundColor:_.global.defaultColor,borderColor:"#fff",borderWidth:2}}}),P.exports=C.extend({inLabelRange:function(d){var l=this._view;return!!l&&Math.pow(d-l.x,2)<Math.pow(l.radius+l.hoverRadius,2)},inRange:function(d,l){var f=this._view;if(f){for(var v=u.getAngleFromPoint(f,{x:d,y:l}),n=v.angle,s=v.distance,i=f.startAngle,o=f.endAngle;o<i;)o+=2*Math.PI;for(;n>o;)n-=2*Math.PI;for(;n<i;)n+=2*Math.PI;var p=n>=i&&n<=o,t=s>=f.innerRadius&&s<=f.outerRadius;return p&&t}return!1},getCenterPoint:function(){var d=this._view,l=(d.startAngle+d.endAngle)/2,f=(d.innerRadius+d.outerRadius)/2;return{x:d.x+Math.cos(l)*f,y:d.y+Math.sin(l)*f}},getArea:function(){var d=this._view;return Math.PI*((d.endAngle-d.startAngle)/(2*Math.PI))*(Math.pow(d.outerRadius,2)-Math.pow(d.innerRadius,2))},tooltipPosition:function(){var d=this._view,l=d.startAngle+(d.endAngle-d.startAngle)/2,f=(d.outerRadius-d.innerRadius)/2+d.innerRadius;return{x:d.x+Math.cos(l)*f,y:d.y+Math.sin(l)*f}},draw:function(){var d=this._chart.ctx,l=this._view,f=l.startAngle,v=l.endAngle;d.beginPath(),d.arc(l.x,l.y,l.outerRadius,f,v),d.arc(l.x,l.y,l.innerRadius,v,f,!0),d.closePath(),d.strokeStyle=l.borderColor,d.lineWidth=l.borderWidth,d.fillStyle=l.backgroundColor,d.fill(),d.lineJoin="bevel",l.borderWidth&&d.stroke()}})},{26:26,27:27,46:46}],38:[function(k,P,j){var _=k(26),C=k(27),u=k(46),d=_.global;_._set("global",{elements:{line:{tension:.4,backgroundColor:d.defaultColor,borderWidth:3,borderColor:d.defaultColor,borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",capBezierPoints:!0,fill:!0}}}),P.exports=C.extend({draw:function(){var l,f,v,n,s=this._view,i=this._chart.ctx,o=s.spanGaps,p=this._children.slice(),t=d.elements.line,x=-1;for(this._loop&&p.length&&p.push(p[0]),i.save(),i.lineCap=s.borderCapStyle||t.borderCapStyle,i.setLineDash&&i.setLineDash(s.borderDash||t.borderDash),i.lineDashOffset=s.borderDashOffset||t.borderDashOffset,i.lineJoin=s.borderJoinStyle||t.borderJoinStyle,i.lineWidth=s.borderWidth||t.borderWidth,i.strokeStyle=s.borderColor||d.defaultColor,i.beginPath(),x=-1,l=0;l<p.length;++l)f=p[l],v=u.previousItem(p,l),n=f._view,l===0?n.skip||(i.moveTo(n.x,n.y),x=l):(v=x===-1?v:p[x],n.skip||(x!==l-1&&!o||x===-1?i.moveTo(n.x,n.y):u.canvas.lineTo(i,v._view,f._view),x=l));i.stroke(),i.restore()}})},{26:26,27:27,46:46}],39:[function(k,P,j){var _=k(26),C=k(27),u=k(46),d=_.global.defaultColor;function l(f){var v=this._view;return!!v&&Math.abs(f-v.x)<v.radius+v.hitRadius}_._set("global",{elements:{point:{radius:3,pointStyle:"circle",backgroundColor:d,borderColor:d,borderWidth:1,hitRadius:1,hoverRadius:4,hoverBorderWidth:1}}}),P.exports=C.extend({inRange:function(f,v){var n=this._view;return!!n&&Math.pow(f-n.x,2)+Math.pow(v-n.y,2)<Math.pow(n.hitRadius+n.radius,2)},inLabelRange:l,inXRange:l,inYRange:function(f){var v=this._view;return!!v&&Math.abs(f-v.y)<v.radius+v.hitRadius},getCenterPoint:function(){var f=this._view;return{x:f.x,y:f.y}},getArea:function(){return Math.PI*Math.pow(this._view.radius,2)},tooltipPosition:function(){var f=this._view;return{x:f.x,y:f.y,padding:f.radius+f.borderWidth}},draw:function(f){var v=this._view,n=this._model,s=this._chart.ctx,i=v.pointStyle,o=v.rotation,p=v.radius,t=v.x,x=v.y;v.skip||(f===void 0||n.x>=f.left&&1.01*f.right>=n.x&&n.y>=f.top&&1.01*f.bottom>=n.y)&&(s.strokeStyle=v.borderColor||d,s.lineWidth=u.valueOrDefault(v.borderWidth,_.global.elements.point.borderWidth),s.fillStyle=v.backgroundColor||d,u.canvas.drawPoint(s,i,p,t,x,o))}})},{26:26,27:27,46:46}],40:[function(k,P,j){var _=k(26),C=k(27);function u(l){return l._view.width!==void 0}function d(l){var f,v,n,s,i=l._view;if(u(l)){var o=i.width/2;f=i.x-o,v=i.x+o,n=Math.min(i.y,i.base),s=Math.max(i.y,i.base)}else{var p=i.height/2;f=Math.min(i.x,i.base),v=Math.max(i.x,i.base),n=i.y-p,s=i.y+p}return{left:f,top:n,right:v,bottom:s}}_._set("global",{elements:{rectangle:{backgroundColor:_.global.defaultColor,borderColor:_.global.defaultColor,borderSkipped:"bottom",borderWidth:0}}}),P.exports=C.extend({draw:function(){var l,f,v,n,s,i,o,p=this._chart.ctx,t=this._view,x=t.borderWidth;if(t.horizontal?(l=t.base,f=t.x,v=t.y-t.height/2,n=t.y+t.height/2,s=f>l?1:-1,i=1,o=t.borderSkipped||"left"):(l=t.x-t.width/2,f=t.x+t.width/2,v=t.y,s=1,i=(n=t.base)>v?1:-1,o=t.borderSkipped||"bottom"),x){var m=Math.min(Math.abs(l-f),Math.abs(v-n)),S=(x=x>m?m:x)/2,w=l+(o!=="left"?S*s:0),A=f+(o!=="right"?-S*s:0),F=v+(o!=="top"?S*i:0),N=n+(o!=="bottom"?-S*i:0);w!==A&&(v=F,n=N),F!==N&&(l=w,f=A)}p.beginPath(),p.fillStyle=t.backgroundColor,p.strokeStyle=t.borderColor,p.lineWidth=x;var R=[[l,n],[l,v],[f,v],[f,n]],B=["bottom","left","top","right"].indexOf(o,0);function z(K){return R[(B+K)%4]}B===-1&&(B=0);var H=z(0);p.moveTo(H[0],H[1]);for(var G=1;G<4;G++)H=z(G),p.lineTo(H[0],H[1]);p.fill(),x&&p.stroke()},height:function(){var l=this._view;return l.base-l.y},inRange:function(l,f){var v=!1;if(this._view){var n=d(this);v=l>=n.left&&l<=n.right&&f>=n.top&&f<=n.bottom}return v},inLabelRange:function(l,f){if(!this._view)return!1;var v=d(this);return u(this)?l>=v.left&&l<=v.right:f>=v.top&&f<=v.bottom},inXRange:function(l){var f=d(this);return l>=f.left&&l<=f.right},inYRange:function(l){var f=d(this);return l>=f.top&&l<=f.bottom},getCenterPoint:function(){var l,f,v=this._view;return u(this)?(l=v.x,f=(v.y+v.base)/2):(l=(v.x+v.base)/2,f=v.y),{x:l,y:f}},getArea:function(){var l=this._view;return l.width*Math.abs(l.y-l.base)},tooltipPosition:function(){var l=this._view;return{x:l.x,y:l.y}}})},{26:26,27:27}],41:[function(k,P,j){P.exports={},P.exports.Arc=k(37),P.exports.Line=k(38),P.exports.Point=k(39),P.exports.Rectangle=k(40)},{37:37,38:38,39:39,40:40}],42:[function(k,P,j){var _=k(43);j=P.exports={clear:function(C){C.ctx.clearRect(0,0,C.width,C.height)},roundedRect:function(C,u,d,l,f,v){if(v){var n=Math.min(v,f/2-1e-7,l/2-1e-7);C.moveTo(u+n,d),C.lineTo(u+l-n,d),C.arcTo(u+l,d,u+l,d+n,n),C.lineTo(u+l,d+f-n),C.arcTo(u+l,d+f,u+l-n,d+f,n),C.lineTo(u+n,d+f),C.arcTo(u,d+f,u,d+f-n,n),C.lineTo(u,d+n),C.arcTo(u,d,u+n,d,n),C.closePath(),C.moveTo(u,d)}else C.rect(u,d,l,f)},drawPoint:function(C,u,d,l,f,v){var n,s,i,o,p,t;if(v=v||0,!u||L(u)!=="object"||(n=u.toString())!=="[object HTMLImageElement]"&&n!=="[object HTMLCanvasElement]"){if(!(isNaN(d)||d<=0)){switch(C.save(),C.translate(l,f),C.rotate(v*Math.PI/180),C.beginPath(),u){default:C.arc(0,0,d,0,2*Math.PI),C.closePath();break;case"triangle":p=(s=3*d/Math.sqrt(3))*Math.sqrt(3)/2,C.moveTo(-s/2,p/3),C.lineTo(s/2,p/3),C.lineTo(0,-2*p/3),C.closePath();break;case"rect":t=1/Math.SQRT2*d,C.rect(-t,-t,2*t,2*t);break;case"rectRounded":var x=d/Math.SQRT2,m=-x,S=-x,w=Math.SQRT2*d;this.roundedRect(C,m,S,w,w,.425*d);break;case"rectRot":t=1/Math.SQRT2*d,C.moveTo(-t,0),C.lineTo(0,t),C.lineTo(t,0),C.lineTo(0,-t),C.closePath();break;case"cross":C.moveTo(0,d),C.lineTo(0,-d),C.moveTo(-d,0),C.lineTo(d,0);break;case"crossRot":i=Math.cos(Math.PI/4)*d,o=Math.sin(Math.PI/4)*d,C.moveTo(-i,-o),C.lineTo(i,o),C.moveTo(-i,o),C.lineTo(i,-o);break;case"star":C.moveTo(0,d),C.lineTo(0,-d),C.moveTo(-d,0),C.lineTo(d,0),i=Math.cos(Math.PI/4)*d,o=Math.sin(Math.PI/4)*d,C.moveTo(-i,-o),C.lineTo(i,o),C.moveTo(-i,o),C.lineTo(i,-o);break;case"line":C.moveTo(-d,0),C.lineTo(d,0);break;case"dash":C.moveTo(0,0),C.lineTo(d,0)}C.fill(),C.stroke(),C.restore()}}else C.drawImage(u,l-u.width/2,f-u.height/2,u.width,u.height)},clipArea:function(C,u){C.save(),C.beginPath(),C.rect(u.left,u.top,u.right-u.left,u.bottom-u.top),C.clip()},unclipArea:function(C){C.restore()},lineTo:function(C,u,d,l){if(d.steppedLine)return d.steppedLine==="after"&&!l||d.steppedLine!=="after"&&l?C.lineTo(u.x,d.y):C.lineTo(d.x,u.y),void C.lineTo(d.x,d.y);d.tension?C.bezierCurveTo(l?u.controlPointPreviousX:u.controlPointNextX,l?u.controlPointPreviousY:u.controlPointNextY,l?d.controlPointNextX:d.controlPointPreviousX,l?d.controlPointNextY:d.controlPointPreviousY,d.x,d.y):C.lineTo(d.x,d.y)}},_.clear=j.clear,_.drawRoundedRectangle=function(C){C.beginPath(),j.roundedRect.apply(j,arguments)}},{43:43}],43:[function(k,P,j){var _,C={noop:function(){},uid:(_=0,function(){return _++}),isNullOrUndef:function(u){return u==null},isArray:Array.isArray?Array.isArray:function(u){return Object.prototype.toString.call(u)==="[object Array]"},isObject:function(u){return u!==null&&Object.prototype.toString.call(u)==="[object Object]"},valueOrDefault:function(u,d){return u===void 0?d:u},valueAtIndexOrDefault:function(u,d,l){return C.valueOrDefault(C.isArray(u)?u[d]:u,l)},callback:function(u,d,l){if(u&&typeof u.call=="function")return u.apply(l,d)},each:function(u,d,l,f){var v,n,s;if(C.isArray(u))if(n=u.length,f)for(v=n-1;v>=0;v--)d.call(l,u[v],v);else for(v=0;v<n;v++)d.call(l,u[v],v);else if(C.isObject(u))for(n=(s=Object.keys(u)).length,v=0;v<n;v++)d.call(l,u[s[v]],s[v])},arrayEquals:function(u,d){var l,f,v,n;if(!u||!d||u.length!==d.length)return!1;for(l=0,f=u.length;l<f;++l)if(v=u[l],n=d[l],v instanceof Array&&n instanceof Array){if(!C.arrayEquals(v,n))return!1}else if(v!==n)return!1;return!0},clone:function(u){if(C.isArray(u))return u.map(C.clone);if(C.isObject(u)){for(var d={},l=Object.keys(u),f=l.length,v=0;v<f;++v)d[l[v]]=C.clone(u[l[v]]);return d}return u},_merger:function(u,d,l,f){var v=d[u],n=l[u];C.isObject(v)&&C.isObject(n)?C.merge(v,n,f):d[u]=C.clone(n)},_mergerIf:function(u,d,l){var f=d[u],v=l[u];C.isObject(f)&&C.isObject(v)?C.mergeIf(f,v):d.hasOwnProperty(u)||(d[u]=C.clone(v))},merge:function(u,d,l){var f,v,n,s,i,o=C.isArray(d)?d:[d],p=o.length;if(!C.isObject(u))return u;for(f=(l=l||{}).merger||C._merger,v=0;v<p;++v)if(d=o[v],C.isObject(d))for(i=0,s=(n=Object.keys(d)).length;i<s;++i)f(n[i],u,d,l);return u},mergeIf:function(u,d){return C.merge(u,d,{merger:C._mergerIf})},extend:function(u){for(var d=function(v,n){u[n]=v},l=1,f=arguments.length;l<f;++l)C.each(arguments[l],d);return u},inherits:function(u){var d=this,l=u&&u.hasOwnProperty("constructor")?u.constructor:function(){return d.apply(this,arguments)},f=function(){this.constructor=l};return f.prototype=d.prototype,l.prototype=new f,l.extend=C.inherits,u&&C.extend(l.prototype,u),l.__super__=d.prototype,l}};P.exports=C,C.callCallback=C.callback,C.indexOf=function(u,d,l){return Array.prototype.indexOf.call(u,d,l)},C.getValueOrDefault=C.valueOrDefault,C.getValueAtIndexOrDefault=C.valueAtIndexOrDefault},{}],44:[function(k,P,j){var _=k(43),C={linear:function(u){return u},easeInQuad:function(u){return u*u},easeOutQuad:function(u){return-u*(u-2)},easeInOutQuad:function(u){return(u/=.5)<1?.5*u*u:-.5*(--u*(u-2)-1)},easeInCubic:function(u){return u*u*u},easeOutCubic:function(u){return(u-=1)*u*u+1},easeInOutCubic:function(u){return(u/=.5)<1?.5*u*u*u:.5*((u-=2)*u*u+2)},easeInQuart:function(u){return u*u*u*u},easeOutQuart:function(u){return-((u-=1)*u*u*u-1)},easeInOutQuart:function(u){return(u/=.5)<1?.5*u*u*u*u:-.5*((u-=2)*u*u*u-2)},easeInQuint:function(u){return u*u*u*u*u},easeOutQuint:function(u){return(u-=1)*u*u*u*u+1},easeInOutQuint:function(u){return(u/=.5)<1?.5*u*u*u*u*u:.5*((u-=2)*u*u*u*u+2)},easeInSine:function(u){return 1-Math.cos(u*(Math.PI/2))},easeOutSine:function(u){return Math.sin(u*(Math.PI/2))},easeInOutSine:function(u){return-.5*(Math.cos(Math.PI*u)-1)},easeInExpo:function(u){return u===0?0:Math.pow(2,10*(u-1))},easeOutExpo:function(u){return u===1?1:1-Math.pow(2,-10*u)},easeInOutExpo:function(u){return u===0?0:u===1?1:(u/=.5)<1?.5*Math.pow(2,10*(u-1)):.5*(2-Math.pow(2,-10*--u))},easeInCirc:function(u){return u>=1?u:-(Math.sqrt(1-u*u)-1)},easeOutCirc:function(u){return Math.sqrt(1-(u-=1)*u)},easeInOutCirc:function(u){return(u/=.5)<1?-.5*(Math.sqrt(1-u*u)-1):.5*(Math.sqrt(1-(u-=2)*u)+1)},easeInElastic:function(u){var d=1.70158,l=0,f=1;return u===0?0:u===1?1:(l||(l=.3),f<1?(f=1,d=l/4):d=l/(2*Math.PI)*Math.asin(1/f),-f*Math.pow(2,10*(u-=1))*Math.sin((u-d)*(2*Math.PI)/l))},easeOutElastic:function(u){var d=1.70158,l=0,f=1;return u===0?0:u===1?1:(l||(l=.3),f<1?(f=1,d=l/4):d=l/(2*Math.PI)*Math.asin(1/f),f*Math.pow(2,-10*u)*Math.sin((u-d)*(2*Math.PI)/l)+1)},easeInOutElastic:function(u){var d=1.70158,l=0,f=1;return u===0?0:(u/=.5)==2?1:(l||(l=.45),f<1?(f=1,d=l/4):d=l/(2*Math.PI)*Math.asin(1/f),u<1?f*Math.pow(2,10*(u-=1))*Math.sin((u-d)*(2*Math.PI)/l)*-.5:f*Math.pow(2,-10*(u-=1))*Math.sin((u-d)*(2*Math.PI)/l)*.5+1)},easeInBack:function(u){var d=1.70158;return u*u*((d+1)*u-d)},easeOutBack:function(u){var d=1.70158;return(u-=1)*u*((d+1)*u+d)+1},easeInOutBack:function(u){var d=1.70158;return(u/=.5)<1?u*u*((1+(d*=1.525))*u-d)*.5:.5*((u-=2)*u*((1+(d*=1.525))*u+d)+2)},easeInBounce:function(u){return 1-C.easeOutBounce(1-u)},easeOutBounce:function(u){return u<1/2.75?7.5625*u*u:u<2/2.75?7.5625*(u-=1.5/2.75)*u+.75:u<2.5/2.75?7.5625*(u-=2.25/2.75)*u+.9375:7.5625*(u-=2.625/2.75)*u+.984375},easeInOutBounce:function(u){return u<.5?.5*C.easeInBounce(2*u):.5*C.easeOutBounce(2*u-1)+.5}};P.exports={effects:C},_.easingEffects=C},{43:43}],45:[function(k,P,j){var _=k(43);P.exports={toLineHeight:function(C,u){var d=(""+C).match(/^(normal|(\d+(?:\.\d+)?)(px|em|%)?)$/);if(!d||d[1]==="normal")return 1.2*u;switch(C=+d[2],d[3]){case"px":return C;case"%":C/=100}return u*C},toPadding:function(C){var u,d,l,f;return _.isObject(C)?(u=+C.top||0,d=+C.right||0,l=+C.bottom||0,f=+C.left||0):u=d=l=f=+C||0,{top:u,right:d,bottom:l,left:f,height:u+l,width:f+d}},resolve:function(C,u,d){var l,f,v;for(l=0,f=C.length;l<f;++l)if((v=C[l])!==void 0&&(u!==void 0&&typeof v=="function"&&(v=v(u)),d!==void 0&&_.isArray(v)&&(v=v[d]),v!==void 0))return v}}},{43:43}],46:[function(k,P,j){P.exports=k(43),P.exports.easing=k(44),P.exports.canvas=k(42),P.exports.options=k(45)},{42:42,43:43,44:44,45:45}],47:[function(k,P,j){P.exports={acquireContext:function(_){return _&&_.canvas&&(_=_.canvas),_&&_.getContext("2d")||null}}},{}],48:[function(k,P,j){var _=k(46),C="$chartjs",u="chartjs-",d=u+"render-monitor",l=u+"render-animation",f=["animationstart","webkitAnimationStart"],v={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};function n(m,S){var w=_.getStyle(m,S),A=w&&w.match(/^(\d+)(\.\d+)?px$/);return A?Number(A[1]):void 0}var s=!!function(){var m=!1;try{var S=Object.defineProperty({},"passive",{get:function(){m=!0}});window.addEventListener("e",null,S)}catch{}return m}()&&{passive:!0};function i(m,S,w){m.addEventListener(S,w,s)}function o(m,S,w){m.removeEventListener(S,w,s)}function p(m,S,w,A,F){return{type:m,chart:S,native:F||null,x:w!==void 0?w:null,y:A!==void 0?A:null}}function t(m,S,w){var A,F,N,R,B=m[C]||(m[C]={}),z=B.resizer=function(H){var G=document.createElement("div"),K=u+"size-monitor",ct="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;";G.style.cssText=ct,G.className=K,G.innerHTML='<div class="'+K+'-expand" style="'+ct+'"><div style="position:absolute;width:1000000px;height:1000000px;left:0;top:0"></div></div><div class="'+K+'-shrink" style="'+ct+'"><div style="position:absolute;width:200%;height:200%;left:0; top:0"></div></div>';var it=G.childNodes[0],ht=G.childNodes[1];G._reset=function(){it.scrollLeft=1e6,it.scrollTop=1e6,ht.scrollLeft=1e6,ht.scrollTop=1e6};var dt=function(){G._reset(),H()};return i(it,"scroll",dt.bind(it,"expand")),i(ht,"scroll",dt.bind(ht,"shrink")),G}((A=function(){if(B.resizer)return S(p("resize",w))},N=!1,R=[],function(){R=Array.prototype.slice.call(arguments),F=F||this,N||(N=!0,_.requestAnimFrame.call(window,function(){N=!1,A.apply(F,R)}))}));(function(H,G){var K=H[C]||(H[C]={}),ct=K.renderProxy=function(it){it.animationName===l&&G()};_.each(f,function(it){i(H,it,ct)}),K.reflow=!!H.offsetParent,H.classList.add(d)})(m,function(){if(B.resizer){var H=m.parentNode;H&&H!==z.parentNode&&H.insertBefore(z,H.firstChild),z._reset()}})}function x(m){var S=m[C]||{},w=S.resizer;delete S.resizer,function(A){var F=A[C]||{},N=F.renderProxy;N&&(_.each(f,function(R){o(A,R,N)}),delete F.renderProxy),A.classList.remove(d)}(m),w&&w.parentNode&&w.parentNode.removeChild(w)}P.exports={_enabled:typeof window<"u"&&typeof document<"u",initialize:function(){var m,S,w,A="from{opacity:0.99}to{opacity:1}";S="@-webkit-keyframes "+l+"{"+A+"}@keyframes "+l+"{"+A+"}."+d+"{-webkit-animation:"+l+" 0.001s;animation:"+l+" 0.001s;}",w=(m=this)._style||document.createElement("style"),m._style||(m._style=w,S=`/* Chart.js */
49
- `+S,w.setAttribute("type","text/css"),document.getElementsByTagName("head")[0].appendChild(w)),w.appendChild(document.createTextNode(S))},acquireContext:function(m,S){typeof m=="string"?m=document.getElementById(m):m.length&&(m=m[0]),m&&m.canvas&&(m=m.canvas);var w=m&&m.getContext&&m.getContext("2d");return w&&w.canvas===m?(function(A,F){var N=A.style,R=A.getAttribute("height"),B=A.getAttribute("width");if(A[C]={initial:{height:R,width:B,style:{display:N.display,height:N.height,width:N.width}}},N.display=N.display||"block",B===null||B===""){var z=n(A,"width");z!==void 0&&(A.width=z)}if(R===null||R==="")if(A.style.height==="")A.height=A.width/(F.options.aspectRatio||2);else{var H=n(A,"height");z!==void 0&&(A.height=H)}}(m,S),w):null},releaseContext:function(m){var S=m.canvas;if(S[C]){var w=S[C].initial;["height","width"].forEach(function(A){var F=w[A];_.isNullOrUndef(F)?S.removeAttribute(A):S.setAttribute(A,F)}),_.each(w.style||{},function(A,F){S.style[F]=A}),S.width=S.width,delete S[C]}},addEventListener:function(m,S,w){var A=m.canvas;if(S!=="resize"){var F=w[C]||(w[C]={});i(A,S,(F.proxies||(F.proxies={}))[m.id+"_"+S]=function(N){w(function(R,B){var z=v[R.type]||R.type,H=_.getRelativePosition(R,B);return p(z,B,H.x,H.y,R)}(N,m))})}else t(A,w,m)},removeEventListener:function(m,S,w){var A=m.canvas;if(S!=="resize"){var F=((w[C]||{}).proxies||{})[m.id+"_"+S];F&&o(A,S,F)}else x(A)}},_.addEvent=i,_.removeEvent=o},{46:46}],49:[function(k,P,j){var _=k(46),C=k(47),u=k(48),d=u._enabled?u:C;P.exports=_.extend({initialize:function(){},acquireContext:function(){},releaseContext:function(){},addEventListener:function(){},removeEventListener:function(){}},d)},{46:46,47:47,48:48}],50:[function(k,P,j){P.exports={},P.exports.filler=k(51),P.exports.legend=k(52),P.exports.title=k(53)},{51:51,52:52,53:53}],51:[function(k,P,j){var _=k(26),C=k(41),u=k(46);_._set("global",{plugins:{filler:{propagate:!0}}});var d={dataset:function(o){var p=o.fill,t=o.chart,x=t.getDatasetMeta(p),m=x&&t.isDatasetVisible(p)&&x.dataset._children||[],S=m.length||0;return S?function(w,A){return A<S&&m[A]._view||null}:null},boundary:function(o){var p=o.boundary,t=p?p.x:null,x=p?p.y:null;return function(m){return{x:t===null?m.x:t,y:x===null?m.y:x}}}};function l(o,p,t){var x,m=o._model||{},S=m.fill;if(S===void 0&&(S=!!m.backgroundColor),S===!1||S===null)return!1;if(S===!0)return"origin";if(x=parseFloat(S,10),isFinite(x)&&Math.floor(x)===x)return S[0]!=="-"&&S[0]!=="+"||(x=p+x),!(x===p||x<0||x>=t)&&x;switch(S){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return S;default:return!1}}function f(o){var p,t=o.el._model||{},x=o.el._scale||{},m=o.fill,S=null;if(isFinite(m))return null;if(m==="start"?S=t.scaleBottom===void 0?x.bottom:t.scaleBottom:m==="end"?S=t.scaleTop===void 0?x.top:t.scaleTop:t.scaleZero!==void 0?S=t.scaleZero:x.getBasePosition?S=x.getBasePosition():x.getBasePixel&&(S=x.getBasePixel()),S!=null){if(S.x!==void 0&&S.y!==void 0)return S;if(typeof S=="number"&&isFinite(S))return{x:(p=x.isHorizontal())?S:null,y:p?null:S}}return null}function v(o,p,t){var x,m=o[p].fill,S=[p];if(!t)return m;for(;m!==!1&&S.indexOf(m)===-1;){if(!isFinite(m))return m;if(!(x=o[m]))return!1;if(x.visible)return m;S.push(m),m=x.fill}return!1}function n(o){var p=o.fill,t="dataset";return p===!1?null:(isFinite(p)||(t="boundary"),d[t](o))}function s(o){return o&&!o.skip}function i(o,p,t,x,m){var S;if(x&&m){for(o.moveTo(p[0].x,p[0].y),S=1;S<x;++S)u.canvas.lineTo(o,p[S-1],p[S]);for(o.lineTo(t[m-1].x,t[m-1].y),S=m-1;S>0;--S)u.canvas.lineTo(o,t[S],t[S-1],!0)}}P.exports={id:"filler",afterDatasetsUpdate:function(o,p){var t,x,m,S,w=(o.data.datasets||[]).length,A=p.propagate,F=[];for(x=0;x<w;++x)S=null,(m=(t=o.getDatasetMeta(x)).dataset)&&m._model&&m instanceof C.Line&&(S={visible:o.isDatasetVisible(x),fill:l(m,x,w),chart:o,el:m}),t.$filler=S,F.push(S);for(x=0;x<w;++x)(S=F[x])&&(S.fill=v(F,x,A),S.boundary=f(S),S.mapper=n(S))},beforeDatasetDraw:function(o,p){var t=p.meta.$filler;if(t){var x=o.ctx,m=t.el,S=m._view,w=m._children||[],A=t.mapper,F=S.backgroundColor||_.global.defaultColor;A&&F&&w.length&&(u.canvas.clipArea(x,o.chartArea),function(N,R,B,z,H,G){var K,ct,it,ht,dt,St,pt,Q=R.length,et=z.spanGaps,rt=[],ot=[],gt=0,J=0;for(N.beginPath(),K=0,ct=Q+!!G;K<ct;++K)dt=B(ht=R[it=K%Q]._view,it,z),St=s(ht),pt=s(dt),St&&pt?(gt=rt.push(ht),J=ot.push(dt)):gt&&J&&(et?(St&&rt.push(ht),pt&&ot.push(dt)):(i(N,rt,ot,gt,J),gt=J=0,rt=[],ot=[]));i(N,rt,ot,gt,J),N.closePath(),N.fillStyle=H,N.fill()}(x,w,A,S,F,m._loop),u.canvas.unclipArea(x))}}}},{26:26,41:41,46:46}],52:[function(k,P,j){var _=k(26),C=k(27),u=k(46),d=k(31),l=u.noop;function f(s,i){return s.usePointStyle?i*Math.SQRT2:s.boxWidth}_._set("global",{legend:{display:!0,position:"top",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(s,i){var o=i.datasetIndex,p=this.chart,t=p.getDatasetMeta(o);t.hidden=t.hidden===null?!p.data.datasets[o].hidden:null,p.update()},onHover:null,labels:{boxWidth:40,padding:10,generateLabels:function(s){var i=s.data;return u.isArray(i.datasets)?i.datasets.map(function(o,p){return{text:o.label,fillStyle:u.isArray(o.backgroundColor)?o.backgroundColor[0]:o.backgroundColor,hidden:!s.isDatasetVisible(p),lineCap:o.borderCapStyle,lineDash:o.borderDash,lineDashOffset:o.borderDashOffset,lineJoin:o.borderJoinStyle,lineWidth:o.borderWidth,strokeStyle:o.borderColor,pointStyle:o.pointStyle,datasetIndex:p}},this):[]}}},legendCallback:function(s){var i=[];i.push('<ul class="'+s.id+'-legend">');for(var o=0;o<s.data.datasets.length;o++)i.push('<li><span style="background-color:'+s.data.datasets[o].backgroundColor+'"></span>'),s.data.datasets[o].label&&i.push(s.data.datasets[o].label),i.push("</li>");return i.push("</ul>"),i.join("")}});var v=C.extend({initialize:function(s){u.extend(this,s),this.legendHitBoxes=[],this.doughnutMode=!1},beforeUpdate:l,update:function(s,i,o){var p=this;return p.beforeUpdate(),p.maxWidth=s,p.maxHeight=i,p.margins=o,p.beforeSetDimensions(),p.setDimensions(),p.afterSetDimensions(),p.beforeBuildLabels(),p.buildLabels(),p.afterBuildLabels(),p.beforeFit(),p.fit(),p.afterFit(),p.afterUpdate(),p.minSize},afterUpdate:l,beforeSetDimensions:l,setDimensions:function(){var s=this;s.isHorizontal()?(s.width=s.maxWidth,s.left=0,s.right=s.width):(s.height=s.maxHeight,s.top=0,s.bottom=s.height),s.paddingLeft=0,s.paddingTop=0,s.paddingRight=0,s.paddingBottom=0,s.minSize={width:0,height:0}},afterSetDimensions:l,beforeBuildLabels:l,buildLabels:function(){var s=this,i=s.options.labels||{},o=u.callback(i.generateLabels,[s.chart],s)||[];i.filter&&(o=o.filter(function(p){return i.filter(p,s.chart.data)})),s.options.reverse&&o.reverse(),s.legendItems=o},afterBuildLabels:l,beforeFit:l,fit:function(){var s=this,i=s.options,o=i.labels,p=i.display,t=s.ctx,x=_.global,m=u.valueOrDefault,S=m(o.fontSize,x.defaultFontSize),w=m(o.fontStyle,x.defaultFontStyle),A=m(o.fontFamily,x.defaultFontFamily),F=u.fontString(S,w,A),N=s.legendHitBoxes=[],R=s.minSize,B=s.isHorizontal();if(B?(R.width=s.maxWidth,R.height=p?10:0):(R.width=p?10:0,R.height=s.maxHeight),p)if(t.font=F,B){var z=s.lineWidths=[0],H=s.legendItems.length?S+o.padding:0;t.textAlign="left",t.textBaseline="top",u.each(s.legendItems,function(St,pt){var Q=f(o,S)+S/2+t.measureText(St.text).width;z[z.length-1]+Q+o.padding>=s.width&&(H+=S+o.padding,z[z.length]=s.left),N[pt]={left:0,top:0,width:Q,height:S},z[z.length-1]+=Q+o.padding}),R.height+=H}else{var G=o.padding,K=s.columnWidths=[],ct=o.padding,it=0,ht=0,dt=S+G;u.each(s.legendItems,function(St,pt){var Q=f(o,S)+S/2+t.measureText(St.text).width;ht+dt>R.height&&(ct+=it+o.padding,K.push(it),it=0,ht=0),it=Math.max(it,Q),ht+=dt,N[pt]={left:0,top:0,width:Q,height:S}}),ct+=it,K.push(it),R.width+=ct}s.width=R.width,s.height=R.height},afterFit:l,isHorizontal:function(){return this.options.position==="top"||this.options.position==="bottom"},draw:function(){var s=this,i=s.options,o=i.labels,p=_.global,t=p.elements.line,x=s.width,m=s.lineWidths;if(i.display){var S,w=s.ctx,A=u.valueOrDefault,F=A(o.fontColor,p.defaultFontColor),N=A(o.fontSize,p.defaultFontSize),R=A(o.fontStyle,p.defaultFontStyle),B=A(o.fontFamily,p.defaultFontFamily),z=u.fontString(N,R,B);w.textAlign="left",w.textBaseline="middle",w.lineWidth=.5,w.strokeStyle=F,w.fillStyle=F,w.font=z;var H=f(o,N),G=s.legendHitBoxes,K=s.isHorizontal();S=K?{x:s.left+(x-m[0])/2,y:s.top+o.padding,line:0}:{x:s.left+o.padding,y:s.top+o.padding,line:0};var ct=N+o.padding;u.each(s.legendItems,function(it,ht){var dt=w.measureText(it.text).width,St=H+N/2+dt,pt=S.x,Q=S.y;K?pt+St>=x&&(Q=S.y+=ct,S.line++,pt=S.x=s.left+(x-m[S.line])/2):Q+ct>s.bottom&&(pt=S.x=pt+s.columnWidths[S.line]+o.padding,Q=S.y=s.top+o.padding,S.line++),function(et,rt,ot){if(!(isNaN(H)||H<=0)){w.save(),w.fillStyle=A(ot.fillStyle,p.defaultColor),w.lineCap=A(ot.lineCap,t.borderCapStyle),w.lineDashOffset=A(ot.lineDashOffset,t.borderDashOffset),w.lineJoin=A(ot.lineJoin,t.borderJoinStyle),w.lineWidth=A(ot.lineWidth,t.borderWidth),w.strokeStyle=A(ot.strokeStyle,p.defaultColor);var gt=A(ot.lineWidth,t.borderWidth)===0;if(w.setLineDash&&w.setLineDash(A(ot.lineDash,t.borderDash)),i.labels&&i.labels.usePointStyle){var J=N*Math.SQRT2/2,at=J/Math.SQRT2,bt=et+at,yt=rt+at;u.canvas.drawPoint(w,ot.pointStyle,J,bt,yt)}else gt||w.strokeRect(et,rt,H,N),w.fillRect(et,rt,H,N);w.restore()}}(pt,Q,it),G[ht].left=pt,G[ht].top=Q,function(et,rt,ot,gt){var J=N/2,at=H+J+et,bt=rt+J;w.fillText(ot.text,at,bt),ot.hidden&&(w.beginPath(),w.lineWidth=2,w.moveTo(at,bt),w.lineTo(at+gt,bt),w.stroke())}(pt,Q,it,dt),K?S.x+=St+o.padding:S.y+=ct})}},handleEvent:function(s){var i=this,o=i.options,p=s.type==="mouseup"?"click":s.type,t=!1;if(p==="mousemove"){if(!o.onHover)return}else if(p!=="click"||!o.onClick)return;var x=s.x,m=s.y;if(x>=i.left&&x<=i.right&&m>=i.top&&m<=i.bottom)for(var S=i.legendHitBoxes,w=0;w<S.length;++w){var A=S[w];if(x>=A.left&&x<=A.left+A.width&&m>=A.top&&m<=A.top+A.height){if(p==="click"){o.onClick.call(i,s.native,i.legendItems[w]),t=!0;break}if(p==="mousemove"){o.onHover.call(i,s.native,i.legendItems[w]),t=!0;break}}}return t}});function n(s,i){var o=new v({ctx:s.ctx,options:i,chart:s});d.configure(s,o,i),d.addBox(s,o),s.legend=o}P.exports={id:"legend",_element:v,beforeInit:function(s){var i=s.options.legend;i&&n(s,i)},beforeUpdate:function(s){var i=s.options.legend,o=s.legend;i?(u.mergeIf(i,_.global.legend),o?(d.configure(s,o,i),o.options=i):n(s,i)):o&&(d.removeBox(s,o),delete s.legend)},afterEvent:function(s,i){var o=s.legend;o&&o.handleEvent(i)}}},{26:26,27:27,31:31,46:46}],53:[function(k,P,j){var _=k(26),C=k(27),u=k(46),d=k(31),l=u.noop;_._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,lineHeight:1.2,padding:10,position:"top",text:"",weight:2e3}});var f=C.extend({initialize:function(n){u.extend(this,n),this.legendHitBoxes=[]},beforeUpdate:l,update:function(n,s,i){var o=this;return o.beforeUpdate(),o.maxWidth=n,o.maxHeight=s,o.margins=i,o.beforeSetDimensions(),o.setDimensions(),o.afterSetDimensions(),o.beforeBuildLabels(),o.buildLabels(),o.afterBuildLabels(),o.beforeFit(),o.fit(),o.afterFit(),o.afterUpdate(),o.minSize},afterUpdate:l,beforeSetDimensions:l,setDimensions:function(){var n=this;n.isHorizontal()?(n.width=n.maxWidth,n.left=0,n.right=n.width):(n.height=n.maxHeight,n.top=0,n.bottom=n.height),n.paddingLeft=0,n.paddingTop=0,n.paddingRight=0,n.paddingBottom=0,n.minSize={width:0,height:0}},afterSetDimensions:l,beforeBuildLabels:l,buildLabels:l,afterBuildLabels:l,beforeFit:l,fit:function(){var n=this,s=u.valueOrDefault,i=n.options,o=i.display,p=s(i.fontSize,_.global.defaultFontSize),t=n.minSize,x=u.isArray(i.text)?i.text.length:1,m=u.options.toLineHeight(i.lineHeight,p),S=o?x*m+2*i.padding:0;n.isHorizontal()?(t.width=n.maxWidth,t.height=S):(t.width=S,t.height=n.maxHeight),n.width=t.width,n.height=t.height},afterFit:l,isHorizontal:function(){var n=this.options.position;return n==="top"||n==="bottom"},draw:function(){var n=this,s=n.ctx,i=u.valueOrDefault,o=n.options,p=_.global;if(o.display){var t,x,m,S=i(o.fontSize,p.defaultFontSize),w=i(o.fontStyle,p.defaultFontStyle),A=i(o.fontFamily,p.defaultFontFamily),F=u.fontString(S,w,A),N=u.options.toLineHeight(o.lineHeight,S),R=N/2+o.padding,B=0,z=n.top,H=n.left,G=n.bottom,K=n.right;s.fillStyle=i(o.fontColor,p.defaultFontColor),s.font=F,n.isHorizontal()?(x=H+(K-H)/2,m=z+R,t=K-H):(x=o.position==="left"?H+R:K-R,m=z+(G-z)/2,t=G-z,B=Math.PI*(o.position==="left"?-.5:.5)),s.save(),s.translate(x,m),s.rotate(B),s.textAlign="center",s.textBaseline="middle";var ct=o.text;if(u.isArray(ct))for(var it=0,ht=0;ht<ct.length;++ht)s.fillText(ct[ht],0,it,t),it+=N;else s.fillText(ct,0,0,t);s.restore()}}});function v(n,s){var i=new f({ctx:n.ctx,options:s,chart:n});d.configure(n,i,s),d.addBox(n,i),n.titleBlock=i}P.exports={id:"title",_element:f,beforeInit:function(n){var s=n.options.title;s&&v(n,s)},beforeUpdate:function(n){var s=n.options.title,i=n.titleBlock;s?(u.mergeIf(s,_.global.title),i?(d.configure(n,i,s),i.options=s):v(n,s)):i&&(d.removeBox(n,i),delete n.titleBlock)}}},{26:26,27:27,31:31,46:46}],54:[function(k,P,j){var _=k(33),C=k(34);P.exports=function(){var u=_.extend({getLabels:function(){var d=this.chart.data;return this.options.labels||(this.isHorizontal()?d.xLabels:d.yLabels)||d.labels},determineDataLimits:function(){var d,l=this,f=l.getLabels();l.minIndex=0,l.maxIndex=f.length-1,l.options.ticks.min!==void 0&&(d=f.indexOf(l.options.ticks.min),l.minIndex=d!==-1?d:l.minIndex),l.options.ticks.max!==void 0&&(d=f.indexOf(l.options.ticks.max),l.maxIndex=d!==-1?d:l.maxIndex),l.min=f[l.minIndex],l.max=f[l.maxIndex]},buildTicks:function(){var d=this,l=d.getLabels();d.ticks=d.minIndex===0&&d.maxIndex===l.length-1?l:l.slice(d.minIndex,d.maxIndex+1)},getLabelForIndex:function(d,l){var f=this,v=f.chart.data,n=f.isHorizontal();return v.yLabels&&!n?f.getRightValue(v.datasets[l].data[d]):f.ticks[d-f.minIndex]},getPixelForValue:function(d,l){var f,v=this,n=v.options.offset,s=Math.max(v.maxIndex+1-v.minIndex-(n?0:1),1);if(d!=null&&(f=v.isHorizontal()?d.x:d.y),f!==void 0||d!==void 0&&isNaN(l)){d=f||d;var i=v.getLabels().indexOf(d);l=i!==-1?i:l}if(v.isHorizontal()){var o=v.width/s,p=o*(l-v.minIndex);return n&&(p+=o/2),v.left+Math.round(p)}var t=v.height/s,x=t*(l-v.minIndex);return n&&(x+=t/2),v.top+Math.round(x)},getPixelForTick:function(d){return this.getPixelForValue(this.ticks[d],d+this.minIndex,null)},getValueForPixel:function(d){var l=this,f=l.options.offset,v=Math.max(l._ticks.length-(f?0:1),1),n=l.isHorizontal(),s=(n?l.width:l.height)/v;return d-=n?l.left:l.top,f&&(d-=s/2),(d<=0?0:Math.round(d/s))+l.minIndex},getBasePixel:function(){return this.bottom}});C.registerScaleType("category",u,{position:"bottom"})}},{33:33,34:34}],55:[function(k,P,j){var _=k(26),C=k(46),u=k(34),d=k(35);P.exports=function(l){var f={position:"left",ticks:{callback:d.formatters.linear}},v=l.LinearScaleBase.extend({determineDataLimits:function(){var n=this,s=n.options,i=n.chart,o=i.data.datasets,p=n.isHorizontal();function t(S){return p?S.xAxisID===n.id:S.yAxisID===n.id}n.min=null,n.max=null;var x=s.stacked;if(x===void 0&&C.each(o,function(S,w){if(!x){var A=i.getDatasetMeta(w);i.isDatasetVisible(w)&&t(A)&&A.stack!==void 0&&(x=!0)}}),s.stacked||x){var m={};C.each(o,function(S,w){var A=i.getDatasetMeta(w),F=[A.type,s.stacked===void 0&&A.stack===void 0?w:"",A.stack].join(".");m[F]===void 0&&(m[F]={positiveValues:[],negativeValues:[]});var N=m[F].positiveValues,R=m[F].negativeValues;i.isDatasetVisible(w)&&t(A)&&C.each(S.data,function(B,z){var H=+n.getRightValue(B);isNaN(H)||A.data[z].hidden||(N[z]=N[z]||0,R[z]=R[z]||0,s.relativePoints?N[z]=100:H<0?R[z]+=H:N[z]+=H)})}),C.each(m,function(S){var w=S.positiveValues.concat(S.negativeValues),A=C.min(w),F=C.max(w);n.min=n.min===null?A:Math.min(n.min,A),n.max=n.max===null?F:Math.max(n.max,F)})}else C.each(o,function(S,w){var A=i.getDatasetMeta(w);i.isDatasetVisible(w)&&t(A)&&C.each(S.data,function(F,N){var R=+n.getRightValue(F);isNaN(R)||A.data[N].hidden||((n.min===null||R<n.min)&&(n.min=R),(n.max===null||R>n.max)&&(n.max=R))})});n.min=isFinite(n.min)&&!isNaN(n.min)?n.min:0,n.max=isFinite(n.max)&&!isNaN(n.max)?n.max:1,this.handleTickRangeOptions()},getTickLimit:function(){var n,s=this.options.ticks;if(this.isHorizontal())n=Math.min(s.maxTicksLimit?s.maxTicksLimit:11,Math.ceil(this.width/50));else{var i=C.valueOrDefault(s.fontSize,_.global.defaultFontSize);n=Math.min(s.maxTicksLimit?s.maxTicksLimit:11,Math.ceil(this.height/(2*i)))}return n},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(n,s){return+this.getRightValue(this.chart.data.datasets[s].data[n])},getPixelForValue:function(n){var s=this,i=s.start,o=+s.getRightValue(n),p=s.end-i;return s.isHorizontal()?s.left+s.width/p*(o-i):s.bottom-s.height/p*(o-i)},getValueForPixel:function(n){var s=this,i=s.isHorizontal(),o=i?s.width:s.height,p=(i?n-s.left:s.bottom-n)/o;return s.start+(s.end-s.start)*p},getPixelForTick:function(n){return this.getPixelForValue(this.ticksAsNumbers[n])}});u.registerScaleType("linear",v,f)}},{26:26,34:34,35:35,46:46}],56:[function(k,P,j){var _=k(46),C=k(33);P.exports=function(u){var d=_.noop;u.LinearScaleBase=C.extend({getRightValue:function(l){return typeof l=="string"?+l:C.prototype.getRightValue.call(this,l)},handleTickRangeOptions:function(){var l=this,f=l.options.ticks;if(f.beginAtZero){var v=_.sign(l.min),n=_.sign(l.max);v<0&&n<0?l.max=0:v>0&&n>0&&(l.min=0)}var s=f.min!==void 0||f.suggestedMin!==void 0,i=f.max!==void 0||f.suggestedMax!==void 0;f.min!==void 0?l.min=f.min:f.suggestedMin!==void 0&&(l.min===null?l.min=f.suggestedMin:l.min=Math.min(l.min,f.suggestedMin)),f.max!==void 0?l.max=f.max:f.suggestedMax!==void 0&&(l.max===null?l.max=f.suggestedMax:l.max=Math.max(l.max,f.suggestedMax)),s!==i&&l.min>=l.max&&(s?l.max=l.min+1:l.min=l.max-1),l.min===l.max&&(l.max++,f.beginAtZero||l.min--)},getTickLimit:d,handleDirectionalChanges:d,buildTicks:function(){var l=this,f=l.options.ticks,v=l.getTickLimit(),n={maxTicks:v=Math.max(2,v),min:f.min,max:f.max,precision:f.precision,stepSize:_.valueOrDefault(f.fixedStepSize,f.stepSize)},s=l.ticks=function(i,o){var p,t,x,m=[];if(i.stepSize&&i.stepSize>0)x=i.stepSize;else{var S=_.niceNum(o.max-o.min,!1);x=_.niceNum(S/(i.maxTicks-1),!0),(t=i.precision)!==void 0&&(p=Math.pow(10,t),x=Math.ceil(x*p)/p)}var w=Math.floor(o.min/x)*x,A=Math.ceil(o.max/x)*x;_.isNullOrUndef(i.min)||_.isNullOrUndef(i.max)||!i.stepSize||_.almostWhole((i.max-i.min)/i.stepSize,x/1e3)&&(w=i.min,A=i.max);var F=(A-w)/x;F=_.almostEquals(F,Math.round(F),x/1e3)?Math.round(F):Math.ceil(F),t=1,x<1&&(t=Math.pow(10,1-Math.floor(_.log10(x))),w=Math.round(w*t)/t,A=Math.round(A*t)/t),m.push(i.min!==void 0?i.min:w);for(var N=1;N<F;++N)m.push(Math.round((w+N*x)*t)/t);return m.push(i.max!==void 0?i.max:A),m}(n,l);l.handleDirectionalChanges(),l.max=_.max(s),l.min=_.min(s),f.reverse?(s.reverse(),l.start=l.max,l.end=l.min):(l.start=l.min,l.end=l.max)},convertTicksToLabels:function(){var l=this;l.ticksAsNumbers=l.ticks.slice(),l.zeroLineIndex=l.ticks.indexOf(0),C.prototype.convertTicksToLabels.call(l)}})}},{33:33,46:46}],57:[function(k,P,j){var _=k(46),C=k(33),u=k(34),d=k(35);P.exports=function(l){var f={position:"left",ticks:{callback:d.formatters.logarithmic}},v=C.extend({determineDataLimits:function(){var n=this,s=n.options,i=n.chart,o=i.data.datasets,p=n.isHorizontal();function t(S){return p?S.xAxisID===n.id:S.yAxisID===n.id}n.min=null,n.max=null,n.minNotZero=null;var x=s.stacked;if(x===void 0&&_.each(o,function(S,w){if(!x){var A=i.getDatasetMeta(w);i.isDatasetVisible(w)&&t(A)&&A.stack!==void 0&&(x=!0)}}),s.stacked||x){var m={};_.each(o,function(S,w){var A=i.getDatasetMeta(w),F=[A.type,s.stacked===void 0&&A.stack===void 0?w:"",A.stack].join(".");i.isDatasetVisible(w)&&t(A)&&(m[F]===void 0&&(m[F]=[]),_.each(S.data,function(N,R){var B=m[F],z=+n.getRightValue(N);isNaN(z)||A.data[R].hidden||z<0||(B[R]=B[R]||0,B[R]+=z)}))}),_.each(m,function(S){if(S.length>0){var w=_.min(S),A=_.max(S);n.min=n.min===null?w:Math.min(n.min,w),n.max=n.max===null?A:Math.max(n.max,A)}})}else _.each(o,function(S,w){var A=i.getDatasetMeta(w);i.isDatasetVisible(w)&&t(A)&&_.each(S.data,function(F,N){var R=+n.getRightValue(F);isNaN(R)||A.data[N].hidden||R<0||((n.min===null||R<n.min)&&(n.min=R),(n.max===null||R>n.max)&&(n.max=R),R!==0&&(n.minNotZero===null||R<n.minNotZero)&&(n.minNotZero=R))})});this.handleTickRangeOptions()},handleTickRangeOptions:function(){var n=this,s=n.options.ticks,i=_.valueOrDefault;n.min=i(s.min,n.min),n.max=i(s.max,n.max),n.min===n.max&&(n.min!==0&&n.min!==null?(n.min=Math.pow(10,Math.floor(_.log10(n.min))-1),n.max=Math.pow(10,Math.floor(_.log10(n.max))+1)):(n.min=1,n.max=10)),n.min===null&&(n.min=Math.pow(10,Math.floor(_.log10(n.max))-1)),n.max===null&&(n.max=n.min!==0?Math.pow(10,Math.floor(_.log10(n.min))+1):10),n.minNotZero===null&&(n.min>0?n.minNotZero=n.min:n.max<1?n.minNotZero=Math.pow(10,Math.floor(_.log10(n.max))):n.minNotZero=1)},buildTicks:function(){var n=this,s=n.options.ticks,i=!n.isHorizontal(),o={min:s.min,max:s.max},p=n.ticks=function(t,x){var m,S,w=[],A=_.valueOrDefault,F=A(t.min,Math.pow(10,Math.floor(_.log10(x.min)))),N=Math.floor(_.log10(x.max)),R=Math.ceil(x.max/Math.pow(10,N));F===0?(m=Math.floor(_.log10(x.minNotZero)),S=Math.floor(x.minNotZero/Math.pow(10,m)),w.push(F),F=S*Math.pow(10,m)):(m=Math.floor(_.log10(F)),S=Math.floor(F/Math.pow(10,m)));var B=m<0?Math.pow(10,Math.abs(m)):1;do w.push(F),++S===10&&(S=1,B=++m>=0?1:B),F=Math.round(S*Math.pow(10,m)*B)/B;while(m<N||m===N&&S<R);var z=A(t.max,F);return w.push(z),w}(o,n);n.max=_.max(p),n.min=_.min(p),s.reverse?(i=!i,n.start=n.max,n.end=n.min):(n.start=n.min,n.end=n.max),i&&p.reverse()},convertTicksToLabels:function(){this.tickValues=this.ticks.slice(),C.prototype.convertTicksToLabels.call(this)},getLabelForIndex:function(n,s){return+this.getRightValue(this.chart.data.datasets[s].data[n])},getPixelForTick:function(n){return this.getPixelForValue(this.tickValues[n])},_getFirstTickValue:function(n){var s=Math.floor(_.log10(n));return Math.floor(n/Math.pow(10,s))*Math.pow(10,s)},getPixelForValue:function(n){var s,i,o,p,t,x=this,m=x.options.ticks.reverse,S=_.log10,w=x._getFirstTickValue(x.minNotZero),A=0;return n=+x.getRightValue(n),m?(o=x.end,p=x.start,t=-1):(o=x.start,p=x.end,t=1),x.isHorizontal()?(s=x.width,i=m?x.right:x.left):(s=x.height,t*=-1,i=m?x.top:x.bottom),n!==o&&(o===0&&(s-=A=_.getValueOrDefault(x.options.ticks.fontSize,l.defaults.global.defaultFontSize),o=w),n!==0&&(A+=s/(S(p)-S(o))*(S(n)-S(o))),i+=t*A),i},getValueForPixel:function(n){var s,i,o,p,t=this,x=t.options.ticks.reverse,m=_.log10,S=t._getFirstTickValue(t.minNotZero);if(x?(i=t.end,o=t.start):(i=t.start,o=t.end),t.isHorizontal()?(s=t.width,p=x?t.right-n:n-t.left):(s=t.height,p=x?n-t.top:t.bottom-n),p!==i){if(i===0){var w=_.getValueOrDefault(t.options.ticks.fontSize,l.defaults.global.defaultFontSize);p-=w,s-=w,i=S}p*=m(o)-m(i),p/=s,p=Math.pow(10,m(i)+p)}return p}});u.registerScaleType("logarithmic",v,f)}},{33:33,34:34,35:35,46:46}],58:[function(k,P,j){var _=k(26),C=k(46),u=k(34),d=k(35);P.exports=function(l){var f=_.global,v={display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,color:"rgba(0, 0, 0, 0.1)",lineWidth:1},gridLines:{circular:!1},ticks:{showLabelBackdrop:!0,backdropColor:"rgba(255,255,255,0.75)",backdropPaddingY:2,backdropPaddingX:2,callback:d.formatters.linear},pointLabels:{display:!0,fontSize:10,callback:function(S){return S}}};function n(S){var w=S.options;return w.angleLines.display||w.pointLabels.display?S.chart.data.labels.length:0}function s(S){var w=S.options.pointLabels,A=C.valueOrDefault(w.fontSize,f.defaultFontSize),F=C.valueOrDefault(w.fontStyle,f.defaultFontStyle),N=C.valueOrDefault(w.fontFamily,f.defaultFontFamily);return{size:A,style:F,family:N,font:C.fontString(A,F,N)}}function i(S,w,A,F,N){return S===F||S===N?{start:w-A/2,end:w+A/2}:S<F||S>N?{start:w-A-5,end:w}:{start:w,end:w+A+5}}function o(S){return S===0||S===180?"center":S<180?"left":"right"}function p(S,w,A,F){if(C.isArray(w))for(var N=A.y,R=1.5*F,B=0;B<w.length;++B)S.fillText(w[B],A.x,N),N+=R;else S.fillText(w,A.x,A.y)}function t(S,w,A){S===90||S===270?A.y-=w.h/2:(S>270||S<90)&&(A.y-=w.h)}function x(S){return C.isNumber(S)?S:0}var m=l.LinearScaleBase.extend({setDimensions:function(){var S=this,w=S.options,A=w.ticks;S.width=S.maxWidth,S.height=S.maxHeight,S.xCenter=Math.round(S.width/2),S.yCenter=Math.round(S.height/2);var F=C.min([S.height,S.width]),N=C.valueOrDefault(A.fontSize,f.defaultFontSize);S.drawingArea=w.display?F/2-(N/2+A.backdropPaddingY):F/2},determineDataLimits:function(){var S=this,w=S.chart,A=Number.POSITIVE_INFINITY,F=Number.NEGATIVE_INFINITY;C.each(w.data.datasets,function(N,R){if(w.isDatasetVisible(R)){var B=w.getDatasetMeta(R);C.each(N.data,function(z,H){var G=+S.getRightValue(z);isNaN(G)||B.data[H].hidden||(A=Math.min(G,A),F=Math.max(G,F))})}}),S.min=A===Number.POSITIVE_INFINITY?0:A,S.max=F===Number.NEGATIVE_INFINITY?0:F,S.handleTickRangeOptions()},getTickLimit:function(){var S=this.options.ticks,w=C.valueOrDefault(S.fontSize,f.defaultFontSize);return Math.min(S.maxTicksLimit?S.maxTicksLimit:11,Math.ceil(this.drawingArea/(1.5*w)))},convertTicksToLabels:function(){var S=this;l.LinearScaleBase.prototype.convertTicksToLabels.call(S),S.pointLabels=S.chart.data.labels.map(S.options.pointLabels.callback,S)},getLabelForIndex:function(S,w){return+this.getRightValue(this.chart.data.datasets[w].data[S])},fit:function(){var S,w;this.options.pointLabels.display?function(A){var F,N,R,B=s(A),z=Math.min(A.height/2,A.width/2),H={r:A.width,l:0,t:A.height,b:0},G={};A.ctx.font=B.font,A._pointLabelSizes=[];var K,ct,it,ht=n(A);for(F=0;F<ht;F++){R=A.getPointPosition(F,z),K=A.ctx,ct=B.size,it=A.pointLabels[F]||"",N=C.isArray(it)?{w:C.longestText(K,K.font,it),h:it.length*ct+1.5*(it.length-1)*ct}:{w:K.measureText(it).width,h:ct},A._pointLabelSizes[F]=N;var dt=A.getIndexAngle(F),St=C.toDegrees(dt)%360,pt=i(St,R.x,N.w,0,180),Q=i(St,R.y,N.h,90,270);pt.start<H.l&&(H.l=pt.start,G.l=dt),pt.end>H.r&&(H.r=pt.end,G.r=dt),Q.start<H.t&&(H.t=Q.start,G.t=dt),Q.end>H.b&&(H.b=Q.end,G.b=dt)}A.setReductions(z,H,G)}(this):(S=this,w=Math.min(S.height/2,S.width/2),S.drawingArea=Math.round(w),S.setCenterPoint(0,0,0,0))},setReductions:function(S,w,A){var F=w.l/Math.sin(A.l),N=Math.max(w.r-this.width,0)/Math.sin(A.r),R=-w.t/Math.cos(A.t),B=-Math.max(w.b-this.height,0)/Math.cos(A.b);F=x(F),N=x(N),R=x(R),B=x(B),this.drawingArea=Math.min(Math.round(S-(F+N)/2),Math.round(S-(R+B)/2)),this.setCenterPoint(F,N,R,B)},setCenterPoint:function(S,w,A,F){var N=this,R=N.width-w-N.drawingArea,B=S+N.drawingArea,z=A+N.drawingArea,H=N.height-F-N.drawingArea;N.xCenter=Math.round((B+R)/2+N.left),N.yCenter=Math.round((z+H)/2+N.top)},getIndexAngle:function(S){return S*(2*Math.PI/n(this))+(this.chart.options&&this.chart.options.startAngle?this.chart.options.startAngle:0)*Math.PI*2/360},getDistanceFromCenterForValue:function(S){var w=this;if(S===null)return 0;var A=w.drawingArea/(w.max-w.min);return w.options.ticks.reverse?(w.max-S)*A:(S-w.min)*A},getPointPosition:function(S,w){var A=this.getIndexAngle(S)-Math.PI/2;return{x:Math.round(Math.cos(A)*w)+this.xCenter,y:Math.round(Math.sin(A)*w)+this.yCenter}},getPointPositionForValue:function(S,w){return this.getPointPosition(S,this.getDistanceFromCenterForValue(w))},getBasePosition:function(){var S=this.min,w=this.max;return this.getPointPositionForValue(0,this.beginAtZero?0:S<0&&w<0?w:S>0&&w>0?S:0)},draw:function(){var S=this,w=S.options,A=w.gridLines,F=w.ticks,N=C.valueOrDefault;if(w.display){var R=S.ctx,B=this.getIndexAngle(0),z=N(F.fontSize,f.defaultFontSize),H=N(F.fontStyle,f.defaultFontStyle),G=N(F.fontFamily,f.defaultFontFamily),K=C.fontString(z,H,G);C.each(S.ticks,function(ct,it){if(it>0||F.reverse){var ht=S.getDistanceFromCenterForValue(S.ticksAsNumbers[it]);if(A.display&&it!==0&&function(pt,Q,et,rt){var ot=pt.ctx;if(ot.strokeStyle=C.valueAtIndexOrDefault(Q.color,rt-1),ot.lineWidth=C.valueAtIndexOrDefault(Q.lineWidth,rt-1),pt.options.gridLines.circular)ot.beginPath(),ot.arc(pt.xCenter,pt.yCenter,et,0,2*Math.PI),ot.closePath(),ot.stroke();else{var gt=n(pt);if(gt===0)return;ot.beginPath();var J=pt.getPointPosition(0,et);ot.moveTo(J.x,J.y);for(var at=1;at<gt;at++)J=pt.getPointPosition(at,et),ot.lineTo(J.x,J.y);ot.closePath(),ot.stroke()}}(S,A,ht,it),F.display){var dt=N(F.fontColor,f.defaultFontColor);if(R.font=K,R.save(),R.translate(S.xCenter,S.yCenter),R.rotate(B),F.showLabelBackdrop){var St=R.measureText(ct).width;R.fillStyle=F.backdropColor,R.fillRect(-St/2-F.backdropPaddingX,-ht-z/2-F.backdropPaddingY,St+2*F.backdropPaddingX,z+2*F.backdropPaddingY)}R.textAlign="center",R.textBaseline="middle",R.fillStyle=dt,R.fillText(ct,0,-ht),R.restore()}}}),(w.angleLines.display||w.pointLabels.display)&&function(ct){var it=ct.ctx,ht=ct.options,dt=ht.angleLines,St=ht.pointLabels;it.lineWidth=dt.lineWidth,it.strokeStyle=dt.color;var pt=ct.getDistanceFromCenterForValue(ht.ticks.reverse?ct.min:ct.max),Q=s(ct);it.textBaseline="top";for(var et=n(ct)-1;et>=0;et--){if(dt.display){var rt=ct.getPointPosition(et,pt);it.beginPath(),it.moveTo(ct.xCenter,ct.yCenter),it.lineTo(rt.x,rt.y),it.stroke(),it.closePath()}if(St.display){var ot=ct.getPointPosition(et,pt+5),gt=C.valueAtIndexOrDefault(St.fontColor,et,f.defaultFontColor);it.font=Q.font,it.fillStyle=gt;var J=ct.getIndexAngle(et),at=C.toDegrees(J);it.textAlign=o(at),t(at,ct._pointLabelSizes[et],ot),p(it,ct.pointLabels[et]||"",ot,Q.size)}}}(S)}}});u.registerScaleType("radialLinear",m,v)}},{26:26,34:34,35:35,46:46}],59:[function(k,P,j){var _=k(1);_=typeof _=="function"?_:window.moment;var C=k(26),u=k(46),d=k(33),l=k(34),f=Number.MIN_SAFE_INTEGER||-9007199254740991,v=Number.MAX_SAFE_INTEGER||9007199254740991,n={millisecond:{common:!0,size:1,steps:[1,2,5,10,20,50,100,250,500]},second:{common:!0,size:1e3,steps:[1,2,5,10,15,30]},minute:{common:!0,size:6e4,steps:[1,2,5,10,15,30]},hour:{common:!0,size:36e5,steps:[1,2,3,6,12]},day:{common:!0,size:864e5,steps:[1,2,5]},week:{common:!1,size:6048e5,steps:[1,2,3,4]},month:{common:!0,size:2628e6,steps:[1,2,3]},quarter:{common:!1,size:7884e6,steps:[1,2,3,4]},year:{common:!0,size:3154e7}},s=Object.keys(n);function i(w,A){return w-A}function o(w){var A,F,N,R={},B=[];for(A=0,F=w.length;A<F;++A)R[N=w[A]]||(R[N]=!0,B.push(N));return B}function p(w,A,F,N){var R=function(ct,it,ht){for(var dt,St,pt,Q=0,et=ct.length-1;Q>=0&&Q<=et;){if(St=ct[(dt=Q+et>>1)-1]||null,pt=ct[dt],!St)return{lo:null,hi:pt};if(pt[it]<ht)Q=dt+1;else{if(!(St[it]>ht))return{lo:St,hi:pt};et=dt-1}}return{lo:pt,hi:null}}(w,A,F),B=R.lo?R.hi?R.lo:w[w.length-2]:w[0],z=R.lo?R.hi?R.hi:w[w.length-1]:w[1],H=z[A]-B[A],G=H?(F-B[A])/H:0,K=(z[N]-B[N])*G;return B[N]+K}function t(w,A){var F=A.parser,N=A.parser||A.format;return typeof F=="function"?F(w):typeof w=="string"&&typeof N=="string"?_(w,N):(w instanceof _||(w=_(w)),w.isValid()?w:typeof N=="function"?N(w):w)}function x(w,A){if(u.isNullOrUndef(w))return null;var F=A.options.time,N=t(A.getRightValue(w),F);return N.isValid()?(F.round&&N.startOf(F.round),N.valueOf()):null}function m(w){for(var A=s.indexOf(w)+1,F=s.length;A<F;++A)if(n[s[A]].common)return s[A]}function S(w,A,F,N){var R,B=N.time,z=B.unit||function(pt,Q,et,rt){var ot,gt,J,at=s.length;for(ot=s.indexOf(pt);ot<at-1;++ot)if(J=(gt=n[s[ot]]).steps?gt.steps[gt.steps.length-1]:v,gt.common&&Math.ceil((et-Q)/(J*gt.size))<=rt)return s[ot];return s[at-1]}(B.minUnit,w,A,F),H=m(z),G=u.valueOrDefault(B.stepSize,B.unitStepSize),K=z==="week"&&B.isoWeekday,ct=N.ticks.major.enabled,it=n[z],ht=_(w),dt=_(A),St=[];for(G||(G=function(pt,Q,et,rt){var ot,gt,J,at=Q-pt,bt=n[et],yt=bt.size,lt=bt.steps;if(!lt)return Math.ceil(at/(rt*yt));for(ot=0,gt=lt.length;ot<gt&&(J=lt[ot],!(Math.ceil(at/(yt*J))<=rt));++ot);return J}(w,A,z,F)),K&&(ht=ht.isoWeekday(K),dt=dt.isoWeekday(K)),ht=ht.startOf(K?"day":z),(dt=dt.startOf(K?"day":z))<A&&dt.add(1,z),R=_(ht),ct&&H&&!K&&!B.round&&(R.startOf(H),R.add(~~((ht-R)/(it.size*G))*G,z));R<dt;R.add(G,z))St.push(+R);return St.push(+R),St}P.exports=function(){var w=d.extend({initialize:function(){if(!_)throw new Error("Chart.js - Moment.js could not be found! You must include it before Chart.js to use the time scale. Download at https://momentjs.com");this.mergeTicksOptions(),d.prototype.initialize.call(this)},update:function(){var A=this,F=A.options;return F.time&&F.time.format&&console.warn("options.time.format is deprecated and replaced by options.time.parser."),d.prototype.update.apply(A,arguments)},getRightValue:function(A){return A&&A.t!==void 0&&(A=A.t),d.prototype.getRightValue.call(this,A)},determineDataLimits:function(){var A,F,N,R,B,z,H=this,G=H.chart,K=H.options.time,ct=K.unit||"day",it=v,ht=f,dt=[],St=[],pt=[];for(A=0,N=G.data.labels.length;A<N;++A)pt.push(x(G.data.labels[A],H));for(A=0,N=(G.data.datasets||[]).length;A<N;++A)if(G.isDatasetVisible(A))if(B=G.data.datasets[A].data,u.isObject(B[0]))for(St[A]=[],F=0,R=B.length;F<R;++F)z=x(B[F],H),dt.push(z),St[A][F]=z;else dt.push.apply(dt,pt),St[A]=pt.slice(0);else St[A]=[];pt.length&&(pt=o(pt).sort(i),it=Math.min(it,pt[0]),ht=Math.max(ht,pt[pt.length-1])),dt.length&&(dt=o(dt).sort(i),it=Math.min(it,dt[0]),ht=Math.max(ht,dt[dt.length-1])),it=x(K.min,H)||it,ht=x(K.max,H)||ht,it=it===v?+_().startOf(ct):it,ht=ht===f?+_().endOf(ct)+1:ht,H.min=Math.min(it,ht),H.max=Math.max(it+1,ht),H._horizontal=H.isHorizontal(),H._table=[],H._timestamps={data:dt,datasets:St,labels:pt}},buildTicks:function(){var A,F,N,R=this,B=R.min,z=R.max,H=R.options,G=H.time,K=[],ct=[];switch(H.ticks.source){case"data":K=R._timestamps.data;break;case"labels":K=R._timestamps.labels;break;case"auto":default:K=S(B,z,R.getLabelCapacity(B),H)}for(H.bounds==="ticks"&&K.length&&(B=K[0],z=K[K.length-1]),B=x(G.min,R)||B,z=x(G.max,R)||z,A=0,F=K.length;A<F;++A)(N=K[A])>=B&&N<=z&&ct.push(N);return R.min=B,R.max=z,R._unit=G.unit||function(it,ht,dt,St){var pt,Q,et=_.duration(_(St).diff(_(dt)));for(pt=s.length-1;pt>=s.indexOf(ht);pt--)if(Q=s[pt],n[Q].common&&et.as(Q)>=it.length)return Q;return s[ht?s.indexOf(ht):0]}(ct,G.minUnit,R.min,R.max),R._majorUnit=m(R._unit),R._table=function(it,ht,dt,St){if(St==="linear"||!it.length)return[{time:ht,pos:0},{time:dt,pos:1}];var pt,Q,et,rt,ot,gt=[],J=[ht];for(pt=0,Q=it.length;pt<Q;++pt)(rt=it[pt])>ht&&rt<dt&&J.push(rt);for(J.push(dt),pt=0,Q=J.length;pt<Q;++pt)ot=J[pt+1],et=J[pt-1],rt=J[pt],et!==void 0&&ot!==void 0&&Math.round((ot+et)/2)===rt||gt.push({time:rt,pos:pt/(Q-1)});return gt}(R._timestamps.data,B,z,H.distribution),R._offsets=function(it,ht,dt,St,pt){var Q,et,rt=0,ot=0;return pt.offset&&ht.length&&(pt.time.min||(Q=ht.length>1?ht[1]:St,et=ht[0],rt=(p(it,"time",Q,"pos")-p(it,"time",et,"pos"))/2),pt.time.max||(Q=ht[ht.length-1],et=ht.length>1?ht[ht.length-2]:dt,ot=(p(it,"time",Q,"pos")-p(it,"time",et,"pos"))/2)),{left:rt,right:ot}}(R._table,ct,B,z,H),R._labelFormat=function(it,ht){var dt,St,pt,Q=it.length;for(dt=0;dt<Q;dt++){if((St=t(it[dt],ht)).millisecond()!==0)return"MMM D, YYYY h:mm:ss.SSS a";St.second()===0&&St.minute()===0&&St.hour()===0||(pt=!0)}return pt?"MMM D, YYYY h:mm:ss a":"MMM D, YYYY"}(R._timestamps.data,G),function(it,ht){var dt,St,pt,Q,et=[];for(dt=0,St=it.length;dt<St;++dt)pt=it[dt],Q=!!ht&&pt===+_(pt).startOf(ht),et.push({value:pt,major:Q});return et}(ct,R._majorUnit)},getLabelForIndex:function(A,F){var N=this.chart.data,R=this.options.time,B=N.labels&&A<N.labels.length?N.labels[A]:"",z=N.datasets[F].data[A];return u.isObject(z)&&(B=this.getRightValue(z)),R.tooltipFormat?t(B,R).format(R.tooltipFormat):typeof B=="string"?B:t(B,R).format(this._labelFormat)},tickFormatFunction:function(A,F,N,R){var B=this.options,z=A.valueOf(),H=B.time.displayFormats,G=H[this._unit],K=this._majorUnit,ct=H[K],it=A.clone().startOf(K).valueOf(),ht=B.ticks.major,dt=ht.enabled&&K&&ct&&z===it,St=A.format(R||(dt?ct:G)),pt=dt?ht:B.ticks.minor,Q=u.valueOrDefault(pt.callback,pt.userCallback);return Q?Q(St,F,N):St},convertTicksToLabels:function(A){var F,N,R=[];for(F=0,N=A.length;F<N;++F)R.push(this.tickFormatFunction(_(A[F].value),F,A));return R},getPixelForOffset:function(A){var F=this,N=F._horizontal?F.width:F.height,R=F._horizontal?F.left:F.top,B=p(F._table,"time",A,"pos");return R+N*(F._offsets.left+B)/(F._offsets.left+1+F._offsets.right)},getPixelForValue:function(A,F,N){var R=null;if(F!==void 0&&N!==void 0&&(R=this._timestamps.datasets[N][F]),R===null&&(R=x(A,this)),R!==null)return this.getPixelForOffset(R)},getPixelForTick:function(A){var F=this.getTicks();return A>=0&&A<F.length?this.getPixelForOffset(F[A].value):null},getValueForPixel:function(A){var F=this,N=F._horizontal?F.width:F.height,R=F._horizontal?F.left:F.top,B=(N?(A-R)/N:0)*(F._offsets.left+1+F._offsets.left)-F._offsets.right,z=p(F._table,"pos",B,"time");return _(z)},getLabelWidth:function(A){var F=this.options.ticks,N=this.ctx.measureText(A).width,R=u.toRadians(F.maxRotation),B=Math.cos(R),z=Math.sin(R);return N*B+u.valueOrDefault(F.fontSize,C.global.defaultFontSize)*z},getLabelCapacity:function(A){var F=this,N=F.options.time.displayFormats.millisecond,R=F.tickFormatFunction(_(A),0,[],N),B=F.getLabelWidth(R),z=F.isHorizontal()?F.width:F.height,H=Math.floor(z/B);return H>0?H:1}});l.registerScaleType("time",w,{position:"bottom",distribution:"linear",bounds:"data",time:{parser:!1,format:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"}},ticks:{autoSkip:!1,source:"auto",major:{enabled:!1}}})}},{1:1,26:26,33:33,34:34,46:46}]},{},[7])(7)})}).call(this,a(87)(U),a(59))},function(U,st,a){"use strict";var T=a(3),c=a(23).findIndex,O=a(58),L=!0;"findIndex"in[]&&Array(1).findIndex(function(){L=!1}),T({target:"Array",proto:!0,forced:L},{findIndex:function(k){return c(this,k,arguments.length>1?arguments[1]:void 0)}}),O("findIndex")},function(U,st,a){var T=a(3),c=Math.log,O=Math.LOG10E;T({target:"Math",stat:!0},{log10:function(L){return c(L)*O}})},function(U,st,a){a(3)({target:"Math",stat:!0},{sign:a(160)})},function(U,st){U.exports=Math.sign||function(a){return(a=+a)==0||a!=a?a:a<0?-1:1}},function(U,st,a){a(3)({target:"Number",stat:!0},{EPSILON:Math.pow(2,-52)})},function(U,st,a){"use strict";(function(T){var c,O;a(78),a(81),a(82),a(102),a(144),a(119),a(91),a(54),a(120),a(96),a(122),a(97),a(123),a(145),a(146),a(147),a(71),a(83),a(84),a(109),a(163),a(125),a(85);function L(k){return(L=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(P){return typeof P}:function(P){return P&&typeof Symbol=="function"&&P.constructor===Symbol&&P!==Symbol.prototype?"symbol":typeof P})(k)}/*!
50
- * chartjs-plugin-datalabels v0.7.0
51
- * https://chartjs-plugin-datalabels.netlify.com
52
- * (c) 2019 Chart.js Contributors
53
- * Released under the MIT license
54
- */c=void 0,O=function(k){var P=(k=k&&k.hasOwnProperty("default")?k.default:k).helpers,j=function(){if(typeof window<"u"){if(window.devicePixelRatio)return window.devicePixelRatio;var Q=window.screen;if(Q)return(Q.deviceXDPI||1)/(Q.logicalXDPI||1)}return 1}(),_={toTextLines:function(Q){var et,rt=[];for(Q=[].concat(Q);Q.length;)typeof(et=Q.pop())=="string"?rt.unshift.apply(rt,et.split(`
55
- `)):Array.isArray(et)?Q.push.apply(Q,et):P.isNullOrUndef(Q)||rt.unshift(""+et);return rt},toFontString:function(Q){return!Q||P.isNullOrUndef(Q.size)||P.isNullOrUndef(Q.family)?null:(Q.style?Q.style+" ":"")+(Q.weight?Q.weight+" ":"")+Q.size+"px "+Q.family},textSize:function(Q,et,rt){var ot,gt=[].concat(et),J=gt.length,at=Q.font,bt=0;for(Q.font=rt.string,ot=0;ot<J;++ot)bt=Math.max(Q.measureText(gt[ot]).width,bt);return Q.font=at,{height:J*rt.lineHeight,width:bt}},parseFont:function(Q){var et=k.defaults.global,rt=P.valueOrDefault(Q.size,et.defaultFontSize),ot={family:P.valueOrDefault(Q.family,et.defaultFontFamily),lineHeight:P.options.toLineHeight(Q.lineHeight,rt),size:rt,style:P.valueOrDefault(Q.style,et.defaultFontStyle),weight:P.valueOrDefault(Q.weight,null),string:""};return ot.string=_.toFontString(ot),ot},bound:function(Q,et,rt){return Math.max(Q,Math.min(et,rt))},arrayDiff:function(Q,et){var rt,ot,gt,J,at=Q.slice(),bt=[];for(rt=0,gt=et.length;rt<gt;++rt)J=et[rt],(ot=at.indexOf(J))===-1?bt.push([J,1]):at.splice(ot,1);for(rt=0,gt=at.length;rt<gt;++rt)bt.push([at[rt],-1]);return bt},rasterize:function(Q){return Math.round(Q*j)/j}};function C(Q,et){var rt=et.x,ot=et.y;if(rt===null)return{x:0,y:-1};if(ot===null)return{x:1,y:0};var gt=Q.x-rt,J=Q.y-ot,at=Math.sqrt(gt*gt+J*J);return{x:at?gt/at:0,y:at?J/at:-1}}var u=0,d=1,l=2,f=4,v=8;function n(Q,et,rt){var ot=u;return Q<rt.left?ot|=d:Q>rt.right&&(ot|=l),et<rt.top?ot|=v:et>rt.bottom&&(ot|=f),ot}function s(Q,et){var rt,ot,gt=et.anchor,J=Q;return et.clamp&&(J=function(at,bt){for(var yt,lt,At,Dt=at.x0,It=at.y0,Pt=at.x1,Ct=at.y1,Ot=n(Dt,It,bt),mt=n(Pt,Ct,bt);Ot|mt&&!(Ot&mt);)(yt=Ot||mt)&v?(lt=Dt+(Pt-Dt)*(bt.top-It)/(Ct-It),At=bt.top):yt&f?(lt=Dt+(Pt-Dt)*(bt.bottom-It)/(Ct-It),At=bt.bottom):yt&l?(At=It+(Ct-It)*(bt.right-Dt)/(Pt-Dt),lt=bt.right):yt&d&&(At=It+(Ct-It)*(bt.left-Dt)/(Pt-Dt),lt=bt.left),yt===Ot?Ot=n(Dt=lt,It=At,bt):mt=n(Pt=lt,Ct=At,bt);return{x0:Dt,x1:Pt,y0:It,y1:Ct}}(J,et.area)),gt==="start"?(rt=J.x0,ot=J.y0):gt==="end"?(rt=J.x1,ot=J.y1):(rt=(J.x0+J.x1)/2,ot=(J.y0+J.y1)/2),function(at,bt,yt,lt,At){switch(At){case"center":yt=lt=0;break;case"bottom":yt=0,lt=1;break;case"right":yt=1,lt=0;break;case"left":yt=-1,lt=0;break;case"top":yt=0,lt=-1;break;case"start":yt=-yt,lt=-lt;break;case"end":break;default:At*=Math.PI/180,yt=Math.cos(At),lt=Math.sin(At)}return{x:at,y:bt,vx:yt,vy:lt}}(rt,ot,Q.vx,Q.vy,et.align)}var i={arc:function(Q,et){var rt=(Q.startAngle+Q.endAngle)/2,ot=Math.cos(rt),gt=Math.sin(rt),J=Q.innerRadius,at=Q.outerRadius;return s({x0:Q.x+ot*J,y0:Q.y+gt*J,x1:Q.x+ot*at,y1:Q.y+gt*at,vx:ot,vy:gt},et)},point:function(Q,et){var rt=C(Q,et.origin),ot=rt.x*Q.radius,gt=rt.y*Q.radius;return s({x0:Q.x-ot,y0:Q.y-gt,x1:Q.x+ot,y1:Q.y+gt,vx:rt.x,vy:rt.y},et)},rect:function(Q,et){var rt=C(Q,et.origin),ot=Q.x,gt=Q.y,J=0,at=0;return Q.horizontal?(ot=Math.min(Q.x,Q.base),J=Math.abs(Q.base-Q.x)):(gt=Math.min(Q.y,Q.base),at=Math.abs(Q.base-Q.y)),s({x0:ot,y0:gt+at,x1:ot+J,y1:gt,vx:rt.x,vy:rt.y},et)},fallback:function(Q,et){var rt=C(Q,et.origin);return s({x0:Q.x,y0:Q.y,x1:Q.x,y1:Q.y,vx:rt.x,vy:rt.y},et)}},o=k.helpers,p=_.rasterize;function t(Q){var et=Q._model.horizontal,rt=Q._scale||et&&Q._xScale||Q._yScale;if(!rt)return null;if(rt.xCenter!==void 0&&rt.yCenter!==void 0)return{x:rt.xCenter,y:rt.yCenter};var ot=rt.getBasePixel();return et?{x:ot,y:null}:{x:null,y:ot}}function x(Q,et,rt){var ot=Q.shadowBlur,gt=rt.stroked,J=p(rt.x),at=p(rt.y),bt=p(rt.w);gt&&Q.strokeText(et,J,at,bt),rt.filled&&(ot&&gt&&(Q.shadowBlur=0),Q.fillText(et,J,at,bt),ot&&gt&&(Q.shadowBlur=ot))}var m=function(Q,et,rt,ot){var gt=this;gt._config=Q,gt._index=ot,gt._model=null,gt._rects=null,gt._ctx=et,gt._el=rt};o.extend(m.prototype,{_modelize:function(Q,et,rt,ot){var gt,J=this._index,at=o.options.resolve,bt=_.parseFont(at([rt.font,{}],ot,J)),yt=at([rt.color,k.defaults.global.defaultFontColor],ot,J);return{align:at([rt.align,"center"],ot,J),anchor:at([rt.anchor,"center"],ot,J),area:ot.chart.chartArea,backgroundColor:at([rt.backgroundColor,null],ot,J),borderColor:at([rt.borderColor,null],ot,J),borderRadius:at([rt.borderRadius,0],ot,J),borderWidth:at([rt.borderWidth,0],ot,J),clamp:at([rt.clamp,!1],ot,J),clip:at([rt.clip,!1],ot,J),color:yt,display:Q,font:bt,lines:et,offset:at([rt.offset,0],ot,J),opacity:at([rt.opacity,1],ot,J),origin:t(this._el),padding:o.options.toPadding(at([rt.padding,0],ot,J)),positioner:(gt=this._el,gt instanceof k.elements.Arc?i.arc:gt instanceof k.elements.Point?i.point:gt instanceof k.elements.Rectangle?i.rect:i.fallback),rotation:at([rt.rotation,0],ot,J)*(Math.PI/180),size:_.textSize(this._ctx,et,bt),textAlign:at([rt.textAlign,"start"],ot,J),textShadowBlur:at([rt.textShadowBlur,0],ot,J),textShadowColor:at([rt.textShadowColor,yt],ot,J),textStrokeColor:at([rt.textStrokeColor,yt],ot,J),textStrokeWidth:at([rt.textStrokeWidth,0],ot,J)}},update:function(Q){var et,rt,ot,gt=this,J=null,at=null,bt=gt._index,yt=gt._config,lt=o.options.resolve([yt.display,!0],Q,bt);lt&&(et=Q.dataset.data[bt],rt=o.valueOrDefault(o.callback(yt.formatter,[et,Q]),et),(ot=o.isNullOrUndef(rt)?[]:_.toTextLines(rt)).length&&(at=function(At){var Dt=At.borderWidth||0,It=At.padding,Pt=At.size.height,Ct=At.size.width,Ot=-Ct/2,mt=-Pt/2;return{frame:{x:Ot-It.left-Dt,y:mt-It.top-Dt,w:Ct+It.width+2*Dt,h:Pt+It.height+2*Dt},text:{x:Ot,y:mt,w:Ct,h:Pt}}}(J=gt._modelize(lt,ot,yt,Q)))),gt._model=J,gt._rects=at},geometry:function(){return this._rects?this._rects.frame:{}},rotation:function(){return this._model?this._model.rotation:0},visible:function(){return this._model&&this._model.opacity},model:function(){return this._model},draw:function(Q,et){var rt,ot=Q.ctx,gt=this._model,J=this._rects;this.visible()&&(ot.save(),gt.clip&&(rt=gt.area,ot.beginPath(),ot.rect(rt.left,rt.top,rt.right-rt.left,rt.bottom-rt.top),ot.clip()),ot.globalAlpha=_.bound(0,gt.opacity,1),ot.translate(p(et.x),p(et.y)),ot.rotate(gt.rotation),function(at,bt,yt){var lt=yt.backgroundColor,At=yt.borderColor,Dt=yt.borderWidth;(lt||At&&Dt)&&(at.beginPath(),o.canvas.roundedRect(at,p(bt.x)+Dt/2,p(bt.y)+Dt/2,p(bt.w)-Dt,p(bt.h)-Dt,yt.borderRadius),at.closePath(),lt&&(at.fillStyle=lt,at.fill()),At&&Dt&&(at.strokeStyle=At,at.lineWidth=Dt,at.lineJoin="miter",at.stroke()))}(ot,J.frame,gt),function(at,bt,yt,lt){var At,Dt=lt.textAlign,It=lt.color,Pt=!!It,Ct=lt.font,Ot=bt.length,mt=lt.textStrokeColor,zt=lt.textStrokeWidth,ie=mt&&zt;if(Ot&&(Pt||ie))for(yt=function(Yt,ue,oe){var ne=oe.lineHeight,Rt=Yt.w,Wt=Yt.x;return ue==="center"?Wt+=Rt/2:ue!=="end"&&ue!=="right"||(Wt+=Rt),{h:ne,w:Rt,x:Wt,y:Yt.y+ne/2}}(yt,Dt,Ct),at.font=Ct.string,at.textAlign=Dt,at.textBaseline="middle",at.shadowBlur=lt.textShadowBlur,at.shadowColor=lt.textShadowColor,Pt&&(at.fillStyle=It),ie&&(at.lineJoin="round",at.lineWidth=zt,at.strokeStyle=mt),At=0,Ot=bt.length;At<Ot;++At)x(at,bt[At],{stroked:ie,filled:Pt,w:yt.w,x:yt.x,y:yt.y+yt.h*At})}(ot,gt.lines,J.text,gt),ot.restore())}});var S=k.helpers,w=Number.MIN_SAFE_INTEGER||-9007199254740991,A=Number.MAX_SAFE_INTEGER||9007199254740991;function F(Q,et,rt){var ot=Math.cos(rt),gt=Math.sin(rt),J=et.x,at=et.y;return{x:J+ot*(Q.x-J)-gt*(Q.y-at),y:at+gt*(Q.x-J)+ot*(Q.y-at)}}function N(Q,et){var rt,ot,gt,J,at,bt=A,yt=w,lt=et.origin;for(rt=0;rt<Q.length;++rt)gt=(ot=Q[rt]).x-lt.x,J=ot.y-lt.y,at=et.vx*gt+et.vy*J,bt=Math.min(bt,at),yt=Math.max(yt,at);return{min:bt,max:yt}}function R(Q,et){var rt=et.x-Q.x,ot=et.y-Q.y,gt=Math.sqrt(rt*rt+ot*ot);return{vx:(et.x-Q.x)/gt,vy:(et.y-Q.y)/gt,origin:Q,ln:gt}}var B=function(){this._rotation=0,this._rect={x:0,y:0,w:0,h:0}};function z(Q,et,rt){var ot=et.positioner(Q,et),gt=ot.vx,J=ot.vy;if(!gt&&!J)return{x:ot.x,y:ot.y};var at=rt.w,bt=rt.h,yt=et.rotation,lt=Math.abs(at/2*Math.cos(yt))+Math.abs(bt/2*Math.sin(yt)),At=Math.abs(at/2*Math.sin(yt))+Math.abs(bt/2*Math.cos(yt)),Dt=1/Math.max(Math.abs(gt),Math.abs(J));return lt*=gt*Dt,At*=J*Dt,lt+=et.offset*gt,At+=et.offset*J,{x:ot.x+lt,y:ot.y+At}}S.extend(B.prototype,{center:function(){var Q=this._rect;return{x:Q.x+Q.w/2,y:Q.y+Q.h/2}},update:function(Q,et,rt){this._rotation=rt,this._rect={x:et.x+Q.x,y:et.y+Q.y,w:et.w,h:et.h}},contains:function(Q){var et=this._rect;return!((Q=F(Q,this.center(),-this._rotation)).x<et.x-1||Q.y<et.y-1||Q.x>et.x+et.w+2||Q.y>et.y+et.h+2)},intersects:function(Q){var et,rt,ot,gt=this._points(),J=Q._points(),at=[R(gt[0],gt[1]),R(gt[0],gt[3])];for(this._rotation!==Q._rotation&&at.push(R(J[0],J[1]),R(J[0],J[3])),et=0;et<at.length;++et)if(rt=N(gt,at[et]),ot=N(J,at[et]),rt.max<ot.min||ot.max<rt.min)return!1;return!0},_points:function(){var Q=this._rect,et=this._rotation,rt=this.center();return[F({x:Q.x,y:Q.y},rt,et),F({x:Q.x+Q.w,y:Q.y},rt,et),F({x:Q.x+Q.w,y:Q.y+Q.h},rt,et),F({x:Q.x,y:Q.y+Q.h},rt,et)]}});var H={prepare:function(Q){var et,rt,ot,gt,J,at=[];for(et=0,ot=Q.length;et<ot;++et)for(rt=0,gt=Q[et].length;rt<gt;++rt)J=Q[et][rt],at.push(J),J.$layout={_box:new B,_hidable:!1,_visible:!0,_set:et,_idx:rt};return at.sort(function(bt,yt){var lt=bt.$layout,At=yt.$layout;return lt._idx===At._idx?At._set-lt._set:At._idx-lt._idx}),this.update(at),at},update:function(Q){var et,rt,ot,gt,J,at=!1;for(et=0,rt=Q.length;et<rt;++et)gt=(ot=Q[et]).model(),(J=ot.$layout)._hidable=gt&&gt.display==="auto",J._visible=ot.visible(),at|=J._hidable;at&&function(bt){var yt,lt,At,Dt,It,Pt;for(yt=0,lt=bt.length;yt<lt;++yt)(Dt=(At=bt[yt]).$layout)._visible&&(It=At.geometry(),Pt=z(At._el._model,At.model(),It),Dt._box.update(Pt,It,At.rotation()));(function(Ct,Ot){var mt,zt,ie,Yt;for(mt=Ct.length-1;mt>=0;--mt)for(ie=Ct[mt].$layout,zt=mt-1;zt>=0&&ie._visible;--zt)(Yt=Ct[zt].$layout)._visible&&ie._box.intersects(Yt._box)&&Ot(ie,Yt)})(bt,function(Ct,Ot){var mt=Ct._hidable,zt=Ot._hidable;mt&&zt||zt?Ot._visible=!1:mt&&(Ct._visible=!1)})}(Q)},lookup:function(Q,et){var rt,ot;for(rt=Q.length-1;rt>=0;--rt)if((ot=Q[rt].$layout)&&ot._visible&&ot._box.contains(et))return Q[rt];return null},draw:function(Q,et){var rt,ot,gt,J,at,bt;for(rt=0,ot=et.length;rt<ot;++rt)(J=(gt=et[rt]).$layout)._visible&&(at=gt.geometry(),bt=z(gt._el._view,gt.model(),at),J._box.update(bt,at,gt.rotation()),gt.draw(Q,bt))}},G=k.helpers,K={align:"center",anchor:"center",backgroundColor:null,borderColor:null,borderRadius:0,borderWidth:0,clamp:!1,clip:!1,color:void 0,display:!0,font:{family:void 0,lineHeight:1.2,size:void 0,style:void 0,weight:null},formatter:function(Q){if(G.isNullOrUndef(Q))return null;var et,rt,ot,gt=Q;if(G.isObject(Q))if(G.isNullOrUndef(Q.label))if(G.isNullOrUndef(Q.r))for(gt="",ot=0,rt=(et=Object.keys(Q)).length;ot<rt;++ot)gt+=(ot!==0?", ":"")+et[ot]+": "+Q[et[ot]];else gt=Q.r;else gt=Q.label;return""+gt},labels:void 0,listeners:{},offset:4,opacity:1,padding:{top:4,right:4,bottom:4,left:4},rotation:0,textAlign:"start",textStrokeColor:void 0,textStrokeWidth:0,textShadowBlur:0,textShadowColor:void 0},ct=k.helpers,it="$datalabels",ht="$default";function dt(Q,et,rt){if(et){var ot,gt=rt.$context,J=rt.$groups;et[J._set]&&(ot=et[J._set][J._key])&&ct.callback(ot,[gt])===!0&&(Q[it]._dirty=!0,rt.update(gt))}}function St(Q,et){var rt,ot,gt=Q[it],J=gt._listeners;if(J.enter||J.leave){if(et.type==="mousemove")ot=H.lookup(gt._labels,et);else if(et.type!=="mouseout")return;rt=gt._hovered,gt._hovered=ot,function(at,bt,yt,lt){var At,Dt;(yt||lt)&&(yt?lt?yt!==lt&&(Dt=At=!0):Dt=!0:At=!0,Dt&&dt(at,bt.leave,yt),At&&dt(at,bt.enter,lt))}(Q,J,rt,ot)}}k.defaults.global.plugins.datalabels=K;var pt={id:"datalabels",beforeInit:function(Q){Q[it]={_actives:[]}},beforeUpdate:function(Q){var et=Q[it];et._listened=!1,et._listeners={},et._datasets=[],et._labels=[]},afterDatasetUpdate:function(Q,et,rt){var ot,gt,J,at,bt,yt,lt,At,Dt=et.index,It=Q[it],Pt=It._datasets[Dt]=[],Ct=Q.isDatasetVisible(Dt),Ot=Q.data.datasets[Dt],mt=function(Yt,ue){var oe,ne,Rt,Wt=Yt.datalabels,qt=[];return Wt===!1?null:(Wt===!0&&(Wt={}),ue=ct.merge({},[ue,Wt]),ne=ue.labels||{},Rt=Object.keys(ne),delete ue.labels,Rt.length?Rt.forEach(function(Gt){ne[Gt]&&qt.push(ct.merge({},[ue,ne[Gt],{_key:Gt}]))}):qt.push(ue),oe=qt.reduce(function(Gt,Zt){return ct.each(Zt.listeners||{},function(D,V){Gt[V]=Gt[V]||{},Gt[V][Zt._key||ht]=D}),delete Zt.listeners,Gt},{}),{labels:qt,listeners:oe})}(Ot,rt),zt=et.meta.data||[],ie=Q.ctx;for(ie.save(),ot=0,J=zt.length;ot<J;++ot)if((lt=zt[ot])[it]=[],Ct&&lt&&!lt.hidden&&!lt._model.skip)for(gt=0,at=mt.labels.length;gt<at;++gt)yt=(bt=mt.labels[gt])._key,(At=new m(bt,ie,lt,ot)).$groups={_set:Dt,_key:yt||ht},At.$context={active:!1,chart:Q,dataIndex:ot,dataset:Ot,datasetIndex:Dt},At.update(At.$context),lt[it].push(At),Pt.push(At);ie.restore(),ct.merge(It._listeners,mt.listeners,{merger:function(Yt,ue,oe){ue[Yt]=ue[Yt]||{},ue[Yt][et.index]=oe[Yt],It._listened=!0}})},afterUpdate:function(Q,et){Q[it]._labels=H.prepare(Q[it]._datasets,et)},afterDatasetsDraw:function(Q){H.draw(Q,Q[it]._labels)},beforeEvent:function(Q,et){if(Q[it]._listened)switch(et.type){case"mousemove":case"mouseout":St(Q,et);break;case"click":(function(rt,ot){var gt=rt[it],J=gt._listeners.click,at=J&&H.lookup(gt._labels,ot);at&&dt(rt,J,at)})(Q,et)}},afterEvent:function(Q){var et,rt,ot,gt,J,at,bt,yt=Q[it],lt=yt._actives,At=yt._actives=Q.lastActive||[],Dt=_.arrayDiff(lt,At);for(et=0,rt=Dt.length;et<rt;++et)if((J=Dt[et])[1])for(ot=0,gt=(bt=J[0][it]||[]).length;ot<gt;++ot)(at=bt[ot]).$context.active=J[1]===1,at.update(at.$context);(yt._dirty||Dt.length)&&(H.update(yt._labels),function(It){if(!It.animating){for(var Pt=k.animationService.animations,Ct=0,Ot=Pt.length;Ct<Ot;++Ct)if(Pt[Ct].chart===It)return;It.render({duration:1,lazy:!0})}}(Q)),delete yt._dirty}};return k.plugins.unregister(pt),pt},(typeof exports>"u"?"undefined":L(exports))==="object"&&T!==void 0?T.exports=O(a(166)):typeof define=="function"&&a(55)?define(["chart.js"],O):(c=c||self).ChartDataLabels=O(c.Chart)}).call(this,a(87)(U))},function(U,st,a){"use strict";var T=a(3),c=a(164);T({target:"String",proto:!0,forced:a(165)("anchor")},{anchor:function(O){return c(this,"a","name",O)}})},function(U,st,a){var T=a(13),c=/"/g;U.exports=function(O,L,k,P){var j=String(T(O)),_="<"+L;return k!==""&&(_+=" "+k+'="'+String(P).replace(c,"&quot;")+'"'),_+">"+j+"</"+L+">"}},function(U,st,a){var T=a(1);U.exports=function(c){return T(function(){var O=""[c]('"');return O!==O.toLowerCase()||O.split('"').length>3})}},function(U,st){U.exports=chart},function(U,st){(function(a){a("body").on("shown.bs.modal",".modal",function(){a(".modal-backdrop").length||($modal_dialog=a(this).children(".modal-dialog"),$modal_dialog.hasClass("modal-side")&&(a(this).addClass("modal-scrolling"),a("body").addClass("scrollable")),$modal_dialog.hasClass("modal-frame")&&(a(this).addClass("modal-content-clickable"),a("body").addClass("scrollable")))}),a("body").on("hidden.bs.modal",".modal",function(){a("body").removeClass("scrollable")})})(jQuery)},function(U,st){jQuery.easing.jswing=jQuery.easing.swing,jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(a,T,c,O,L){return jQuery.easing[jQuery.easing.def](a,T,c,O,L)},easeInQuad:function(a,T,c,O,L){return O*(T/=L)*T+c},easeOutQuad:function(a,T,c,O,L){return-O*(T/=L)*(T-2)+c},easeInOutQuad:function(a,T,c,O,L){return(T/=L/2)<1?O/2*T*T+c:-O/2*(--T*(T-2)-1)+c},easeInCubic:function(a,T,c,O,L){return O*(T/=L)*T*T+c},easeOutCubic:function(a,T,c,O,L){return O*((T=T/L-1)*T*T+1)+c},easeInOutCubic:function(a,T,c,O,L){return(T/=L/2)<1?O/2*T*T*T+c:O/2*((T-=2)*T*T+2)+c},easeInQuart:function(a,T,c,O,L){return O*(T/=L)*T*T*T+c},easeOutQuart:function(a,T,c,O,L){return-O*((T=T/L-1)*T*T*T-1)+c},easeInOutQuart:function(a,T,c,O,L){return(T/=L/2)<1?O/2*T*T*T*T+c:-O/2*((T-=2)*T*T*T-2)+c},easeInQuint:function(a,T,c,O,L){return O*(T/=L)*T*T*T*T+c},easeOutQuint:function(a,T,c,O,L){return O*((T=T/L-1)*T*T*T*T+1)+c},easeInOutQuint:function(a,T,c,O,L){return(T/=L/2)<1?O/2*T*T*T*T*T+c:O/2*((T-=2)*T*T*T*T+2)+c},easeInSine:function(a,T,c,O,L){return-O*Math.cos(T/L*(Math.PI/2))+O+c},easeOutSine:function(a,T,c,O,L){return O*Math.sin(T/L*(Math.PI/2))+c},easeInOutSine:function(a,T,c,O,L){return-O/2*(Math.cos(Math.PI*T/L)-1)+c},easeInExpo:function(a,T,c,O,L){return T==0?c:O*Math.pow(2,10*(T/L-1))+c},easeOutExpo:function(a,T,c,O,L){return T==L?c+O:O*(1-Math.pow(2,-10*T/L))+c},easeInOutExpo:function(a,T,c,O,L){return T==0?c:T==L?c+O:(T/=L/2)<1?O/2*Math.pow(2,10*(T-1))+c:O/2*(2-Math.pow(2,-10*--T))+c},easeInCirc:function(a,T,c,O,L){return-O*(Math.sqrt(1-(T/=L)*T)-1)+c},easeOutCirc:function(a,T,c,O,L){return O*Math.sqrt(1-(T=T/L-1)*T)+c},easeInOutCirc:function(a,T,c,O,L){return(T/=L/2)<1?-O/2*(Math.sqrt(1-T*T)-1)+c:O/2*(Math.sqrt(1-(T-=2)*T)+1)+c},easeInElastic:function(a,T,c,O,L){var k=1.70158,P=0,j=O;return T==0?c:(T/=L)==1?c+O:(P||(P=.3*L),j<Math.abs(O)?(j=O,k=P/4):k=P/(2*Math.PI)*Math.asin(O/j),-j*Math.pow(2,10*(T-=1))*Math.sin((T*L-k)*(2*Math.PI)/P)+c)},easeOutElastic:function(a,T,c,O,L){var k=1.70158,P=0,j=O;return T==0?c:(T/=L)==1?c+O:(P||(P=.3*L),j<Math.abs(O)?(j=O,k=P/4):k=P/(2*Math.PI)*Math.asin(O/j),j*Math.pow(2,-10*T)*Math.sin((T*L-k)*(2*Math.PI)/P)+O+c)},easeInOutElastic:function(a,T,c,O,L){var k=1.70158,P=0,j=O;return T==0?c:(T/=L/2)==2?c+O:(P||(P=L*(.3*1.5)),j<Math.abs(O)?(j=O,k=P/4):k=P/(2*Math.PI)*Math.asin(O/j),T<1?j*Math.pow(2,10*(T-=1))*Math.sin((T*L-k)*(2*Math.PI)/P)*-.5+c:j*Math.pow(2,-10*(T-=1))*Math.sin((T*L-k)*(2*Math.PI)/P)*.5+O+c)},easeInBack:function(a,T,c,O,L,k){return k==null&&(k=1.70158),O*(T/=L)*T*((k+1)*T-k)+c},easeOutBack:function(a,T,c,O,L,k){return k==null&&(k=1.70158),O*((T=T/L-1)*T*((k+1)*T+k)+1)+c},easeInOutBack:function(a,T,c,O,L,k){return k==null&&(k=1.70158),(T/=L/2)<1?O/2*(T*T*((1+(k*=1.525))*T-k))+c:O/2*((T-=2)*T*((1+(k*=1.525))*T+k)+2)+c},easeInBounce:function(a,T,c,O,L){return O-jQuery.easing.easeOutBounce(a,L-T,0,O,L)+c},easeOutBounce:function(a,T,c,O,L){return(T/=L)<1/2.75?O*(7.5625*T*T)+c:T<2/2.75?O*(7.5625*(T-=1.5/2.75)*T+.75)+c:T<2.5/2.75?O*(7.5625*(T-=2.25/2.75)*T+.9375)+c:O*(7.5625*(T-=2.625/2.75)*T+.984375)+c},easeInOutBounce:function(a,T,c,O,L){return T<L/2?.5*jQuery.easing.easeInBounce(a,2*T,0,O,L)+c:.5*jQuery.easing.easeOutBounce(a,2*T-L,0,O,L)+.5*O+c}})},function(U,st,a){"use strict";(function(T){var c;a(78),a(81),a(82),a(102),a(54),a(101),a(121),a(96),a(170),a(104),a(71),a(105),a(124),a(129),a(83),a(106),a(84),a(113),a(98),a(109),a(172),a(180),a(182),a(183),a(184),a(185),a(186),a(187),a(188),a(189),a(190),a(191),a(192),a(193),a(194),a(195),a(196),a(197),a(198),a(199),a(200),a(201),a(202),a(203),a(85);function O(L){return(O=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(k){return typeof k}:function(k){return k&&typeof Symbol=="function"&&k.constructor===Symbol&&k!==Symbol.prototype?"symbol":typeof k})(L)}/*! VelocityJS.org (1.2.3). (C) 2014 Julian Shapiro. MIT @license: en.wikipedia.org/wiki/MIT_License *//*! VelocityJS.org jQuery Shim (1.0.1). (C) 2014 The jQuery Foundation. MIT @license: en.wikipedia.org/wiki/MIT_License. *//*! Note that this has been modified by Materialize to confirm that Velocity is not already being imported. */jQuery.Velocity?console.log("Velocity is already loaded. You may be needlessly importing Velocity again; note that Materialize includes Velocity."):(function(L){function k(f){var v=f.length,n=P.type(f);return n!=="function"&&!P.isWindow(f)&&(!(f.nodeType!==1||!v)||n==="array"||v===0||typeof v=="number"&&v>0&&v-1 in f)}if(!L.jQuery){var P=function f(v,n){return new f.fn.init(v,n)};P.isWindow=function(f){return f!=null&&f==f.window},P.type=function(f){return f==null?f+"":O(f)=="object"||typeof f=="function"?_[u.call(f)]||"object":O(f)},P.isArray=Array.isArray||function(f){return P.type(f)==="array"},P.isPlainObject=function(f){var v;if(!f||P.type(f)!=="object"||f.nodeType||P.isWindow(f))return!1;try{if(f.constructor&&!C.call(f,"constructor")&&!C.call(f.constructor.prototype,"isPrototypeOf"))return!1}catch{return!1}for(v in f);return v===void 0||C.call(f,v)},P.each=function(f,v,n){var s=0,i=f.length,o=k(f);if(n){if(o)for(;i>s&&v.apply(f[s],n)!==!1;s++);else for(s in f)if(v.apply(f[s],n)===!1)break}else if(o)for(;i>s&&v.call(f[s],s,f[s])!==!1;s++);else for(s in f)if(v.call(f[s],s,f[s])===!1)break;return f},P.data=function(f,v,n){if(n===void 0){var s=(i=f[P.expando])&&j[i];if(v===void 0)return s;if(s&&v in s)return s[v]}else if(v!==void 0){var i=f[P.expando]||(f[P.expando]=++P.uuid);return j[i]=j[i]||{},j[i][v]=n,n}},P.removeData=function(f,v){var n=f[P.expando],s=n&&j[n];s&&P.each(v,function(i,o){delete s[o]})},P.extend=function(){var f,v,n,s,i,o,p=arguments[0]||{},t=1,x=arguments.length,m=!1;for(typeof p=="boolean"&&(m=p,p=arguments[t]||{},t++),O(p)!="object"&&P.type(p)!=="function"&&(p={}),t===x&&(p=this,t--);x>t;t++)if((i=arguments[t])!=null)for(s in i)f=p[s],p!==(n=i[s])&&(m&&n&&(P.isPlainObject(n)||(v=P.isArray(n)))?(v?(v=!1,o=f&&P.isArray(f)?f:[]):o=f&&P.isPlainObject(f)?f:{},p[s]=P.extend(m,o,n)):n!==void 0&&(p[s]=n));return p},P.queue=function(f,v,n){if(f){v=(v||"fx")+"queue";var s=P.data(f,v);return n?(!s||P.isArray(n)?s=P.data(f,v,function(i,o){var p=o||[];return i!=null&&(k(Object(i))?function(t,x){for(var m=+x.length,S=0,w=t.length;m>S;)t[w++]=x[S++];if(m!=m)for(;x[S]!==void 0;)t[w++]=x[S++];t.length=w}(p,typeof i=="string"?[i]:i):[].push.call(p,i)),p}(n)):s.push(n),s):s||[]}},P.dequeue=function(f,v){P.each(f.nodeType?[f]:f,function(n,s){v=v||"fx";var i=P.queue(s,v),o=i.shift();o==="inprogress"&&(o=i.shift()),o&&(v==="fx"&&i.unshift("inprogress"),o.call(s,function(){P.dequeue(s,v)}))})},P.fn=P.prototype={init:function(f){if(f.nodeType)return this[0]=f,this;throw new Error("Not a DOM node.")},offset:function(){var f=this[0].getBoundingClientRect?this[0].getBoundingClientRect():{top:0,left:0};return{top:f.top+(L.pageYOffset||document.scrollTop||0)-(document.clientTop||0),left:f.left+(L.pageXOffset||document.scrollLeft||0)-(document.clientLeft||0)}},position:function(){function v(){for(var i=this.offsetParent||document;i&&!i.nodeType.toLowerCase==="html"&&i.style.position==="static";)i=i.offsetParent;return i||document}var f=this[0],v=v.apply(f),n=this.offset(),s=/^(?:body|html)$/i.test(v.nodeName)?{top:0,left:0}:P(v).offset();return n.top-=parseFloat(f.style.marginTop)||0,n.left-=parseFloat(f.style.marginLeft)||0,v.style&&(s.top+=parseFloat(v.style.borderTopWidth)||0,s.left+=parseFloat(v.style.borderLeftWidth)||0),{top:n.top-s.top,left:n.left-s.left}}};var j={};P.expando="velocity"+new Date().getTime(),P.uuid=0;for(var _={},C=_.hasOwnProperty,u=_.toString,d="Boolean Number String Function Array Date RegExp Object Error".split(" "),l=0;l<d.length;l++)_["[object "+d[l]+"]"]=d[l].toLowerCase();P.fn.init.prototype=P.fn,L.Velocity={Utilities:P}}}(window),c=function(){return function(L,k,P,j){function _(N){return o.isWrapped(N)?N=[].slice.call(N):o.isNode(N)&&(N=[N]),N}function C(N){var R=n.data(N,"velocity");return R===null?j:R}function u(N){return function(R){return Math.round(R*N)*(1/N)}}function d(N,R,B,z){function H(Dt,It){return 1-3*It+3*Dt}function G(Dt,It){return 3*It-6*Dt}function K(Dt){return 3*Dt}function ct(Dt,It,Pt){return((H(It,Pt)*Dt+G(It,Pt))*Dt+K(It))*Dt}function it(Dt,It,Pt){return 3*H(It,Pt)*Dt*Dt+2*G(It,Pt)*Dt+K(It)}function ht(Dt,It){for(var Pt=0;pt>Pt;++Pt){var Ct=it(It,N,B);if(Ct===0)return It;It-=(ct(It,N,B)-Dt)/Ct}return It}function dt(Dt,It,Pt){var Ct,Ot,mt=0;do(Ct=ct(Ot=It+(Pt-It)/2,N,B)-Dt)>0?Pt=Ot:It=Ot;while(Math.abs(Ct)>et&&++mt<rt);return Ot}function St(){yt=!0,(N!=R||B!=z)&&function(){for(var Dt=0;ot>Dt;++Dt)bt[Dt]=ct(Dt*gt,N,B)}()}var pt=4,Q=.001,et=1e-7,rt=10,ot=11,gt=1/(ot-1),J="Float32Array"in k;if(arguments.length!==4)return!1;for(var at=0;4>at;++at)if(typeof arguments[at]!="number"||isNaN(arguments[at])||!isFinite(arguments[at]))return!1;N=Math.min(N,1),B=Math.min(B,1),N=Math.max(N,0),B=Math.max(B,0);var bt=J?new Float32Array(ot):new Array(ot),yt=!1,lt=function(Dt){return yt||St(),N===R&&B===z?Dt:Dt===0?0:Dt===1?1:ct(function(It){for(var Pt=0,Ct=1,Ot=ot-1;Ct!=Ot&&bt[Ct]<=It;++Ct)Pt+=gt;var mt=Pt+(It-bt[--Ct])/(bt[Ct+1]-bt[Ct])*gt,zt=it(mt,N,B);return zt>=Q?ht(It,mt):zt==0?mt:dt(It,Pt,Pt+gt)}(Dt),R,z)};lt.getControlPoints=function(){return[{x:N,y:R},{x:B,y:z}]};var At="generateBezier("+[N,R,B,z]+")";return lt.toString=function(){return At},lt}function l(N,R){var B=N;return o.isString(N)?m.Easings[N]||(B=!1):B=o.isArray(N)&&N.length===1?u.apply(null,N):o.isArray(N)&&N.length===2?S.apply(null,N.concat([R])):!(!o.isArray(N)||N.length!==4)&&d.apply(null,N),B===!1&&(B=m.Easings[m.defaults.easing]?m.defaults.easing:x),B}function f(N){if(N){var R=new Date().getTime(),B=m.State.calls.length;B>1e4&&(m.State.calls=function(Dt){for(var It=-1,Pt=Dt?Dt.length:0,Ct=[];++It<Pt;){var Ot=Dt[It];Ot&&Ct.push(Ot)}return Ct}(m.State.calls));for(var z=0;B>z;z++)if(m.State.calls[z]){var H=m.State.calls[z],G=H[0],K=H[2],ct=H[3],it=!!ct,ht=null;ct||(ct=m.State.calls[z][3]=R-16);for(var dt=Math.min((R-ct)/K.duration,1),St=0,pt=G.length;pt>St;St++){var Q=G[St],et=Q.element;if(C(et)){var rt=!1;for(var ot in K.display!==j&&K.display!==null&&K.display!=="none"&&(K.display==="flex"&&n.each(["-webkit-box","-moz-box","-ms-flexbox","-webkit-flex"],function(Dt,It){w.setPropertyValue(et,"display",It)}),w.setPropertyValue(et,"display",K.display)),K.visibility!==j&&K.visibility!=="hidden"&&w.setPropertyValue(et,"visibility",K.visibility),Q)if(ot!=="element"){var gt,J=Q[ot],at=o.isString(J.easing)?m.Easings[J.easing]:J.easing;if(dt===1)gt=J.endValue;else{var bt=J.endValue-J.startValue;if(gt=J.startValue+bt*at(dt,K,bt),!it&&gt===J.currentValue)continue}if(J.currentValue=gt,ot==="tween")ht=gt;else{if(w.Hooks.registered[ot]){var yt=w.Hooks.getRoot(ot),lt=C(et).rootPropertyValueCache[yt];lt&&(J.rootPropertyValue=lt)}var At=w.setPropertyValue(et,ot,J.currentValue+(parseFloat(gt)===0?"":J.unitType),J.rootPropertyValue,J.scrollData);w.Hooks.registered[ot]&&(C(et).rootPropertyValueCache[yt]=w.Normalizations.registered[yt]?w.Normalizations.registered[yt]("extract",null,At[1]):At[1]),At[0]==="transform"&&(rt=!0)}}K.mobileHA&&C(et).transformCache.translate3d===j&&(C(et).transformCache.translate3d="(0px, 0px, 0px)",rt=!0),rt&&w.flushTransformCache(et)}}K.display!==j&&K.display!=="none"&&(m.State.calls[z][2].display=!1),K.visibility!==j&&K.visibility!=="hidden"&&(m.State.calls[z][2].visibility=!1),K.progress&&K.progress.call(H[1],H[1],dt,Math.max(0,ct+K.duration-R),ct,ht),dt===1&&v(z)}}m.State.isTicking&&F(f)}function v(N,R){if(!m.State.calls[N])return!1;for(var B=m.State.calls[N][0],z=m.State.calls[N][1],H=m.State.calls[N][2],G=m.State.calls[N][4],K=!1,ct=0,it=B.length;it>ct;ct++){var ht=B[ct].element;if(R||H.loop||(H.display==="none"&&w.setPropertyValue(ht,"display",H.display),H.visibility==="hidden"&&w.setPropertyValue(ht,"visibility",H.visibility)),H.loop!==!0&&(n.queue(ht)[1]===j||!/\.velocityQueueEntryFlag/i.test(n.queue(ht)[1]))&&C(ht)){C(ht).isAnimating=!1,C(ht).rootPropertyValueCache={};var dt=!1;n.each(w.Lists.transforms3D,function(Q,et){var rt=/^scale/.test(et)?1:0,ot=C(ht).transformCache[et];C(ht).transformCache[et]!==j&&new RegExp("^\\("+rt+"[^.]").test(ot)&&(dt=!0,delete C(ht).transformCache[et])}),H.mobileHA&&(dt=!0,delete C(ht).transformCache.translate3d),dt&&w.flushTransformCache(ht),w.Values.removeClass(ht,"velocity-animating")}if(!R&&H.complete&&!H.loop&&ct===it-1)try{H.complete.call(z,z)}catch(Q){setTimeout(function(){throw Q},1)}G&&H.loop!==!0&&G(z),C(ht)&&H.loop===!0&&!R&&(n.each(C(ht).tweensContainer,function(Q,et){/^rotate/.test(Q)&&parseFloat(et.endValue)===360&&(et.endValue=0,et.startValue=360),/^backgroundPosition/.test(Q)&&parseFloat(et.endValue)===100&&et.unitType==="%"&&(et.endValue=0,et.startValue=100)}),m(ht,"reverse",{loop:!0,delay:H.delay})),H.queue!==!1&&n.dequeue(ht,H.queue)}m.State.calls[N]=!1;for(var St=0,pt=m.State.calls.length;pt>St;St++)if(m.State.calls[St]!==!1){K=!0;break}K===!1&&(m.State.isTicking=!1,delete m.State.calls,m.State.calls=[])}var n,s=function(){if(P.documentMode)return P.documentMode;for(var N=7;N>4;N--){var R=P.createElement("div");if(R.innerHTML="<!--[if IE "+N+"]><span></span><![endif]-->",R.getElementsByTagName("span").length)return R=null,N}return j}(),i=function(){var N=0;return k.webkitRequestAnimationFrame||k.mozRequestAnimationFrame||function(R){var B,z=new Date().getTime();return B=Math.max(0,16-(z-N)),N=z+B,setTimeout(function(){R(z+B)},B)}}(),o={isString:function(N){return typeof N=="string"},isArray:Array.isArray||function(N){return Object.prototype.toString.call(N)==="[object Array]"},isFunction:function(N){return Object.prototype.toString.call(N)==="[object Function]"},isNode:function(N){return N&&N.nodeType},isNodeList:function(N){return O(N)=="object"&&/^\[object (HTMLCollection|NodeList|Object)\]$/.test(Object.prototype.toString.call(N))&&N.length!==j&&(N.length===0||O(N[0])=="object"&&N[0].nodeType>0)},isWrapped:function(N){return N&&(N.jquery||k.Zepto&&k.Zepto.zepto.isZ(N))},isSVG:function(N){return k.SVGElement&&N instanceof k.SVGElement},isEmptyObject:function(N){for(var R in N)return!1;return!0}},p=!1;if(L.fn&&L.fn.jquery?(n=L,p=!0):n=k.Velocity.Utilities,8>=s&&!p)throw new Error("Velocity: IE8 and below require jQuery to be loaded before Velocity.");if(!(7>=s)){var t=400,x="swing",m={State:{isMobile:/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),isAndroid:/Android/i.test(navigator.userAgent),isGingerbread:/Android 2\.3\.[3-7]/i.test(navigator.userAgent),isChrome:k.chrome,isFirefox:/Firefox/i.test(navigator.userAgent),prefixElement:P.createElement("div"),prefixMatches:{},scrollAnchor:null,scrollPropertyLeft:null,scrollPropertyTop:null,isTicking:!1,calls:[]},CSS:{},Utilities:n,Redirects:{},Easings:{},Promise:k.Promise,defaults:{queue:"",duration:t,easing:x,begin:j,complete:j,progress:j,display:j,visibility:j,loop:!1,delay:!1,mobileHA:!0,_cacheValues:!0},init:function(N){n.data(N,"velocity",{isSVG:o.isSVG(N),isAnimating:!1,computedStyle:null,tweensContainer:null,rootPropertyValueCache:{},transformCache:{}})},hook:null,mock:!1,version:{major:1,minor:2,patch:2},debug:!1};k.pageYOffset!==j?(m.State.scrollAnchor=k,m.State.scrollPropertyLeft="pageXOffset",m.State.scrollPropertyTop="pageYOffset"):(m.State.scrollAnchor=P.documentElement||P.body.parentNode||P.body,m.State.scrollPropertyLeft="scrollLeft",m.State.scrollPropertyTop="scrollTop");var S=function(){function N(z){return-z.tension*z.x-z.friction*z.v}function R(z,H,G){var K={x:z.x+G.dx*H,v:z.v+G.dv*H,tension:z.tension,friction:z.friction};return{dx:K.v,dv:N(K)}}function B(z,H){var G={dx:z.v,dv:N(z)},K=R(z,.5*H,G),ct=R(z,.5*H,K),it=R(z,H,ct),ht=1/6*(G.dx+2*(K.dx+ct.dx)+it.dx),dt=1/6*(G.dv+2*(K.dv+ct.dv)+it.dv);return z.x=z.x+ht*H,z.v=z.v+dt*H,z}return function z(H,G,K){var ct,it,ht,dt={x:-1,v:0,tension:null,friction:null},St=[0],pt=0;for(H=parseFloat(H)||500,G=parseFloat(G)||20,K=K||null,dt.tension=H,dt.friction=G,it=(ct=K!==null)?(pt=z(H,G))/K*.016:.016;ht=B(ht||dt,it),St.push(1+ht.x),pt+=16,Math.abs(ht.x)>1e-4&&Math.abs(ht.v)>1e-4;);return ct?function(Q){return St[Q*(St.length-1)|0]}:pt}}();m.Easings={linear:function(N){return N},swing:function(N){return .5-Math.cos(N*Math.PI)/2},spring:function(N){return 1-Math.cos(4.5*N*Math.PI)*Math.exp(6*-N)}},n.each([["ease",[.25,.1,.25,1]],["ease-in",[.42,0,1,1]],["ease-out",[0,0,.58,1]],["ease-in-out",[.42,0,.58,1]],["easeInSine",[.47,0,.745,.715]],["easeOutSine",[.39,.575,.565,1]],["easeInOutSine",[.445,.05,.55,.95]],["easeInQuad",[.55,.085,.68,.53]],["easeOutQuad",[.25,.46,.45,.94]],["easeInOutQuad",[.455,.03,.515,.955]],["easeInCubic",[.55,.055,.675,.19]],["easeOutCubic",[.215,.61,.355,1]],["easeInOutCubic",[.645,.045,.355,1]],["easeInQuart",[.895,.03,.685,.22]],["easeOutQuart",[.165,.84,.44,1]],["easeInOutQuart",[.77,0,.175,1]],["easeInQuint",[.755,.05,.855,.06]],["easeOutQuint",[.23,1,.32,1]],["easeInOutQuint",[.86,0,.07,1]],["easeInExpo",[.95,.05,.795,.035]],["easeOutExpo",[.19,1,.22,1]],["easeInOutExpo",[1,0,0,1]],["easeInCirc",[.6,.04,.98,.335]],["easeOutCirc",[.075,.82,.165,1]],["easeInOutCirc",[.785,.135,.15,.86]]],function(N,R){m.Easings[R[0]]=d.apply(null,R[1])});var w=m.CSS={RegEx:{isHex:/^#([A-f\d]{3}){1,2}$/i,valueUnwrap:/^[A-z]+\((.*)\)$/i,wrappedValueAlreadyExtracted:/[0-9.]+ [0-9.]+ [0-9.]+( [0-9.]+)?/,valueSplit:/([A-z]+\(.+\))|(([A-z0-9#-.]+?)(?=\s|$))/gi},Lists:{colors:["fill","stroke","stopColor","color","backgroundColor","borderColor","borderTopColor","borderRightColor","borderBottomColor","borderLeftColor","outlineColor"],transformsBase:["translateX","translateY","scale","scaleX","scaleY","skewX","skewY","rotateZ"],transforms3D:["transformPerspective","translateZ","scaleZ","rotateX","rotateY"]},Hooks:{templates:{textShadow:["Color X Y Blur","black 0px 0px 0px"],boxShadow:["Color X Y Blur Spread","black 0px 0px 0px 0px"],clip:["Top Right Bottom Left","0px 0px 0px 0px"],backgroundPosition:["X Y","0% 0%"],transformOrigin:["X Y Z","50% 50% 0px"],perspectiveOrigin:["X Y","50% 50%"]},registered:{},register:function(){for(var N=0;N<w.Lists.colors.length;N++){var R=w.Lists.colors[N]==="color"?"0 0 0 1":"255 255 255 1";w.Hooks.templates[w.Lists.colors[N]]=["Red Green Blue Alpha",R]}var B,z,H;if(s)for(B in w.Hooks.templates){H=(z=w.Hooks.templates[B])[0].split(" ");var G=z[1].match(w.RegEx.valueSplit);H[0]==="Color"&&(H.push(H.shift()),G.push(G.shift()),w.Hooks.templates[B]=[H.join(" "),G.join(" ")])}for(B in w.Hooks.templates)for(var N in H=(z=w.Hooks.templates[B])[0].split(" ")){var K=B+H[N],ct=N;w.Hooks.registered[K]=[B,ct]}},getRoot:function(N){var R=w.Hooks.registered[N];return R?R[0]:N},cleanRootPropertyValue:function(N,R){return w.RegEx.valueUnwrap.test(R)&&(R=R.match(w.RegEx.valueUnwrap)[1]),w.Values.isCSSNullValue(R)&&(R=w.Hooks.templates[N][1]),R},extractValue:function(N,R){var B=w.Hooks.registered[N];if(B){var z=B[0],H=B[1];return(R=w.Hooks.cleanRootPropertyValue(z,R)).toString().match(w.RegEx.valueSplit)[H]}return R},injectValue:function(N,R,B){var z=w.Hooks.registered[N];if(z){var H,G=z[0],K=z[1];return(H=(B=w.Hooks.cleanRootPropertyValue(G,B)).toString().match(w.RegEx.valueSplit))[K]=R,H.join(" ")}return B}},Normalizations:{registered:{clip:function(N,R,B){switch(N){case"name":return"clip";case"extract":var z;return z=w.RegEx.wrappedValueAlreadyExtracted.test(B)?B:(z=B.toString().match(w.RegEx.valueUnwrap))?z[1].replace(/,(\s+)?/g," "):B;case"inject":return"rect("+B+")"}},blur:function(N,R,B){switch(N){case"name":return m.State.isFirefox?"filter":"-webkit-filter";case"extract":var z=parseFloat(B);if(!z&&z!==0){var H=B.toString().match(/blur\(([0-9]+[A-z]+)\)/i);z=H?H[1]:0}return z;case"inject":return parseFloat(B)?"blur("+B+")":"none"}},opacity:function(N,R,B){if(8>=s)switch(N){case"name":return"filter";case"extract":var z=B.toString().match(/alpha\(opacity=(.*)\)/i);return z?z[1]/100:1;case"inject":return R.style.zoom=1,parseFloat(B)>=1?"":"alpha(opacity="+parseInt(100*parseFloat(B),10)+")"}else switch(N){case"name":return"opacity";case"extract":case"inject":return B}}},register:function(){9>=s||m.State.isGingerbread||(w.Lists.transformsBase=w.Lists.transformsBase.concat(w.Lists.transforms3D));for(var N=0;N<w.Lists.transformsBase.length;N++)(function(){var R=w.Lists.transformsBase[N];w.Normalizations.registered[R]=function(B,z,H){switch(B){case"name":return"transform";case"extract":return C(z)===j||C(z).transformCache[R]===j?/^scale/i.test(R)?1:0:C(z).transformCache[R].replace(/[()]/g,"");case"inject":var G=!1;switch(R.substr(0,R.length-1)){case"translate":G=!/(%|px|em|rem|vw|vh|\d)$/i.test(H);break;case"scal":case"scale":m.State.isAndroid&&C(z).transformCache[R]===j&&1>H&&(H=1),G=!/(\d)$/i.test(H);break;case"skew":G=!/(deg|\d)$/i.test(H);break;case"rotate":G=!/(deg|\d)$/i.test(H)}return G||(C(z).transformCache[R]="("+H+")"),C(z).transformCache[R]}}})();for(N=0;N<w.Lists.colors.length;N++)(function(){var R=w.Lists.colors[N];w.Normalizations.registered[R]=function(B,z,H){switch(B){case"name":return R;case"extract":var G;if(w.RegEx.wrappedValueAlreadyExtracted.test(H))G=H;else{var K,ct={black:"rgb(0, 0, 0)",blue:"rgb(0, 0, 255)",gray:"rgb(128, 128, 128)",green:"rgb(0, 128, 0)",red:"rgb(255, 0, 0)",white:"rgb(255, 255, 255)"};/^[A-z]+$/i.test(H)?K=ct[H]!==j?ct[H]:ct.black:w.RegEx.isHex.test(H)?K="rgb("+w.Values.hexToRgb(H).join(" ")+")":/^rgba?\(/i.test(H)||(K=ct.black),G=(K||H).toString().match(w.RegEx.valueUnwrap)[1].replace(/,(\s+)?/g," ")}return 8>=s||G.split(" ").length!==3||(G+=" 1"),G;case"inject":return 8>=s?H.split(" ").length===4&&(H=H.split(/\s+/).slice(0,3).join(" ")):H.split(" ").length===3&&(H+=" 1"),(8>=s?"rgb":"rgba")+"("+H.replace(/\s+/g,",").replace(/\.(\d)+(?=,)/g,"")+")"}}})()}},Names:{camelCase:function(N){return N.replace(/-(\w)/g,function(R,B){return B.toUpperCase()})},SVGAttribute:function(N){var R="width|height|x|y|cx|cy|r|rx|ry|x1|x2|y1|y2";return(s||m.State.isAndroid&&!m.State.isChrome)&&(R+="|transform"),new RegExp("^("+R+")$","i").test(N)},prefixCheck:function(N){if(m.State.prefixMatches[N])return[m.State.prefixMatches[N],!0];for(var R=["","Webkit","Moz","ms","O"],B=0,z=R.length;z>B;B++){var H;if(H=B===0?N:R[B]+N.replace(/^\w/,function(G){return G.toUpperCase()}),o.isString(m.State.prefixElement.style[H]))return m.State.prefixMatches[N]=H,[H,!0]}return[N,!1]}},Values:{hexToRgb:function(N){var R;return N=N.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,function(B,z,H,G){return z+z+H+H+G+G}),(R=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(N))?[parseInt(R[1],16),parseInt(R[2],16),parseInt(R[3],16)]:[0,0,0]},isCSSNullValue:function(N){return N==0||/^(none|auto|transparent|(rgba\(0, ?0, ?0, ?0\)))$/i.test(N)},getUnitType:function(N){return/^(rotate|skew)/i.test(N)?"deg":/(^(scale|scaleX|scaleY|scaleZ|alpha|flexGrow|flexHeight|zIndex|fontWeight)$)|((opacity|red|green|blue|alpha)$)/i.test(N)?"":"px"},getDisplayType:function(N){var R=N&&N.tagName.toString().toLowerCase();return/^(b|big|i|small|tt|abbr|acronym|cite|code|dfn|em|kbd|strong|samp|var|a|bdo|br|img|map|object|q|script|span|sub|sup|button|input|label|select|textarea)$/i.test(R)?"inline":/^(li)$/i.test(R)?"list-item":/^(tr)$/i.test(R)?"table-row":/^(table)$/i.test(R)?"table":/^(tbody)$/i.test(R)?"table-row-group":"block"},addClass:function(N,R){N.classList?N.classList.add(R):N.className+=(N.className.length?" ":"")+R},removeClass:function(N,R){N.classList?N.classList.remove(R):N.className=N.className.toString().replace(new RegExp("(^|\\s)"+R.split(" ").join("|")+"(\\s|$)","gi")," ")}},getPropertyValue:function(N,R,B,z){function H(dt,St){function pt(){rt&&w.setPropertyValue(dt,"display","none")}var Q=0;if(8>=s)Q=n.css(dt,St);else{var et,rt=!1;if(/^(width|height)$/.test(St)&&w.getPropertyValue(dt,"display")===0&&(rt=!0,w.setPropertyValue(dt,"display",w.Values.getDisplayType(dt))),!z){if(St==="height"&&w.getPropertyValue(dt,"boxSizing").toString().toLowerCase()!=="border-box"){var ot=dt.offsetHeight-(parseFloat(w.getPropertyValue(dt,"borderTopWidth"))||0)-(parseFloat(w.getPropertyValue(dt,"borderBottomWidth"))||0)-(parseFloat(w.getPropertyValue(dt,"paddingTop"))||0)-(parseFloat(w.getPropertyValue(dt,"paddingBottom"))||0);return pt(),ot}if(St==="width"&&w.getPropertyValue(dt,"boxSizing").toString().toLowerCase()!=="border-box"){var gt=dt.offsetWidth-(parseFloat(w.getPropertyValue(dt,"borderLeftWidth"))||0)-(parseFloat(w.getPropertyValue(dt,"borderRightWidth"))||0)-(parseFloat(w.getPropertyValue(dt,"paddingLeft"))||0)-(parseFloat(w.getPropertyValue(dt,"paddingRight"))||0);return pt(),gt}}et=C(dt)===j?k.getComputedStyle(dt,null):C(dt).computedStyle?C(dt).computedStyle:C(dt).computedStyle=k.getComputedStyle(dt,null),St==="borderColor"&&(St="borderTopColor"),((Q=s===9&&St==="filter"?et.getPropertyValue(St):et[St])===""||Q===null)&&(Q=dt.style[St]),pt()}if(Q==="auto"&&/^(top|right|bottom|left)$/i.test(St)){var J=H(dt,"position");(J==="fixed"||J==="absolute"&&/top|left/i.test(St))&&(Q=n(dt).position()[St]+"px")}return Q}var G;if(w.Hooks.registered[R]){var K=R,ct=w.Hooks.getRoot(K);B===j&&(B=w.getPropertyValue(N,w.Names.prefixCheck(ct)[0])),w.Normalizations.registered[ct]&&(B=w.Normalizations.registered[ct]("extract",N,B)),G=w.Hooks.extractValue(K,B)}else if(w.Normalizations.registered[R]){var it,ht;(it=w.Normalizations.registered[R]("name",N))!=="transform"&&(ht=H(N,w.Names.prefixCheck(it)[0]),w.Values.isCSSNullValue(ht)&&w.Hooks.templates[R]&&(ht=w.Hooks.templates[R][1])),G=w.Normalizations.registered[R]("extract",N,ht)}if(!/^[\d-]/.test(G))if(C(N)&&C(N).isSVG&&w.Names.SVGAttribute(R))if(/^(height|width)$/i.test(R))try{G=N.getBBox()[R]}catch{G=0}else G=N.getAttribute(R);else G=H(N,w.Names.prefixCheck(R)[0]);return w.Values.isCSSNullValue(G)&&(G=0),m.debug>=2&&console.log("Get "+R+": "+G),G},setPropertyValue:function(N,R,B,z,H){var G=R;if(R==="scroll")H.container?H.container["scroll"+H.direction]=B:H.direction==="Left"?k.scrollTo(B,H.alternateValue):k.scrollTo(H.alternateValue,B);else if(w.Normalizations.registered[R]&&w.Normalizations.registered[R]("name",N)==="transform")w.Normalizations.registered[R]("inject",N,B),G="transform",B=C(N).transformCache[R];else{if(w.Hooks.registered[R]){var K=R,ct=w.Hooks.getRoot(R);z=z||w.getPropertyValue(N,ct),B=w.Hooks.injectValue(K,B,z),R=ct}if(w.Normalizations.registered[R]&&(B=w.Normalizations.registered[R]("inject",N,B),R=w.Normalizations.registered[R]("name",N)),G=w.Names.prefixCheck(R)[0],8>=s)try{N.style[G]=B}catch{m.debug&&console.log("Browser does not support ["+B+"] for ["+G+"]")}else C(N)&&C(N).isSVG&&w.Names.SVGAttribute(R)?N.setAttribute(R,B):N.style[G]=B;m.debug>=2&&console.log("Set "+R+" ("+G+"): "+B)}return[G,B]},flushTransformCache:function(N){function R(K){return parseFloat(w.getPropertyValue(N,K))}var B="";if((s||m.State.isAndroid&&!m.State.isChrome)&&C(N).isSVG){var z={translate:[R("translateX"),R("translateY")],skewX:[R("skewX")],skewY:[R("skewY")],scale:R("scale")!==1?[R("scale"),R("scale")]:[R("scaleX"),R("scaleY")],rotate:[R("rotateZ"),0,0]};n.each(C(N).transformCache,function(K){/^translate/i.test(K)?K="translate":/^scale/i.test(K)?K="scale":/^rotate/i.test(K)&&(K="rotate"),z[K]&&(B+=K+"("+z[K].join(" ")+") ",delete z[K])})}else{var H,G;n.each(C(N).transformCache,function(K){return H=C(N).transformCache[K],K==="transformPerspective"?(G=H,!0):(s===9&&K==="rotateZ"&&(K="rotate"),void(B+=K+H+" "))}),G&&(B="perspective"+G+" "+B)}w.setPropertyValue(N,"transform",B)}};w.Hooks.register(),w.Normalizations.register(),m.hook=function(N,R,B){var z=j;return N=_(N),n.each(N,function(H,G){if(C(G)===j&&m.init(G),B===j)z===j&&(z=m.CSS.getPropertyValue(G,R));else{var K=m.CSS.setPropertyValue(G,R,B);K[0]==="transform"&&m.CSS.flushTransformCache(G),z=K}}),z};var A=function N(){function R(){return z?rt.promise||null:H}function B(){function Pt(ie){function Yt(Ht,he){var pe=j,ye=j,fe=j;return o.isArray(Ht)?(pe=Ht[0],!o.isArray(Ht[1])&&/^[\d-]/.test(Ht[1])||o.isFunction(Ht[1])||w.RegEx.isHex.test(Ht[1])?fe=Ht[1]:(o.isString(Ht[1])&&!w.RegEx.isHex.test(Ht[1])||o.isArray(Ht[1]))&&(ye=he?Ht[1]:l(Ht[1],mt.duration),Ht[2]!==j&&(fe=Ht[2]))):pe=Ht,he||(ye=ye||mt.easing),o.isFunction(pe)&&(pe=pe.call(Ot,St,dt)),o.isFunction(fe)&&(fe=fe.call(Ot,St,dt)),[pe||0,ye,fe]}function ue(Ht,he){var pe,ye;return ye=(he||"0").toString().toLowerCase().replace(/[%A-z]+$/,function(fe){return pe=fe,""}),pe||(pe=w.Values.getUnitType(Ht)),[ye,pe]}function oe(){var Ht={myParent:Ot.parentNode||P.body,position:w.getPropertyValue(Ot,"position"),fontSize:w.getPropertyValue(Ot,"fontSize")},he=Ht.position===lt.lastPosition&&Ht.myParent===lt.lastParent,pe=Ht.fontSize===lt.lastFontSize;lt.lastParent=Ht.myParent,lt.lastPosition=Ht.position,lt.lastFontSize=Ht.fontSize;var ye=100,fe={};if(pe&&he)fe.emToPx=lt.lastEmToPx,fe.percentToPxWidth=lt.lastPercentToPxWidth,fe.percentToPxHeight=lt.lastPercentToPxHeight;else{var be=C(Ot).isSVG?P.createElementNS("http://www.w3.org/2000/svg","rect"):P.createElement("div");m.init(be),Ht.myParent.appendChild(be),n.each(["overflow","overflowX","overflowY"],function(Re,Le){m.CSS.setPropertyValue(be,Le,"hidden")}),m.CSS.setPropertyValue(be,"position",Ht.position),m.CSS.setPropertyValue(be,"fontSize",Ht.fontSize),m.CSS.setPropertyValue(be,"boxSizing","content-box"),n.each(["minWidth","maxWidth","width","minHeight","maxHeight","height"],function(Re,Le){m.CSS.setPropertyValue(be,Le,ye+"%")}),m.CSS.setPropertyValue(be,"paddingLeft",ye+"em"),fe.percentToPxWidth=lt.lastPercentToPxWidth=(parseFloat(w.getPropertyValue(be,"width",null,!0))||1)/ye,fe.percentToPxHeight=lt.lastPercentToPxHeight=(parseFloat(w.getPropertyValue(be,"height",null,!0))||1)/ye,fe.emToPx=lt.lastEmToPx=(parseFloat(w.getPropertyValue(be,"paddingLeft"))||1)/ye,Ht.myParent.removeChild(be)}return lt.remToPx===null&&(lt.remToPx=parseFloat(w.getPropertyValue(P.body,"fontSize"))||16),lt.vwToPx===null&&(lt.vwToPx=parseFloat(k.innerWidth)/100,lt.vhToPx=parseFloat(k.innerHeight)/100),fe.remToPx=lt.remToPx,fe.vwToPx=lt.vwToPx,fe.vhToPx=lt.vhToPx,m.debug>=1&&console.log("Unit ratios: "+JSON.stringify(fe),Ot),fe}if(mt.begin&&St===0)try{mt.begin.call(K,K)}catch(Ht){setTimeout(function(){throw Ht},1)}if(et==="scroll"){var ne,Rt,Wt,qt=/^x$/i.test(mt.axis)?"Left":"Top",Gt=parseFloat(mt.offset)||0;mt.container?o.isWrapped(mt.container)||o.isNode(mt.container)?(mt.container=mt.container[0]||mt.container,Wt=(ne=mt.container["scroll"+qt])+n(Ot).position()[qt.toLowerCase()]+Gt):mt.container=null:(ne=m.State.scrollAnchor[m.State["scrollProperty"+qt]],Rt=m.State.scrollAnchor[m.State["scrollProperty"+(qt==="Left"?"Top":"Left")]],Wt=n(Ot).offset()[qt.toLowerCase()]+Gt),zt={scroll:{rootPropertyValue:!1,startValue:ne,currentValue:ne,endValue:Wt,unitType:"",easing:mt.easing,scrollData:{container:mt.container,direction:qt,alternateValue:Rt}},element:Ot},m.debug&&console.log("tweensContainer (scroll): ",zt.scroll,Ot)}else if(et==="reverse"){if(!C(Ot).tweensContainer)return void n.dequeue(Ot,mt.queue);C(Ot).opts.display==="none"&&(C(Ot).opts.display="auto"),C(Ot).opts.visibility==="hidden"&&(C(Ot).opts.visibility="visible"),C(Ot).opts.loop=!1,C(Ot).opts.begin=null,C(Ot).opts.complete=null,it.easing||delete mt.easing,it.duration||delete mt.duration,mt=n.extend({},C(Ot).opts,mt);var Zt=n.extend(!0,{},C(Ot).tweensContainer);for(var D in Zt)if(D!=="element"){var V=Zt[D].startValue;Zt[D].startValue=Zt[D].currentValue=Zt[D].endValue,Zt[D].endValue=V,o.isEmptyObject(it)||(Zt[D].easing=mt.easing),m.debug&&console.log("reverse tweensContainer ("+D+"): "+JSON.stringify(Zt[D]),Ot)}zt=Zt}else if(et==="start"){for(var y in C(Ot).tweensContainer&&C(Ot).isAnimating===!0&&(Zt=C(Ot).tweensContainer),n.each(ct,function(Ht,he){if(RegExp("^"+w.Lists.colors.join("$|^")+"$").test(Ht)){var pe=Yt(he,!0),ye=pe[0],fe=pe[1],be=pe[2];if(w.RegEx.isHex.test(ye)){for(var Re=["Red","Green","Blue"],Le=w.Values.hexToRgb(ye),rn=be?w.Values.hexToRgb(be):j,Ke=0;Ke<Re.length;Ke++){var on=[Le[Ke]];fe&&on.push(fe),rn!==j&&on.push(rn[Ke]),ct[Ht+Re[Ke]]=on}delete ct[Ht]}}}),ct){var I=Yt(ct[y]),Y=I[0],Z=I[1],tt=I[2];y=w.Names.camelCase(y);var wt=w.Hooks.getRoot(y),Et=!1;if(C(Ot).isSVG||wt==="tween"||w.Names.prefixCheck(wt)[1]!==!1||w.Normalizations.registered[wt]!==j){(mt.display!==j&&mt.display!==null&&mt.display!=="none"||mt.visibility!==j&&mt.visibility!=="hidden")&&/opacity|filter/.test(y)&&!tt&&Y!==0&&(tt=0),mt._cacheValues&&Zt&&Zt[y]?(tt===j&&(tt=Zt[y].endValue+Zt[y].unitType),Et=C(Ot).rootPropertyValueCache[wt]):w.Hooks.registered[y]?tt===j?(Et=w.getPropertyValue(Ot,wt),tt=w.getPropertyValue(Ot,y,Et)):Et=w.Hooks.templates[wt][1]:tt===j&&(tt=w.getPropertyValue(Ot,y));var jt,Bt,Vt,Ut=!1;if(tt=(jt=ue(y,tt))[0],Vt=jt[1],Y=(jt=ue(y,Y))[0].replace(/^([+-\/*])=/,function(Ht,he){return Ut=he,""}),Bt=jt[1],tt=parseFloat(tt)||0,Y=parseFloat(Y)||0,Bt==="%"&&(/^(fontSize|lineHeight)$/.test(y)?(Y/=100,Bt="em"):/^scale/.test(y)?(Y/=100,Bt=""):/(Red|Green|Blue)$/i.test(y)&&(Y=Y/100*255,Bt="")),/[\/*]/.test(Ut))Bt=Vt;else if(Vt!==Bt&&tt!==0)if(Y===0)Bt=Vt;else{Ct=Ct||oe();var ee=/margin|padding|left|right|width|text|word|letter/i.test(y)||/X$/.test(y)||y==="x"?"x":"y";switch(Vt){case"%":tt*=ee==="x"?Ct.percentToPxWidth:Ct.percentToPxHeight;break;case"px":break;default:tt*=Ct[Vt+"ToPx"]}switch(Bt){case"%":tt*=1/(ee==="x"?Ct.percentToPxWidth:Ct.percentToPxHeight);break;case"px":break;default:tt*=1/Ct[Bt+"ToPx"]}}switch(Ut){case"+":Y=tt+Y;break;case"-":Y=tt-Y;break;case"*":Y*=tt;break;case"/":Y=tt/Y}zt[y]={rootPropertyValue:Et,startValue:tt,currentValue:tt,endValue:Y,unitType:Bt,easing:Z},m.debug&&console.log("tweensContainer ("+y+"): "+JSON.stringify(zt[y]),Ot)}else m.debug&&console.log("Skipping ["+wt+"] due to a lack of browser support.")}zt.element=Ot}zt.element&&(w.Values.addClass(Ot,"velocity-animating"),At.push(zt),mt.queue===""&&(C(Ot).tweensContainer=zt,C(Ot).opts=mt),C(Ot).isAnimating=!0,St===dt-1?(m.State.calls.push([At,K,mt,null,rt.resolver]),m.State.isTicking===!1&&(m.State.isTicking=!0,f())):St++)}var Ct,Ot=this,mt=n.extend({},m.defaults,it),zt={};switch(C(Ot)===j&&m.init(Ot),parseFloat(mt.delay)&&mt.queue!==!1&&n.queue(Ot,mt.queue,function(ie){m.velocityQueueEntryFlag=!0,C(Ot).delayTimer={setTimeout:setTimeout(ie,parseFloat(mt.delay)),next:ie}}),mt.duration.toString().toLowerCase()){case"fast":mt.duration=200;break;case"normal":mt.duration=t;break;case"slow":mt.duration=600;break;default:mt.duration=parseFloat(mt.duration)||1}m.mock!==!1&&(m.mock===!0?mt.duration=mt.delay=1:(mt.duration*=parseFloat(m.mock)||1,mt.delay*=parseFloat(m.mock)||1)),mt.easing=l(mt.easing,mt.duration),mt.begin&&!o.isFunction(mt.begin)&&(mt.begin=null),mt.progress&&!o.isFunction(mt.progress)&&(mt.progress=null),mt.complete&&!o.isFunction(mt.complete)&&(mt.complete=null),mt.display!==j&&mt.display!==null&&(mt.display=mt.display.toString().toLowerCase(),mt.display==="auto"&&(mt.display=m.CSS.Values.getDisplayType(Ot))),mt.visibility!==j&&mt.visibility!==null&&(mt.visibility=mt.visibility.toString().toLowerCase()),mt.mobileHA=mt.mobileHA&&m.State.isMobile&&!m.State.isGingerbread,mt.queue===!1?mt.delay?setTimeout(Pt,mt.delay):Pt():n.queue(Ot,mt.queue,function(ie,Yt){return Yt===!0?(rt.promise&&rt.resolver(K),!0):(m.velocityQueueEntryFlag=!0,void Pt())}),mt.queue!==""&&mt.queue!=="fx"||n.queue(Ot)[0]==="inprogress"||n.dequeue(Ot)}var z,H,G,K,ct,it,ht=arguments[0]&&(arguments[0].p||n.isPlainObject(arguments[0].properties)&&!arguments[0].properties.names||o.isString(arguments[0].properties));if(o.isWrapped(this)?(z=!1,G=0,K=this,H=this):(z=!0,G=1,K=ht?arguments[0].elements||arguments[0].e:arguments[0]),K=_(K)){ht?(ct=arguments[0].properties||arguments[0].p,it=arguments[0].options||arguments[0].o):(ct=arguments[G],it=arguments[G+1]);var dt=K.length,St=0;if(!/^(stop|finish)$/i.test(ct)&&!n.isPlainObject(it)){var pt=G+1;it={};for(var Q=pt;Q<arguments.length;Q++)o.isArray(arguments[Q])||!/^(fast|normal|slow)$/i.test(arguments[Q])&&!/^\d/.test(arguments[Q])?o.isString(arguments[Q])||o.isArray(arguments[Q])?it.easing=arguments[Q]:o.isFunction(arguments[Q])&&(it.complete=arguments[Q]):it.duration=arguments[Q]}var et,rt={promise:null,resolver:null,rejecter:null};switch(z&&m.Promise&&(rt.promise=new m.Promise(function(Pt,Ct){rt.resolver=Pt,rt.rejecter=Ct})),ct){case"scroll":et="scroll";break;case"reverse":et="reverse";break;case"finish":case"stop":n.each(K,function(Pt,Ct){C(Ct)&&C(Ct).delayTimer&&(clearTimeout(C(Ct).delayTimer.setTimeout),C(Ct).delayTimer.next&&C(Ct).delayTimer.next(),delete C(Ct).delayTimer)});var ot=[];return n.each(m.State.calls,function(Pt,Ct){Ct&&n.each(Ct[1],function(Ot,mt){var zt=it===j?"":it;return zt!==!0&&Ct[2].queue!==zt&&(it!==j||Ct[2].queue!==!1)||void n.each(K,function(ie,Yt){Yt===mt&&((it===!0||o.isString(it))&&(n.each(n.queue(Yt,o.isString(it)?it:""),function(ue,oe){o.isFunction(oe)&&oe(null,!0)}),n.queue(Yt,o.isString(it)?it:"",[])),ct==="stop"?(C(Yt)&&C(Yt).tweensContainer&&zt!==!1&&n.each(C(Yt).tweensContainer,function(ue,oe){oe.endValue=oe.currentValue}),ot.push(Pt)):ct==="finish"&&(Ct[2].duration=1))})})}),ct==="stop"&&(n.each(ot,function(Pt,Ct){v(Ct,!0)}),rt.promise&&rt.resolver(K)),R();default:if(!n.isPlainObject(ct)||o.isEmptyObject(ct)){if(o.isString(ct)&&m.Redirects[ct]){var gt=(yt=n.extend({},it)).duration,J=yt.delay||0;return yt.backwards===!0&&(K=n.extend(!0,[],K).reverse()),n.each(K,function(Pt,Ct){parseFloat(yt.stagger)?yt.delay=J+parseFloat(yt.stagger)*Pt:o.isFunction(yt.stagger)&&(yt.delay=J+yt.stagger.call(Ct,Pt,dt)),yt.drag&&(yt.duration=parseFloat(gt)||(/^(callout|transition)/.test(ct)?1e3:t),yt.duration=Math.max(yt.duration*(yt.backwards?1-Pt/dt:(Pt+1)/dt),.75*yt.duration,200)),m.Redirects[ct].call(Ct,Ct,yt||{},Pt,dt,K,rt.promise?rt:j)}),R()}var at="Velocity: First argument ("+ct+") was not a property map, a known action, or a registered redirect. Aborting.";return rt.promise?rt.rejecter(new Error(at)):console.log(at),R()}et="start"}var bt,yt,lt={lastParent:null,lastPosition:null,lastFontSize:null,lastPercentToPxWidth:null,lastPercentToPxHeight:null,lastEmToPx:null,remToPx:null,vwToPx:null,vhToPx:null},At=[];if(n.each(K,function(Pt,Ct){o.isNode(Ct)&&B.call(Ct)}),(yt=n.extend({},m.defaults,it)).loop=parseInt(yt.loop),bt=2*yt.loop-1,yt.loop)for(var Dt=0;bt>Dt;Dt++){var It={delay:yt.delay,progress:yt.progress};Dt===bt-1&&(It.display=yt.display,It.visibility=yt.visibility,It.complete=yt.complete),N(K,"reverse",It)}return R()}};(m=n.extend(A,m)).animate=A;var F=k.requestAnimationFrame||i;return m.State.isMobile||P.hidden===j||P.addEventListener("visibilitychange",function(){P.hidden?(F=function(N){return setTimeout(function(){N(!0)},16)},f()):F=k.requestAnimationFrame||i}),L.Velocity=m,L!==k&&(L.fn.velocity=A,L.fn.velocity.defaults=m.defaults),n.each(["Down","Up"],function(N,R){m.Redirects["slide"+R]=function(B,z,H,G,K,ct){var it=n.extend({},z),ht=it.begin,dt=it.complete,St={height:"",marginTop:"",marginBottom:"",paddingTop:"",paddingBottom:""},pt={};it.display===j&&(it.display=R==="Down"?m.CSS.Values.getDisplayType(B)==="inline"?"inline-block":"block":"none"),it.begin=function(){for(var Q in ht&&ht.call(K,K),St){pt[Q]=B.style[Q];var et=m.CSS.getPropertyValue(B,Q);St[Q]=R==="Down"?[et,0]:[0,et]}pt.overflow=B.style.overflow,B.style.overflow="hidden"},it.complete=function(){for(var Q in pt)B.style[Q]=pt[Q];dt&&dt.call(K,K),ct&&ct.resolver(K)},m(B,St,it)}}),n.each(["In","Out"],function(N,R){m.Redirects["fade"+R]=function(B,z,H,G,K,ct){var it=n.extend({},z),ht={opacity:R==="In"?1:0},dt=it.complete;it.complete=H!==G-1?it.begin=null:function(){dt&&dt.call(K,K),ct&&ct.resolver(K)},it.display===j&&(it.display=R==="In"?"auto":"none"),m(this,ht,it)}}),m}jQuery.fn.velocity=jQuery.fn.animate}(window.jQuery||window.Zepto||window,window,document)},O(T)=="object"&&O(T.exports)=="object"?T.exports=c():typeof define=="function"&&a(55)?define(c):c())}).call(this,a(87)(U))},function(U,st,a){"use strict";var T=a(3),c=a(1),O=a(148),L=a(7),k=a(32),P=a(11),j=a(103),_=O.ArrayBuffer,C=O.DataView,u=_.prototype.slice;T({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:c(function(){return!new _(2).slice(1,void 0).byteLength})},{slice:function(d,l){if(u!==void 0&&l===void 0)return u.call(L(this),d);for(var f=L(this).byteLength,v=k(d,f),n=k(l===void 0?f:l,f),s=new(j(this,_))(P(n-v)),i=new C(this),o=new C(s),p=0;v<n;)o.setUint8(p++,i.getUint8(v++));return s}})},function(U,st,a){var T=a(14);U.exports=function(c,O,L){for(var k in O)T(c,k,O[k],L);return c}},function(U,st,a){a(173)("Float32",4,function(T){return function(c,O,L){return T(this,c,O,L)}})},function(U,st,a){"use strict";var T=a(3),c=a(0),O=a(9),L=a(174),k=a(56),P=a(148),j=a(149),_=a(17),C=a(6),u=a(11),d=a(150),l=a(151),f=a(19),v=a(4),n=a(76),s=a(5),i=a(34),o=a(70),p=a(27).f,t=a(177),x=a(23).forEach,m=a(126),S=a(8),w=a(26),A=a(21),F=A.get,N=A.set,R=S.f,B=w.f,z=Math.round,H=c.RangeError,G=P.ArrayBuffer,K=P.DataView,ct=k.NATIVE_ARRAY_BUFFER_VIEWS,it=k.TYPED_ARRAY_TAG,ht=k.TypedArray,dt=k.TypedArrayPrototype,St=k.aTypedArrayConstructor,pt=k.isTypedArray,Q=function(at,bt){for(var yt=0,lt=bt.length,At=new(St(at))(lt);lt>yt;)At[yt]=bt[yt++];return At},et=function(at,bt){R(at,bt,{get:function(){return F(this)[bt]}})},rt=function(at){var bt;return at instanceof G||(bt=n(at))=="ArrayBuffer"||bt=="SharedArrayBuffer"},ot=function(at,bt){return pt(at)&&typeof bt!="symbol"&&bt in at&&String(+bt)==String(bt)},gt=function(at,bt){return ot(at,bt=f(bt,!0))?_(2,at[bt]):B(at,bt)},J=function(at,bt,yt){return!(ot(at,bt=f(bt,!0))&&s(yt)&&v(yt,"value"))||v(yt,"get")||v(yt,"set")||yt.configurable||v(yt,"writable")&&!yt.writable||v(yt,"enumerable")&&!yt.enumerable?R(at,bt,yt):(at[bt]=yt.value,at)};O?(ct||(w.f=gt,S.f=J,et(dt,"buffer"),et(dt,"byteOffset"),et(dt,"byteLength"),et(dt,"length")),T({target:"Object",stat:!0,forced:!ct},{getOwnPropertyDescriptor:gt,defineProperty:J}),U.exports=function(at,bt,yt,lt){var At=at+(lt?"Clamped":"")+"Array",Dt="get"+at,It="set"+at,Pt=c[At],Ct=Pt,Ot=Ct&&Ct.prototype,mt={},zt=function(ie,Yt){R(ie,Yt,{get:function(){return function(ue,oe){var ne=F(ue);return ne.view[Dt](oe*bt+ne.byteOffset,!0)}(this,Yt)},set:function(ue){return function(oe,ne,Rt){var Wt=F(oe);lt&&(Rt=(Rt=z(Rt))<0?0:Rt>255?255:255&Rt),Wt.view[It](ne*bt+Wt.byteOffset,Rt,!0)}(this,Yt,ue)},enumerable:!0})};ct?L&&(Ct=yt(function(ie,Yt,ue,oe){return j(ie,Ct,At),s(Yt)?rt(Yt)?oe!==void 0?new Pt(Yt,l(ue,bt),oe):ue!==void 0?new Pt(Yt,l(ue,bt)):new Pt(Yt):pt(Yt)?Q(Ct,Yt):t.call(Ct,Yt):new Pt(d(Yt))}),o&&o(Ct,ht),x(p(Pt),function(ie){ie in Ct||C(Ct,ie,Pt[ie])}),Ct.prototype=Ot):(Ct=yt(function(ie,Yt,ue,oe){j(ie,Ct,At);var ne,Rt,Wt,qt=0,Gt=0;if(s(Yt)){if(!rt(Yt))return pt(Yt)?Q(Ct,Yt):t.call(Ct,Yt);ne=Yt,Gt=l(ue,bt);var Zt=Yt.byteLength;if(oe===void 0){if(Zt%bt||(Rt=Zt-Gt)<0)throw H("Wrong length")}else if((Rt=u(oe)*bt)+Gt>Zt)throw H("Wrong length");Wt=Rt/bt}else Wt=d(Yt),ne=new G(Rt=Wt*bt);for(N(ie,{buffer:ne,byteOffset:Gt,byteLength:Rt,length:Wt,view:new K(ne)});qt<Wt;)zt(ie,qt++)}),o&&o(Ct,ht),Ot=Ct.prototype=i(dt)),Ot.constructor!==Ct&&C(Ot,"constructor",Ct),it&&C(Ot,it,At),mt[At]=Ct,T({global:!0,forced:Ct!=Pt,sham:!ct},mt),"BYTES_PER_ELEMENT"in Ct||C(Ct,"BYTES_PER_ELEMENT",bt),"BYTES_PER_ELEMENT"in Ot||C(Ot,"BYTES_PER_ELEMENT",bt),m(At)}):U.exports=function(){}},function(U,st,a){var T=a(0),c=a(1),O=a(175),L=a(56).NATIVE_ARRAY_BUFFER_VIEWS,k=T.ArrayBuffer,P=T.Int8Array;U.exports=!L||!c(function(){P(1)})||!c(function(){new P(-1)})||!O(function(j){new P,new P(null),new P(1.5),new P(j)},!0)||c(function(){return new P(new k(2),1,void 0).length!==1})},function(U,st,a){var T=a(2)("iterator"),c=!1;try{var O=0,L={next:function(){return{done:!!O++}},return:function(){c=!0}};L[T]=function(){return this},Array.from(L,function(){throw 2})}catch{}U.exports=function(k,P){if(!P&&!c)return!1;var j=!1;try{var _={};_[T]=function(){return{next:function(){return{done:j=!0}}}},k(_)}catch{}return j}},function(U,st,a){var T=a(12);U.exports=function(c){var O=T(c);if(O<0)throw RangeError("The argument can't be less than 0");return O}},function(U,st,a){var T=a(16),c=a(11),O=a(178),L=a(179),k=a(75),P=a(56).aTypedArrayConstructor;U.exports=function(j){var _,C,u,d,l,f,v=T(j),n=arguments.length,s=n>1?arguments[1]:void 0,i=s!==void 0,o=O(v);if(o!=null&&!L(o))for(f=(l=o.call(v)).next,v=[];!(d=f.call(l)).done;)v.push(d.value);for(i&&n>2&&(s=k(s,arguments[2],2)),C=c(v.length),u=new(P(this))(C),_=0;C>_;_++)u[_]=i?s(v[_],_):v[_];return u}},function(U,st,a){var T=a(76),c=a(40),O=a(2)("iterator");U.exports=function(L){if(L!=null)return L[O]||L["@@iterator"]||c[T(L)]}},function(U,st,a){var T=a(2),c=a(40),O=T("iterator"),L=Array.prototype;U.exports=function(k){return k!==void 0&&(c.Array===k||L[O]===k)}},function(U,st,a){"use strict";var T=a(56),c=a(181),O=T.aTypedArray;T.exportProto("copyWithin",function(L,k){return c.call(O(this),L,k,arguments.length>2?arguments[2]:void 0)})},function(U,st,a){"use strict";var T=a(16),c=a(32),O=a(11),L=Math.min;U.exports=[].copyWithin||function(k,P){var j=T(this),_=O(j.length),C=c(k,_),u=c(P,_),d=arguments.length>2?arguments[2]:void 0,l=L((d===void 0?_:c(d,_))-u,_-C),f=1;for(u<C&&C<u+l&&(f=-1,u+=l-1,C+=l-1);l-- >0;)u in j?j[C]=j[u]:delete j[C],C+=f,u+=f;return j}},function(U,st,a){"use strict";var T=a(56),c=a(23).every,O=T.aTypedArray;T.exportProto("every",function(L){return c(O(this),L,arguments.length>1?arguments[1]:void 0)})},function(U,st,a){"use strict";var T=a(56),c=a(132),O=T.aTypedArray;T.exportProto("fill",function(L){return c.apply(O(this),arguments)})},function(U,st,a){"use strict";var T=a(56),c=a(23).filter,O=a(103),L=T.aTypedArray,k=T.aTypedArrayConstructor;T.exportProto("filter",function(P){for(var j=c(L(this),P,arguments.length>1?arguments[1]:void 0),_=O(this,this.constructor),C=0,u=j.length,d=new(k(_))(u);u>C;)d[C]=j[C++];return d})},function(U,st,a){"use strict";var T=a(56),c=a(23).find,O=T.aTypedArray;T.exportProto("find",function(L){return c(O(this),L,arguments.length>1?arguments[1]:void 0)})},function(U,st,a){"use strict";var T=a(56),c=a(23).findIndex,O=T.aTypedArray;T.exportProto("findIndex",function(L){return c(O(this),L,arguments.length>1?arguments[1]:void 0)})},function(U,st,a){"use strict";var T=a(56),c=a(23).forEach,O=T.aTypedArray;T.exportProto("forEach",function(L){c(O(this),L,arguments.length>1?arguments[1]:void 0)})},function(U,st,a){"use strict";var T=a(56),c=a(41).includes,O=T.aTypedArray;T.exportProto("includes",function(L){return c(O(this),L,arguments.length>1?arguments[1]:void 0)})},function(U,st,a){"use strict";var T=a(56),c=a(41).indexOf,O=T.aTypedArray;T.exportProto("indexOf",function(L){return c(O(this),L,arguments.length>1?arguments[1]:void 0)})},function(U,st,a){"use strict";var T=a(0),c=a(56),O=a(54),L=a(2)("iterator"),k=T.Uint8Array,P=O.values,j=O.keys,_=O.entries,C=c.aTypedArray,u=c.exportProto,d=k&&k.prototype[L],l=!!d&&(d.name=="values"||d.name==null),f=function(){return P.call(C(this))};u("entries",function(){return _.call(C(this))}),u("keys",function(){return j.call(C(this))}),u("values",f,!l),u(L,f,!l)},function(U,st,a){"use strict";var T=a(56),c=T.aTypedArray,O=[].join;T.exportProto("join",function(L){return O.apply(c(this),arguments)})},function(U,st,a){"use strict";var T=a(56),c=a(130),O=T.aTypedArray;T.exportProto("lastIndexOf",function(L){return c.apply(O(this),arguments)})},function(U,st,a){"use strict";var T=a(56),c=a(23).map,O=a(103),L=T.aTypedArray,k=T.aTypedArrayConstructor;T.exportProto("map",function(P){return c(L(this),P,arguments.length>1?arguments[1]:void 0,function(j,_){return new(k(O(j,j.constructor)))(_)})})},function(U,st,a){"use strict";var T=a(56),c=a(107).left,O=T.aTypedArray;T.exportProto("reduce",function(L){return c(O(this),L,arguments.length,arguments.length>1?arguments[1]:void 0)})},function(U,st,a){"use strict";var T=a(56),c=a(107).right,O=T.aTypedArray;T.exportProto("reduceRight",function(L){return c(O(this),L,arguments.length,arguments.length>1?arguments[1]:void 0)})},function(U,st,a){"use strict";var T=a(56),c=T.aTypedArray,O=Math.floor;T.exportProto("reverse",function(){for(var L,k=c(this).length,P=O(k/2),j=0;j<P;)L=this[j],this[j++]=this[--k],this[k]=L;return this})},function(U,st,a){"use strict";var T=a(56),c=a(11),O=a(151),L=a(16),k=a(1),P=T.aTypedArray,j=k(function(){new Int8Array(1).set({})});T.exportProto("set",function(_){P(this);var C=O(arguments.length>1?arguments[1]:void 0,1),u=this.length,d=L(_),l=c(d.length),f=0;if(l+C>u)throw RangeError("Wrong length");for(;f<l;)this[C+f]=d[f++]},j)},function(U,st,a){"use strict";var T=a(56),c=a(103),O=a(1),L=T.aTypedArray,k=T.aTypedArrayConstructor,P=[].slice,j=O(function(){new Int8Array(1).slice()});T.exportProto("slice",function(_,C){for(var u=P.call(L(this),_,C),d=c(this,this.constructor),l=0,f=u.length,v=new(k(d))(f);f>l;)v[l]=u[l++];return v},j)},function(U,st,a){"use strict";var T=a(56),c=a(23).some,O=T.aTypedArray;T.exportProto("some",function(L){return c(O(this),L,arguments.length>1?arguments[1]:void 0)})},function(U,st,a){"use strict";var T=a(56),c=T.aTypedArray,O=[].sort;T.exportProto("sort",function(L){return O.call(c(this),L)})},function(U,st,a){"use strict";var T=a(56),c=a(11),O=a(32),L=a(103),k=T.aTypedArray;T.exportProto("subarray",function(P,j){var _=k(this),C=_.length,u=O(P,C);return new(L(_,_.constructor))(_.buffer,_.byteOffset+u*_.BYTES_PER_ELEMENT,c((j===void 0?C:O(j,C))-u))})},function(U,st,a){"use strict";var T=a(0),c=a(56),O=a(1),L=T.Int8Array,k=c.aTypedArray,P=[].toLocaleString,j=[].slice,_=!!L&&O(function(){P.call(new L(1))}),C=O(function(){return[1,2].toLocaleString()!=new L([1,2]).toLocaleString()})||!O(function(){L.prototype.toLocaleString.call([1,2])});c.exportProto("toLocaleString",function(){return P.apply(_?j.call(k(this)):k(this),arguments)},C)},function(U,st,a){"use strict";var T=a(0),c=a(56),O=a(1),L=T.Uint8Array,k=L&&L.prototype,P=[].toString,j=[].join;O(function(){P.call({})})&&(P=function(){return j.call(this)}),c.exportProto("toString",P,(k||{}).toString!=P)},function(U,st,a){"use strict";(function(T){a(78),a(81),a(82),a(91),a(54),a(101),a(104),a(123),a(71),a(106),a(84),a(85);function c(O){return(c=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(L){return typeof L}:function(L){return L&&typeof Symbol=="function"&&L.constructor===Symbol&&L!==Symbol.prototype?"symbol":typeof L})(O)}/*!
56
- * Waves v0.7.6
57
- * http://fian.my.id/Waves
58
- *
59
- * Copyright 2014-2018 Alfiana E. Sibuea and other contributors
60
- * Released under the MIT license
61
- * https://github.com/fians/Waves/blob/master/LICENSE
62
- */(function(O,L){typeof define=="function"&&a(55)?define([],function(){return O.Waves=L.call(O),O.Waves}):(typeof exports>"u"?"undefined":c(exports))==="object"?T.exports=L.call(O):O.Waves=L.call(O)})((typeof window>"u"?"undefined":c(window))==="object"?window:void 0,function(){var O=O||{},L=document.querySelectorAll.bind(document),k=Object.prototype.toString,P="ontouchstart"in window;function j(s){var i=c(s);return i==="function"||i==="object"&&!!s}function _(s){var i,o=k.call(s);return o==="[object String]"?L(s):j(s)&&/^\[object (Array|HTMLCollection|NodeList|Object)\]$/.test(o)&&s.hasOwnProperty("length")?s:j(i=s)&&i.nodeType>0?[s]:[]}function C(s){var i,o,p={top:0,left:0},t=s&&s.ownerDocument;return i=t.documentElement,c(s.getBoundingClientRect)!=="undefined"&&(p=s.getBoundingClientRect()),o=function(x){return(m=x)!==null&&m===m.window?x:x.nodeType===9&&x.defaultView;var m}(t),{top:p.top+o.pageYOffset-i.clientTop,left:p.left+o.pageXOffset-i.clientLeft}}function u(s){var i="";for(var o in s)s.hasOwnProperty(o)&&(i+=o+":"+s[o]+";");return i}var d={duration:750,delay:200,show:function(s,i,o){if(s.button===2)return!1;i=i||this;var p=document.createElement("div");p.className="waves-ripple waves-rippling",i.appendChild(p);var t=C(i),x=0,m=0;"touches"in s&&s.touches.length?(x=s.touches[0].pageY-t.top,m=s.touches[0].pageX-t.left):(x=s.pageY-t.top,m=s.pageX-t.left),m=m>=0?m:0,x=x>=0?x:0;var S="scale("+i.clientWidth/100*3+")",w="translate(0,0)";o&&(w="translate("+o.x+"px, "+o.y+"px)"),p.setAttribute("data-hold",Date.now()),p.setAttribute("data-x",m),p.setAttribute("data-y",x),p.setAttribute("data-scale",S),p.setAttribute("data-translate",w);var A={top:x+"px",left:m+"px"};p.classList.add("waves-notransition"),p.setAttribute("style",u(A)),p.classList.remove("waves-notransition"),A["-webkit-transform"]=S+" "+w,A["-moz-transform"]=S+" "+w,A["-ms-transform"]=S+" "+w,A["-o-transform"]=S+" "+w,A.transform=S+" "+w,A.opacity="1";var F=s.type==="mousemove"?2500:d.duration;A["-webkit-transition-duration"]=F+"ms",A["-moz-transition-duration"]=F+"ms",A["-o-transition-duration"]=F+"ms",A["transition-duration"]=F+"ms",p.setAttribute("style",u(A))},hide:function(s,i){for(var o=(i=i||this).getElementsByClassName("waves-rippling"),p=0,t=o.length;p<t;p++)f(s,i,o[p]);P&&(i.removeEventListener("touchend",d.hide),i.removeEventListener("touchcancel",d.hide)),i.removeEventListener("mouseup",d.hide),i.removeEventListener("mouseleave",d.hide)}},l={input:function(s){var i=s.parentNode;if(i.tagName.toLowerCase()!=="span"||!i.classList.contains("waves-effect")){var o=document.createElement("span");o.className="waves-input-wrapper",i.replaceChild(o,s),o.appendChild(s)}},img:function(s){var i=s.parentNode;if(i.tagName.toLowerCase()!=="i"||!i.classList.contains("waves-effect")){var o=document.createElement("i");i.replaceChild(o,s),o.appendChild(s)}}};function f(s,i,o){if(o){o.classList.remove("waves-rippling");var p=o.getAttribute("data-x"),t=o.getAttribute("data-y"),x=o.getAttribute("data-scale"),m=o.getAttribute("data-translate"),S=350-(Date.now()-Number(o.getAttribute("data-hold")));S<0&&(S=0),s.type==="mousemove"&&(S=150);var w=s.type==="mousemove"?2500:d.duration;setTimeout(function(){var A={top:t+"px",left:p+"px",opacity:"0","-webkit-transition-duration":w+"ms","-moz-transition-duration":w+"ms","-o-transition-duration":w+"ms","transition-duration":w+"ms","-webkit-transform":x+" "+m,"-moz-transform":x+" "+m,"-ms-transform":x+" "+m,"-o-transform":x+" "+m,transform:x+" "+m};o.setAttribute("style",u(A)),setTimeout(function(){try{i.removeChild(o)}catch{return!1}},w)},S)}}var v={touches:0,allowEvent:function(s){var i=!0;return/^(mousedown|mousemove)$/.test(s.type)&&v.touches&&(i=!1),i},registerEvent:function(s){var i=s.type;i==="touchstart"?v.touches+=1:/^(touchend|touchcancel)$/.test(i)&&setTimeout(function(){v.touches&&(v.touches-=1)},500)}};function n(s){var i=function(S){if(v.allowEvent(S)===!1)return null;for(var w=null,A=S.target||S.srcElement;A.parentElement;){if(!(A instanceof SVGElement)&&A.classList.contains("waves-effect")){w=A;break}A=A.parentElement}return w}(s);if(i!==null){if(i.disabled||i.getAttribute("disabled")||i.classList.contains("disabled"))return;if(v.registerEvent(s),s.type==="touchstart"&&d.delay){var o=!1,p=setTimeout(function(){p=null,d.show(s,i)},d.delay),t=function(S){p&&(clearTimeout(p),p=null,d.show(s,i)),o||(o=!0,d.hide(S,i)),m()},x=function(S){p&&(clearTimeout(p),p=null),t(S),m()};i.addEventListener("touchmove",x,!1),i.addEventListener("touchend",t,!1),i.addEventListener("touchcancel",t,!1);var m=function(){i.removeEventListener("touchmove",x),i.removeEventListener("touchend",t),i.removeEventListener("touchcancel",t)}}else d.show(s,i),P&&(i.addEventListener("touchend",d.hide,!1),i.addEventListener("touchcancel",d.hide,!1)),i.addEventListener("mouseup",d.hide,!1),i.addEventListener("mouseleave",d.hide,!1)}}return O.init=function(s){var i=document.body;"duration"in(s=s||{})&&(d.duration=s.duration),"delay"in s&&(d.delay=s.delay),P&&(i.addEventListener("touchstart",n,!1),i.addEventListener("touchcancel",v.registerEvent,!1),i.addEventListener("touchend",v.registerEvent,!1)),i.addEventListener("mousedown",n,!1)},O.attach=function(s,i){var o,p;s=_(s),k.call(i)==="[object Array]"&&(i=i.join(" ")),i=i?" "+i:"";for(var t=0,x=s.length;t<x;t++)p=(o=s[t]).tagName.toLowerCase(),["input","img"].indexOf(p)!==-1&&(l[p](o),o=o.parentElement),o.className.indexOf("waves-effect")===-1&&(o.className+=" waves-effect"+i)},O.ripple=function(s,i){var o=(s=_(s)).length;if((i=i||{}).wait=i.wait||0,i.position=i.position||null,o)for(var p,t,x,m={},S=0,w={type:"mousedown",button:1},A=function(F,N){return function(){d.hide(F,N)}};S<o;S++)p=s[S],t=i.position||{x:p.clientWidth/2,y:p.clientHeight/2},x=C(p),m.x=x.left+t.x,m.y=x.top+t.y,w.pageX=m.x,w.pageY=m.y,d.show(w,p),i.wait>=0&&i.wait!==null&&setTimeout(A({type:"mouseup",button:1},p),i.wait)},O.calm=function(s){for(var i={type:"mouseup",button:1},o=0,p=(s=_(s)).length;o<p;o++)d.hide(i,s[o])},O.displayEffect=function(s){console.error("Waves.displayEffect() has been deprecated and will be removed in future version. Please use Waves.init() to initialize Waves effect"),O.init(s)},O}),$(document).ready(function(){Waves.attach(".btn:not(.btn-flat), .btn-floating",["waves-light"]),Waves.attach(".btn-flat"),Waves.attach(".chip"),Waves.attach(".view a .mask",["waves-light"]),Waves.attach(".waves-light",["waves-light"]),Waves.attach(".navbar-nav a:not(.navbar-brand), .nav-icons li a, .nav-tabs .nav-item:not(.dropdown)",["waves-light"]),Waves.attach(".pager li a",["waves-light"]),Waves.attach(".pagination .page-item .page-link"),Waves.init()})}).call(this,a(87)(U))}]);