@fmidev/smartmet-alert-client 4.4.19 → 4.7.0-alpha.0

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 (105) hide show
  1. package/.eslintignore +2 -14
  2. package/.github/workflows/test.yaml +26 -0
  3. package/.nvmrc +1 -0
  4. package/dist/index.html +5 -0
  5. package/dist/index.js +105 -135
  6. package/dist/index.mjs +112 -135
  7. package/dist/locale-en-DCEKDw5G.js +8 -0
  8. package/dist/locale-fi-DPiOM1rB.js +8 -0
  9. package/dist/locale-sv-B0FlbgEF.js +8 -0
  10. package/dist/vendor-Cfkkvdz7.js +21 -0
  11. package/dist/vue/index.mjs +15245 -0
  12. package/dist/vue/style.css +1 -0
  13. package/dist/xml-parser-BiNO9kc-.js +13 -0
  14. package/package.json +60 -24
  15. package/src/AlertClientVue.vue +170 -0
  16. package/src/App.vue +55 -205
  17. package/src/assets/img/ui/arrow-down.svg +4 -11
  18. package/src/assets/img/ui/arrow-up.svg +4 -11
  19. package/src/assets/img/ui/clear.svg +7 -21
  20. package/src/assets/img/ui/close.svg +4 -15
  21. package/src/assets/img/ui/toggle-selected.svg +5 -6
  22. package/src/assets/img/ui/toggle-unselected.svg +5 -6
  23. package/src/assets/img/warning/cold-weather.svg +3 -6
  24. package/src/assets/img/warning/flood-level-3.svg +4 -7
  25. package/src/assets/img/warning/forest-fire-weather.svg +2 -6
  26. package/src/assets/img/warning/grass-fire-weather.svg +2 -6
  27. package/src/assets/img/warning/hot-weather.svg +3 -6
  28. package/src/assets/img/warning/pedestrian-safety.svg +3 -7
  29. package/src/assets/img/warning/rain.svg +2 -7
  30. package/src/assets/img/warning/sea-icing.svg +2 -6
  31. package/src/assets/img/warning/sea-thunder-storm.svg +2 -5
  32. package/src/assets/img/warning/sea-water-height-high-water.svg +3 -8
  33. package/src/assets/img/warning/sea-water-height-shallow-water.svg +3 -7
  34. package/src/assets/img/warning/sea-wave-height.svg +4 -7
  35. package/src/assets/img/warning/sea-wind-legend.svg +2 -5
  36. package/src/assets/img/warning/sea-wind.svg +2 -5
  37. package/src/assets/img/warning/several.svg +2 -5
  38. package/src/assets/img/warning/thunder-storm.svg +2 -5
  39. package/src/assets/img/warning/traffic-weather.svg +2 -6
  40. package/src/assets/img/warning/uv-note.svg +2 -6
  41. package/src/assets/img/warning/wind.svg +2 -5
  42. package/src/components/AlertClient.vue +41 -19
  43. package/src/components/CollapsiblePanel.vue +284 -0
  44. package/src/components/DayLarge.vue +12 -7
  45. package/src/components/DaySmall.vue +16 -6
  46. package/src/components/Days.vue +76 -51
  47. package/src/components/DescriptionWarning.vue +15 -8
  48. package/src/components/GrayScaleToggle.vue +11 -6
  49. package/src/components/Legend.vue +36 -248
  50. package/src/components/MapLarge.vue +41 -42
  51. package/src/components/MapSmall.vue +44 -28
  52. package/src/components/PopupRow.vue +6 -3
  53. package/src/components/Region.vue +30 -15
  54. package/src/components/RegionWarning.vue +6 -5
  55. package/src/components/Regions.vue +50 -19
  56. package/src/components/Warning.vue +18 -10
  57. package/src/components/Warnings.vue +36 -21
  58. package/src/main.js +1 -0
  59. package/src/mixins/alertClientCore.js +210 -0
  60. package/src/mixins/config.js +262 -256
  61. package/src/mixins/utils.js +40 -26
  62. package/src/plugins/index.js +1 -1
  63. package/src/scss/_utilities.scss +193 -0
  64. package/src/scss/constants.scss +2 -1
  65. package/src/scss/warningImages.scss +8 -3
  66. package/src/vue.js +41 -0
  67. package/svgo.config.js +45 -0
  68. package/tests/README.md +430 -0
  69. package/tests/fixtures/mockWarningData.js +135 -0
  70. package/tests/integration/warning-flow.spec.js +452 -0
  71. package/tests/setup.js +41 -0
  72. package/tests/unit/components/AlertClient.spec.js +734 -0
  73. package/tests/unit/components/DayLarge.spec.js +281 -0
  74. package/tests/unit/components/DaySmall.spec.js +278 -0
  75. package/tests/unit/components/Days.spec.js +565 -0
  76. package/tests/unit/components/DescriptionWarning.spec.js +432 -0
  77. package/tests/unit/components/GrayScaleToggle.spec.js +311 -0
  78. package/tests/unit/components/Legend.spec.js +223 -0
  79. package/tests/unit/components/MapLarge.spec.js +276 -0
  80. package/tests/unit/components/MapSmall.spec.js +226 -0
  81. package/tests/unit/components/PopupRow.spec.js +261 -0
  82. package/tests/unit/components/Region.spec.js +430 -0
  83. package/tests/unit/components/RegionWarning.snapshot.spec.js +73 -0
  84. package/tests/unit/components/RegionWarning.spec.js +408 -0
  85. package/tests/unit/components/Regions.spec.js +335 -0
  86. package/tests/unit/components/Warning.snapshot.spec.js +107 -0
  87. package/tests/unit/components/Warning.spec.js +472 -0
  88. package/tests/unit/components/Warnings.spec.js +329 -0
  89. package/tests/unit/components/__snapshots__/RegionWarning.snapshot.spec.js.snap +21 -0
  90. package/tests/unit/components/__snapshots__/Warning.snapshot.spec.js.snap +199 -0
  91. package/tests/unit/mixins/config.spec.js +269 -0
  92. package/tests/unit/mixins/i18n.spec.js +115 -0
  93. package/tests/unit/mixins/keycodes.spec.js +37 -0
  94. package/tests/unit/mixins/utils.spec.js +624 -0
  95. package/vite.config.js +96 -26
  96. package/vitest.config.js +40 -0
  97. package/dist/index.mjs.map +0 -1
  98. package/dist/index.relative.html +0 -19
  99. package/dist/index.start.html +0 -20
  100. package/playwright.config.ts +0 -18
  101. package/public/index.relative.html +0 -19
  102. package/public/index.start.html +0 -20
  103. package/src/mixins/panzoom.js +0 -900
  104. package/test/snapshot.test.ts +0 -126
  105. package/vitest.config.ts +0 -6
@@ -0,0 +1,8 @@
1
+ /**
2
+ * name: @fmidev/smartmet-alert-client
3
+ * version: v4.7.0-alpha.0
4
+ * description: Web application for viewing weather and flood alerts
5
+ * author: Finnish Meteorological Institute
6
+ * homepage: https://github.com/fmidev/smartmet-alert-client#readme
7
+ */
8
+ const e="Note! If the map is gray and no date is shown on the map, the warnings have not been updated.",n="Ensure network connection. Check that you have updated your browser and operating system.",i="List of supported browsers",a="https://en.ilmatieteenlaitos.fi/site-information",o="An error occurred while searching for the warnings. Please try again in a moment.",t="Warnings for following land areas",s="Warnings for following sea areas",r="Warnings in effect, 5 days",l="Show all warnings",c="Mon",d="Tue",f="Wed",p="Thu",g="Fri",h="Sat",u="Sun",v="Warnings",m="Updated",L="at",w="warning valid between",W="Many warnings in effect",D="No particular awareness is needed",S="Potentially dangerous",y="Dangerous",k="Very dangerous",b="No warnings in effect",A="No warnings",P="info_en",H="Pirkanmaa",F="Kainuu",I="Uusimaa",K="Satakunta",j="Kymenlaakso",T="Ostrobothnia",N="Lapland",B="Åland",C="Quark",M="Sea of Åland",x="Sea of Archipelago",E="Utsjoki",O="Inari",U="Muonio",R="Kolari",z="Savukoski",V="Pelkosenniemi",G="Salla",q="Pello",Y="Ylitornio",Z="Rovaniemi",Q="Tornio",_="Tervola",J="Keminmaa",X="Kemi",$="Simo",ee="Ranua",ne="Posio",ie="Kuusamo",ae="Taivalkoski",oe="Cold warning",te="Flood warning",se="Wildfire warning",re="Grass fire warning",le="Heat wave warning",ce="Pedestrian weather warning",de="Heavy rain warning",fe="Ice accretion warning",pe="Thunderstorm wind gusts for sea areas",ge="Warning for high sea level",he="Warning for low sea level",ue="Wave height warning",ve="Wind warning for sea areas",me="Severe thunderstorm warning",Le="Traffic weather warning",we="UV advisory",We="Wind warning for land areas",De="Cold stress complicates outdoor activities. People with chronic illnesses will experience more symptoms than usual.",Se="Cold stress will significantly complicate all outdoor activities. Symptoms experienced by people with chronic illnesses will become more difficult. Risk of frostbite.",ye="Cold stress will significantly complicate all outdoor activities. Symptoms experienced by people with chronic illnesses will become substantially more difficult. Significant risk of frostbite.",ke="Flooding of fields and forests and minor disruptions are possible.",be="Flood can cause damages to buildings and significant disruptions to traffic.",Ae="Significant risk to human safety and to electricity, water, and telecommunication networks. Flooded buildings and traffic disruptions.",Pe="Danger of wildfires is pronounced due to soil dryness. In case of windy weather wildfires spread quickly.",He="Danger of wildfires is very pronounced due to soil dryness. In case of windy weather wildfires spread quickly.",Fe="Danger of uncontrolled wildfires is pronounced due to soil dryness. The fires spread likely quickly.",Ie="Danger of grass fires is pronounced due to soil dryness. In case of windy weather grass fires spread quickly.",Ke="",je="",Te="Many people with chronic illness will experience more symptoms than usual.",Ne="People with chronic illness will experience significant and difficult symptoms. Heat stress will limit the work capability of healthy people.",Be="This warning level is unlikely with our current climate. Causes very significant health problems. Heat stress will limit the work capability of healthy people.",Ce="Pavements are very slippery. Significant risk for slipping accidents.",Me="",xe="",Ee="Flooding expected in flood-prone underpasses and in low-lying areas. Risk for aquaplaning in road traffic.",Oe="Widespread flooding in built-up regions. Underpasses may be completely filled with water. Streaming flood water can cause danger.",Ue="Severe flooding in urban areas as well as rural areas. Flood ponds and streaming flood water cause danger.",Re="Heavy ice accretion may reduce a vessel's stability and cause hazard for operation.",ze="Heavy ice accretion may reduce a vessel's stability and cause hazard for operation.",Ve="Heavy ice accretion may reduce a vessel's stability and cause hazard for operation.",Ge="Possibly dangerous for recreational crafts and small boats.",qe="Possibly dangerous for recreational crafts and small boats.",Ye="Possibly dangerous for recreational crafts and small boats.",Ze="High water level: Coastal flooding in low-lying areas.",Qe="Flooding on coastal roads may cause roads to be closed. Flood-prone sites will get wet.",_e="Flooding on coastal roads, also in locations without known prior floods. Buildings surrounded by flood water. Significant water damage in built-up areas.",Je="Low water level: Difficulties in cargo transport.",Xe="",$e="",en="Possibly dangerous for recreational crafts and small boats.",nn="Difficulties and danger for marine traffic.",an="Significant difficulties, delays and danger for marine traffic.",on="Possibly dangerous for recreational crafts and small boats.",tn="Difficulties and danger for marine traffic.",sn="Significant difficulties, delays and danger for marine traffic.",rn="Local and sporadic wind damage. Mostly individual fallen trees. Brief and local disruptions in electricity supply.",ln="Wind damage in numerous areas, including areas of uniform damage. Locally a need for significant debris clearance, long-lasting electricity outages and disruptions in telecommunication networks.",cn="Widespread wind damage areas with significant need for debris clearance. Long-lasting disruptions in electricity and drinking water supply as well as telecommunication networks.",dn="Disruptions in traffic flow. Enhanced risk of traffic accidents.",fn="Major traffic disruptions possible. Significant risk of traffic accidents.",pn="Major traffic disruptions likely and traffic connections may be completely broken. Significant risk of traffic accidents.",gn="UV radiation is strong. Unprotected skin may burn when exposed to direct sunlight.",hn="",un="",vn="Individual fallen trees in widespread areas. Brief electricity outages.",mn="Wind damage in numerous areas, including areas of uniform damage. Locally a need for significant debris clearance, long-lasting electricity outages and disruptions in telecommunication networks.",Ln="Widespread wind damage areas with significant need for debris clearance. Long-lasting disruptions in electricity and drinking water supply as well as telecommunication networks.",wn="en-US",Wn="en",Dn="Finnish Meteorological Institute",Sn="Flood Centre",yn="https://www.vesi.fi/",kn="Watershed forecasts and flood warnings",bn="Impact description",An="Zoom in",Pn="Zoom out",Hn="Use the arrow keys to move the map",Fn="Magnifiable map",In="Go to text-formatted warnings",Kn="Warnings",jn="from",Tn="in one area",Nn="in two areas",Bn="in three areas",Cn="in four areas",Mn="in five areas",xn="in six areas",En="in seven areas",On="in eight areas",Un="in nine areas",Rn="in ten areas",zn="in eleven areas",Vn="in twelve areas",Gn="in thirteen areas",qn="in fourteen areas",Yn="in fifteen areas",Zn="Go to next section.",Qn="Show current warnings for",_n="Close current warnings for",Jn=".",Xn="Map legends",$n="Show legends",ei="Hide legends",ni="warnings in effect in",ii="land areas and",ai="sea areas",oi="Gray scale",ti="On",si="Off",ri={notInitializedStart:e,notInitializedEnd:n,supportedBrowsers:i,supportedBrowsersLink:a,failed:o,regionLand:t,regionSea:s,validWarnings:r,showWarnings:l,ma:c,ti:d,ke:f,to:p,pe:g,la:h,su:u,warnings:v,updated:m,atTime:L,valid:w,severalWarnings:W,warningLevel1:D,warningLevel2:S,warningLevel3:y,warningLevel4:k,noWarnings:b,popupNoWarnings:A,womlInfoField:P,"Kanta-Häme":"Kanta-Häme",Pirkanmaa:H,"Päijät-Häme":"Päijät-Häme","Etelä-Karjala":"South Karelia","Etelä-Savo":"Etelä-Savo","Pohjois-Savo":"Pohjois-Savo","Pohjois-Karjala":"North Karelia","Keski-Suomi":"Central Finland","Etelä-Pohjanmaa":"South Ostrobothnia",Kainuu:F,Uusimaa:I,"Varsinais-Suomi":"Varsinais-Suomi",Satakunta:K,Kymenlaakso:j,Pohjanmaa:T,"Keski-Pohjanmaa":"Central Ostrobothnia","Pohjois-Pohjanmaa":"North Ostrobothnia","Pohjois-Pohjanmaan länsiosa":"Western part of Northern Ostrobothnia",Lappi:N,Ahvenanmaa:B,Merenkurkku:C,"Suomenlahden itäosa":"Eastern Gulf of Finland","Pohjois-Itämeren länsiosa":"Western Part of Northern Baltic","Selkämeren eteläosa":"Southern Sea of Bothnia","Perämeren pohjoisosa":"Northern Bay of Bothnia",Ahvenanmeri:M,Saaristomeri:x,"Perämeren eteläosa":"Southern Bay of Bothnia","Selkämeren pohjoisosa":"Northern Sea of Bothnia","Suomenlahden länsiosa":"Western Gulf of Finland","Pohjois-Itämeren itäosa":"Eastern Part of Northern Baltic","Saimaan pohjoisosa":"Northern Lake Saimaa","Saimaan eteläosa":"Southern Lake Saimaa",Enontekiö:"Enontekiö",Utsjoki:E,Inari:O,Muonio:U,Kolari:R,Kittilä:"Kittilä",Sodankylä:"Sodankylä",Savukoski:z,Pelkosenniemi:V,Salla:G,Pello:q,Ylitornio:Y,Rovaniemi:Z,Kemijärvi:"Kemijärvi",Tornio:Q,Tervola:_,Keminmaa:J,Kemi:X,Simo:$,Ranua:ee,Posio:ne,Kuusamo:ie,Pudasjärvi:"Pudasjärvi",Taivalkoski:ae,coldWeather:oe,floodLevel:te,forestFireWeather:se,grassFireWeather:re,hotWeather:le,pedestrianSafety:ce,rain:de,seaIcing:fe,seaThunderStorm:pe,seaWaterHeightHighWater:ge,seaWaterHeightShallowWater:he,seaWaveHeight:ue,seaWind:ve,thunderStorm:me,trafficWeather:Le,uvNote:we,wind:We,coldWeatherDescriptionLevel2:De,coldWeatherDescriptionLevel3:Se,coldWeatherDescriptionLevel4:ye,floodLevelDescriptionLevel2:ke,floodLevelDescriptionLevel3:be,floodLevelDescriptionLevel4:Ae,forestFireWeatherDescriptionLevel2:Pe,forestFireWeatherDescriptionLevel3:He,forestFireWeatherDescriptionLevel4:Fe,grassFireWeatherDescriptionLevel2:Ie,grassFireWeatherDescriptionLevel3:Ke,grassFireWeatherDescriptionLevel4:je,hotWeatherDescriptionLevel2:Te,hotWeatherDescriptionLevel3:Ne,hotWeatherDescriptionLevel4:Be,pedestrianSafetyDescriptionLevel2:Ce,pedestrianSafetyDescriptionLevel3:Me,pedestrianSafetyDescriptionLevel4:xe,rainDescriptionLevel2:Ee,rainDescriptionLevel3:Oe,rainDescriptionLevel4:Ue,seaIcingDescriptionLevel2:Re,seaIcingDescriptionLevel3:ze,seaIcingDescriptionLevel4:Ve,seaThunderStormDescriptionLevel2:Ge,seaThunderStormDescriptionLevel3:qe,seaThunderStormDescriptionLevel4:Ye,seaWaterHeightHighWaterDescriptionLevel2:Ze,seaWaterHeightHighWaterDescriptionLevel3:Qe,seaWaterHeightHighWaterDescriptionLevel4:_e,seaWaterHeightShallowWaterDescriptionLevel2:Je,seaWaterHeightShallowWaterDescriptionLevel3:Xe,seaWaterHeightShallowWaterDescriptionLevel4:$e,seaWaveHeightDescriptionLevel2:en,seaWaveHeightDescriptionLevel3:nn,seaWaveHeightDescriptionLevel4:an,seaWindDescriptionLevel2:on,seaWindDescriptionLevel3:tn,seaWindDescriptionLevel4:sn,thunderStormDescriptionLevel2:rn,thunderStormDescriptionLevel3:ln,thunderStormDescriptionLevel4:cn,trafficWeatherDescriptionLevel2:dn,trafficWeatherDescriptionLevel3:fn,trafficWeatherDescriptionLevel4:pn,uvNoteDescriptionLevel2:gn,uvNoteDescriptionLevel3:hn,uvNoteDescriptionLevel4:un,windDescriptionLevel2:vn,windDescriptionLevel3:mn,windDescriptionLevel4:Ln,capLanguage:wn,metoclientLanguage:Wn,dataProviderFirst:Dn,dataProviderSecond:Sn,floodLink:yn,floodLinkText:kn,description:bn,zoomIn:An,zoomOut:Pn,moveMap:Hn,mapAriaLabel:Fn,toContent:In,warningsInAreasStart:Kn,fromDirection:jn,in1Areas:Tn,in2Areas:Nn,in3Areas:Bn,in4Areas:Cn,in5Areas:Mn,in6Areas:xn,in7Areas:En,in8Areas:On,in9Areas:Un,in10Areas:Rn,in11Areas:zn,in12Areas:Vn,in13Areas:Gn,in14Areas:qn,in15Areas:Yn,toNextContent:Zn,infoButtonAriaLabelShowRegion:Qn,infoButtonAriaLabelCloseRegion:_n,infoButtonAriaLabelValidWarnings:Jn,legends:Xn,showLegends:$n,hideLegends:ei,warningsInEffect:ni,landAreas:ii,seaAreas:ai,grayScale:oi,toggleOn:ti,toggleOff:si};export{ri as e};
@@ -0,0 +1,8 @@
1
+ /**
2
+ * name: @fmidev/smartmet-alert-client
3
+ * version: v4.7.0-alpha.0
4
+ * description: Web application for viewing weather and flood alerts
5
+ * author: Finnish Meteorological Institute
6
+ * homepage: https://github.com/fmidev/smartmet-alert-client#readme
7
+ */
8
+ const e="Huom! Jos kartta on harmaa eikä kartalla näy päivämäärää, varoitukset eivät ole päivittyneet.",a="Varmista verkkoyhteys. Tarkista, että olet päivittänyt selaimen ja käyttöjärjestelmän.",i="Lista tuetuista selaimista",t="https://www.ilmatieteenlaitos.fi/tietoa-sivustosta",s="Varoitusten haussa tapahtui virhe. Lataa sivu hetken kuluttua uudelleen.",n="Varoituksia voimassa seuraavilla maa-alueilla",o="Varoituksia voimassa seuraavilla merialueilla",l="Voimassa olevat varoitukset, 5 vrk",r="Näytä kaikki varoitukset",v="ma",u="ti",c="ke",k="to",h="pe",m="la",p="su",L="Varoitukset",d="Päivitetty",j="klo",g="varoitus voimassa",D="Useita varoituksia voimassa",W="Ei vaaraa",S="Mahdollisesti vaarallinen",f="Vaarallinen",y="Hyvin vaarallinen",P="Ei varoituksia voimassa",A="Ei varoituksia",w="info_fi",H="Pirkanmaa",K="Kainuu",T="Uusimaa",I="Satakunta",M="Kymenlaakso",V="Pohjanmaa",F="Lappi",R="Ahvenanmaa",E="Merenkurkku",N="Ahvenanmeri",O="Saaristomeri",B="Utsjoki",U="Inari",b="Muonio",z="Kolari",C="Savukoski",Y="Pelkosenniemi",x="Salla",J="Pello",Z="Ylitornio",_="Rovaniemi",q="Tornio",G="Tervola",Q="Keminmaa",X="Kemi",$="Simo",ee="Ranua",ae="Posio",ie="Kuusamo",te="Taivalkoski",se="Pakkasvaroitus",ne="Tulvavaroitus",oe="Maastopalo­varoitus",le="Ruohikko­palovaara",re="Hellevaroitus",ve="Jalankulkusää",ue="Sadevaroitus",ce="Jäätämisvaroitus",ke="Ukkospuuskia merialueilla",he="Varoitus korkeasta merivedestä",me="Varoitus matalasta merivedestä",pe="Aallokko­varoitus",Le="Tuulivaroitus merelle",de="Raju ukonilma",je="Liikennesää",ge="UV-tiedote",De="Tuulivaroitus maa‑alueille",We="Kylmärasitus haittaa toimintaa ulkona ja monet erilaisia kroonisia sairauksia potevat oireilevat tavallista enemmän.",Se="Kylmärasitus haittaa toimintaa ulkona huomattavasti ja kroonisia sairauksia potevien oireet vaikeutuvat selvästi. Paleltumisvaara.",fe="Kylmärasitus vaikeuttaa toimintaa ulkona huomattavasti ja kroonisia sairauksia potevien oireet vaikeutuvat merkittävästi. Suuri paleltumisvaara.",ye="Pelto- ja metsäalueiden tulviminen sekä lievät häiriöt mahdollisia.",Pe="Tulva voi aiheuttaa rakennusvahinkoja. Liikenteelle voi aiheutua merkittäviä häiriöitä.",Ae="Merkittävä riski ihmisten turvallisuudelle sekä sähkö-, vesi-, ja tietoliikenneverkoille. Rakennusvahinkoja ja liikennehäiriöitä laajoilla alueilla.",we="Maastopalon vaara on kuivuudesta johtuen ilmeinen. Tuulisella säällä palot leviävät erittäin nopeasti.",He="Maastopalon vaara on kuivuudesta johtuen erittäin ilmeinen. Tuulisella säällä palot leviävät erittäin nopeasti.",Ke="Suurpalon vaara on kuivuudesta johtuen ilmeinen. Palot leviävät todennäköisesti erittäin nopeasti.",Te="Ruohikkopalon vaara on kuivuudesta johtuen ilmeinen. Tuulisella säällä palot leviävät erittäin nopeasti.",Ie="",Me="",Ve="Monet erilaisia kroonisia sairauksia potevat oireilevat tavallista enemmän.",Fe="Kroonisia sairauksia potevien oireet vaikeutuvat merkittävästi. Lämpörasitus haittaa myös perusterveiden toimintakykyä.",Re="Tämä varoitustaso on erittäin harvinainen nykyilmastossa. Ennakoitavissa erittäin merkittäviä terveysvaikutuksia. Lämpörasitus haittaa myös perusterveiden toimintakykyä.",Ee="Kevyen liikenteen väylät laaja-alaisesti erittäin liukkaita. Liukastumisriski huomattava.",Ne="",Oe="",Be="Herkimmin tulvivat alikulut ja painanteet tulvivat taajama-alueilla. Liikenteessä kohonnut vesiliirtovaara.",Ue="Tulvia taajamissa yleisesti. Alikulkujen täyttyminen vedellä kokonaan mahdollista. Virtaava vesi voi aiheuttaa vaaran.",be="Pahoja tulvia taajamissa sekä paikoin myös taajamien ulkopuolella. Tulvalammikot ja virtaava vesi aiheuttavat vaaran.",ze="Runsas jään kertyminen voi heikentää aluksen vakavuutta ja vaarantaa aluksen operointia.",Ce="Runsas jään kertyminen voi heikentää aluksen vakavuutta ja vaarantaa aluksen operointia.",Ye="Runsas jään kertyminen voi heikentää aluksen vakavuutta ja vaarantaa aluksen operointia.",xe="Mahdollisesti vaarallinen huviveneille ja pienille aluksille.",Je="Mahdollisesti vaarallinen huviveneille ja pienille aluksille.",Ze="Mahdollisesti vaarallinen huviveneille ja pienille aluksille.",_e="Tulva: Merivesi nousee rannikon lähellä alaville maille.",qe="Rantateitä paikoin poikki. Tulvaherkimmät kohteet kastuvat.",Ge="Rantateitä alavilla paikoilla poikki myös aiemmin tulvimattomissa kohdissa. Rakennuksia jää veden saartamiksi. Taajama-alueilla merkittäviä vesivahinkoja.",Qe="Matalan veden tapauksissa vaikeuksia satamien rahtiliikenteessä.",Xe="",$e="",ea="Mahdollisesti vaarallinen huviveneille ja pienille aluksille.",aa="Vaikeuksia ja vaaratilanteita meriliikenteelle.",ia="Merkittäviä vaikeuksia, hidastumista ja vaaratilanteita meriliikenteessä.",ta="Mahdollisesti vaarallinen huviveneille.",sa="Vaikeuksia ja vaaratilanteita meriliikenteelle.",na="Merkittäviä vaikeuksia, hidastumista ja vaaratilanteita meriliikenteessä.",oa="Pienialaisesti tuulivahinkoja. Enimmäkseen yksittäisiä kaatuneita puita. Lyhyitä ja paikallisia sähkökatkoja.",la="Yleisesti tuulivahinkoja, paikoin myös yhtenäisiä vahinkoalueita. Paikallisesti suurta raivaustarvetta, pitkiä sähkökatkoja sekä katkoja teleliikenteessä.",ra="Laajoja vahinkoalueita, joissa huomattava raivaustarve. Pitkiä sähkökatkoja, katkoja juomaveden jakelussa ja teleliikenteessä.",va="Liikenteen sujuvuus heikentyy ja keskinopeus laskee. Onnettomuusriski on kohonnut.",ua="Liikenteessä mahdollisesti suuria häiriöitä. Onnettomuusriski on huomattava.",ca="Liikenteessä todennäköisesti suuria häiriöitä ja liikenneyhteydet voivat olla kokonaan poikki. Onnettomuusriski on huomattava.",ka="UV-säteily on voimakasta. Suojaamaton iho saattaa palaa erityisesti suorassa auringonvalossa oleskeltaessa.",ha="",ma="",pa="Yksittäisiä kaatuneita puita laajalla alueella. Lyhyitä sähkökatkoja.",La="Yleisesti tuulivahinkoja, paikoin myös yhtenäisiä vahinkoalueita. Paikallisesti suurta raivaustarvetta, pitkiä sähkökatkoja sekä katkoja teleliikenteessä.",da="Laajoja vahinkoalueita, joissa huomattava raivaustarve. Pitkiä sähkökatkoja, katkoja juomaveden jakelussa ja teleliikenteessä.",ja="fi-FI",ga="fi",Da="Ilmatieteen laitos",Wa="Tulvakeskus",Sa="https://www.vesi.fi/",fa="Vesistöennusteet ja tulvavaroitukset",ya="Vaikutuskuvaus",Pa="Lähennä",Aa="Loitonna",wa="Siirrä karttaa nuolinäppäimillä",Ha="Zoomattava kartta",Ka="Siirry tekstimuotoisiin varoituksiin",Ta="Varoituksia",Ia="suunnasta",Ma="yhdellä alueella",Va="kahdella alueella",Fa="kolmella alueella",Ra="neljällä alueella",Ea="viidellä alueella",Na="kuudella alueella",Oa="seitsemällä alueella",Ba="kahdeksalla alueella",Ua="yhdeksällä alueella",ba="kymmenellä alueella",za="yhdellätoista alueella",Ca="kahdellatoista alueella",Ya="kolmellatoista alueella",xa="neljällätoista alueella",Ja="viidellätoista alueella",Za="Siirry seuraavaan osioon.",_a="Näytä alueen",qa="Sulje alueen",Ga="voimassaolevat varoitukset",Qa="Karttaselitteet",Xa="Näytä selitteet",$a="Piilota selitteet",ei="Varoituksia voimassa",ai="maa-alueella ja",ii="merialueella",ti="Harmaasävyt",si="On",ni="Off",oi={notInitializedStart:e,notInitializedEnd:a,supportedBrowsers:i,supportedBrowsersLink:t,failed:s,regionLand:n,regionSea:o,validWarnings:l,showWarnings:r,ma:v,ti:u,ke:c,to:k,pe:h,la:m,su:p,warnings:L,updated:d,atTime:j,valid:g,severalWarnings:D,warningLevel1:W,warningLevel2:S,warningLevel3:f,warningLevel4:y,noWarnings:P,popupNoWarnings:A,womlInfoField:w,"Kanta-Häme":"Kanta-Häme",Pirkanmaa:H,"Päijät-Häme":"Päijät-Häme","Etelä-Karjala":"Etelä-Karjala","Etelä-Savo":"Etelä-Savo","Pohjois-Savo":"Pohjois-Savo","Pohjois-Karjala":"Pohjois-Karjala","Keski-Suomi":"Keski-Suomi","Etelä-Pohjanmaa":"Etelä-Pohjanmaa",Kainuu:K,Uusimaa:T,"Varsinais-Suomi":"Varsinais-Suomi",Satakunta:I,Kymenlaakso:M,Pohjanmaa:V,"Keski-Pohjanmaa":"Keski-Pohjanmaa","Pohjois-Pohjanmaa":"Pohjois-Pohjanmaa","Pohjois-Pohjanmaan länsiosa":"Pohjois-Pohjanmaan länsiosa",Lappi:F,Ahvenanmaa:R,Merenkurkku:E,"Suomenlahden itäosa":"Suomenlahden itäosa","Pohjois-Itämeren länsiosa":"Pohjois-Itämeren länsiosa","Selkämeren eteläosa":"Selkämeren eteläosa","Perämeren pohjoisosa":"Perämeren pohjoisosa",Ahvenanmeri:N,Saaristomeri:O,"Perämeren eteläosa":"Perämeren eteläosa","Selkämeren pohjoisosa":"Selkämeren pohjoisosa","Suomenlahden länsiosa":"Suomenlahden länsiosa","Pohjois-Itämeren itäosa":"Pohjois-Itämeren itäosa","Saimaan pohjoisosa":"Saimaa pohjoinen","Saimaan eteläosa":"Saimaa eteläinen",Enontekiö:"Enontekiö",Utsjoki:B,Inari:U,Muonio:b,Kolari:z,Kittilä:"Kittilä",Sodankylä:"Sodankylä",Savukoski:C,Pelkosenniemi:Y,Salla:x,Pello:J,Ylitornio:Z,Rovaniemi:_,Kemijärvi:"Kemijärvi",Tornio:q,Tervola:G,Keminmaa:Q,Kemi:X,Simo:$,Ranua:ee,Posio:ae,Kuusamo:ie,Pudasjärvi:"Pudasjärvi",Taivalkoski:te,coldWeather:se,floodLevel:ne,forestFireWeather:oe,grassFireWeather:le,hotWeather:re,pedestrianSafety:ve,rain:ue,seaIcing:ce,seaThunderStorm:ke,seaWaterHeightHighWater:he,seaWaterHeightShallowWater:me,seaWaveHeight:pe,seaWind:Le,thunderStorm:de,trafficWeather:je,uvNote:ge,wind:De,coldWeatherDescriptionLevel2:We,coldWeatherDescriptionLevel3:Se,coldWeatherDescriptionLevel4:fe,floodLevelDescriptionLevel2:ye,floodLevelDescriptionLevel3:Pe,floodLevelDescriptionLevel4:Ae,forestFireWeatherDescriptionLevel2:we,forestFireWeatherDescriptionLevel3:He,forestFireWeatherDescriptionLevel4:Ke,grassFireWeatherDescriptionLevel2:Te,grassFireWeatherDescriptionLevel3:Ie,grassFireWeatherDescriptionLevel4:Me,hotWeatherDescriptionLevel2:Ve,hotWeatherDescriptionLevel3:Fe,hotWeatherDescriptionLevel4:Re,pedestrianSafetyDescriptionLevel2:Ee,pedestrianSafetyDescriptionLevel3:Ne,pedestrianSafetyDescriptionLevel4:Oe,rainDescriptionLevel2:Be,rainDescriptionLevel3:Ue,rainDescriptionLevel4:be,seaIcingDescriptionLevel2:ze,seaIcingDescriptionLevel3:Ce,seaIcingDescriptionLevel4:Ye,seaThunderStormDescriptionLevel2:xe,seaThunderStormDescriptionLevel3:Je,seaThunderStormDescriptionLevel4:Ze,seaWaterHeightHighWaterDescriptionLevel2:_e,seaWaterHeightHighWaterDescriptionLevel3:qe,seaWaterHeightHighWaterDescriptionLevel4:Ge,seaWaterHeightShallowWaterDescriptionLevel2:Qe,seaWaterHeightShallowWaterDescriptionLevel3:Xe,seaWaterHeightShallowWaterDescriptionLevel4:$e,seaWaveHeightDescriptionLevel2:ea,seaWaveHeightDescriptionLevel3:aa,seaWaveHeightDescriptionLevel4:ia,seaWindDescriptionLevel2:ta,seaWindDescriptionLevel3:sa,seaWindDescriptionLevel4:na,thunderStormDescriptionLevel2:oa,thunderStormDescriptionLevel3:la,thunderStormDescriptionLevel4:ra,trafficWeatherDescriptionLevel2:va,trafficWeatherDescriptionLevel3:ua,trafficWeatherDescriptionLevel4:ca,uvNoteDescriptionLevel2:ka,uvNoteDescriptionLevel3:ha,uvNoteDescriptionLevel4:ma,windDescriptionLevel2:pa,windDescriptionLevel3:La,windDescriptionLevel4:da,capLanguage:ja,metoclientLanguage:ga,dataProviderFirst:Da,dataProviderSecond:Wa,floodLink:Sa,floodLinkText:fa,description:ya,zoomIn:Pa,zoomOut:Aa,moveMap:wa,mapAriaLabel:Ha,toContent:Ka,warningsInAreasStart:Ta,fromDirection:Ia,in1Areas:Ma,in2Areas:Va,in3Areas:Fa,in4Areas:Ra,in5Areas:Ea,in6Areas:Na,in7Areas:Oa,in8Areas:Ba,in9Areas:Ua,in10Areas:ba,in11Areas:za,in12Areas:Ca,in13Areas:Ya,in14Areas:xa,in15Areas:Ja,toNextContent:Za,infoButtonAriaLabelShowRegion:_a,infoButtonAriaLabelCloseRegion:qa,infoButtonAriaLabelValidWarnings:Ga,legends:Qa,showLegends:Xa,hideLegends:$a,warningsInEffect:ei,landAreas:ai,seaAreas:ii,grayScale:ti,toggleOn:si,toggleOff:ni};export{oi as f};
@@ -0,0 +1,8 @@
1
+ /**
2
+ * name: @fmidev/smartmet-alert-client
3
+ * version: v4.7.0-alpha.0
4
+ * description: Web application for viewing weather and flood alerts
5
+ * author: Finnish Meteorological Institute
6
+ * homepage: https://github.com/fmidev/smartmet-alert-client#readme
7
+ */
8
+ const e="Obs! Om kartan är grå och inget datum visas på kartan har varningarna inte uppdaterats.",n="Säkerställ nätverksanslutning. Kontrollera att du har uppdaterat din webbläsare och operativsystem.",r="Lista över webbläsare som stöds",t="https://sv.ilmatieteenlaitos.fi/information-om-sidorna",a="Ett fel uppstod vid sökningen av varningar. Försök på nytt om en stund.",i="Varningar är i kraft i följande landområden",s="Varningar är i kraft i följande havsområden",o="Varningar i kraft, 5 dygn",l="Visa alla varningar",v="må",c="ti",d="on",g="to",m="fr",f="lö",k="sö",h="Varningar",p="Uppdaterad",L="kl.",u="varningen gäller",D="Flera varningar i kraft",W="Ej fara",S="Möjligtvis farlig",b="Farlig",y="Mycket farlig",j="Inga varningar i kraft",A="Inga varningar",w="info_sv",K="Birkaland",H="Kajanaland",V="Nyland",P="Satakunta",I="Kymmenedalen",F="Österbotten",T="Lappland",N="Åland",B="Kvarken",R="Ålands hav",M="Skärgårdshavet",E="Utsjoki",O="Enare",x="Muonio",z="Kolari",U="Savukoski",C="Pelkosenniemi",G="Salla",Y="Pello",Z="Övertorneå",_="Rovaniemi",q="Torneå",J="Tervola",Q="Keminmaa",X="Kemi",$="Simo",ee="Ranua",ne="Posio",re="Kuusamo",te="Taivalkoski",ae="Varning för köld",ie="Varning för översvämning",se="Varning för terrängbrand",oe="Risk för gräsbrand",le="Varning för värmebölja",ve="Fotgängarvädret",ce="Nederbördsvarning",de="Varning för nedisning av fartyg",ge="Åskbyar på sjöområden",me="Varning för högt vattenstånd",fe="Varning för lågt vattenstånd",ke="Varning för hård sjögång",he="Vindvarning för havsområden",pe="Varning för våldsamt åskväder",Le="Trafikvädret",ue="UV-meddelande",De="Vindvarning för landområden",We="Köldpåfrestningen hindrar verksamhet utomhus och hos många som lider av olika kroniska sjukdomar ökar symtomen.",Se="Köldpåfrestningen hindrar verksamhet utomhus avsevärt och symtom hos personer som lider av kroniska sjukdomar förvärras tydligt. Risk för förfrysning.",be="Köldpåfrestningen försvårar verksamhet utomhus avsevärt och symtomen hos personer som lider av kroniska sjukdomar förvärras betydligt. Stor risk för förfrysning.",ye="Översvämning av åkrar och skogar och mindre störningar är möjliga. Varning utfärdas när en översvämning orsakar en uppskattad effekt eller när dess återkomsttid i genomsnitt är 3-10 år.",je="Översvämningen orsakar skador på byggnader. Betydande störningar i trafiken kan uppstå. Varning utfärdas när en översvämning orsakar en uppskattad effekt eller när dess återkomsttid i genomsnitt är 10-50 år.",Ae="Betydande risk för människornas säkerhet samt el-, vatten- och kommunikationsnäten. Skador på byggnader och störningar i trafiken i stora områden. Varning utfärdas när en översvämning orsakar en uppskattad effekt eller när dess återkomsttid i genomsnitt är över 50 år.",we="Risken för terrängbrand är uppenbar på grund av torkan. I blåsigt väder sprider sig bränderna mycket snabbt.",Ke="Risken för terrängbrand är extremt uppenbar på grund av torkan. I blåsigt väder sprider sig bränderna mycket snabbt.",He="Risken för omfattande terrängbrand är uppenbar på grund av torkan. Bränderna sannolikt sprider sig mycket snabbt.",Ve="Risken för gräsbrand är uppenbar på grund av torkan. I blåsigt väder sprider sig bränderna mycket snabbt.",Pe="",Ie="",Fe="Symtomen hos många som lider av olika kroniska sjukdomar förvärras.",Te="Symtomen hos personer som lider av kroniska sjukdomar förvärras betydligt. Värmepåfrestningen försvagar också friska personers funktionsförmåga.",Ne="I vårt nuvarande klimat är denna varningsnivå mycket osannolik. Mycket betydande hälsoeffekter förväntas. Värmepåfrestningen försvagar även friska personers funktionsförmåga.",Be="Lättrafiklederna är mycket hala i stora områden. Avsevärd halkningsrisk.",Re="",Me="",Ee="De mest utsatta underfarterna och sänkorna i tätorterna översvämmas. Ökad fara för vattenplaning i trafiken.",Oe="Allmänt översvämningar i tätorterna. Möjligt att underfarter fylls helt med vatten. Strömmande vatten kan orsaka fara.",xe="Svåra översvämningar i tätorterna och ställvis även utanför dem. Översvämningspölarna och det strömmande vattnet orsakar fara.",ze="Riklig nedisning kan försämra fartygets stabilitet och äventyra säker drift.",Ue="Riklig nedisning kan försämra fartygets stabilitet och äventyra säker drift.",Ce="Riklig nedisning kan försämra fartygets stabilitet och äventyra säker drift.",Ge="Kan vara farligt för fritidsbåtar och mindre fartyg.",Ye="Kan vara farligt för fritidsbåtar och mindre fartyg.",Ze="Kan vara farligt för fritidsbåtar och mindre fartyg.",_e="Översvämning: Havsvattnet stiger nära kusten på låglänta marker.",qe="Strandvägarna är ställvis avbrutna. De mest översvämningsutsatta platserna blir våta.",Je="Strandvägarna på låglänta ställen avbrutna också där det tidigare inte översvämmat. Byggnader blir omringade av vatten. I tätorterna avsevärda vattenskador.",Qe="Vid lågvatten förekommer svårigheter i hamnarnas frakttrafik.",Xe="",$e="",en="Möjligtvis farligt för fritidsbåtar och mindre fartyg.",nn="Svårigheter och farosituationer för sjötrafiken.",rn="Betydande svårigheter, fördröjningar och farosituationer i sjötrafiken.",tn="Möjligtvis farligt för fritidsbåtar.",an="Svårigheter och farosituationer för sjötrafiken.",sn="Avsevärda svårigheter, fördröjningar och farosituationer i sjötrafiken.",on="Stormskador i små områden. Främst enstaka fallna träd. Korta och lokala elavbrott.",ln="Allmänt stormskador, ställvis också enhetliga skadeområden. Lokalt stort behov av röjning, långa elavbrott och avbrott i teletrafiken.",vn="Omfattande skadeområden med avsevärt behov av röjning. Långa elavbrott, avbrott i vattendistributionen och teletrafiken.",cn="Trafikens smidighet försämras och medelhastigheten sjunker. Ökad olycksrisk.",dn="Möjligtvis kraftiga störningar i trafiken. Avsevärd olycksrisk.",gn="Kraftiga störningar i trafiken är sannolika och trafikförbindelser kan brytas helt. Avsevärd olycksrisk.",mn="UV-strålningen är kraftig. Oskyddad hud kan få brännskador speciellt under vistelse i direkt solljus.",fn="",kn="",hn="Enstaka fallna träd inom ett stort område. Korta elavbrott.",pn="Allmänt stormskador, ställvis också enhetliga skadeområden. Lokalt stort behov av röjning, långa elavbrott och avbrott i teletrafiken.",Ln="Omfattande skadeområden med avsevärt behov av röjning. Långa elavbrott, avbrott i vattendistributionen och teletrafiken.",un="sv-SV",Dn="sv",Wn="Meteorologiska institutet",Sn="Översvämningscentret",bn="https://www.vesi.fi/",yn="Vattenföringsprognoser och översvämningsvarningar",jn="Effektbeskrivningen",An="Zooma in",wn="Zooma ut",Kn="Använd piltangenterna för att flytta kartan",Hn="Förstorande karta",Vn="Gå till varningar i text format",Pn="Varningar",In="från",Fn="i ett område",Tn="i två områden",Nn="i tre områden",Bn="i fyra områden",Rn="i fem områden",Mn="i sex områden",En="i sju områden",On="i åtta områden",xn="i nio områden",zn="i tio områden",Un="i elva områden",Cn="i tolv områden",Gn="i tretton områden",Yn="i fjorton områden",Zn="i femton områden",_n="Gå till nästa stycke.",qn="Visa giltiga varningar för",Jn="Stäng giltiga varningar för",Qn=".",Xn="Kartanmärkningar",$n="Visa anmärkningar",er="Dölj anmärkningar",nr="varningar i kraft i",rr="landområden och",tr="havsområden",ar="Gråskala",ir="On",sr="Off",or={notInitializedStart:e,notInitializedEnd:n,supportedBrowsers:r,supportedBrowsersLink:t,failed:a,regionLand:i,regionSea:s,validWarnings:o,showWarnings:l,ma:v,ti:c,ke:d,to:g,pe:m,la:f,su:k,warnings:h,updated:p,atTime:L,valid:u,severalWarnings:D,warningLevel1:W,warningLevel2:S,warningLevel3:b,warningLevel4:y,noWarnings:j,popupNoWarnings:A,womlInfoField:w,"Kanta-Häme":"Egentliga Tavastland",Pirkanmaa:K,"Päijät-Häme":"Päijänne-Tavastland","Etelä-Karjala":"Södra Karelen","Etelä-Savo":"Södra Savolax","Pohjois-Savo":"Norra Savolax","Pohjois-Karjala":"Norra Karelen","Keski-Suomi":"Mellersta Finland","Etelä-Pohjanmaa":"Södra Österbotten",Kainuu:H,Uusimaa:V,"Varsinais-Suomi":"Egentliga Finland",Satakunta:P,Kymenlaakso:I,Pohjanmaa:F,"Keski-Pohjanmaa":"Mellersta Österbotten","Pohjois-Pohjanmaa":"Norra Österbotten","Pohjois-Pohjanmaan länsiosa":"Västra delen av Norra Österbotten",Lappi:T,Ahvenanmaa:N,Merenkurkku:B,"Suomenlahden itäosa":"Östra Finska viken","Pohjois-Itämeren länsiosa":"Västra delen av Norra Östersjön","Selkämeren eteläosa":"Södra Bottenhavet","Perämeren pohjoisosa":"Norra Bottenviken",Ahvenanmeri:R,Saaristomeri:M,"Perämeren eteläosa":"Södra Bottenviken","Selkämeren pohjoisosa":"Norra Bottenhavet","Suomenlahden länsiosa":"Västra Finska viken","Pohjois-Itämeren itäosa":"Östra delen av Norra Östersjön","Saimaan pohjoisosa":"Norra Saimen","Saimaan eteläosa":"Södra Saimen",Enontekiö:"Enontekis",Utsjoki:E,Inari:O,Muonio:x,Kolari:z,Kittilä:"Kittilä",Sodankylä:"Sodankylä",Savukoski:U,Pelkosenniemi:C,Salla:G,Pello:Y,Ylitornio:Z,Rovaniemi:_,Kemijärvi:"Kemijärvi",Tornio:q,Tervola:J,Keminmaa:Q,Kemi:X,Simo:$,Ranua:ee,Posio:ne,Kuusamo:re,Pudasjärvi:"Pudasjärvi",Taivalkoski:te,coldWeather:ae,floodLevel:ie,forestFireWeather:se,grassFireWeather:oe,hotWeather:le,pedestrianSafety:ve,rain:ce,seaIcing:de,seaThunderStorm:ge,seaWaterHeightHighWater:me,seaWaterHeightShallowWater:fe,seaWaveHeight:ke,seaWind:he,thunderStorm:pe,trafficWeather:Le,uvNote:ue,wind:De,coldWeatherDescriptionLevel2:We,coldWeatherDescriptionLevel3:Se,coldWeatherDescriptionLevel4:be,floodLevelDescriptionLevel2:ye,floodLevelDescriptionLevel3:je,floodLevelDescriptionLevel4:Ae,forestFireWeatherDescriptionLevel2:we,forestFireWeatherDescriptionLevel3:Ke,forestFireWeatherDescriptionLevel4:He,grassFireWeatherDescriptionLevel2:Ve,grassFireWeatherDescriptionLevel3:Pe,grassFireWeatherDescriptionLevel4:Ie,hotWeatherDescriptionLevel2:Fe,hotWeatherDescriptionLevel3:Te,hotWeatherDescriptionLevel4:Ne,pedestrianSafetyDescriptionLevel2:Be,pedestrianSafetyDescriptionLevel3:Re,pedestrianSafetyDescriptionLevel4:Me,rainDescriptionLevel2:Ee,rainDescriptionLevel3:Oe,rainDescriptionLevel4:xe,seaIcingDescriptionLevel2:ze,seaIcingDescriptionLevel3:Ue,seaIcingDescriptionLevel4:Ce,seaThunderStormDescriptionLevel2:Ge,seaThunderStormDescriptionLevel3:Ye,seaThunderStormDescriptionLevel4:Ze,seaWaterHeightHighWaterDescriptionLevel2:_e,seaWaterHeightHighWaterDescriptionLevel3:qe,seaWaterHeightHighWaterDescriptionLevel4:Je,seaWaterHeightShallowWaterDescriptionLevel2:Qe,seaWaterHeightShallowWaterDescriptionLevel3:Xe,seaWaterHeightShallowWaterDescriptionLevel4:$e,seaWaveHeightDescriptionLevel2:en,seaWaveHeightDescriptionLevel3:nn,seaWaveHeightDescriptionLevel4:rn,seaWindDescriptionLevel2:tn,seaWindDescriptionLevel3:an,seaWindDescriptionLevel4:sn,thunderStormDescriptionLevel2:on,thunderStormDescriptionLevel3:ln,thunderStormDescriptionLevel4:vn,trafficWeatherDescriptionLevel2:cn,trafficWeatherDescriptionLevel3:dn,trafficWeatherDescriptionLevel4:gn,uvNoteDescriptionLevel2:mn,uvNoteDescriptionLevel3:fn,uvNoteDescriptionLevel4:kn,windDescriptionLevel2:hn,windDescriptionLevel3:pn,windDescriptionLevel4:Ln,capLanguage:un,metoclientLanguage:Dn,dataProviderFirst:Wn,dataProviderSecond:Sn,floodLink:bn,floodLinkText:yn,description:jn,zoomIn:An,zoomOut:wn,moveMap:Kn,mapAriaLabel:Hn,toContent:Vn,warningsInAreasStart:Pn,fromDirection:In,in1Areas:Fn,in2Areas:Tn,in3Areas:Nn,in4Areas:Bn,in5Areas:Rn,in6Areas:Mn,in7Areas:En,in8Areas:On,in9Areas:xn,in10Areas:zn,in11Areas:Un,in12Areas:Cn,in13Areas:Gn,in14Areas:Yn,in15Areas:Zn,toNextContent:_n,infoButtonAriaLabelShowRegion:qn,infoButtonAriaLabelCloseRegion:Jn,infoButtonAriaLabelValidWarnings:Qn,legends:Xn,showLegends:$n,hideLegends:er,warningsInEffect:nr,landAreas:rr,seaAreas:tr,grayScale:ar,toggleOn:ir,toggleOff:sr};export{or as s};
@@ -0,0 +1,21 @@
1
+ /**
2
+ * @vue/shared v3.4.38
3
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
+ * @license MIT
5
+ **//*! #__NO_SIDE_EFFECTS__ */function jn(e,t){const n=new Set(e.split(","));return t?s=>n.has(s.toLowerCase()):s=>n.has(s)}const X={},lt=[],Ee=()=>{},uo=()=>!1,Yt=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),$n=e=>e.startsWith("onUpdate:"),ie=Object.assign,Dn=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},ao=Object.prototype.hasOwnProperty,$=(e,t)=>ao.call(e,t),N=Array.isArray,ct=e=>Xt(e)==="[object Map]",Js=e=>Xt(e)==="[object Set]",M=e=>typeof e=="function",ee=e=>typeof e=="string",qe=e=>typeof e=="symbol",J=e=>e!==null&&typeof e=="object",Ys=e=>(J(e)||M(e))&&M(e.then)&&M(e.catch),Xs=Object.prototype.toString,Xt=e=>Xs.call(e),ho=e=>Xt(e).slice(8,-1),Zs=e=>Xt(e)==="[object Object]",Vn=e=>ee(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,yt=jn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Zt=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},po=/-(\w)/g,pe=Zt(e=>e.replace(po,(t,n)=>n?n.toUpperCase():"")),_o=/\B([A-Z])/g,be=Zt(e=>e.replace(_o,"-$1").toLowerCase()),Qt=Zt(e=>e.charAt(0).toUpperCase()+e.slice(1)),an=Zt(e=>e?`on${Qt(e)}`:""),We=(e,t)=>!Object.is(e,t),dn=(e,...t)=>{for(let n=0;n<e.length;n++)e[n](...t)},Qs=(e,t,n,s=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:s,value:n})},go=e=>{const t=parseFloat(e);return isNaN(t)?e:t},wn=e=>{const t=ee(e)?Number(e):NaN;return isNaN(t)?e:t};let us;const Un=()=>us||(us=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Bn(e){if(N(e)){const t={};for(let n=0;n<e.length;n++){const s=e[n],r=ee(s)?vo(s):Bn(s);if(r)for(const o in r)t[o]=r[o]}return t}else if(ee(e)||J(e))return e}const mo=/;(?![^(]*\))/g,bo=/:([^]+)/,yo=/\/\*[^]*?\*\//g;function vo(e){const t={};return e.replace(yo,"").split(mo).forEach(n=>{if(n){const s=n.split(bo);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function Kn(e){let t="";if(ee(e))t=e;else if(N(e))for(let n=0;n<e.length;n++){const s=Kn(e[n]);s&&(t+=s+" ")}else if(J(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}const Co="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Eo=jn(Co);function er(e){return!!e||e===""}const tr=e=>!!(e&&e.__v_isRef===!0),wo=e=>ee(e)?e:e==null?"":N(e)||J(e)&&(e.toString===Xs||!M(e.toString))?tr(e)?wo(e.value):JSON.stringify(e,nr,2):String(e),nr=(e,t)=>tr(t)?nr(e,t.value):ct(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r],o)=>(n[hn(s,o)+" =>"]=r,n),{})}:Js(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>hn(n))}:qe(t)?hn(t):J(t)&&!N(t)&&!Zs(t)?String(t):t,hn=(e,t="")=>{var n;return qe(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/**
6
+ * @vue/reactivity v3.4.38
7
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
8
+ * @license MIT
9
+ **/let Se;class xo{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Se,!t&&Se&&(this.index=(Se.scopes||(Se.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=Se;try{return Se=this,t()}finally{Se=n}}}on(){Se=this}off(){Se=this.parent}stop(t){if(this._active){let n,s;for(n=0,s=this.effects.length;n<s;n++)this.effects[n].stop();for(n=0,s=this.cleanups.length;n<s;n++)this.cleanups[n]();if(this.scopes)for(n=0,s=this.scopes.length;n<s;n++)this.scopes[n].stop(!0);if(!this.detached&&this.parent&&!t){const r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.parent=void 0,this._active=!1}}}function So(e,t=Se){t&&t.active&&t.effects.push(e)}function Ao(){return Se}let st;class Wn{constructor(t,n,s,r){this.fn=t,this.trigger=n,this.scheduler=s,this.active=!0,this.deps=[],this._dirtyLevel=4,this._trackId=0,this._runnings=0,this._shouldSchedule=!1,this._depsLength=0,So(this,r)}get dirty(){if(this._dirtyLevel===2||this._dirtyLevel===3){this._dirtyLevel=1,ze();for(let t=0;t<this._depsLength;t++){const n=this.deps[t];if(n.computed&&(To(n.computed),this._dirtyLevel>=4))break}this._dirtyLevel===1&&(this._dirtyLevel=0),Ge()}return this._dirtyLevel>=4}set dirty(t){this._dirtyLevel=t?4:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Be,n=st;try{return Be=!0,st=this,this._runnings++,as(this),this.fn()}finally{ds(this),this._runnings--,st=n,Be=t}}stop(){this.active&&(as(this),ds(this),this.onStop&&this.onStop(),this.active=!1)}}function To(e){return e.value}function as(e){e._trackId++,e._depsLength=0}function ds(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t<e.deps.length;t++)sr(e.deps[t],e);e.deps.length=e._depsLength}}function sr(e,t){const n=e.get(t);n!==void 0&&t._trackId!==n&&(e.delete(t),e.size===0&&e.cleanup())}let Be=!0,xn=0;const rr=[];function ze(){rr.push(Be),Be=!1}function Ge(){const e=rr.pop();Be=e===void 0?!0:e}function kn(){xn++}function qn(){for(xn--;!xn&&Sn.length;)Sn.shift()()}function or(e,t,n){if(t.get(e)!==e._trackId){t.set(e,e._trackId);const s=e.deps[e._depsLength];s!==t?(s&&sr(s,e),e.deps[e._depsLength++]=t):e._depsLength++}}const Sn=[];function ir(e,t,n){kn();for(const s of e.keys()){let r;s._dirtyLevel<t&&(r??(r=e.get(s)===s._trackId))&&(s._shouldSchedule||(s._shouldSchedule=s._dirtyLevel===0),s._dirtyLevel=t),s._shouldSchedule&&(r??(r=e.get(s)===s._trackId))&&(s.trigger(),(!s._runnings||s.allowRecurse)&&s._dirtyLevel!==2&&(s._shouldSchedule=!1,s.scheduler&&Sn.push(s.scheduler)))}qn()}const lr=(e,t)=>{const n=new Map;return n.cleanup=e,n.computed=t,n},An=new WeakMap,rt=Symbol(""),Tn=Symbol("");function _e(e,t,n){if(Be&&st){let s=An.get(e);s||An.set(e,s=new Map);let r=s.get(n);r||s.set(n,r=lr(()=>s.delete(n))),or(st,r)}}function Re(e,t,n,s,r,o){const i=An.get(e);if(!i)return;let c=[];if(t==="clear")c=[...i.values()];else if(n==="length"&&N(e)){const f=Number(s);i.forEach((d,a)=>{(a==="length"||!qe(a)&&a>=f)&&c.push(d)})}else switch(n!==void 0&&c.push(i.get(n)),t){case"add":N(e)?Vn(n)&&c.push(i.get("length")):(c.push(i.get(rt)),ct(e)&&c.push(i.get(Tn)));break;case"delete":N(e)||(c.push(i.get(rt)),ct(e)&&c.push(i.get(Tn)));break;case"set":ct(e)&&c.push(i.get(rt));break}kn();for(const f of c)f&&ir(f,4);qn()}const Oo=jn("__proto__,__v_isRef,__isVue"),cr=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(qe)),hs=No();function No(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=D(this);for(let o=0,i=this.length;o<i;o++)_e(s,"get",o+"");const r=s[t](...n);return r===-1||r===!1?s[t](...n.map(D)):r}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...n){ze(),kn();const s=D(this)[t].apply(this,n);return qn(),Ge(),s}}),e}function Po(e){qe(e)||(e=String(e));const t=D(this);return _e(t,"has",e),t.hasOwnProperty(e)}class fr{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,s){const r=this._isReadonly,o=this._isShallow;if(n==="__v_isReactive")return!r;if(n==="__v_isReadonly")return r;if(n==="__v_isShallow")return o;if(n==="__v_raw")return s===(r?o?Ko:hr:o?dr:ar).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const i=N(t);if(!r){if(i&&$(hs,n))return Reflect.get(hs,n,s);if(n==="hasOwnProperty")return Po}const c=Reflect.get(t,n,s);return(qe(n)?cr.has(n):Oo(n))||(r||_e(t,"get",n),o)?c:ge(c)?i&&Vn(n)?c:c.value:J(c)?r?pr(c):Jn(c):c}}class ur extends fr{constructor(t=!1){super(!1,t)}set(t,n,s,r){let o=t[n];if(!this._isShallow){const f=ot(o);if(!at(s)&&!ot(s)&&(o=D(o),s=D(s)),!N(t)&&ge(o)&&!ge(s))return f?!1:(o.value=s,!0)}const i=N(t)&&Vn(n)?Number(n)<t.length:$(t,n),c=Reflect.set(t,n,s,r);return t===D(r)&&(i?We(s,o)&&Re(t,"set",n,s):Re(t,"add",n,s)),c}deleteProperty(t,n){const s=$(t,n);t[n];const r=Reflect.deleteProperty(t,n);return r&&s&&Re(t,"delete",n,void 0),r}has(t,n){const s=Reflect.has(t,n);return(!qe(n)||!cr.has(n))&&_e(t,"has",n),s}ownKeys(t){return _e(t,"iterate",N(t)?"length":rt),Reflect.ownKeys(t)}}class Mo extends fr{constructor(t=!1){super(!0,t)}set(t,n){return!0}deleteProperty(t,n){return!0}}const Ro=new ur,Io=new Mo,Lo=new ur(!0);const zn=e=>e,en=e=>Reflect.getPrototypeOf(e);function Rt(e,t,n=!1,s=!1){e=e.__v_raw;const r=D(e),o=D(t);n||(We(t,o)&&_e(r,"get",t),_e(r,"get",o));const{has:i}=en(r),c=s?zn:n?Xn:xt;if(i.call(r,t))return c(e.get(t));if(i.call(r,o))return c(e.get(o));e!==r&&e.get(t)}function It(e,t=!1){const n=this.__v_raw,s=D(n),r=D(e);return t||(We(e,r)&&_e(s,"has",e),_e(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function Lt(e,t=!1){return e=e.__v_raw,!t&&_e(D(e),"iterate",rt),Reflect.get(e,"size",e)}function ps(e,t=!1){!t&&!at(e)&&!ot(e)&&(e=D(e));const n=D(this);return en(n).has.call(n,e)||(n.add(e),Re(n,"add",e,e)),this}function _s(e,t,n=!1){!n&&!at(t)&&!ot(t)&&(t=D(t));const s=D(this),{has:r,get:o}=en(s);let i=r.call(s,e);i||(e=D(e),i=r.call(s,e));const c=o.call(s,e);return s.set(e,t),i?We(t,c)&&Re(s,"set",e,t):Re(s,"add",e,t),this}function gs(e){const t=D(this),{has:n,get:s}=en(t);let r=n.call(t,e);r||(e=D(e),r=n.call(t,e)),s&&s.call(t,e);const o=t.delete(e);return r&&Re(t,"delete",e,void 0),o}function ms(){const e=D(this),t=e.size!==0,n=e.clear();return t&&Re(e,"clear",void 0,void 0),n}function Ft(e,t){return function(s,r){const o=this,i=o.__v_raw,c=D(i),f=t?zn:e?Xn:xt;return!e&&_e(c,"iterate",rt),i.forEach((d,a)=>s.call(r,f(d),f(a),o))}}function Ht(e,t,n){return function(...s){const r=this.__v_raw,o=D(r),i=ct(o),c=e==="entries"||e===Symbol.iterator&&i,f=e==="keys"&&i,d=r[e](...s),a=n?zn:t?Xn:xt;return!t&&_e(o,"iterate",f?Tn:rt),{next(){const{value:p,done:y}=d.next();return y?{value:p,done:y}:{value:c?[a(p[0]),a(p[1])]:a(p),done:y}},[Symbol.iterator](){return this}}}}function Le(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function Fo(){const e={get(o){return Rt(this,o)},get size(){return Lt(this)},has:It,add:ps,set:_s,delete:gs,clear:ms,forEach:Ft(!1,!1)},t={get(o){return Rt(this,o,!1,!0)},get size(){return Lt(this)},has:It,add(o){return ps.call(this,o,!0)},set(o,i){return _s.call(this,o,i,!0)},delete:gs,clear:ms,forEach:Ft(!1,!0)},n={get(o){return Rt(this,o,!0)},get size(){return Lt(this,!0)},has(o){return It.call(this,o,!0)},add:Le("add"),set:Le("set"),delete:Le("delete"),clear:Le("clear"),forEach:Ft(!0,!1)},s={get(o){return Rt(this,o,!0,!0)},get size(){return Lt(this,!0)},has(o){return It.call(this,o,!0)},add:Le("add"),set:Le("set"),delete:Le("delete"),clear:Le("clear"),forEach:Ft(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=Ht(o,!1,!1),n[o]=Ht(o,!0,!1),t[o]=Ht(o,!1,!0),s[o]=Ht(o,!0,!0)}),[e,n,t,s]}const[Ho,jo,$o,Do]=Fo();function Gn(e,t){const n=t?e?Do:$o:e?jo:Ho;return(s,r,o)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get($(n,r)&&r in s?n:s,r,o)}const Vo={get:Gn(!1,!1)},Uo={get:Gn(!1,!0)},Bo={get:Gn(!0,!1)};const ar=new WeakMap,dr=new WeakMap,hr=new WeakMap,Ko=new WeakMap;function Wo(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function ko(e){return e.__v_skip||!Object.isExtensible(e)?0:Wo(ho(e))}function Jn(e){return ot(e)?e:Yn(e,!1,Ro,Vo,ar)}function qo(e){return Yn(e,!1,Lo,Uo,dr)}function pr(e){return Yn(e,!0,Io,Bo,hr)}function Yn(e,t,n,s,r){if(!J(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=r.get(e);if(o)return o;const i=ko(e);if(i===0)return e;const c=new Proxy(e,i===2?s:n);return r.set(e,c),c}function vt(e){return ot(e)?vt(e.__v_raw):!!(e&&e.__v_isReactive)}function ot(e){return!!(e&&e.__v_isReadonly)}function at(e){return!!(e&&e.__v_isShallow)}function _r(e){return e?!!e.__v_raw:!1}function D(e){const t=e&&e.__v_raw;return t?D(t):e}function zo(e){return Object.isExtensible(e)&&Qs(e,"__v_skip",!0),e}const xt=e=>J(e)?Jn(e):e,Xn=e=>J(e)?pr(e):e;class gr{constructor(t,n,s,r){this.getter=t,this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new Wn(()=>t(this._value),()=>Dt(this,this.effect._dirtyLevel===2?2:3)),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=D(this);return(!t._cacheable||t.effect.dirty)&&We(t._value,t._value=t.effect.run())&&Dt(t,4),mr(t),t.effect._dirtyLevel>=2&&Dt(t,2),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function Go(e,t,n=!1){let s,r;const o=M(e);return o?(s=e,r=Ee):(s=e.get,r=e.set),new gr(s,r,o||!r,n)}function mr(e){var t;Be&&st&&(e=D(e),or(st,(t=e.dep)!=null?t:e.dep=lr(()=>e.dep=void 0,e instanceof gr?e:void 0)))}function Dt(e,t=4,n,s){e=D(e);const r=e.dep;r&&ir(r,t)}function ge(e){return!!(e&&e.__v_isRef===!0)}function rc(e){return Jo(e,!1)}function Jo(e,t){return ge(e)?e:new Yo(e,t)}class Yo{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:D(t),this._value=n?t:xt(t)}get value(){return mr(this),this._value}set value(t){const n=this.__v_isShallow||at(t)||ot(t);t=n?t:D(t),We(t,this._rawValue)&&(this._rawValue,this._rawValue=t,this._value=n?t:xt(t),Dt(this,4))}}function Xo(e){return ge(e)?e.value:e}const Zo={get:(e,t,n)=>Xo(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return ge(r)&&!ge(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function br(e){return vt(e)?e:new Proxy(e,Zo)}/**
10
+ * @vue/runtime-core v3.4.38
11
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
12
+ * @license MIT
13
+ **/function Ke(e,t,n,s){try{return s?e(...s):e()}catch(r){tn(r,t,n)}}function we(e,t,n,s){if(M(e)){const r=Ke(e,t,n,s);return r&&Ys(r)&&r.catch(o=>{tn(o,t,n)}),r}if(N(e)){const r=[];for(let o=0;o<e.length;o++)r.push(we(e[o],t,n,s));return r}}function tn(e,t,n,s=!0){const r=t?t.vnode:null;if(t){let o=t.parent;const i=t.proxy,c=`https://vuejs.org/error-reference/#runtime-${n}`;for(;o;){const d=o.ec;if(d){for(let a=0;a<d.length;a++)if(d[a](e,i,c)===!1)return}o=o.parent}const f=t.appContext.config.errorHandler;if(f){ze(),Ke(f,null,10,[e,i,c]),Ge();return}}Qo(e,n,r,s)}function Qo(e,t,n,s=!0){console.error(e)}let St=!1,On=!1;const ce=[];let Pe=0;const ft=[];let $e=null,tt=0;const yr=Promise.resolve();let Zn=null;function Qn(e){const t=Zn||yr;return e?t.then(this?e.bind(this):e):t}function ei(e){let t=Pe+1,n=ce.length;for(;t<n;){const s=t+n>>>1,r=ce[s],o=At(r);o<e||o===e&&r.pre?t=s+1:n=s}return t}function es(e){(!ce.length||!ce.includes(e,St&&e.allowRecurse?Pe+1:Pe))&&(e.id==null?ce.push(e):ce.splice(ei(e.id),0,e),vr())}function vr(){!St&&!On&&(On=!0,Zn=yr.then(Er))}function ti(e){const t=ce.indexOf(e);t>Pe&&ce.splice(t,1)}function ni(e){N(e)?ft.push(...e):(!$e||!$e.includes(e,e.allowRecurse?tt+1:tt))&&ft.push(e),vr()}function bs(e,t,n=St?Pe+1:0){for(;n<ce.length;n++){const s=ce[n];if(s&&s.pre){if(e&&s.id!==e.uid)continue;ce.splice(n,1),n--,s()}}}function Cr(e){if(ft.length){const t=[...new Set(ft)].sort((n,s)=>At(n)-At(s));if(ft.length=0,$e){$e.push(...t);return}for($e=t,tt=0;tt<$e.length;tt++){const n=$e[tt];n.active!==!1&&n()}$e=null,tt=0}}const At=e=>e.id==null?1/0:e.id,si=(e,t)=>{const n=At(e)-At(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Er(e){On=!1,St=!0,ce.sort(si);try{for(Pe=0;Pe<ce.length;Pe++){const t=ce[Pe];t&&t.active!==!1&&Ke(t,t.i,t.i?15:14)}}finally{Pe=0,ce.length=0,Cr(),St=!1,Zn=null,(ce.length||ft.length)&&Er()}}let se=null,nn=null;function Kt(e){const t=se;return se=e,nn=e&&e.type.__scopeId||null,t}function oc(e){nn=e}function ic(){nn=null}function ri(e,t=se,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&Ns(-1);const o=Kt(t);let i;try{i=e(...r)}finally{Kt(o),s._d&&Ns(1)}return i};return s._n=!0,s._c=!0,s._d=!0,s}function lc(e,t){if(se===null)return e;const n=fn(se),s=e.dirs||(e.dirs=[]);for(let r=0;r<t.length;r++){let[o,i,c,f=X]=t[r];o&&(M(o)&&(o={mounted:o,updated:o}),o.deep&&Ue(i),s.push({dir:o,instance:n,value:i,oldValue:void 0,arg:c,modifiers:f}))}return e}function Xe(e,t,n,s){const r=e.dirs,o=t&&t.dirs;for(let i=0;i<r.length;i++){const c=r[i];o&&(c.oldValue=o[i].value);let f=c.dir[s];f&&(ze(),we(f,n,8,[e.el,c,e,t]),Ge())}}const De=Symbol("_leaveCb"),jt=Symbol("_enterCb");function oi(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Nr(()=>{e.isMounted=!0}),Pr(()=>{e.isUnmounting=!0}),e}const ve=[Function,Array],wr={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:ve,onEnter:ve,onAfterEnter:ve,onEnterCancelled:ve,onBeforeLeave:ve,onLeave:ve,onAfterLeave:ve,onLeaveCancelled:ve,onBeforeAppear:ve,onAppear:ve,onAfterAppear:ve,onAppearCancelled:ve},xr=e=>{const t=e.subTree;return t.component?xr(t.component):t},ii={name:"BaseTransition",props:wr,setup(e,{slots:t}){const n=cl(),s=oi();return()=>{const r=t.default&&Ar(t.default(),!0);if(!r||!r.length)return;let o=r[0];if(r.length>1){for(const y of r)if(y.type!==he){o=y;break}}const i=D(e),{mode:c}=i;if(s.isLeaving)return pn(o);const f=ys(o);if(!f)return pn(o);let d=Nn(f,i,s,n,y=>d=y);Wt(f,d);const a=n.subTree,p=a&&ys(a);if(p&&p.type!==he&&!nt(f,p)&&xr(n).type!==he){const y=Nn(p,i,s,n);if(Wt(p,y),c==="out-in"&&f.type!==he)return s.isLeaving=!0,y.afterLeave=()=>{s.isLeaving=!1,n.update.active!==!1&&(n.effect.dirty=!0,n.update())},pn(o);c==="in-out"&&f.type!==he&&(y.delayLeave=(S,R,L)=>{const Y=Sr(s,p);Y[String(p.key)]=p,S[De]=()=>{R(),S[De]=void 0,delete d.delayedLeave},d.delayedLeave=L})}return o}}},li=ii;function Sr(e,t){const{leavingVNodes:n}=e;let s=n.get(t.type);return s||(s=Object.create(null),n.set(t.type,s)),s}function Nn(e,t,n,s,r){const{appear:o,mode:i,persisted:c=!1,onBeforeEnter:f,onEnter:d,onAfterEnter:a,onEnterCancelled:p,onBeforeLeave:y,onLeave:S,onAfterLeave:R,onLeaveCancelled:L,onBeforeAppear:Y,onAppear:V,onAfterAppear:W,onAppearCancelled:H}=t,k=String(e.key),q=Sr(n,e),P=(O,F)=>{O&&we(O,s,9,F)},le=(O,F)=>{const B=F[1];P(O,F),N(O)?O.every(x=>x.length<=1)&&B():O.length<=1&&B()},te={mode:i,persisted:c,beforeEnter(O){let F=f;if(!n.isMounted)if(o)F=Y||f;else return;O[De]&&O[De](!0);const B=q[k];B&&nt(e,B)&&B.el[De]&&B.el[De](),P(F,[O])},enter(O){let F=d,B=a,x=p;if(!n.isMounted)if(o)F=V||d,B=W||a,x=H||p;else return;let K=!1;const Q=O[jt]=re=>{K||(K=!0,re?P(x,[O]):P(B,[O]),te.delayedLeave&&te.delayedLeave(),O[jt]=void 0)};F?le(F,[O,Q]):Q()},leave(O,F){const B=String(e.key);if(O[jt]&&O[jt](!0),n.isUnmounting)return F();P(y,[O]);let x=!1;const K=O[De]=Q=>{x||(x=!0,F(),Q?P(L,[O]):P(R,[O]),O[De]=void 0,q[B]===e&&delete q[B])};q[B]=e,S?le(S,[O,K]):K()},clone(O){const F=Nn(O,t,n,s,r);return r&&r(F),F}};return te}function pn(e){if(sn(e))return e=ke(e),e.children=null,e}function ys(e){if(!sn(e))return e;const{shapeFlag:t,children:n}=e;if(n){if(t&16)return n[0];if(t&32&&M(n.default))return n.default()}}function Wt(e,t){e.shapeFlag&6&&e.component?Wt(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Ar(e,t=!1,n){let s=[],r=0;for(let o=0;o<e.length;o++){let i=e[o];const c=n==null?i.key:String(n)+String(i.key!=null?i.key:o);i.type===Ce?(i.patchFlag&128&&r++,s=s.concat(Ar(i.children,t,c))):(t||i.type!==he)&&s.push(c!=null?ke(i,{key:c}):i)}if(r>1)for(let o=0;o<s.length;o++)s[o].patchFlag=-2;return s}/*! #__NO_SIDE_EFFECTS__ */function Tr(e,t){return M(e)?ie({name:e.name},t,{setup:e}):e}const Ct=e=>!!e.type.__asyncLoader,sn=e=>e.type.__isKeepAlive;function ci(e,t){Or(e,"a",t)}function fi(e,t){Or(e,"da",t)}function Or(e,t,n=oe){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(rn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)sn(r.parent.vnode)&&ui(s,t,n,r),r=r.parent}}function ui(e,t,n,s){const r=rn(t,e,s,!0);Mr(()=>{Dn(s[t],r)},n)}function rn(e,t,n=oe,s=!1){if(n){const r=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{ze();const c=Nt(n),f=we(t,n,e,i);return c(),Ge(),f});return s?r.unshift(o):r.push(o),o}}const Ie=e=>(t,n=oe)=>{(!cn||e==="sp")&&rn(e,(...s)=>t(...s),n)},ai=Ie("bm"),Nr=Ie("m"),di=Ie("bu"),hi=Ie("u"),Pr=Ie("bum"),Mr=Ie("um"),pi=Ie("sp"),_i=Ie("rtg"),gi=Ie("rtc");function mi(e,t=oe){rn("ec",e,t)}const bi="components";function cc(e,t){return vi(bi,e,!0,t)||e}const yi=Symbol.for("v-ndc");function vi(e,t,n=!0,s=!1){const r=se||oe;if(r){const o=r.type;{const c=hl(o,!1);if(c&&(c===t||c===pe(t)||c===Qt(pe(t))))return o}const i=vs(r[e]||o[e],t)||vs(r.appContext[e],t);return!i&&s?o:i}}function vs(e,t){return e&&(e[t]||e[pe(t)]||e[Qt(pe(t))])}function fc(e,t,n,s){let r;const o=n;if(N(e)||ee(e)){r=new Array(e.length);for(let i=0,c=e.length;i<c;i++)r[i]=t(e[i],i,void 0,o)}else if(typeof e=="number"){r=new Array(e);for(let i=0;i<e;i++)r[i]=t(i+1,i,void 0,o)}else if(J(e))if(e[Symbol.iterator])r=Array.from(e,(i,c)=>t(i,c,void 0,o));else{const i=Object.keys(e);r=new Array(i.length);for(let c=0,f=i.length;c<f;c++){const d=i[c];r[c]=t(e[d],d,c,o)}}else r=[];return r}function uc(e,t,n={},s,r){if(se.isCE||se.parent&&Ct(se.parent)&&se.parent.isCE)return fe("slot",n,s);let o=e[t];o&&o._c&&(o._d=!1),Yr();const i=o&&Rr(o(n)),c=Zr(Ce,{key:(n.key||i&&i.key||`_${t}`)+(!i&&s?"_fb":"")},i||[],i&&e._===1?64:-2);return o&&o._c&&(o._d=!0),c}function Rr(e){return e.some(t=>qt(t)?!(t.type===he||t.type===Ce&&!Rr(t.children)):!0)?e:null}const Pn=e=>e?to(e)?fn(e):Pn(e.parent):null,Et=ie(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Pn(e.parent),$root:e=>Pn(e.root),$emit:e=>e.emit,$options:e=>Lr(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,es(e.update)}),$nextTick:e=>e.n||(e.n=Qn.bind(e.proxy)),$watch:e=>ki.bind(e)}),_n=(e,t)=>e!==X&&!e.__isScriptSetup&&$(e,t),Ci={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:s,data:r,props:o,accessCache:i,type:c,appContext:f}=e;let d;if(t[0]!=="$"){const S=i[t];if(S!==void 0)switch(S){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return o[t]}else{if(_n(s,t))return i[t]=1,s[t];if(r!==X&&$(r,t))return i[t]=2,r[t];if((d=e.propsOptions[0])&&$(d,t))return i[t]=3,o[t];if(n!==X&&$(n,t))return i[t]=4,n[t];Mn&&(i[t]=0)}}const a=Et[t];let p,y;if(a)return t==="$attrs"&&_e(e.attrs,"get",""),a(e);if((p=c.__cssModules)&&(p=p[t]))return p;if(n!==X&&$(n,t))return i[t]=4,n[t];if(y=f.config.globalProperties,$(y,t))return y[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:o}=e;return _n(r,t)?(r[t]=n,!0):s!==X&&$(s,t)?(s[t]=n,!0):$(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:o}},i){let c;return!!n[i]||e!==X&&$(e,i)||_n(t,i)||(c=o[0])&&$(c,i)||$(s,i)||$(Et,i)||$(r.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:$(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Cs(e){return N(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let Mn=!0;function Ei(e){const t=Lr(e),n=e.proxy,s=e.ctx;Mn=!1,t.beforeCreate&&Es(t.beforeCreate,e,"bc");const{data:r,computed:o,methods:i,watch:c,provide:f,inject:d,created:a,beforeMount:p,mounted:y,beforeUpdate:S,updated:R,activated:L,deactivated:Y,beforeDestroy:V,beforeUnmount:W,destroyed:H,unmounted:k,render:q,renderTracked:P,renderTriggered:le,errorCaptured:te,serverPrefetch:O,expose:F,inheritAttrs:B,components:x,directives:K,filters:Q}=t;if(d&&wi(d,s,null),i)for(const Z in i){const z=i[Z];M(z)&&(s[Z]=z.bind(n))}if(r){const Z=r.call(n,n);J(Z)&&(e.data=Jn(Z))}if(Mn=!0,o)for(const Z in o){const z=o[Z],Je=M(z)?z.bind(n,n):M(z.get)?z.get.bind(n,n):Ee,Pt=!M(z)&&M(z.set)?z.set.bind(n):Ee,Ye=_l({get:Je,set:Pt});Object.defineProperty(s,Z,{enumerable:!0,configurable:!0,get:()=>Ye.value,set:Ae=>Ye.value=Ae})}if(c)for(const Z in c)Ir(c[Z],s,n,Z);if(f){const Z=M(f)?f.call(n):f;Reflect.ownKeys(Z).forEach(z=>{Ni(z,Z[z])})}a&&Es(a,e,"c");function ne(Z,z){N(z)?z.forEach(Je=>Z(Je.bind(n))):z&&Z(z.bind(n))}if(ne(ai,p),ne(Nr,y),ne(di,S),ne(hi,R),ne(ci,L),ne(fi,Y),ne(mi,te),ne(gi,P),ne(_i,le),ne(Pr,W),ne(Mr,k),ne(pi,O),N(F))if(F.length){const Z=e.exposed||(e.exposed={});F.forEach(z=>{Object.defineProperty(Z,z,{get:()=>n[z],set:Je=>n[z]=Je})})}else e.exposed||(e.exposed={});q&&e.render===Ee&&(e.render=q),B!=null&&(e.inheritAttrs=B),x&&(e.components=x),K&&(e.directives=K)}function wi(e,t,n=Ee){N(e)&&(e=Rn(e));for(const s in e){const r=e[s];let o;J(r)?"default"in r?o=Vt(r.from||s,r.default,!0):o=Vt(r.from||s):o=Vt(r),ge(o)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>o.value,set:i=>o.value=i}):t[s]=o}}function Es(e,t,n){we(N(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function Ir(e,t,n,s){const r=s.includes(".")?Gr(n,s):()=>n[s];if(ee(e)){const o=t[e];M(o)&&mn(r,o)}else if(M(e))mn(r,e.bind(n));else if(J(e))if(N(e))e.forEach(o=>Ir(o,t,n,s));else{const o=M(e.handler)?e.handler.bind(n):t[e.handler];M(o)&&mn(r,o,e)}}function Lr(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,c=o.get(t);let f;return c?f=c:!r.length&&!n&&!s?f=t:(f={},r.length&&r.forEach(d=>kt(f,d,i,!0)),kt(f,t,i)),J(t)&&o.set(t,f),f}function kt(e,t,n,s=!1){const{mixins:r,extends:o}=t;o&&kt(e,o,n,!0),r&&r.forEach(i=>kt(e,i,n,!0));for(const i in t)if(!(s&&i==="expose")){const c=xi[i]||n&&n[i];e[i]=c?c(e[i],t[i]):t[i]}return e}const xi={data:ws,props:xs,emits:xs,methods:bt,computed:bt,beforeCreate:ae,created:ae,beforeMount:ae,mounted:ae,beforeUpdate:ae,updated:ae,beforeDestroy:ae,beforeUnmount:ae,destroyed:ae,unmounted:ae,activated:ae,deactivated:ae,errorCaptured:ae,serverPrefetch:ae,components:bt,directives:bt,watch:Ai,provide:ws,inject:Si};function ws(e,t){return t?e?function(){return ie(M(e)?e.call(this,this):e,M(t)?t.call(this,this):t)}:t:e}function Si(e,t){return bt(Rn(e),Rn(t))}function Rn(e){if(N(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function ae(e,t){return e?[...new Set([].concat(e,t))]:t}function bt(e,t){return e?ie(Object.create(null),e,t):t}function xs(e,t){return e?N(e)&&N(t)?[...new Set([...e,...t])]:ie(Object.create(null),Cs(e),Cs(t??{})):t}function Ai(e,t){if(!e)return t;if(!t)return e;const n=ie(Object.create(null),e);for(const s in t)n[s]=ae(e[s],t[s]);return n}function Fr(){return{app:null,config:{isNativeTag:uo,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Ti=0;function Oi(e,t){return function(s,r=null){M(s)||(s=ie({},s)),r!=null&&!J(r)&&(r=null);const o=Fr(),i=new WeakSet;let c=!1;const f=o.app={_uid:Ti++,_component:s,_props:r,_container:null,_context:o,_instance:null,version:gl,get config(){return o.config},set config(d){},use(d,...a){return i.has(d)||(d&&M(d.install)?(i.add(d),d.install(f,...a)):M(d)&&(i.add(d),d(f,...a))),f},mixin(d){return o.mixins.includes(d)||o.mixins.push(d),f},component(d,a){return a?(o.components[d]=a,f):o.components[d]},directive(d,a){return a?(o.directives[d]=a,f):o.directives[d]},mount(d,a,p){if(!c){const y=fe(s,r);return y.appContext=o,p===!0?p="svg":p===!1&&(p=void 0),e(y,d,p),c=!0,f._container=d,d.__vue_app__=f,fn(y.component)}},unmount(){c&&(e(null,f._container),delete f._container.__vue_app__)},provide(d,a){return o.provides[d]=a,f},runWithContext(d){const a=ut;ut=f;try{return d()}finally{ut=a}}};return f}}let ut=null;function Ni(e,t){if(oe){let n=oe.provides;const s=oe.parent&&oe.parent.provides;s===n&&(n=oe.provides=Object.create(s)),n[e]=t}}function Vt(e,t,n=!1){const s=oe||se;if(s||ut){const r=ut?ut._context.provides:s?s.parent==null?s.vnode.appContext&&s.vnode.appContext.provides:s.parent.provides:void 0;if(r&&e in r)return r[e];if(arguments.length>1)return n&&M(t)?t.call(s&&s.proxy):t}}const Hr={},jr=()=>Object.create(Hr),$r=e=>Object.getPrototypeOf(e)===Hr;function Pi(e,t,n,s=!1){const r={},o=jr();e.propsDefaults=Object.create(null),Dr(e,t,r,o);for(const i in e.propsOptions[0])i in r||(r[i]=void 0);n?e.props=s?r:qo(r):e.type.props?e.props=r:e.props=o,e.attrs=o}function Mi(e,t,n,s){const{props:r,attrs:o,vnode:{patchFlag:i}}=e,c=D(r),[f]=e.propsOptions;let d=!1;if((s||i>0)&&!(i&16)){if(i&8){const a=e.vnode.dynamicProps;for(let p=0;p<a.length;p++){let y=a[p];if(on(e.emitsOptions,y))continue;const S=t[y];if(f)if($(o,y))S!==o[y]&&(o[y]=S,d=!0);else{const R=pe(y);r[R]=In(f,c,R,S,e,!1)}else S!==o[y]&&(o[y]=S,d=!0)}}}else{Dr(e,t,r,o)&&(d=!0);let a;for(const p in c)(!t||!$(t,p)&&((a=be(p))===p||!$(t,a)))&&(f?n&&(n[p]!==void 0||n[a]!==void 0)&&(r[p]=In(f,c,p,void 0,e,!0)):delete r[p]);if(o!==c)for(const p in o)(!t||!$(t,p))&&(delete o[p],d=!0)}d&&Re(e.attrs,"set","")}function Dr(e,t,n,s){const[r,o]=e.propsOptions;let i=!1,c;if(t)for(let f in t){if(yt(f))continue;const d=t[f];let a;r&&$(r,a=pe(f))?!o||!o.includes(a)?n[a]=d:(c||(c={}))[a]=d:on(e.emitsOptions,f)||(!(f in s)||d!==s[f])&&(s[f]=d,i=!0)}if(o){const f=D(n),d=c||X;for(let a=0;a<o.length;a++){const p=o[a];n[p]=In(r,f,p,d[p],e,!$(d,p))}}return i}function In(e,t,n,s,r,o){const i=e[n];if(i!=null){const c=$(i,"default");if(c&&s===void 0){const f=i.default;if(i.type!==Function&&!i.skipFactory&&M(f)){const{propsDefaults:d}=r;if(n in d)s=d[n];else{const a=Nt(r);s=d[n]=f.call(null,t),a()}}else s=f}i[0]&&(o&&!c?s=!1:i[1]&&(s===""||s===be(n))&&(s=!0))}return s}const Ri=new WeakMap;function Vr(e,t,n=!1){const s=n?Ri:t.propsCache,r=s.get(e);if(r)return r;const o=e.props,i={},c=[];let f=!1;if(!M(e)){const a=p=>{f=!0;const[y,S]=Vr(p,t,!0);ie(i,y),S&&c.push(...S)};!n&&t.mixins.length&&t.mixins.forEach(a),e.extends&&a(e.extends),e.mixins&&e.mixins.forEach(a)}if(!o&&!f)return J(e)&&s.set(e,lt),lt;if(N(o))for(let a=0;a<o.length;a++){const p=pe(o[a]);Ss(p)&&(i[p]=X)}else if(o)for(const a in o){const p=pe(a);if(Ss(p)){const y=o[a],S=i[p]=N(y)||M(y)?{type:y}:ie({},y),R=S.type;let L=!1,Y=!0;if(N(R))for(let V=0;V<R.length;++V){const W=R[V],H=M(W)&&W.name;if(H==="Boolean"){L=!0;break}else H==="String"&&(Y=!1)}else L=M(R)&&R.name==="Boolean";S[0]=L,S[1]=Y,(L||$(S,"default"))&&c.push(p)}}const d=[i,c];return J(e)&&s.set(e,d),d}function Ss(e){return e[0]!=="$"&&!yt(e)}const Ur=e=>e[0]==="_"||e==="$stable",ts=e=>N(e)?e.map(Ne):[Ne(e)],Ii=(e,t,n)=>{if(t._n)return t;const s=ri((...r)=>ts(t(...r)),n);return s._c=!1,s},Br=(e,t,n)=>{const s=e._ctx;for(const r in e){if(Ur(r))continue;const o=e[r];if(M(o))t[r]=Ii(r,o,s);else if(o!=null){const i=ts(o);t[r]=()=>i}}},Kr=(e,t)=>{const n=ts(t);e.slots.default=()=>n},Wr=(e,t,n)=>{for(const s in t)(n||s!=="_")&&(e[s]=t[s])},Li=(e,t,n)=>{const s=e.slots=jr();if(e.vnode.shapeFlag&32){const r=t._;r?(Wr(s,t,n),n&&Qs(s,"_",r,!0)):Br(t,s)}else t&&Kr(e,t)},Fi=(e,t,n)=>{const{vnode:s,slots:r}=e;let o=!0,i=X;if(s.shapeFlag&32){const c=t._;c?n&&c===1?o=!1:Wr(r,t,n):(o=!t.$stable,Br(t,r)),i=t}else t&&(Kr(e,t),i={default:1});if(o)for(const c in r)!Ur(c)&&i[c]==null&&delete r[c]};function Ln(e,t,n,s,r=!1){if(N(e)){e.forEach((y,S)=>Ln(y,t&&(N(t)?t[S]:t),n,s,r));return}if(Ct(s)&&!r)return;const o=s.shapeFlag&4?fn(s.component):s.el,i=r?null:o,{i:c,r:f}=e,d=t&&t.r,a=c.refs===X?c.refs={}:c.refs,p=c.setupState;if(d!=null&&d!==f&&(ee(d)?(a[d]=null,$(p,d)&&(p[d]=null)):ge(d)&&(d.value=null)),M(f))Ke(f,c,12,[i,a]);else{const y=ee(f),S=ge(f);if(y||S){const R=()=>{if(e.f){const L=y?$(p,f)?p[f]:a[f]:f.value;r?N(L)&&Dn(L,o):N(L)?L.includes(o)||L.push(o):y?(a[f]=[o],$(p,f)&&(p[f]=a[f])):(f.value=[o],e.k&&(a[e.k]=f.value))}else y?(a[f]=i,$(p,f)&&(p[f]=i)):S&&(f.value=i,e.k&&(a[e.k]=i))};i?(R.id=-1,de(R,n)):R()}}}const Hi=Symbol("_vte"),ji=e=>e.__isTeleport;function $i(){typeof __VUE_PROD_HYDRATION_MISMATCH_DETAILS__!="boolean"&&(Un().__VUE_PROD_HYDRATION_MISMATCH_DETAILS__=!1)}const de=Qi;function Di(e){return Vi(e)}function Vi(e,t){$i();const n=Un();n.__VUE__=!0;const{insert:s,remove:r,patchProp:o,createElement:i,createText:c,createComment:f,setText:d,setElementText:a,parentNode:p,nextSibling:y,setScopeId:S=Ee,insertStaticContent:R}=e,L=(l,u,h,m=null,_=null,b=null,E=void 0,v=null,C=!!u.dynamicChildren)=>{if(l===u)return;l&&!nt(l,u)&&(m=Mt(l),Ae(l,_,b,!0),l=null),u.patchFlag===-2&&(C=!1,u.dynamicChildren=null);const{type:g,ref:w,shapeFlag:T}=u;switch(g){case ln:Y(l,u,h,m);break;case he:V(l,u,h,m);break;case bn:l==null&&W(u,h,m,E);break;case Ce:x(l,u,h,m,_,b,E,v,C);break;default:T&1?q(l,u,h,m,_,b,E,v,C):T&6?K(l,u,h,m,_,b,E,v,C):(T&64||T&128)&&g.process(l,u,h,m,_,b,E,v,C,ht)}w!=null&&_&&Ln(w,l&&l.ref,b,u||l,!u)},Y=(l,u,h,m)=>{if(l==null)s(u.el=c(u.children),h,m);else{const _=u.el=l.el;u.children!==l.children&&d(_,u.children)}},V=(l,u,h,m)=>{l==null?s(u.el=f(u.children||""),h,m):u.el=l.el},W=(l,u,h,m)=>{[l.el,l.anchor]=R(l.children,u,h,m,l.el,l.anchor)},H=({el:l,anchor:u},h,m)=>{let _;for(;l&&l!==u;)_=y(l),s(l,h,m),l=_;s(u,h,m)},k=({el:l,anchor:u})=>{let h;for(;l&&l!==u;)h=y(l),r(l),l=h;r(u)},q=(l,u,h,m,_,b,E,v,C)=>{u.type==="svg"?E="svg":u.type==="math"&&(E="mathml"),l==null?P(u,h,m,_,b,E,v,C):O(l,u,_,b,E,v,C)},P=(l,u,h,m,_,b,E,v)=>{let C,g;const{props:w,shapeFlag:T,transition:A,dirs:I}=l;if(C=l.el=i(l.type,b,w&&w.is,w),T&8?a(C,l.children):T&16&&te(l.children,C,null,m,_,gn(l,b),E,v),I&&Xe(l,null,m,"created"),le(C,l,l.scopeId,E,m),w){for(const G in w)G!=="value"&&!yt(G)&&o(C,G,null,w[G],b,m);"value"in w&&o(C,"value",null,w.value,b),(g=w.onVnodeBeforeMount)&&Oe(g,m,l)}I&&Xe(l,null,m,"beforeMount");const j=Ui(_,A);j&&A.beforeEnter(C),s(C,u,h),((g=w&&w.onVnodeMounted)||j||I)&&de(()=>{g&&Oe(g,m,l),j&&A.enter(C),I&&Xe(l,null,m,"mounted")},_)},le=(l,u,h,m,_)=>{if(h&&S(l,h),m)for(let b=0;b<m.length;b++)S(l,m[b]);if(_){let b=_.subTree;if(u===b){const E=_.vnode;le(l,E,E.scopeId,E.slotScopeIds,_.parent)}}},te=(l,u,h,m,_,b,E,v,C=0)=>{for(let g=C;g<l.length;g++){const w=l[g]=v?Ve(l[g]):Ne(l[g]);L(null,w,u,h,m,_,b,E,v)}},O=(l,u,h,m,_,b,E)=>{const v=u.el=l.el;let{patchFlag:C,dynamicChildren:g,dirs:w}=u;C|=l.patchFlag&16;const T=l.props||X,A=u.props||X;let I;if(h&&Ze(h,!1),(I=A.onVnodeBeforeUpdate)&&Oe(I,h,u,l),w&&Xe(u,l,h,"beforeUpdate"),h&&Ze(h,!0),(T.innerHTML&&A.innerHTML==null||T.textContent&&A.textContent==null)&&a(v,""),g?F(l.dynamicChildren,g,v,h,m,gn(u,_),b):E||z(l,u,v,null,h,m,gn(u,_),b,!1),C>0){if(C&16)B(v,T,A,h,_);else if(C&2&&T.class!==A.class&&o(v,"class",null,A.class,_),C&4&&o(v,"style",T.style,A.style,_),C&8){const j=u.dynamicProps;for(let G=0;G<j.length;G++){const U=j[G],ue=T[U],xe=A[U];(xe!==ue||U==="value")&&o(v,U,ue,xe,_,h)}}C&1&&l.children!==u.children&&a(v,u.children)}else!E&&g==null&&B(v,T,A,h,_);((I=A.onVnodeUpdated)||w)&&de(()=>{I&&Oe(I,h,u,l),w&&Xe(u,l,h,"updated")},m)},F=(l,u,h,m,_,b,E)=>{for(let v=0;v<u.length;v++){const C=l[v],g=u[v],w=C.el&&(C.type===Ce||!nt(C,g)||C.shapeFlag&70)?p(C.el):h;L(C,g,w,null,m,_,b,E,!0)}},B=(l,u,h,m,_)=>{if(u!==h){if(u!==X)for(const b in u)!yt(b)&&!(b in h)&&o(l,b,u[b],null,_,m);for(const b in h){if(yt(b))continue;const E=h[b],v=u[b];E!==v&&b!=="value"&&o(l,b,v,E,_,m)}"value"in h&&o(l,"value",u.value,h.value,_)}},x=(l,u,h,m,_,b,E,v,C)=>{const g=u.el=l?l.el:c(""),w=u.anchor=l?l.anchor:c("");let{patchFlag:T,dynamicChildren:A,slotScopeIds:I}=u;I&&(v=v?v.concat(I):I),l==null?(s(g,h,m),s(w,h,m),te(u.children||[],h,w,_,b,E,v,C)):T>0&&T&64&&A&&l.dynamicChildren?(F(l.dynamicChildren,A,h,_,b,E,v),(u.key!=null||_&&u===_.subTree)&&kr(l,u,!0)):z(l,u,h,w,_,b,E,v,C)},K=(l,u,h,m,_,b,E,v,C)=>{u.slotScopeIds=v,l==null?u.shapeFlag&512?_.ctx.activate(u,h,m,E,C):Q(u,h,m,_,b,E,C):re(l,u,C)},Q=(l,u,h,m,_,b,E)=>{const v=l.component=ll(l,m,_);if(sn(l)&&(v.ctx.renderer=ht),fl(v,!1,E),v.asyncDep){if(_&&_.registerDep(v,ne,E),!l.el){const C=v.subTree=fe(he);V(null,C,u,h)}}else ne(v,l,u,h,_,b,E)},re=(l,u,h)=>{const m=u.component=l.component;if(Yi(l,u,h))if(m.asyncDep&&!m.asyncResolved){Z(m,u,h);return}else m.next=u,ti(m.update),m.effect.dirty=!0,m.update();else u.el=l.el,m.vnode=u},ne=(l,u,h,m,_,b,E)=>{const v=()=>{if(l.isMounted){let{next:w,bu:T,u:A,parent:I,vnode:j}=l;{const it=qr(l);if(it){w&&(w.el=j.el,Z(l,w,E)),it.asyncDep.then(()=>{l.isUnmounted||v()});return}}let G=w,U;Ze(l,!1),w?(w.el=j.el,Z(l,w,E)):w=j,T&&dn(T),(U=w.props&&w.props.onVnodeBeforeUpdate)&&Oe(U,I,w,j),Ze(l,!0);const ue=Ts(l),xe=l.subTree;l.subTree=ue,L(xe,ue,p(xe.el),Mt(xe),l,_,b),w.el=ue.el,G===null&&Xi(l,ue.el),A&&de(A,_),(U=w.props&&w.props.onVnodeUpdated)&&de(()=>Oe(U,I,w,j),_)}else{let w;const{el:T,props:A}=u,{bm:I,m:j,parent:G}=l,U=Ct(u);Ze(l,!1),I&&dn(I),!U&&(w=A&&A.onVnodeBeforeMount)&&Oe(w,G,u),Ze(l,!0);{const ue=l.subTree=Ts(l);L(null,ue,h,m,l,_,b),u.el=ue.el}if(j&&de(j,_),!U&&(w=A&&A.onVnodeMounted)){const ue=u;de(()=>Oe(w,G,ue),_)}(u.shapeFlag&256||G&&Ct(G.vnode)&&G.vnode.shapeFlag&256)&&l.a&&de(l.a,_),l.isMounted=!0,u=h=m=null}},C=l.effect=new Wn(v,Ee,()=>es(g),l.scope),g=l.update=()=>{C.dirty&&C.run()};g.i=l,g.id=l.uid,Ze(l,!0),g()},Z=(l,u,h)=>{u.component=l;const m=l.vnode.props;l.vnode=u,l.next=null,Mi(l,u.props,m,h),Fi(l,u.children,h),ze(),bs(l),Ge()},z=(l,u,h,m,_,b,E,v,C=!1)=>{const g=l&&l.children,w=l?l.shapeFlag:0,T=u.children,{patchFlag:A,shapeFlag:I}=u;if(A>0){if(A&128){Pt(g,T,h,m,_,b,E,v,C);return}else if(A&256){Je(g,T,h,m,_,b,E,v,C);return}}I&8?(w&16&&dt(g,_,b),T!==g&&a(h,T)):w&16?I&16?Pt(g,T,h,m,_,b,E,v,C):dt(g,_,b,!0):(w&8&&a(h,""),I&16&&te(T,h,m,_,b,E,v,C))},Je=(l,u,h,m,_,b,E,v,C)=>{l=l||lt,u=u||lt;const g=l.length,w=u.length,T=Math.min(g,w);let A;for(A=0;A<T;A++){const I=u[A]=C?Ve(u[A]):Ne(u[A]);L(l[A],I,h,null,_,b,E,v,C)}g>w?dt(l,_,b,!0,!1,T):te(u,h,m,_,b,E,v,C,T)},Pt=(l,u,h,m,_,b,E,v,C)=>{let g=0;const w=u.length;let T=l.length-1,A=w-1;for(;g<=T&&g<=A;){const I=l[g],j=u[g]=C?Ve(u[g]):Ne(u[g]);if(nt(I,j))L(I,j,h,null,_,b,E,v,C);else break;g++}for(;g<=T&&g<=A;){const I=l[T],j=u[A]=C?Ve(u[A]):Ne(u[A]);if(nt(I,j))L(I,j,h,null,_,b,E,v,C);else break;T--,A--}if(g>T){if(g<=A){const I=A+1,j=I<w?u[I].el:m;for(;g<=A;)L(null,u[g]=C?Ve(u[g]):Ne(u[g]),h,j,_,b,E,v,C),g++}}else if(g>A)for(;g<=T;)Ae(l[g],_,b,!0),g++;else{const I=g,j=g,G=new Map;for(g=j;g<=A;g++){const me=u[g]=C?Ve(u[g]):Ne(u[g]);me.key!=null&&G.set(me.key,g)}let U,ue=0;const xe=A-j+1;let it=!1,ls=0;const pt=new Array(xe);for(g=0;g<xe;g++)pt[g]=0;for(g=I;g<=T;g++){const me=l[g];if(ue>=xe){Ae(me,_,b,!0);continue}let Te;if(me.key!=null)Te=G.get(me.key);else for(U=j;U<=A;U++)if(pt[U-j]===0&&nt(me,u[U])){Te=U;break}Te===void 0?Ae(me,_,b,!0):(pt[Te-j]=g+1,Te>=ls?ls=Te:it=!0,L(me,u[Te],h,null,_,b,E,v,C),ue++)}const cs=it?Bi(pt):lt;for(U=cs.length-1,g=xe-1;g>=0;g--){const me=j+g,Te=u[me],fs=me+1<w?u[me+1].el:m;pt[g]===0?L(null,Te,h,fs,_,b,E,v,C):it&&(U<0||g!==cs[U]?Ye(Te,h,fs,2):U--)}}},Ye=(l,u,h,m,_=null)=>{const{el:b,type:E,transition:v,children:C,shapeFlag:g}=l;if(g&6){Ye(l.component.subTree,u,h,m);return}if(g&128){l.suspense.move(u,h,m);return}if(g&64){E.move(l,u,h,ht);return}if(E===Ce){s(b,u,h);for(let T=0;T<C.length;T++)Ye(C[T],u,h,m);s(l.anchor,u,h);return}if(E===bn){H(l,u,h);return}if(m!==2&&g&1&&v)if(m===0)v.beforeEnter(b),s(b,u,h),de(()=>v.enter(b),_);else{const{leave:T,delayLeave:A,afterLeave:I}=v,j=()=>s(b,u,h),G=()=>{T(b,()=>{j(),I&&I()})};A?A(b,j,G):G()}else s(b,u,h)},Ae=(l,u,h,m=!1,_=!1)=>{const{type:b,props:E,ref:v,children:C,dynamicChildren:g,shapeFlag:w,patchFlag:T,dirs:A,cacheIndex:I}=l;if(T===-2&&(_=!1),v!=null&&Ln(v,null,h,l,!0),I!=null&&(u.renderCache[I]=void 0),w&256){u.ctx.deactivate(l);return}const j=w&1&&A,G=!Ct(l);let U;if(G&&(U=E&&E.onVnodeBeforeUnmount)&&Oe(U,u,l),w&6)fo(l.component,h,m);else{if(w&128){l.suspense.unmount(h,m);return}j&&Xe(l,null,u,"beforeUnmount"),w&64?l.type.remove(l,u,h,ht,m):g&&!g.hasOnce&&(b!==Ce||T>0&&T&64)?dt(g,u,h,!1,!0):(b===Ce&&T&384||!_&&w&16)&&dt(C,u,h),m&&os(l)}(G&&(U=E&&E.onVnodeUnmounted)||j)&&de(()=>{U&&Oe(U,u,l),j&&Xe(l,null,u,"unmounted")},h)},os=l=>{const{type:u,el:h,anchor:m,transition:_}=l;if(u===Ce){co(h,m);return}if(u===bn){k(l);return}const b=()=>{r(h),_&&!_.persisted&&_.afterLeave&&_.afterLeave()};if(l.shapeFlag&1&&_&&!_.persisted){const{leave:E,delayLeave:v}=_,C=()=>E(h,b);v?v(l.el,b,C):C()}else b()},co=(l,u)=>{let h;for(;l!==u;)h=y(l),r(l),l=h;r(u)},fo=(l,u,h)=>{const{bum:m,scope:_,update:b,subTree:E,um:v,m:C,a:g}=l;As(C),As(g),m&&dn(m),_.stop(),b&&(b.active=!1,Ae(E,l,u,h)),v&&de(v,u),de(()=>{l.isUnmounted=!0},u),u&&u.pendingBranch&&!u.isUnmounted&&l.asyncDep&&!l.asyncResolved&&l.suspenseId===u.pendingId&&(u.deps--,u.deps===0&&u.resolve())},dt=(l,u,h,m=!1,_=!1,b=0)=>{for(let E=b;E<l.length;E++)Ae(l[E],u,h,m,_)},Mt=l=>{if(l.shapeFlag&6)return Mt(l.component.subTree);if(l.shapeFlag&128)return l.suspense.next();const u=y(l.anchor||l.el),h=u&&u[Hi];return h?y(h):u};let un=!1;const is=(l,u,h)=>{l==null?u._vnode&&Ae(u._vnode,null,null,!0):L(u._vnode||null,l,u,null,null,null,h),u._vnode=l,un||(un=!0,bs(),Cr(),un=!1)},ht={p:L,um:Ae,m:Ye,r:os,mt:Q,mc:te,pc:z,pbc:F,n:Mt,o:e};return{render:is,hydrate:void 0,createApp:Oi(is)}}function gn({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function Ze({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Ui(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function kr(e,t,n=!1){const s=e.children,r=t.children;if(N(s)&&N(r))for(let o=0;o<s.length;o++){const i=s[o];let c=r[o];c.shapeFlag&1&&!c.dynamicChildren&&((c.patchFlag<=0||c.patchFlag===32)&&(c=r[o]=Ve(r[o]),c.el=i.el),!n&&c.patchFlag!==-2&&kr(i,c)),c.type===ln&&(c.el=i.el)}}function Bi(e){const t=e.slice(),n=[0];let s,r,o,i,c;const f=e.length;for(s=0;s<f;s++){const d=e[s];if(d!==0){if(r=n[n.length-1],e[r]<d){t[s]=r,n.push(s);continue}for(o=0,i=n.length-1;o<i;)c=o+i>>1,e[n[c]]<d?o=c+1:i=c;d<e[n[o]]&&(o>0&&(t[s]=n[o-1]),n[o]=s)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}function qr(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:qr(t)}function As(e){if(e)for(let t=0;t<e.length;t++)e[t].active=!1}const Ki=Symbol.for("v-scx"),Wi=()=>Vt(Ki),$t={};function mn(e,t,n){return zr(e,t,n)}function zr(e,t,{immediate:n,deep:s,flush:r,once:o,onTrack:i,onTrigger:c}=X){if(t&&o){const P=t;t=(...le)=>{P(...le),q()}}const f=oe,d=P=>s===!0?P:Ue(P,s===!1?1:void 0);let a,p=!1,y=!1;if(ge(e)?(a=()=>e.value,p=at(e)):vt(e)?(a=()=>d(e),p=!0):N(e)?(y=!0,p=e.some(P=>vt(P)||at(P)),a=()=>e.map(P=>{if(ge(P))return P.value;if(vt(P))return d(P);if(M(P))return Ke(P,f,2)})):M(e)?t?a=()=>Ke(e,f,2):a=()=>(S&&S(),we(e,f,3,[R])):a=Ee,t&&s){const P=a;a=()=>Ue(P())}let S,R=P=>{S=H.onStop=()=>{Ke(P,f,4),S=H.onStop=void 0}},L;if(cn)if(R=Ee,t?n&&we(t,f,3,[a(),y?[]:void 0,R]):a(),r==="sync"){const P=Wi();L=P.__watcherHandles||(P.__watcherHandles=[])}else return Ee;let Y=y?new Array(e.length).fill($t):$t;const V=()=>{if(!(!H.active||!H.dirty))if(t){const P=H.run();(s||p||(y?P.some((le,te)=>We(le,Y[te])):We(P,Y)))&&(S&&S(),we(t,f,3,[P,Y===$t?void 0:y&&Y[0]===$t?[]:Y,R]),Y=P)}else H.run()};V.allowRecurse=!!t;let W;r==="sync"?W=V:r==="post"?W=()=>de(V,f&&f.suspense):(V.pre=!0,f&&(V.id=f.uid),W=()=>es(V));const H=new Wn(a,Ee,W),k=Ao(),q=()=>{H.stop(),k&&Dn(k.effects,H)};return t?n?V():Y=H.run():r==="post"?de(H.run.bind(H),f&&f.suspense):H.run(),L&&L.push(q),q}function ki(e,t,n){const s=this.proxy,r=ee(e)?e.includes(".")?Gr(s,e):()=>s[e]:e.bind(s,s);let o;M(t)?o=t:(o=t.handler,n=t);const i=Nt(this),c=zr(r,o.bind(s),n);return i(),c}function Gr(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r<n.length&&s;r++)s=s[n[r]];return s}}function Ue(e,t=1/0,n){if(t<=0||!J(e)||e.__v_skip||(n=n||new Set,n.has(e)))return e;if(n.add(e),t--,ge(e))Ue(e.value,t,n);else if(N(e))for(let s=0;s<e.length;s++)Ue(e[s],t,n);else if(Js(e)||ct(e))e.forEach(s=>{Ue(s,t,n)});else if(Zs(e)){for(const s in e)Ue(e[s],t,n);for(const s of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,s)&&Ue(e[s],t,n)}return e}const qi=(e,t)=>t==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${pe(t)}Modifiers`]||e[`${be(t)}Modifiers`];function zi(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||X;let r=n;const o=t.startsWith("update:"),i=o&&qi(s,t.slice(7));i&&(i.trim&&(r=n.map(a=>ee(a)?a.trim():a)),i.number&&(r=n.map(go)));let c,f=s[c=an(t)]||s[c=an(pe(t))];!f&&o&&(f=s[c=an(be(t))]),f&&we(f,e,6,r);const d=s[c+"Once"];if(d){if(!e.emitted)e.emitted={};else if(e.emitted[c])return;e.emitted[c]=!0,we(d,e,6,r)}}function Jr(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const o=e.emits;let i={},c=!1;if(!M(e)){const f=d=>{const a=Jr(d,t,!0);a&&(c=!0,ie(i,a))};!n&&t.mixins.length&&t.mixins.forEach(f),e.extends&&f(e.extends),e.mixins&&e.mixins.forEach(f)}return!o&&!c?(J(e)&&s.set(e,null),null):(N(o)?o.forEach(f=>i[f]=null):ie(i,o),J(e)&&s.set(e,i),i)}function on(e,t){return!e||!Yt(t)?!1:(t=t.slice(2).replace(/Once$/,""),$(e,t[0].toLowerCase()+t.slice(1))||$(e,be(t))||$(e,t))}function Ts(e){const{type:t,vnode:n,proxy:s,withProxy:r,propsOptions:[o],slots:i,attrs:c,emit:f,render:d,renderCache:a,props:p,data:y,setupState:S,ctx:R,inheritAttrs:L}=e,Y=Kt(e);let V,W;try{if(n.shapeFlag&4){const k=r||s,q=k;V=Ne(d.call(q,k,a,p,S,y,R)),W=c}else{const k=t;V=Ne(k.length>1?k(p,{attrs:c,slots:i,emit:f}):k(p,null)),W=t.props?c:Gi(c)}}catch(k){wt.length=0,tn(k,e,1),V=fe(he)}let H=V;if(W&&L!==!1){const k=Object.keys(W),{shapeFlag:q}=H;k.length&&q&7&&(o&&k.some($n)&&(W=Ji(W,o)),H=ke(H,W,!1,!0))}return n.dirs&&(H=ke(H,null,!1,!0),H.dirs=H.dirs?H.dirs.concat(n.dirs):n.dirs),n.transition&&(H.transition=n.transition),V=H,Kt(Y),V}const Gi=e=>{let t;for(const n in e)(n==="class"||n==="style"||Yt(n))&&((t||(t={}))[n]=e[n]);return t},Ji=(e,t)=>{const n={};for(const s in e)(!$n(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Yi(e,t,n){const{props:s,children:r,component:o}=e,{props:i,children:c,patchFlag:f}=t,d=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&f>=0){if(f&1024)return!0;if(f&16)return s?Os(s,i,d):!!i;if(f&8){const a=t.dynamicProps;for(let p=0;p<a.length;p++){const y=a[p];if(i[y]!==s[y]&&!on(d,y))return!0}}}else return(r||c)&&(!c||!c.$stable)?!0:s===i?!1:s?i?Os(s,i,d):!0:!!i;return!1}function Os(e,t,n){const s=Object.keys(t);if(s.length!==Object.keys(e).length)return!0;for(let r=0;r<s.length;r++){const o=s[r];if(t[o]!==e[o]&&!on(n,o))return!0}return!1}function Xi({vnode:e,parent:t},n){for(;t;){const s=t.subTree;if(s.suspense&&s.suspense.activeBranch===e&&(s.el=e.el),s===e)(e=t.vnode).el=n,t=t.parent;else break}}const Zi=e=>e.__isSuspense;function Qi(e,t){t&&t.pendingBranch?N(e)?t.effects.push(...e):t.effects.push(e):ni(e)}const Ce=Symbol.for("v-fgt"),ln=Symbol.for("v-txt"),he=Symbol.for("v-cmt"),bn=Symbol.for("v-stc"),wt=[];let ye=null;function Yr(e=!1){wt.push(ye=e?null:[])}function el(){wt.pop(),ye=wt[wt.length-1]||null}let Tt=1;function Ns(e){Tt+=e,e<0&&ye&&(ye.hasOnce=!0)}function Xr(e){return e.dynamicChildren=Tt>0?ye||lt:null,el(),Tt>0&&ye&&ye.push(e),e}function ac(e,t,n,s,r,o){return Xr(eo(e,t,n,s,r,o,!0))}function Zr(e,t,n,s,r){return Xr(fe(e,t,n,s,r,!0))}function qt(e){return e?e.__v_isVNode===!0:!1}function nt(e,t){return e.type===t.type&&e.key===t.key}const Qr=({key:e})=>e??null,Ut=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?ee(e)||ge(e)||M(e)?{i:se,r:e,k:t,f:!!n}:e:null);function eo(e,t=null,n=null,s=0,r=null,o=e===Ce?0:1,i=!1,c=!1){const f={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Qr(t),ref:t&&Ut(t),scopeId:nn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:se};return c?(ns(f,n),o&128&&e.normalize(f)):n&&(f.shapeFlag|=ee(n)?8:16),Tt>0&&!i&&ye&&(f.patchFlag>0||o&6)&&f.patchFlag!==32&&ye.push(f),f}const fe=tl;function tl(e,t=null,n=null,s=0,r=null,o=!1){if((!e||e===yi)&&(e=he),qt(e)){const c=ke(e,t,!0);return n&&ns(c,n),Tt>0&&!o&&ye&&(c.shapeFlag&6?ye[ye.indexOf(e)]=c:ye.push(c)),c.patchFlag=-2,c}if(pl(e)&&(e=e.__vccOpts),t){t=nl(t);let{class:c,style:f}=t;c&&!ee(c)&&(t.class=Kn(c)),J(f)&&(_r(f)&&!N(f)&&(f=ie({},f)),t.style=Bn(f))}const i=ee(e)?1:Zi(e)?128:ji(e)?64:J(e)?4:M(e)?2:0;return eo(e,t,n,s,r,i,o,!0)}function nl(e){return e?_r(e)||$r(e)?ie({},e):e:null}function ke(e,t,n=!1,s=!1){const{props:r,ref:o,patchFlag:i,children:c,transition:f}=e,d=t?rl(r||{},t):r,a={__v_isVNode:!0,__v_skip:!0,type:e.type,props:d,key:d&&Qr(d),ref:t&&t.ref?n&&o?N(o)?o.concat(Ut(t)):[o,Ut(t)]:Ut(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:c,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Ce?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:f,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&ke(e.ssContent),ssFallback:e.ssFallback&&ke(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return f&&s&&Wt(a,f.clone(a)),a}function sl(e=" ",t=0){return fe(ln,null,e,t)}function dc(e="",t=!1){return t?(Yr(),Zr(he,null,e)):fe(he,null,e)}function Ne(e){return e==null||typeof e=="boolean"?fe(he):N(e)?fe(Ce,null,e.slice()):typeof e=="object"?Ve(e):fe(ln,null,String(e))}function Ve(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:ke(e)}function ns(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(N(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),ns(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!$r(t)?t._ctx=se:r===3&&se&&(se.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else M(t)?(t={default:t,_ctx:se},n=32):(t=String(t),s&64?(n=16,t=[sl(t)]):n=8);e.children=t,e.shapeFlag|=n}function rl(...e){const t={};for(let n=0;n<e.length;n++){const s=e[n];for(const r in s)if(r==="class")t.class!==s.class&&(t.class=Kn([t.class,s.class]));else if(r==="style")t.style=Bn([t.style,s.style]);else if(Yt(r)){const o=t[r],i=s[r];i&&o!==i&&!(N(o)&&o.includes(i))&&(t[r]=o?[].concat(o,i):i)}else r!==""&&(t[r]=s[r])}return t}function Oe(e,t,n,s=null){we(e,t,7,[n,s])}const ol=Fr();let il=0;function ll(e,t,n){const s=e.type,r=(t?t.appContext:e.appContext)||ol,o={uid:il++,vnode:e,type:s,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new xo(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Vr(s,r),emitsOptions:Jr(s,r),emit:null,emitted:null,propsDefaults:X,inheritAttrs:s.inheritAttrs,ctx:X,data:X,props:X,attrs:X,slots:X,refs:X,setupState:X,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return o.ctx={_:o},o.root=t?t.root:o,o.emit=zi.bind(null,o),e.ce&&e.ce(o),o}let oe=null;const cl=()=>oe||se;let zt,Fn;{const e=Un(),t=(n,s)=>{let r;return(r=e[n])||(r=e[n]=[]),r.push(s),o=>{r.length>1?r.forEach(i=>i(o)):r[0](o)}};zt=t("__VUE_INSTANCE_SETTERS__",n=>oe=n),Fn=t("__VUE_SSR_SETTERS__",n=>cn=n)}const Nt=e=>{const t=oe;return zt(e),e.scope.on(),()=>{e.scope.off(),zt(t)}},Ps=()=>{oe&&oe.scope.off(),zt(null)};function to(e){return e.vnode.shapeFlag&4}let cn=!1;function fl(e,t=!1,n=!1){t&&Fn(t);const{props:s,children:r}=e.vnode,o=to(e);Pi(e,s,o,t),Li(e,r,n);const i=o?ul(e,t):void 0;return t&&Fn(!1),i}function ul(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Ci);const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?dl(e):null,o=Nt(e);ze();const i=Ke(s,e,0,[e.props,r]);if(Ge(),o(),Ys(i)){if(i.then(Ps,Ps),t)return i.then(c=>{Ms(e,c)}).catch(c=>{tn(c,e,0)});e.asyncDep=i}else Ms(e,i)}else no(e)}function Ms(e,t,n){M(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:J(t)&&(e.setupState=br(t)),no(e)}function no(e,t,n){const s=e.type;e.render||(e.render=s.render||Ee);{const r=Nt(e);ze();try{Ei(e)}finally{Ge(),r()}}}const al={get(e,t){return _e(e,"get",""),e[t]}};function dl(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,al),slots:e.slots,emit:e.emit,expose:t}}function fn(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(br(zo(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Et)return Et[n](e)},has(t,n){return n in t||n in Et}})):e.proxy}function hl(e,t=!0){return M(e)?e.displayName||e.name:e.name||t&&e.__name}function pl(e){return M(e)&&"__vccOpts"in e}const _l=(e,t)=>Go(e,t,cn);function Hn(e,t,n){const s=arguments.length;return s===2?J(t)&&!N(t)?qt(t)?fe(e,null,[t]):fe(e,t):fe(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&qt(n)&&(n=[n]),fe(e,t,n))}const gl="3.4.38";/**
14
+ * @vue/runtime-dom v3.4.38
15
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
16
+ * @license MIT
17
+ **/const ml="http://www.w3.org/2000/svg",bl="http://www.w3.org/1998/Math/MathML",Me=typeof document<"u"?document:null,Rs=Me&&Me.createElement("template"),yl={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t==="svg"?Me.createElementNS(ml,e):t==="mathml"?Me.createElementNS(bl,e):n?Me.createElement(e,{is:n}):Me.createElement(e);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>Me.createTextNode(e),createComment:e=>Me.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Me.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,o){const i=n?n.previousSibling:t.lastChild;if(r&&(r===o||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===o||!(r=r.nextSibling)););else{Rs.innerHTML=s==="svg"?`<svg>${e}</svg>`:s==="mathml"?`<math>${e}</math>`:e;const c=Rs.content;if(s==="svg"||s==="mathml"){const f=c.firstChild;for(;f.firstChild;)c.appendChild(f.firstChild);c.removeChild(f)}t.insertBefore(c,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Fe="transition",_t="animation",Ot=Symbol("_vtc"),so=(e,{slots:t})=>Hn(li,vl(e),t);so.displayName="Transition";const ro={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};so.props=ie({},wr,ro);const Qe=(e,t=[])=>{N(e)?e.forEach(n=>n(...t)):e&&e(...t)},Is=e=>e?N(e)?e.some(t=>t.length>1):e.length>1:!1;function vl(e){const t={};for(const x in e)x in ro||(t[x]=e[x]);if(e.css===!1)return t;const{name:n="v",type:s,duration:r,enterFromClass:o=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:c=`${n}-enter-to`,appearFromClass:f=o,appearActiveClass:d=i,appearToClass:a=c,leaveFromClass:p=`${n}-leave-from`,leaveActiveClass:y=`${n}-leave-active`,leaveToClass:S=`${n}-leave-to`}=e,R=Cl(r),L=R&&R[0],Y=R&&R[1],{onBeforeEnter:V,onEnter:W,onEnterCancelled:H,onLeave:k,onLeaveCancelled:q,onBeforeAppear:P=V,onAppear:le=W,onAppearCancelled:te=H}=t,O=(x,K,Q)=>{et(x,K?a:c),et(x,K?d:i),Q&&Q()},F=(x,K)=>{x._isLeaving=!1,et(x,p),et(x,S),et(x,y),K&&K()},B=x=>(K,Q)=>{const re=x?le:W,ne=()=>O(K,x,Q);Qe(re,[K,ne]),Ls(()=>{et(K,x?f:o),He(K,x?a:c),Is(re)||Fs(K,s,L,ne)})};return ie(t,{onBeforeEnter(x){Qe(V,[x]),He(x,o),He(x,i)},onBeforeAppear(x){Qe(P,[x]),He(x,f),He(x,d)},onEnter:B(!1),onAppear:B(!0),onLeave(x,K){x._isLeaving=!0;const Q=()=>F(x,K);He(x,p),He(x,y),xl(),Ls(()=>{x._isLeaving&&(et(x,p),He(x,S),Is(k)||Fs(x,s,Y,Q))}),Qe(k,[x,Q])},onEnterCancelled(x){O(x,!1),Qe(H,[x])},onAppearCancelled(x){O(x,!0),Qe(te,[x])},onLeaveCancelled(x){F(x),Qe(q,[x])}})}function Cl(e){if(e==null)return null;if(J(e))return[yn(e.enter),yn(e.leave)];{const t=yn(e);return[t,t]}}function yn(e){return wn(e)}function He(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[Ot]||(e[Ot]=new Set)).add(t)}function et(e,t){t.split(/\s+/).forEach(s=>s&&e.classList.remove(s));const n=e[Ot];n&&(n.delete(t),n.size||(e[Ot]=void 0))}function Ls(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let El=0;function Fs(e,t,n,s){const r=e._endId=++El,o=()=>{r===e._endId&&s()};if(n)return setTimeout(o,n);const{type:i,timeout:c,propCount:f}=wl(e,t);if(!i)return s();const d=i+"end";let a=0;const p=()=>{e.removeEventListener(d,y),o()},y=S=>{S.target===e&&++a>=f&&p()};setTimeout(()=>{a<f&&p()},c+1),e.addEventListener(d,y)}function wl(e,t){const n=window.getComputedStyle(e),s=R=>(n[R]||"").split(", "),r=s(`${Fe}Delay`),o=s(`${Fe}Duration`),i=Hs(r,o),c=s(`${_t}Delay`),f=s(`${_t}Duration`),d=Hs(c,f);let a=null,p=0,y=0;t===Fe?i>0&&(a=Fe,p=i,y=o.length):t===_t?d>0&&(a=_t,p=d,y=f.length):(p=Math.max(i,d),a=p>0?i>d?Fe:_t:null,y=a?a===Fe?o.length:f.length:0);const S=a===Fe&&/\b(transform|all)(,|$)/.test(s(`${Fe}Property`).toString());return{type:a,timeout:p,propCount:y,hasTransform:S}}function Hs(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map((n,s)=>js(n)+js(e[s])))}function js(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function xl(){return document.body.offsetHeight}function Sl(e,t,n){const s=e[Ot];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Gt=Symbol("_vod"),oo=Symbol("_vsh"),hc={beforeMount(e,{value:t},{transition:n}){e[Gt]=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):gt(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:s}){!t!=!n&&(s?t?(s.beforeEnter(e),gt(e,!0),s.enter(e)):s.leave(e,()=>{gt(e,!1)}):gt(e,t))},beforeUnmount(e,{value:t}){gt(e,t)}};function gt(e,t){e.style.display=t?e[Gt]:"none",e[oo]=!t}const Al=Symbol(""),Tl=/(^|;)\s*display\s*:/;function Ol(e,t,n){const s=e.style,r=ee(n);let o=!1;if(n&&!r){if(t)if(ee(t))for(const i of t.split(";")){const c=i.slice(0,i.indexOf(":")).trim();n[c]==null&&Bt(s,c,"")}else for(const i in t)n[i]==null&&Bt(s,i,"");for(const i in n)i==="display"&&(o=!0),Bt(s,i,n[i])}else if(r){if(t!==n){const i=s[Al];i&&(n+=";"+i),s.cssText=n,o=Tl.test(n)}}else t&&e.removeAttribute("style");Gt in e&&(e[Gt]=o?s.display:"",e[oo]&&(s.display="none"))}const $s=/\s*!important$/;function Bt(e,t,n){if(N(n))n.forEach(s=>Bt(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=Nl(e,t);$s.test(n)?e.setProperty(be(s),n.replace($s,""),"important"):e[s]=n}}const Ds=["Webkit","Moz","ms"],vn={};function Nl(e,t){const n=vn[t];if(n)return n;let s=pe(t);if(s!=="filter"&&s in e)return vn[t]=s;s=Qt(s);for(let r=0;r<Ds.length;r++){const o=Ds[r]+s;if(o in e)return vn[t]=o}return t}const Vs="http://www.w3.org/1999/xlink";function Us(e,t,n,s,r,o=Eo(t)){s&&t.startsWith("xlink:")?n==null?e.removeAttributeNS(Vs,t.slice(6,t.length)):e.setAttributeNS(Vs,t,n):n==null||o&&!er(n)?e.removeAttribute(t):e.setAttribute(t,o?"":qe(n)?String(n):n)}function Pl(e,t,n,s){if(t==="innerHTML"||t==="textContent"){if(n==null)return;e[t]=n;return}const r=e.tagName;if(t==="value"&&r!=="PROGRESS"&&!r.includes("-")){const i=r==="OPTION"?e.getAttribute("value")||"":e.value,c=n==null?"":String(n);(i!==c||!("_value"in e))&&(e.value=c),n==null&&e.removeAttribute(t),e._value=n;return}let o=!1;if(n===""||n==null){const i=typeof e[t];i==="boolean"?n=er(n):n==null&&i==="string"?(n="",o=!0):i==="number"&&(n=0,o=!0)}try{e[t]=n}catch{}o&&e.removeAttribute(t)}function Ml(e,t,n,s){e.addEventListener(t,n,s)}function Rl(e,t,n,s){e.removeEventListener(t,n,s)}const Bs=Symbol("_vei");function Il(e,t,n,s,r=null){const o=e[Bs]||(e[Bs]={}),i=o[t];if(s&&i)i.value=s;else{const[c,f]=Ll(t);if(s){const d=o[t]=jl(s,r);Ml(e,c,d,f)}else i&&(Rl(e,c,i,f),o[t]=void 0)}}const Ks=/(?:Once|Passive|Capture)$/;function Ll(e){let t;if(Ks.test(e)){t={};let s;for(;s=e.match(Ks);)e=e.slice(0,e.length-s[0].length),t[s[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):be(e.slice(2)),t]}let Cn=0;const Fl=Promise.resolve(),Hl=()=>Cn||(Fl.then(()=>Cn=0),Cn=Date.now());function jl(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;we($l(s,n.value),t,5,[s])};return n.value=e,n.attached=Hl(),n}function $l(e,t){if(N(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const Ws=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Dl=(e,t,n,s,r,o)=>{const i=r==="svg";t==="class"?Sl(e,s,i):t==="style"?Ol(e,n,s):Yt(t)?$n(t)||Il(e,t,n,s,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Vl(e,t,s,i))?(Pl(e,t,s),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Us(e,t,s,i,o,t!=="value")):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),Us(e,t,s,i))};function Vl(e,t,n,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&Ws(t)&&M(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const r=e.tagName;if(r==="IMG"||r==="VIDEO"||r==="CANVAS"||r==="SOURCE")return!1}return Ws(t)&&ee(n)?!1:t in e}/*! #__NO_SIDE_EFFECTS__ */function pc(e,t,n){const s=Tr(e,t);class r extends ss{constructor(i){super(s,i,n)}}return r.def=s,r}const Ul=typeof HTMLElement<"u"?HTMLElement:class{};class ss extends Ul{constructor(t,n={},s){super(),this._def=t,this._props=n,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this._ob=null,this.shadowRoot&&s?s(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,Qn(()=>{this._connected||(this._ob&&(this._ob.disconnect(),this._ob=null),Jt(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let s=0;s<this.attributes.length;s++)this._setAttr(this.attributes[s].name);this._ob=new MutationObserver(s=>{for(const r of s)this._setAttr(r.attributeName)}),this._ob.observe(this,{attributes:!0});const t=(s,r=!1)=>{const{props:o,styles:i}=s;let c;if(o&&!N(o))for(const f in o){const d=o[f];(d===Number||d&&d.type===Number)&&(f in this._props&&(this._props[f]=wn(this._props[f])),(c||(c=Object.create(null)))[pe(f)]=!0)}this._numberProps=c,r&&this._resolveProps(s),this._applyStyles(i),this._update()},n=this._def.__asyncLoader;n?n().then(s=>t(s,!0)):t(this._def)}_resolveProps(t){const{props:n}=t,s=N(n)?n:Object.keys(n||{});for(const r of Object.keys(this))r[0]!=="_"&&s.includes(r)&&this._setProp(r,this[r],!0,!1);for(const r of s.map(pe))Object.defineProperty(this,r,{get(){return this._getProp(r)},set(o){this._setProp(r,o)}})}_setAttr(t){let n=this.hasAttribute(t)?this.getAttribute(t):void 0;const s=pe(t);this._numberProps&&this._numberProps[s]&&(n=wn(n)),this._setProp(s,n,!1)}_getProp(t){return this._props[t]}_setProp(t,n,s=!0,r=!0){n!==this._props[t]&&(this._props[t]=n,r&&this._instance&&this._update(),s&&(n===!0?this.setAttribute(be(t),""):typeof n=="string"||typeof n=="number"?this.setAttribute(be(t),n+""):n||this.removeAttribute(be(t))))}_update(){Jt(this._createVNode(),this.shadowRoot)}_createVNode(){const t=fe(this._def,ie({},this._props));return this._instance||(t.ce=n=>{this._instance=n,n.isCE=!0;const s=(o,i)=>{this.dispatchEvent(new CustomEvent(o,{detail:i}))};n.emit=(o,...i)=>{s(o,i),be(o)!==o&&s(be(o),i)};let r=this;for(;r=r&&(r.parentNode||r.host);)if(r instanceof ss){n.parent=r._instance,n.provides=r._instance.provides;break}}),t}_applyStyles(t){t&&t.forEach(n=>{const s=document.createElement("style");s.textContent=n,this.shadowRoot.appendChild(s)})}}const Bl={esc:"escape",space:" ",up:"arrow-up",left:"arrow-left",right:"arrow-right",down:"arrow-down",delete:"backspace"},_c=(e,t)=>{const n=e._withKeys||(e._withKeys={}),s=t.join(".");return n[s]||(n[s]=r=>{if(!("key"in r))return;const o=be(r.key);if(t.some(i=>i===o||Bl[i]===o))return e(r)})},Kl=ie({patchProp:Dl},yl);let ks;function io(){return ks||(ks=Di(Kl))}const Jt=(...e)=>{io().render(...e)},gc=(...e)=>{const t=io().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=kl(s);if(!r)return;const o=t._component;!M(o)&&!o.render&&!o.template&&(o.template=r.innerHTML),r.innerHTML="";const i=n(r,!1,Wl(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),i},t};function Wl(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function kl(e){return ee(e)?document.querySelector(e):e}var ql=Object.defineProperty,zl=(e,t,n)=>t in e?ql(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,je=(e,t,n)=>zl(e,typeof t!="symbol"?t+"":t,n);/**
18
+ * @vue/shared v3.5.13
19
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
20
+ * @license MIT
21
+ **/const Gl=Object.assign,qs=Array.isArray,Jl=e=>typeof e=="string",lo=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Yl=/-(\w)/g,En=lo(e=>e.replace(Yl,(t,n)=>n?n.toUpperCase():"")),Xl=/\B([A-Z])/g,mt=lo(e=>e.replace(Xl,"-$1").toLowerCase()),zs=e=>{const t=Jl(e)?Number(e):NaN;return isNaN(t)?e:t};/*!#__NO_SIDE_EFFECTS__*/function Zl(e,t,n){const s=Tr(e);class r extends rs{constructor(i){super(s,i,t,n)}}return je(r,"def",s),r}const Ql=typeof HTMLElement<"u"?HTMLElement:class{};class rs extends Ql{constructor(t,n={},s={shadowRoot:!0},r){super(),je(this,"_instance",null),je(this,"_connected",!1),je(this,"_resolved",!1),je(this,"_numberProps",null),je(this,"_styles"),je(this,"_slots",{}),je(this,"_ob",null),this._def=t,this._props=n,this._config=s,this._root&&r?r(this._createVNode(),this._root):(this._config.shadowRoot!==!1&&this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}get _root(){return this._config.shadowRoot?this.shadowRoot:this}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,Qn(()=>{this._connected||(this._ob&&(this._ob.disconnect(),this._ob=null),Jt(null,this._root),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let s=0;s<this.attributes.length;s++)this._setAttr(this.attributes[s].name);this._ob=new MutationObserver(s=>{for(const r of s)this._setAttr(r.attributeName)}),this._ob.observe(this,{attributes:!0});const t=(s,r=!1)=>{var o;const{props:i}=s,c=this._collectNestedStyles(s);let f;if(i&&!qs(i))for(const d in i){const a=i[d];(a===Number||a&&a.type===Number)&&(d in this._props&&(this._props[d]=zs(this._props[d])),(f||(f=Object.create(null)))[En(d)]=!0)}if(this._numberProps=f,r&&this._resolveProps(s),!this._config.shadowRoot){this._slots={};const d=a=>Array.from(a).map(p=>{var y;if(p.nodeType===Node.ELEMENT_NODE){const S=p,R=Object.fromEntries(Array.from(S.attributes).map(L=>[L.name,L.value]));return Hn(S.tagName.toLowerCase(),R,d(S.childNodes))}else if(p.nodeType===Node.TEXT_NODE)return((y=p.textContent)==null?void 0:y.trim())||null;return null}).filter(p=>p!=null);for(const a of Array.from(this.childNodes)){const p=a.nodeType===Node.ELEMENT_NODE&&a.getAttribute("slot")||"default";if(this._slots[p]||(this._slots[p]=[]),a.nodeType===Node.ELEMENT_NODE){const y=a,S=Object.fromEntries(Array.from(y.attributes).map(R=>[R.name,R.value]));this._slots[p].push(Hn(y.tagName.toLowerCase(),S,d(y.childNodes)))}else if(a.nodeType===Node.TEXT_NODE){const y=(o=a.textContent)==null?void 0:o.trim();y&&this._slots[p].push(y)}}this.replaceChildren()}this._applyStyles(c),this._update()},n=this._def.__asyncLoader;n?n().then(s=>t(s,!0)):t(this._def)}_resolveProps(t){const{props:n}=t,s=qs(n)?n:Object.keys(n||{});for(const r of Object.keys(this))r[0]!=="_"&&s.includes(r)&&this._setProp(r,this[r],!0,!1);for(const r of s.map(En))Object.defineProperty(this,r,{get(){return this._getProp(r)},set(o){this._setProp(r,o)}})}_setAttr(t){let n=this.hasAttribute(t)?this.getAttribute(t):void 0;const s=En(t);this._numberProps&&this._numberProps[s]&&(n=zs(n)),this._setProp(s,n,!1)}_getProp(t){return this._props[t]}_setProp(t,n,s=!0,r=!0){n!==this._props[t]&&(this._props[t]=n,r&&this._instance&&this._update(),s&&(n===!0?this.setAttribute(mt(t),""):typeof n=="string"||typeof n=="number"?this.setAttribute(mt(t),n+""):n||this.removeAttribute(mt(t))))}_update(){Jt(this._createVNode(),this._root)}_createVNode(){const t=fe(this._def,Gl({},this._props),this._slots);return this._instance||(t.ce=n=>{this._instance=n,n.isCE=!0;const s=(o,i)=>{this.dispatchEvent(new CustomEvent(o,{detail:i}))};n.emit=(o,...i)=>{s(o,i),mt(o)!==o&&s(mt(o),i)};let r=this;for(;r=r&&(r.parentNode||r.host);)if(r instanceof rs){n.parent=r._instance,n.provides=r._instance.provides;break}}),t}_applyStyles(t){t&&t.forEach(n=>{const s=document.createElement("style");s.textContent=n,this._root.prepend(s)})}_collectNestedStyles(t){let n=t.styles??[];return t.components&&Object.values(t.components).forEach(s=>{n=n.concat(this._collectNestedStyles(s))}),n}}const Gs=e=>{for(;e?.nodeType!==1;){if(!e.parentElement)throw new Error("No parent element found, the rootComponent must be wrapped in a HTML element (e.g. <template><div> app content </div></template>)");e=e.parentElement}return e};function ec(e){return"on"+e.charAt(0).toUpperCase()+e.slice(1)}function tc(e){return typeof e=="string"?e.replace(/:root/g,":host"):Array.isArray(e)?e.map(t=>t.replace(/:root/g,":host")):e}const nc=({rootComponent:e,plugins:t,cssFrameworkStyles:n,VueDefineCustomElement:s,h:r,createApp:o,getCurrentInstance:i,elementName:c,disableRemoveStylesOnUnmount:f,disableShadowDOM:d,replaceRootWithHostInCssFramework:a,asyncInitialization:p,loaderAttribute:y,hideSlotContentUntilMounted:S})=>{const R=d?Zl:s,L=a?tc(n):n,Y=R({styles:[L],props:{...e.props,modelValue:{type:[String,Number,Boolean,Array,Object]}},emits:e?.emits,setup(V,{slots:W}){var H;const k=[...e?.emits||[],"update:modelValue"],q=o();if(q.component("app-root",e),e.provide){const O=typeof e.provide=="function"?e.provide():e.provide;Object.keys(O).forEach(F=>{q.provide(F,O[F])})}q.mixin({mounted(){var O,F,B,x;if(((F=(O=this.$)==null?void 0:O.type)==null?void 0:F.name)==="vue-custom-element-root-component")return;const K=re=>{re!=null&&re.length&&(this.__style=document.createElement("style"),this.__style.innerText=re.join().replace(/\n/g,""),Gs(this.$el).append(this.__style))};if(K((B=this.$)==null?void 0:B.type.styles),this.$options.components)for(const re of Object.values(this.$options.components))K(re.styles);const Q=((x=this.$el.getRootNode())==null?void 0:x.host)||Gs(this.$el);Q&&(console.log("hideSlotContentUntilMounted",S),S&&(console.log("hideSlotContentUntilMounted",S),Q.querySelectorAll("[hidden]").forEach(re=>{re.removeAttribute("hidden")})),Q.querySelectorAll(`[${y}]`).forEach(re=>{re.remove()}))},unmounted(){var O;f||(O=this.__style)==null||O.remove()}}),q.use(t);const P=i();Object.assign(P.appContext,q._context),Object.assign(P.provides,q._context.provides);const le=k?.reduce((O,F)=>{const B=ec(F);return O[B]=x=>{P.emit(F,x)},O},{}),te=(H=e?.namedSlots)==null?void 0:H.reduce((O,F)=>(O[F]=()=>r("slot",{name:F}),O),{});return()=>r(e,{...V,...le},{default:()=>r("slot"),...te,...W})}},d&&{shadowRoot:!1});return p().then(()=>Y)},mc=({elementName:e,rootComponent:t,plugins:n,cssFrameworkStyles:s,VueDefineCustomElement:r,h:o,createApp:i,getCurrentInstance:c,disableRemoveStylesOnUnmount:f=!1,disableShadowDOM:d=!1,replaceRootWithHostInCssFramework:a=!1,asyncInitialization:p=()=>Promise.resolve(),loaderAttribute:y="data-web-component-loader",hideSlotContentUntilMounted:S=!1})=>{if(!t){console.warn("No root component provided. Please provide a root component to create a web component.");return}if(!r){console.warn("No VueDefineCustomElement provided. Please provide a VueDefineCustomElement to create a web component.");return}if(!o){console.warn("No h provided. Please provide an h to create a web component.");return}if(!i){console.warn("No createApp provided. Please provide a createApp to create a web component.");return}if(!c){console.warn("No getCurrentInstance provided. Please provide a getCurrentInstance to create a web component.");return}nc({rootComponent:t,plugins:n,cssFrameworkStyles:s,VueDefineCustomElement:r,h:o,createApp:i,getCurrentInstance:c,elementName:e,disableRemoveStylesOnUnmount:f,disableShadowDOM:d,replaceRootWithHostInCssFramework:a,asyncInitialization:p,loaderAttribute:y,hideSlotContentUntilMounted:S}).then(R=>{customElements.define(e,R)})};export{cl as A,Ce as F,so as T,eo as a,Nr as b,ac as c,Mr as d,cc as e,dc as f,fc as g,Bn as h,Zr as i,fe as j,sl as k,ic as l,ri as m,Kn as n,Yr as o,oc as p,uc as q,rc as r,lc as s,wo as t,mc as u,hc as v,_c as w,pc as x,Hn as y,gc as z};