diff --git a/resources/[freizeit]/[gym]/dynyx-gym/client/main.lua b/resources/[freizeit]/[gym]/dynyx-gym/client/main.lua new file mode 100644 index 000000000..02e6e6734 --- /dev/null +++ b/resources/[freizeit]/[gym]/dynyx-gym/client/main.lua @@ -0,0 +1,490 @@ +local QBCore = exports['qb-core']:GetCoreObject() + +CreateThread(function() + for k, v in pairs(Config.Threadmills) do + exports['qb-target']:AddBoxZone("treadmill"..k, v.coords - vector3(0.0, 0.0, 1.0), 1, 2, { + name = "treadmill"..k, + heading = 300, + debugPoly = false, + minZ = v.coords.z - 1.0, + maxZ = v.coords.z + 2.0, + }, { + options = { + { + type = "client", + event = "dynyx-gym:treadmill", + icon = "fas fa-person-running", + label = 'Use Treadmill' + }, + }, + distance = 2.0 + }) + end + for k, v in pairs(Config.LiftWeight) do + exports['qb-target']:AddBoxZone("liftweights"..k, v.coords - vector3(0.0, 0.0, 1.0), 1, 2, { + name = "liftweights"..k, + heading = 300, + debugPoly = false, + minZ = v.coords.z - 1.0, + maxZ = v.coords.z + 2.0, + }, { + options = { + { + type = "client", + event = 'dynyx-gym:liftweights', + icon = "fas fa-dumbbell", + label = 'Lift Weights' + }, + }, + distance = 2.0 + }) + end + exports['qb-target']:AddBoxZone("chinups", vector3(-1258.97, -356.16, 36.99), 1, 2, { + name = "chinups", + heading = 300.0, + debugPoly = false, + minZ = 30.0, + maxZ = 39.0, + }, { + options = { + { + type = "client", + event = 'dynyx-gym:chinup', + icon = "fa-solid fa-arrow-up", + label = 'Do Chinups' + }, + }, + distance = 2.0 + }) + + exports['qb-target']:AddBoxZone("chinups2", vector3(-1257.71, -358.84, 36.99), 1, 2, { + name = "chinups2", + heading = 300.0, + debugPoly = false, + minZ = 30.0, + maxZ = 39.0, + }, { + options = { + { + type = "client", + event = 'dynyx-gym:chinup2', + icon = "fa-solid fa-arrow-up", + label = 'Do Chinups' + }, + }, + distance = 2.0 + }) + exports['qb-target']:AddCircleZone("yoga", vector3(-1262.42, -360.93, 36.96), 3, { + name = "yoga", + debugPoly = false, + }, { + options = { + { + type = "client", + event = "dynyx-gym:yoga", + icon = 'fas fa-face-smile', + label = 'Start Yoga', + } + }, + distance = 2.5, + }) +end) + +RegisterNetEvent('dynyx-gym:treadmill', function() + local hasItem = QBCore.Functions.HasItem(Config.GymPassItem) + if hasItem then + Treadmill() + else + QBCore.Functions.Notify("You dont have a membership pass", "error") + end +end) + +RegisterNetEvent('dynyx-gym:chinup', function() + local hasItem = QBCore.Functions.HasItem(Config.GymPassItem) + if hasItem then + Chinup() + else + QBCore.Functions.Notify("You dont own a membership!", "error") + end +end) + +RegisterNetEvent('dynyx-gym:chinup2', function() + local hasItem = QBCore.Functions.HasItem(Config.GymPassItem) + if hasItem then + Chinup2() + else + QBCore.Functions.Notify("You dont own a membership!", "error") + end +end) + +RegisterNetEvent('dynyx-gym:liftweights', function() + local hasItem = QBCore.Functions.HasItem(Config.GymPassItem) + if hasItem then + LiftWeight() + else + QBCore.Functions.Notify("You dont own a membership!", "error") + end +end) + +RegisterNetEvent('dynyx-gym:yoga', function() + local hasItem = QBCore.Functions.HasItem(Config.GymPassItem) + if hasItem then + Yoga() + else + QBCore.Functions.Notify("You dont own a membership!", "error") + end +end) + +local function LoadAnimDict(dict) + RequestAnimDict(dict) + while not HasAnimDictLoaded(dict) do + Wait(10) + end +end + +function ChinupsAnim() + local ped = PlayerPedId() + + local chinup = Config.Skills.Chinups.ChinupAnimCoords + SetEntityCoords(ped, chinup.x, chinup.y, chinup.z, false, false, false, true) + SetEntityHeading(ped, chinup.w) +end + +function ChinupsAnim2() + local ped = PlayerPedId() + + local chinup = Config.Skills.Chinups.ChinupAnimCoords2 + SetEntityCoords(ped, chinup.x, chinup.y, chinup.z, false, false, false, true) + SetEntityHeading(ped, chinup.w) +end + +local function ThreadmillReward(results) + if results == 'success' then + exports["mz-skills"]:UpdateSkill(Config.Skills.ThreadMills.skill, Config.Skills.ThreadMills.amount) + Wait(2000) + TriggerServerEvent('hud:server:GainStress', Config.Skills.ThreadMills.Stress) + TriggerEvent('inventory:client:busy:status', false) + elseif results == 'failed' then + QBCore.Functions.Notify("That did not feel too good..", "error") + Wait(3000) + TriggerServerEvent('hud:server:GainStress', Config.Skills.ThreadMills.Minigame.FailedMinigameStress) + end +end + +local function StartThreadmillMinigame() + -------------------------------------------------------------------------------------------- ps-ui section + if Config.Minigame == 'ps-ui' then + exports['ps-ui']:Circle(function(success) + if success then + ThreadmillReward('success') + else --failed + ThreadmillReward('failed') + end + end, Config.Skills.ThreadMills.Minigame.circles, Config.Skills.ThreadMills.Minigame.time) + -------------------------------------------------------------------------------------------- qb-lock section + elseif Config.Minigame == 'qb-lock' then + local success = exports['qb-lock']:StartLockPickCircle(Config.Skills.ThreadMills.Minigame.circles, Config.Skills.ThreadMills.Minigame.time, success) + if success then + ThreadmillReward('success') + else --failed + ThreadmillReward('failed') + end + elseif Config.Minigame == 'skillCheck' then + local success = lib.skillCheck({'easy', 'easy', 'medium', 'medium'}, {'w', 'a', 's', 'd'}) + if success then + ThreadmillReward('success') + else --failed + ThreadmillReward('failed') + end + end +end + +function Treadmill() + local ped = PlayerPedId() + TaskStartScenarioInPlace(ped, "WORLD_HUMAN_JOG_STANDING", 0, true) + if Config.Progressbar == 'qb' then + QBCore.Functions.Progressbar('random_task', 'Jogging', Config.Skills.ThreadMills.ProgressbarDuration, false, false, { + disableMovement = true, + disableCarMovement = true, + disableMouse = false, + disableCombat = true, + }, {}, {}, {}, function() + StartThreadmillMinigame() + ClearPedTasks(ped) + end) + elseif Config.Progressbar == 'ox' then + exports.ox_inventory:Progress({ + duration = Config.Skills.ThreadMills.ProgressbarDuration, + label = "Jogging", + useWhileDead = false, + disable = { + move = true, + car = true, + combat = true, + mouse = false, + }, + }, function(cancel) + if not cancel then + StartThreadmillMinigame() + ClearPedTasks(ped) + end + end) + end +end + +local function ChinupReward(results) + if results == 'success' then + exports["mz-skills"]:UpdateSkill(Config.Skills.Chinups.skill, Config.Skills.Chinups.amount) + Wait(2000) + TriggerServerEvent('hud:server:GainStress', Config.Skills.Chinups.Stress) + TriggerEvent('inventory:client:busy:status', false) + elseif results == 'failed' then + QBCore.Functions.Notify("That did not feel too good..", "error") + Wait(3000) + TriggerServerEvent('hud:server:GainStress', Config.Skills.Chinups.Minigame.FailedMinigameStress) + end +end + +local function StartChinupMinigame() + -------------------------------------------------------------------------------------------- ps-ui section + if Config.Minigame == 'ps-ui' then + exports['ps-ui']:Circle(function(success) + if success then + ChinupReward('success') + else --failed + ChinupReward('failed') + end + end, Config.Skills.Chinups.Minigame.circles, Config.Skills.Chinups.Minigame.time) + -------------------------------------------------------------------------------------------- qb-lock section + elseif Config.Minigame == 'qb-lock' then + local success = exports['qb-lock']:StartLockPickCircle(Config.Skills.Chinups.Minigame.circles, Config.Skills.Chinups.Minigame.time, success) + if success then + ChinupReward('success') + else --failed + ChinupReward('failed') + end + elseif Config.Minigame == 'skillCheck' then + local success = lib.skillCheck({'easy', 'easy', 'medium', 'medium'}, {'w', 'a', 's', 'd'}) + if success then + ChinupReward('success') + else --failed + ChinupReward('failed') + end + end +end + +function Chinup() + local ped = PlayerPedId() + ChinupsAnim() + TaskStartScenarioInPlace(ped, "PROP_HUMAN_MUSCLE_CHIN_UPS", 0, true) + if Config.Progressbar == 'qb' then + QBCore.Functions.Progressbar('random_task', 'Doing Chin-ups', Config.Skills.Chinups.ProgressbarDuration, false, false, { + disableMovement = true, + disableCarMovement = true, + disableMouse = false, + disableCombat = true, + }, {}, {}, {}, function() + StartChinupMinigame() + ClearPedTasks(ped) + end) + elseif Config.Progressbar == 'ox' then + exports.ox_inventory:Progress({ + duration = Config.Skills.Chinups.ProgressbarDuration, + label = "Doing Chin-ups", + useWhileDead = false, + disable = { + move = true, + car = true, + combat = true, + mouse = false, + }, + }, function(cancel) + if not cancel then + StartChinupMinigame() + ClearPedTasks(ped) + end + end) + end +end + +function Chinup2() + local ped = PlayerPedId() + ChinupsAnim2() + TaskStartScenarioInPlace(ped, "PROP_HUMAN_MUSCLE_CHIN_UPS", 0, true) + if Config.Progressbar == 'qb' then + QBCore.Functions.Progressbar('random_task', 'Doing Chin-ups', Config.Skills.Chinups.ProgressbarDuration, false, false, { + disableMovement = true, + disableCarMovement = true, + disableMouse = false, + disableCombat = true, + }, {}, {}, {}, function() + StartChinupMinigame() + ClearPedTasks(ped) + end) + elseif Config.Progressbar == 'ox' then + exports.ox_inventory:Progress({ + duration = Config.Skills.Chinups.ProgressbarDuration, + label = "Doing Chin-ups", + useWhileDead = false, + disable = { + move = true, + car = true, + combat = true, + mouse = false, + }, + }, function(cancel) + if not cancel then + StartChinupMinigame() + ClearPedTasks(ped) + end + end) + end +end + +local function LiftWeightReward(results) + if results == 'success' then + exports["mz-skills"]:UpdateSkill(Config.Skills.LiftWeights.skill, Config.Skills.LiftWeights.amount) + Wait(2000) + TriggerServerEvent('hud:server:GainStress', Config.Skills.LiftWeights.Stress) + TriggerEvent('inventory:client:busy:status', false) + elseif results == 'failed' then + QBCore.Functions.Notify("That did not feel too good..", "error") + Wait(3000) + TriggerServerEvent('hud:server:GainStress', Config.Skills.LiftWeights.Minigame.FailedMinigameStress) + end +end + +local function StartLiftWeightMinigame() + -------------------------------------------------------------------------------------------- ps-ui section + if Config.Minigame == 'ps-ui' then + exports['ps-ui']:Circle(function(success) + if success then + LiftWeightReward('success') + else --failed + LiftWeightReward('failed') + end + end, Config.Skills.LiftWeights.Minigame.circles, Config.Skills.LiftWeights.Minigame.time) + -------------------------------------------------------------------------------------------- qb-lock section + elseif Config.Minigame == 'qb-lock' then + local success = exports['qb-lock']:StartLockPickCircle(Config.Skills.LiftWeights.Minigame.circles, Config.Skills.LiftWeights.Minigame.time, success) + if success then + LiftWeightReward('success') + else --failed + LiftWeightReward('failed') + end + elseif Config.Minigame == 'skillCheck' then + local success = lib.skillCheck({'easy', 'easy', 'medium', 'medium'}, {'w', 'a', 's', 'd'}) + if success then + LiftWeightReward('success') + else --failed + LiftWeightReward('failed') + end + end +end + +function LiftWeight() + local ped = PlayerPedId() + TaskStartScenarioInPlace(ped, "world_human_muscle_free_weights", 0, true) + if Config.Progressbar == 'qb' then + QBCore.Functions.Progressbar('random_task', 'Lifting Weights', Config.Skills.LiftWeights.ProgressbarDuration, false, false, { + disableMovement = true, + disableCarMovement = true, + disableMouse = false, + disableCombat = true, + }, {}, {}, {}, function() + StartLiftWeightMinigame() + ClearPedTasks(ped) + end) + elseif Config.Progressbar == 'ox' then + exports.ox_inventory:Progress({ + duration = Config.Skills.LiftWeights.ProgressbarDuration, + label = "Lifting Weights", + useWhileDead = false, + disable = { + move = true, + car = true, + combat = true, + mouse = false, + }, + }, function(cancel) + if not cancel then + StartLiftWeightMinigame() + ClearPedTasks(ped) + end + end) + end +end + +local function YogaReward(results) + if results == 'success' then + exports["mz-skills"]:UpdateSkill(Config.Skills.Yoga.skill, Config.Skills.Yoga.amount) + Wait(2000) + TriggerServerEvent('hud:server:RelieveStress', Config.Skills.Yoga.Stress) + TriggerEvent('inventory:client:busy:status', false) + elseif results == 'failed' then + QBCore.Functions.Notify("That did not feel too good..", "error") + Wait(3000) + TriggerServerEvent('hud:server:GainStress', Config.Skills.Yoga.Minigame.FailedMinigameStress) + end +end + +local function StartYogaMinigame() + -------------------------------------------------------------------------------------------- ps-ui section + if Config.Minigame == 'ps-ui' then + exports['ps-ui']:Circle(function(success) + if success then + YogaReward('success') + else --failed + YogaReward('failed') + end + end, Config.Skills.Yoga.Minigame.circles, Config.Skills.Yoga.Minigame.time) + -------------------------------------------------------------------------------------------- qb-lock section + elseif Config.Minigame == 'qb-lock' then + local success = exports['qb-lock']:StartLockPickCircle(Config.Skills.Yoga.Minigame.circles, Config.Skills.Yoga.Minigame.time, success) + if success then + YogaReward('success') + else --failed + YogaReward('failed') + end + elseif Config.Minigame == 'skillCheck' then + local success = lib.skillCheck({'easy', 'easy', 'medium', 'medium'}, {'w', 'a', 's', 'd'}) + if success then + YogaReward('success') + else --failed + YogaReward('failed') + end + end +end + +function Yoga() + local ped = PlayerPedId() + TaskStartScenarioInPlace(ped, "WORLD_HUMAN_YOGA", 0, true) + if Config.Progressbar == 'qb' then + QBCore.Functions.Progressbar('random_task', 'Yoga Exercising', Config.Skills.Yoga.ProgressbarDuration, false, false, { + disableMovement = true, + disableCarMovement = true, + disableMouse = false, + disableCombat = true, + }, {}, {}, {}, function() + StartYogaMinigame() + ClearPedTasks(ped) + end) + elseif Config.Progressbar == 'ox' then + exports.ox_inventory:Progress({ + duration = Config.Skills.Yoga.ProgressbarDuration, + label = "Yoga Exercising", + useWhileDead = false, + disable = { + move = true, + car = true, + combat = true, + mouse = false, + }, + }, function(cancel) + if not cancel then + StartYogaMinigame() + ClearPedTasks(ped) + end + end) + end +end diff --git a/resources/[freizeit]/[gym]/dynyx-gym/client/shop.lua b/resources/[freizeit]/[gym]/dynyx-gym/client/shop.lua new file mode 100644 index 000000000..5f2d48cb0 --- /dev/null +++ b/resources/[freizeit]/[gym]/dynyx-gym/client/shop.lua @@ -0,0 +1,176 @@ +local QBCore = exports['qb-core']:GetCoreObject() + +CreateThread(function() + -- Makes Blip + Gym = AddBlipForCoord(Config.GymPedSpawn) + SetBlipSprite(Gym, 311) + SetBlipDisplay(Gym, 4) + SetBlipScale(Gym, 0.65) + SetBlipAsShortRange(Gym, true) + SetBlipColour(Gym, 7) + BeginTextCommandSetBlipName("STRING") + AddTextComponentSubstringPlayerName(Config.BlipName) + EndTextCommandSetBlipName(Gym) + -- Spawns Ped + local PedCoords = Config.GymPedSpawn + PedHash = GetHashKey(Config.GymPed) + RequestModel(PedHash) + while not HasModelLoaded(PedHash) do + Citizen.Wait(1) + end + if HasModelLoaded(PedHash) then + local GymPed = CreatePed(1, PedHash, PedCoords.x, PedCoords.y, PedCoords.z, PedCoords.w, false, true) + FreezeEntityPosition(GymPed, true) + SetEntityInvincible(GymPed, true) + TaskStartScenarioInPlace(GymPed, "WORLD_HUMAN_CLIPBOARD", 0, true) + SetBlockingOfNonTemporaryEvents(GymPed, true) + if Config.Target == 'qb' then + exports['qb-target']:AddBoxZone("gymnpc", vector3(PedCoords.x, PedCoords.y, PedCoords.z + 1), 1.5, 1.5, { + name = "gymnpc", + heading = 0, + debugPoly = false, + minZ = 30.0, + maxZ = 39.0, + }, { + options = { + { + type = "client", + event = "dynyx_gym:OpenMemberBuy", + icon = 'fa-solid fa-book', + label = 'Buy Membership' + }, + }, + distance = 2.0 + }) + elseif Config.Target == 'ox' then + exports.ox_target:addSphereZone({ + coords = vec3(PedCoords.x, PedCoords.y, PedCoords.z + 1), + radius = 1, + debug = false, + options = { + { + onSelect = function() + TriggerEvent('dynyx_gym:OpenMemberBuy') + end, + icon = 'fa-solid fa-book', + label = "Buy Membership", + } + } + }) + else + print("**Invalid Config.Target.**") + end + end +end) + +RegisterNetEvent('dynyx_gym:OpenMemberBuy', function() + if Config.Menu == 'qb' then + exports['qb-menu']:openMenu({ + { + id = 1, + header = "Welcome! Please Purchase a Gym Member to workout!", + },{ + id = 2, + header = "Buy Gym Membership", + txt = "$"..Config.GymPassPrice, + params = { + event = "dynyx_gym:LifetimeConfirm", + } + }, + }) + elseif Config.Menu == 'ox' then + lib.registerContext({ + id = 'GymMemberMenu1', + title = 'Welcome! Please Purchase a Gym Membership to workout!', + options = { + { + title = 'Buy Gym Membership', + description = '$'..Config.GymPassPrice, + arrow = true, + icon = 'dollar', + event = 'dynyx_gym:LifetimeConfirm', + } + } + }) + lib.showContext('GymMemberMenu1') + else + print("**Invalid Config.Menu.**") + end +end) + +RegisterNetEvent('dynyx_gym:LifetimeConfirm', function() + if Config.Menu == 'qb' then + exports['qb-menu']:openMenu({ + { + id = 1, + header = "Go Back", + params = { + event = "dynyx-gym:OpenMemberBuy", + } + },{ + id = 2, + header = "Confirm Purchase", + txt = "Purchase of $"..Config.GymPassPrice, + params = { + event = "dynyx_gym:BuyCard", + } + }, + }) + elseif Config.Menu == 'ox' then + lib.registerContext({ + id = 'GymMemberMenu2', + title = 'Please Confirm.', + options = { + { + title = 'Confirm Purchase', + description = 'Purchase of $'..Config.GymPassPrice, + icon = 'dollar', + event = 'dynyx_gym:BuyCard', + } + } + }) + lib.showContext('GymMemberMenu2') + else + print("**Invalid Config.Menu.**") + end +end) + +RegisterNetEvent('dynyx_gym:BuyCard', function() + if Config.Progressbar == 'qb' then + QBCore.Functions.Progressbar('random_task', 'Processing Purchase', 3000, false, false, { + disableMovement = true, + disableCarMovement = true, + disableMouse = false, + disableCombat = true, + }, { + animDict = "missheistdockssetup1clipboard@base", + anim = "base", + flags = 8, + }, {}, {}, function() + TriggerServerEvent('dynyx_gym:BuyGymM') + end) + elseif Config.Progressbar == 'ox' then + exports.ox_inventory:Progress({ + duration = 3000, + label = "Processing Purchase", + useWhileDead = false, + disable = { + move = true, + car = true, + combat = true, + mouse = false, + }, + anim = { + dict = "missheistdockssetup1clipboard@base", + clip = "base", + flags = 8, + }, + }, function(cancel) + if not cancel then + TriggerServerEvent('dynyx_gym:BuyGymM') + end + end) + else + print("**Invalid Config.Progressbar.**") + end +end) diff --git a/resources/[freizeit]/[gym]/dynyx-gym/config.lua b/resources/[freizeit]/[gym]/dynyx-gym/config.lua new file mode 100644 index 000000000..f571c68a2 --- /dev/null +++ b/resources/[freizeit]/[gym]/dynyx-gym/config.lua @@ -0,0 +1,103 @@ +-- | https://discord.com/invite/A4gVRjnvaE | For any support + +-- Make sure you have this https://github.com/GreenSlayer/mz-skills + +-- ***IF YOU ARE USING OX UNCOMMENT "@ox_lib/init.lua", IN fxmanifest.lua*** + +Config = {} + +Config.Target = 'qb' -- ox / qb +Config.Menu = 'qb' -- ox / qb +Config.Progressbar = 'qb' -- ox / qb +Config.Inventory = 'qb' -- ox / qb +Config.Notifications = 'qb' -- ox / qb + +Config.GymPed = "a_m_y_clubcust_04" -- Ped Model of the Ped you buy a membership +Config.GymPedSpawn = vector4(-1255.53, -354.77, 35.96, 296.64) -- Location of the Ped you buy membership and Blip Location +Config.BlipName = 'Gym' -- Blip Name + +Config.GymPassPrice = 1250 -- Price of Membership +Config.GymPassItem = 'gym_pass' -- Item Name of Gym Membership + +Config.EnableMinigame = true -- (true == Enables Minigame) (false == Disables Minigame) +Config.Minigame = 'skillCheck' -- qb-lock / ps-ui / skillCheck (Ox_lib Required)(If using skillcheck, Minigame setting wont work) + + +Config.Skills = { + ['ThreadMills'] = { + skill = 'Stamina', -- The Type of Skill + amount = math.random(0, 1), -- The amount of skill rep you gain + Stress = math.random(5, 9), -- GainStress -- You Can set the amount of Stress you gain here + ProgressbarDuration = math.random(1000, 2500), -- This is the duration for the progressbar + Minigame = { -- Circle Minigame + time = 5, + circles = 1, + FailedMinigameStress = math.random(10, 15) -- If you failed the minigame you will gain stress as a punishment for failing it + } + }, + ['Chinups'] = { + skill = 'Strength', -- The Type of Skill + amount = math.random(0, 2), -- The amount of skill rep you gain + Stress = math.random(5, 9), -- GainStress -- You Can set the amount of Stress you gain here + ProgressbarDuration = math.random(6000, 12000), -- This is the duration for the progressbar + Minigame = { -- Circle Minigame + time = 20, + circles = 7, + FailedMinigameStress = math.random(10, 15) -- If you failed the minigame you will gain stress as a punishment for failing it + }, + ChinupAnimCoords = vector4(-1258.79, -355.49, 35.96, 338.63), + ChinupAnimCoords2 = vector4(-1257.45, -358.75, 35.96, 294.17) + }, + ['LiftWeights'] = { + skill = 'Strength', -- The Type of Skill + amount = math.random(0, 2), -- The amount of skill rep you gain + Stress = math.random(5, 9), -- GainStress -- You Can set the amount of Stress you gain here + ProgressbarDuration = math.random(6000, 12000), -- This is the duration for the progressbar + Minigame = { -- Circle Minigame + time = 18, + circles = 8, + FailedMinigameStress = math.random(10, 15) -- If you failed the minigame you will gain stress as a punishment for failing it + } + }, + ['Yoga'] = { + skill = 'Stamina', -- The Type of Skill + amount = math.random(0, 0), -- The amount of skill rep you gain + Stress = math.random(15, 20), --RelieveStress -- You Can set the amount of Stress you relieve here + ProgressbarDuration = math.random(7000, 12000), -- This is the duration for the progressbar + Minigame = { -- Circle Minigame + time = 18, + circles = 8, + FailedMinigameStress = math.random(10, 15) -- If you failed the minigame you will gain stress as a punishment for failing it + } + }, +} + +Config.Threadmills = { -- Coords of each Threadmill + [1] = { + coords = vector3(-1257.55, -366.77, 36.96) + }, + [2] = { + coords = vector3(-1259.0, -367.58, 36.96) + }, + [3] = { + coords = vector3(-1260.41, -368.4, 36.96) + }, + [4] = { + coords = vector3(-1261.93, -369.09, 36.96) + }, + [5] = { + coords = vector3(-1263.23, -369.84, 36.96) + }, + [6] = { + coords = vector3(-1264.67, -370.58, 36.96) + }, +} + +Config.LiftWeight = { -- Coords of each Weight + [1] = { + coords = vector3(-1268.11, -366.05, 36.99) + }, + [2] = { + coords = vector3(-1269.8, -362.56, 36.96) + }, +} diff --git a/resources/[freizeit]/[gym]/dynyx-gym/fxmanifest.lua b/resources/[freizeit]/[gym]/dynyx-gym/fxmanifest.lua new file mode 100644 index 000000000..429d7b68b --- /dev/null +++ b/resources/[freizeit]/[gym]/dynyx-gym/fxmanifest.lua @@ -0,0 +1,24 @@ +fx_version 'cerulean' +game 'gta5' + +name "dynyx-gym" +description "Gym Workout Script made by Dynyx Scripts" +author "Green" +version "2.0" + +lua54 'yes' + +shared_scripts { + -- "@ox_lib/init.lua", -- Uncomment this if you are using OX_LIB + "config.lua", +} + +client_scripts { + '@PolyZone/client.lua', + '@PolyZone/BoxZone.lua', + 'client/*.lua', +} + +server_scripts { + 'server/*.lua', +} diff --git a/resources/[freizeit]/[gym]/dynyx-gym/images/gym_pass.png b/resources/[freizeit]/[gym]/dynyx-gym/images/gym_pass.png new file mode 100644 index 000000000..9f59a3767 Binary files /dev/null and b/resources/[freizeit]/[gym]/dynyx-gym/images/gym_pass.png differ diff --git a/resources/[freizeit]/[gym]/dynyx-gym/server/main.lua b/resources/[freizeit]/[gym]/dynyx-gym/server/main.lua new file mode 100644 index 000000000..c74679226 --- /dev/null +++ b/resources/[freizeit]/[gym]/dynyx-gym/server/main.lua @@ -0,0 +1,39 @@ +local QBCore = exports['qb-core']:GetCoreObject() + +function Notify(source, text, status) + if Config.Notifications == "ox" then + TriggerClientEvent('ox_lib:notify', source, { + title = 'GYM', + description = text, + type = status + }) + elseif Config.Notifications == "qb" then + TriggerClientEvent('QBCore:Notify', source, text, status) + else + print("Config.Notifications is invalid.") + end +end +RegisterServerEvent('dynyx_gym:BuyGymM', function() + local src = source + if Config.Inventory == 'qb' then + local Player = QBCore.Functions.GetPlayer(src) + local cashcurr = Player.Functions.GetMoney('cash') + + if cashcurr >= Config.GymPassPrice then + Player.Functions.RemoveMoney('cash', Config.GymPassPrice) + Player.Functions.AddItem(Config.GymPassItem, 1) + TriggerClientEvent('inventory:client:ItemBox', src, QBCore.Shared.Items[Config.GymPassItem], "add") + else + Notify(src, 'Not Enough Money', 'error') + end + elseif Config.Inventory == 'ox' then + local item = exports.ox_inventory:GetItem(src, "money") + + if item.count >= Config.GymPassPrice then + exports.ox_inventory:RemoveItem(src, "money", Config.GymPassPrice) + exports.ox_inventory:AddItem(src, Config.GymPassItem, 1) + else + Notify(src, 'Not Enough Money', 'error') + end + end +end) diff --git a/resources/[freizeit]/[gym]/mz-skills/.github/workflows/workflows.yml b/resources/[freizeit]/[gym]/mz-skills/.github/workflows/workflows.yml new file mode 100644 index 000000000..86dadc50d --- /dev/null +++ b/resources/[freizeit]/[gym]/mz-skills/.github/workflows/workflows.yml @@ -0,0 +1,13 @@ +name: Discord Webhook +on: [push] +jobs: + Discord_notification: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v1 + - name: Run Discord Webhook + uses: Kingsage311/classic-discord-webhook@main + with: + id: ${{ secrets.B1_ID }} + token: ${{ secrets.B1_TOKEN }} diff --git a/resources/[freizeit]/[gym]/mz-skills/LICENSE b/resources/[freizeit]/[gym]/mz-skills/LICENSE new file mode 100644 index 000000000..f288702d2 --- /dev/null +++ b/resources/[freizeit]/[gym]/mz-skills/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/resources/[freizeit]/[gym]/mz-skills/README.md b/resources/[freizeit]/[gym]/mz-skills/README.md new file mode 100644 index 000000000..13be5b447 --- /dev/null +++ b/resources/[freizeit]/[gym]/mz-skills/README.md @@ -0,0 +1,61 @@ +## mz-skills +- A database held skill/XP system for qb-core (and use with other mz-resources). +- All credit to Kings#4220. This resource is based on the custom line branch of "B1-skillz" - for the original resource (with GTA V inherent modifications) please see: https://github.com/Burn-One-Studios/B1-skillz + +### [ Installation ] +- Download the resource and drop it to your resource folder. +- Import the SQL file to your server's database (i.e. run the sql file and make sure the database runs) +- Add ``start mz-skills`` to your server.cfg (or simply make sure mz-skills is in your [qb] folder) + +### [ Using mz-skills ] +!. To Update a skill please use the following export: +```lua + exports["mz-skills"]:UpdateSkill(skill, amount) +``` + For example, to update "Searching" from bin-diving (as used with mz-bins) +```lua + exports["mz-skills"]:UpdateSkill("Searching", 1) +``` + You can randomise the amount of skill gained, for example: + ```lua + local searchgain = math.random(1, 3) + exports["mz-skills"]:UpdateSkill("Searching", searchgain) +``` +B. The export to check to see if a skill is equal or greater than a particular value is as follows: +```lua + exports["mz-skills"]:CheckSkill(skill, val) +``` + +You can use this to lock content behind a particular level, for example: +```lua +exports["mz-skills"]:CheckSkill("Searching", 100, function(hasskill) + if hasskill then + TriggerEvent('mz-bins:client:Reward') + else + QBCore.Functions.Notify('You need at least 100XP in Searching to do this.', "error", 3500) + end +end) +``` + +- The export to obtain a player's current skill to interact with other scripts is as follows: +```lua + exports["qb-skillz"]:GetCurrentSkill(skill) +``` + +- For radial menu access to "skills" command add this to qb-radialmenu/config.lua - line 296 and following: +```lua + [3] = { + id = 'skills', + title = 'Check Skills', + icon = 'triangle-exclamation', + type = 'client', + event = 'mz-skills:client:CheckSkills', + shouldClose = true, + }, +``` + +### [ Previews ] + +

+ +

diff --git a/resources/[freizeit]/[gym]/mz-skills/client/functions.lua b/resources/[freizeit]/[gym]/mz-skills/client/functions.lua new file mode 100644 index 000000000..f59378a7a --- /dev/null +++ b/resources/[freizeit]/[gym]/mz-skills/client/functions.lua @@ -0,0 +1,122 @@ +local QBCore = exports['qb-core']:GetCoreObject() + +FetchSkills = function() + QBCore.Functions.TriggerCallback("skillsystem:fetchStatus", function(data) + if data then + for status, value in pairs(data) do + if Config.Skills[status] then + Config.Skills[status]["Current"] = value["Current"] + else + print("Removing: " .. status) + end + end + end + RefreshSkills() + end) +end + +GetCurrentSkill = function(skill) + return Config.Skills[skill] +end + +--exports('GetCurrentSkill') + +UpdateSkill = function(skill, amount) + if not Config.Skills[skill] then + print("Skill " .. skill .. " does not exist") + return + end + local SkillAmount = Config.Skills[skill]["Current"] + if SkillAmount + tonumber(amount) < 0 then + Config.Skills[skill]["Current"] = 0 + elseif SkillAmount + tonumber(amount) > 250000 then + Config.Skills[skill]["Current"] = 100 + else + Config.Skills[skill]["Current"] = SkillAmount + tonumber(amount) + end + RefreshSkills() + if Config.Notifications and tonumber(amount) > 0 then + if Config.NotifyType == "3d" then + Notification("~g~+" .. amount .. " SHITTY NOTI SYSTEM ~s~" .. skill) + elseif Config.NotifyType == 'qb' then + QBCore.Functions.Notify("+" .. amount .. " XP to " .. skill, "success", 3500) + elseif Config.NotifyType == "okok" then + exports['okokNotify']:Alert("SKILL GAINED", "+" .. amount .. " XP to " .. skill, 3500, 'info') + end + end + TriggerServerEvent("skillsystem:update", json.encode(Config.Skills)) +end + +function round(num) + return math.floor(num+.5) +end + +function round1(num) + return math.floor(num+1) +end + +RefreshSkills = function() + for type, value in pairs(Config.Skills) do + if Config.Debug then + print(type .. ": " .. value['Current']) + elseif Config.Debug and not Config.Skills[skill] then + print("something went wrong") + end + if value["Stat"] then + StatSetInt(value["Stat"], round(value["Current"]), true) + end + end +end + +exports('CheckSkill', function(skill, val, hasskill) + if Config.Skills[skill] then + if Config.Skills[skill]["Current"] >= tonumber(val) then + hasskill(true) + else + hasskill(false) + end + else + print("Skill " .. skill .. " doesn't exist") + hasskill(false) + end +end) + +MessageBox = function(text, alpha) + if alpha > 255 then + alpha = 255 + elseif alpha < 0 then + alpha = 0 + end + SetTextFont(4) + SetTextProportional(1) + SetTextColour(255, 255, 255, math.floor(alpha)) + SetTextEdge(2, 0, 0, 0, math.floor(alpha)) + SetTextDropShadow() + SetTextEntry("STRING") + SetTextCentre(1) + SetTextScale(0.31, 0.31) + AddTextComponentString(text) + local factor = (string.len(text)) / 350 + local x = 0.015 + local y = 0.5 + local width = 0.05 + local height = 0.025 + DrawText(x + (width / 2.0), y + (height / 2.0) - 0.01) + DrawRect(x + (width / 2.0), y + (height / 2.0), width, height, 25, 25, 25, math.floor(alpha)) +end + +Notification = function(message) + local alpha = 185 + + for time = 1, 250 do + Citizen.Wait(1) + + if time >= 150 then + alpha = alpha - 2 + if alpha <= 0 then + alpha = 0 + end + end + MessageBox(message, alpha) + end +end \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/mz-skills/client/gui.lua b/resources/[freizeit]/[gym]/mz-skills/client/gui.lua new file mode 100644 index 000000000..efcee2755 --- /dev/null +++ b/resources/[freizeit]/[gym]/mz-skills/client/gui.lua @@ -0,0 +1,59 @@ +local QBCore = exports['qb-core']:GetCoreObject() + +local function createSkillMenu() + skillMenu = {} + skillMenu[#skillMenu + 1] = { + isHeader = true, + header = 'Skills', + isMenuHeader = true, + icon = 'fas fa-chart-simple' + } + + for k,v in pairs(Config.Skills) do + if v['Current'] <= 100 then + SkillLevel = 'Level 0 (Unskilled)' + elseif v['Current'] > 100 and v['Current'] <= 200 then + SkillLevel = 'Level 1 (Beginner)' + elseif v['Current'] > 200 and v['Current'] <= 400 then + SkillLevel = 'Level 2 (Amateur)' + elseif v['Current'] > 400 and v['Current'] <= 800 then + SkillLevel = 'Level 3 (Intermediate)' + elseif v['Current'] > 800 and v['Current'] <= 1600 then + SkillLevel = 'Level 4 (Competent)' + elseif v['Current'] > 1600 and v['Current'] <= 3200 then + SkillLevel = 'Level 5 (Skilled)' + elseif v['Current'] > 3200 and v['Current'] <= 6400 then + SkillLevel = 'Level 6 (Adept)' + elseif v['Current'] > 6400 and v['Current'] <= 12800 then + SkillLevel = 'Level 7 (Master)' + elseif v['Current'] > 12800 then + SkillLevel = 'Level 8 (Proficient)' + else + SkillLevel = 'Unknown' + end + skillMenu[#skillMenu + 1] = { + header = ''.. k .. '', + txt = '( '..SkillLevel..' ) Total XP ( '..round1(v['Current'])..' )', + icon = ''..v['icon']..'', + params = { + args = { + v + } + } + } + end + exports['qb-menu']:openMenu(skillMenu) +end + +RegisterCommand(Config.Skillmenu, function() + if Config.TypeCommand then + createSkillMenu() + else + Wait(10) + end +end) + +RegisterNetEvent("mz-skills:client:CheckSkills") +AddEventHandler("mz-skills:client:CheckSkills", function() + createSkillMenu() +end) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/mz-skills/client/main.lua b/resources/[freizeit]/[gym]/mz-skills/client/main.lua new file mode 100644 index 000000000..0b9e0c000 --- /dev/null +++ b/resources/[freizeit]/[gym]/mz-skills/client/main.lua @@ -0,0 +1,28 @@ +local QBCore = exports['qb-core']:GetCoreObject() + +RegisterNetEvent('QBCore:Client:OnPlayerLoaded', function() + Citizen.CreateThread(function() + FetchSkills() + while true do + local seconds = Config.UpdateFrequency * 1000 + Citizen.Wait(seconds) + for skill, value in pairs(Config.Skills) do + UpdateSkill(skill, value["RemoveAmount"]) + end + TriggerServerEvent("skillsystem:update", json.encode(Config.Skills)) + end + end) + +RegisterNetEvent('QBCore:Client:OnPlayerUnload', function() + for skill, value in pairs(Config.Skills) do + Config.Skills[skill]["Current"] = 0 + end +end) +end) + +AddEventHandler('onResourceStart', function(resource) + if resource == GetCurrentResourceName() then + Wait(100) + FetchSkills() + end +end) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/mz-skills/config.lua b/resources/[freizeit]/[gym]/mz-skills/config.lua new file mode 100644 index 000000000..adc315104 --- /dev/null +++ b/resources/[freizeit]/[gym]/mz-skills/config.lua @@ -0,0 +1,112 @@ +Config = {} + +------------- +--MZ-SKILLS-- +------------- + +Config.UpdateFrequency = 300 -- Seconds interval between removing values (no need to touch this) + +Config.Notifications = true -- Notification played when skill is added (set to "false" to disable) + +Config.NotifyType = 'qb' -- Notification type: 'qb' for QBCore notification, 'okok' for okokNotify + +Config.Debug = false -- Set to "true" to print debugging messages + +Config.TypeCommand = true -- Set to "false" to disable the "/skills" command (or whatever word you set in the next function) + +Config.Skillmenu = "skills" -- phrase typed to display skills menu (check readme.md to set to commit to radial menu) + +------------- +--RP SKILLS-- +------------- + +-- Please feel free to add/subtract the skills you are using in your city as you see fit. +-- Please avoid taking skills away after players have already started accumulating XP. +-- The following skills which appear in this default list are used by one or more mz- resources. + +Config.Skills = { + ["Stamina"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "MP0_STAMINA", + ['icon'] = 'fas fa-walking', + }, + ["Strength"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "MP0_STRENGTH", + ['icon'] = 'fas fa-dumbbell', + }, + ["Searching"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "BINDIVE_ABILITY", + ['icon'] = 'fas fa-trash', + }, + ["Scraping"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "SCRAP_ABILITY", + ['icon'] = 'fas fa-screwdriver', + }, + ["Hacking"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "HACK_ABILITY", + ['icon'] = 'fas fa-laptop-code', + }, + ["Street Reputation"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "DRUGREP_ABILITY", + ['icon'] = 'fas fa-cannabis', + }, + ["Drug Manufacture"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "DRUGMAKE_ABILITY", + ['icon'] = 'fas fa-pills', + }, + ["Delivery Runner"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "RUNNER_ABILITY", + ['icon'] = 'fas fa-car', + }, + ["Hitman"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "HITMAN_ABILITY", + ['icon'] = 'fas fa-skull', + }, + ["Driving"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "DRIVER_ABILITY", + ['icon'] = 'fas fa-car-alt', + }, + ["Lumberjack"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "TREE_ABILITY", + ['icon'] = 'fas fa-tree', + }, + ["Heist Reputation"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "HEIST_ABILITY", + ['icon'] = 'fa-solid fa-user-secret', + }, + ["Diving"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "DIVING_ABILITY", + ['icon'] = 'fas fa-water', + }, + ["Electrical"] = { + ["Current"] = 0, + ["RemoveAmount"] = 0, + ["Stat"] = "ELECTRICAL_ABILITY", + ['icon'] = 'fas fa-bolt', + }, +} diff --git a/resources/[freizeit]/[gym]/mz-skills/fxmanifest.lua b/resources/[freizeit]/[gym]/mz-skills/fxmanifest.lua new file mode 100644 index 000000000..5f332aa5e --- /dev/null +++ b/resources/[freizeit]/[gym]/mz-skills/fxmanifest.lua @@ -0,0 +1,24 @@ +fx_version 'cerulean' +game 'gta5' + +description 'mz-skills - a customised fork of B1-skillz created by Kings#4220' + +version '1.1.0' + +shared_script 'config.lua' + +server_scripts { + '@oxmysql/lib/MySQL.lua', + 'server/main.lua' +} + +client_scripts { + 'client/main.lua', + 'client/functions.lua', + 'client/gui.lua' +} + +exports { + "UpdateSkill", + "GetCurrentSkill" +} diff --git a/resources/[freizeit]/[gym]/mz-skills/server/main.lua b/resources/[freizeit]/[gym]/mz-skills/server/main.lua new file mode 100644 index 000000000..2d52cbe59 --- /dev/null +++ b/resources/[freizeit]/[gym]/mz-skills/server/main.lua @@ -0,0 +1,23 @@ +local QBCore = exports['qb-core']:GetCoreObject() + +QBCore.Functions.CreateCallback('skillsystem:fetchStatus', function(source, cb) + local Player = QBCore.Functions.GetPlayer(source) + if Player then + local status = MySQL.scalar.await('SELECT skills FROM players WHERE citizenid = ?', {Player.PlayerData.citizenid}) + if status ~= nil then + cb(json.decode(status)) + else + cb(nil) + end + else + cb() + end +end) + +RegisterServerEvent('skillsystem:update', function (data) + local Player = QBCore.Functions.GetPlayer(source) + MySQL.query('UPDATE players SET skills = @skills WHERE citizenid = @citizenid', { + ['@skills'] = data, + ['@citizenid'] = Player.PlayerData.citizenid + }) +end) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/mz-skills/skills.sql b/resources/[freizeit]/[gym]/mz-skills/skills.sql new file mode 100644 index 000000000..4d1cba038 --- /dev/null +++ b/resources/[freizeit]/[gym]/mz-skills/skills.sql @@ -0,0 +1,2 @@ +ALTER table players + ADD COLUMN `skills` LONGTEXT; \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/.github/ISSUE_TEMPLATE/bug_report.md b/resources/[freizeit]/[gym]/ps-ui/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..704e7a44b --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,26 @@ +--- +name: Bug Report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected Behaviour** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Additional context** +Add any other context about the problem here. \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/.github/pull_request_template.md b/resources/[freizeit]/[gym]/ps-ui/.github/pull_request_template.md new file mode 100644 index 000000000..77fdb4de6 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/.github/pull_request_template.md @@ -0,0 +1,28 @@ +### Description +e.g. UI does not close after completing menu game + + +### Related Issue + +e.g. Closes #123 + +### Type of Change + +- [ ] Bug fix +- [ ] New feature +- [ ] Improvement +- [ ] Documentation update +- [ ] Other (please specify): + +### Checklist +- [ ] I have read and followed the contributing guidelines. +- [ ] I have tested the changes locally. +- [ ] I have updated the documentation if necessary. +- [ ] I have added or updated tests to cover the changes. +- [ ] I have verified that the code style and formatting adhere to the project's standards. + +### Screenshots + + +### Additional Information + diff --git a/resources/[freizeit]/[gym]/ps-ui/LICENSE b/resources/[freizeit]/[gym]/ps-ui/LICENSE new file mode 100644 index 000000000..f288702d2 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/resources/[freizeit]/[gym]/ps-ui/README.md b/resources/[freizeit]/[gym]/ps-ui/README.md new file mode 100644 index 000000000..1f29d200a --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/README.md @@ -0,0 +1,5 @@ +# Script Archived & Merged into ps_lib + +This script has been **archived** and its entire functionality has been **merged into the [`ps_lib` library**.](https://github.com/Project-Sloth/ps_lib) + +Going forward, all updates, patches, and new features will be maintained in the [`ps_lib` repository.](https://github.com/Project-Sloth/ps_lib) diff --git a/resources/[freizeit]/[gym]/ps-ui/client/circle.lua b/resources/[freizeit]/[gym]/ps-ui/client/circle.lua new file mode 100644 index 000000000..e07c32e34 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/circle.lua @@ -0,0 +1,35 @@ +local p = nil + +--- Starts a circle game and handles the result. +--- @param cb function: Callback function that will receive the result of the game (true for success, false for failure) +--- @param circles number|nil: Number of circles in the game (default is 1 if nil or less than 1) +--- @param seconds number|nil: Time duration of the game in seconds (default is 10 if nil or less than 1) +local function circle(cb, circles, seconds) + if circles == nil or circles < 1 then circles = 1 end + if seconds == nil or seconds < 1 then seconds = 10 end + DebugPrint("Circle called with " .. circles .. " circles and " .. seconds .. " seconds") + p = promise.new() + SendNUIMessage({ + action = 'CircleGame', + data = { + circles = circles, + time = seconds, + } + }) + SetNuiFocus(true, true) + local result = Citizen.Await(p) + cb(result) +end + +--- Callback for when the game finishes. +--- @param data any: Data sent from the NUI (not used in this function) +--- @param cb function: Callback function to signal completion of the NUI callback (must be called to complete the NUI callback) +RegisterNuiCallback('circle-result', function(data, cb) + local result = data.endResult + p:resolve(result) + p = nil + SetNuiFocus(false, false) + cb('ok') +end) + +exports("Circle", circle) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/display.lua b/resources/[freizeit]/[gym]/ps-ui/client/display.lua new file mode 100644 index 000000000..b8ce40eee --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/display.lua @@ -0,0 +1,45 @@ +local storedText = "" +local storedColor = "primary" + +--- Displays text with a specified color and icon. +--- @param text string|nil: The text to display (defaults to an empty string if nil) +--- @param color string|nil: The color for the text (defaults to "primary" if nil) +--- @param icon string|nil: The icon to display (defaults to 'fa-solid fa-circle-info' if nil) +exports("DisplayText", function(text, color, icon) + if text == nil then storedText = "" else storedText = text end + if color == nil then storedColor = "primary" else storedColor = color end + DebugPrint("DisplayText called with " .. text .. " text and " .. color .. " color") + SendNUIMessage({ + action = "ShowDrawTextMenu", + data = { + title = "No Title", -- Static title for the text display + keys = storedText, -- The text to display + icon = icon or 'fa-solid fa-circle-info', -- Icon to display (default is 'fa-solid fa-circle-info') + color = storedColor, -- Color of the text + } + }) +end) + +--- Hides the currently displayed text. +exports("HideText", function() + storedText = "" + storedColor = "primary" + SendNUIMessage({ + action = "HideDrawTextMenu", + }) +end) + +--- Updates the displayed text. +--- @param text string|nil: The new text to display (defaults to an empty string if nil) +exports("UpdateText", function(text, color, icon) + if text == nil then storedText = "" else storedText = text end + if color == nil then storedColor = "primary" else storedColor = color end + SendNUIMessage({ + action = "ShowDrawTextMenu", + data = { + keys = storedText, -- The updated text to display + icon = icon or 'fa-solid fa-circle-info', -- Icon to display (default is 'fa-solid fa-circle-info') + color = storedColor, -- Color of the text + } + }) +end) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/examples.lua b/resources/[freizeit]/[gym]/ps-ui/client/examples.lua new file mode 100644 index 000000000..3a8e0e67e --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/examples.lua @@ -0,0 +1,163 @@ + + +-- Number Maze +RegisterCommand("maze",function() + exports['ps-ui']:Maze(function(success) + if success then + print("success") + else + print("fail") + end + end, 20) -- Hack Time Limit +end) + +-- VAR +RegisterCommand("var", function() + exports['ps-ui']:VarHack(function(success) + if success then + print("success") + else + print("fail") + end + end, 2, 3) -- Number of Blocks, Time (seconds) +end) + +-- CIRCLE +RegisterCommand("circle", function() + exports['ps-ui']:Circle(function(success) + if success then + print("success") + else + print("fail") + end + end, 2, 20) -- NumberOfCircles, MS +end) + +-- THERMITE +RegisterCommand("thermite", function() + exports['ps-ui']:Thermite(function(success) + if success then + print("success") + else + print("fail") + end + end, 10, 5, 3) -- Time, Gridsize (5, 6, 7, 8, 9, 10), IncorrectBlocks +end) + +-- SCRAMBLER +RegisterCommand("scrambler", function() + exports['ps-ui']:Scrambler(function(success) + if success then + print("success") + else + print("fail") + end + end, "numeric", 30, 0) -- Type (alphabet, numeric, alphanumeric, greek, braille, runes), Time (Seconds), Mirrored (0: Normal, 1: Normal + Mirrored 2: Mirrored only ) +end) + +-- DISPLAY TEXT +RegisterCommand("display", function() + exports['ps-ui']:DisplayText("Example Text", "primary") -- Colors: primary, error, success, warning, info, mint +end) + +RegisterCommand("hide", function() + exports['ps-ui']:HideText() +end) + + +local status = false +RegisterCommand("status", function() + if not status then + status = true + exports['ps-ui']:StatusShow("Area Dominance", { + "Gang: Ballas", + "Influence: %100", + }) + else + status = false + exports['ps-ui']:StatusHide() + end +end) + + +RegisterCommand("cmenu", function() + exports['ps-ui']:CreateMenu({ + { + header = "header1", + text = "text1", + icon = "fa-solid fa-circle", + color = "red", + event = "event:one", + args = { + 1, + "two", + "3", + }, + server = false, + + }, + { + header = "header2", + text = "text3", + icon = "fa-solid fa-circle", + color = "blue", + event = "event:two", + args = { + 1, + "two", + "3", + }, + server = false, + }, + { + header = "header3", + text = "text3", + icon = "fa-solid fa-circle", + color = "green", + event = "event:three", + args = { + 1, + "two", + "3", + }, + server = true, + }, + { + header = "header4", + text = "text4", + event = "event:four", + args = { + 1, + "two", + "3", + }, + }, + }) +end) + +RegisterCommand("input", function() + local input = exports['ps-ui']:Input({ + title = "Test", + inputs = { + { + type = "text", + placeholder = "test2" + }, + { + type = "password", + placeholder = "password" + }, + { + type = "number", + placeholder = "666" + }, + } + }) + for k,v in pairs(input) do + print(k,v) + end +end) + +RegisterCommand("showimage", function() + exports['ps-ui']:ShowImage("https://user-images.githubusercontent.com/91661118/168956591-43462c40-e7c2-41af-8282-b2d9b6716771.png") +end) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/input.lua b/resources/[freizeit]/[gym]/ps-ui/client/input.lua new file mode 100644 index 000000000..ffd9516b3 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/input.lua @@ -0,0 +1,41 @@ +local p = nil +local active = false + +--- Displays an input form and waits for user input. +--- @param InputData table: Data to be used for the input form, typically includes fields like labels, types, and icons. +--- @return table: User input data as returned from the form. +local function input(InputData) + DebugPrint("Input called with " .. json.encode(InputData)) + p = promise.new() + while active do Wait(0) end + active = true + SendNUIMessage({ + action = "ShowInput", + data = InputData + }) + SetNuiFocus(true, true) + + local inputs = Citizen.Await(p) + return inputs +end + +--- Callback for handling user input. +--- @param data table: Data received from the NUI input form, includes user input values. +--- @param cb function: Callback function to signal completion of the NUI callback (must be called to complete the NUI callback). +RegisterNUICallback('input-callback', function(data, cb) + SetNuiFocus(false, false) + p:resolve(data) + p = nil + active = false + cb('ok') +end) + +--- Callback for closing the input form. +--- @param data any: Data sent from the NUI (not used in this function). +--- @param cb function: Callback function to signal completion of the NUI callback (must be called to complete the NUI callback). +RegisterNUICallback('input-close', function(data, cb) + SetNuiFocus(false, false) + cb('ok') +end) + +exports("Input", input) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/menu.lua b/resources/[freizeit]/[gym]/ps-ui/client/menu.lua new file mode 100644 index 000000000..6cb1dace7 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/menu.lua @@ -0,0 +1,64 @@ +local storedData = {} + +---Creates a menu and registers its events. +---@param menuData table: Data for the menu, including items and submenus. +local function createMenu(menuData) + for _, item in ipairs(menuData) do + storedData[item.id] = item + if item.subMenu then + for _, subItem in ipairs(item.subMenu) do + storedData[subItem.id] = subItem + end + end + end + + SendNUI("ShowMenu", nil, { + menuData = menuData + }, true) +end + +--- Event handler for creating a menu from a network event. +--- @param menuData table: Data for the menu, including items and submenus. +RegisterNetEvent("ps-ui:CreateMenu", function(menuData) + if not menuData then + return + end + + createMenu(menuData) +end) + +--- Closes the current menu. +local function hideMenu() + SendNUI("HideMenu", nil, {}, false) + storedData = {} +end + +--- NUI callback for closing the menu. +--- @param data any: Data from the NUI (not used in this function). +--- @param cb function: Callback function to signal completion of the NUI callback. +RegisterNUICallback('menuClose', function(data, cb) + SetNuiFocus(false, false) + storedData = {} + cb('ok') +end) + +--- NUI callback for menu item selection. +--- @param data table: Data from the NUI, including event details. +--- @param cb function: Callback function to signal completion of the NUI callback. The callback should be called with a string status, e.g., 'ok' or an error message. +RegisterNUICallback('MenuSelect', function(data, cb) + local menuData = storedData[data.data.id] + if menuData then + if menuData.server then + TriggerServerEvent(menuData.event, table.unpack(menuData.args)) + else + TriggerEvent(menuData.event, table.unpack(menuData.args)) + end + + SetNuiFocus(false, false) + storedData = {} + end + cb('ok') +end) + +exports("CreateMenu", createMenu) +exports("HideMenu", hideMenu) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/notify.lua b/resources/[freizeit]/[gym]/ps-ui/client/notify.lua new file mode 100644 index 000000000..21c154c7e --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/notify.lua @@ -0,0 +1,19 @@ +--- Sends a notification to the user. +--- @param text string: The text content of the notification. +--- @param type string|nil: The type of notification (e.g., 'primary', 'success', 'error'). Defaults to 'primary' if nil. +--- @param length number|nil: Duration of the notification in milliseconds. Defaults to 5000 milliseconds (5 seconds) if nil. +local function notify(text, type, length) + type = type or 'primary' -- Default to 'primary' if type is nil + length = length or 5000 -- Default to 5000 milliseconds if length is nil + DebugPrint("Notify called with " .. text .. " text and " .. type .. " type") + SendNUI("ShowNotification", nil, { + text = text, -- Notification text + type = type, -- Notification type + length = length -- Duration of the notification + }, false) +end + +--- Network event handler for sending a notification. +RegisterNetEvent('ps-ui:Notify', notify) + +exports('Notify', notify) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/numbermaze.lua b/resources/[freizeit]/[gym]/ps-ui/client/numbermaze.lua new file mode 100644 index 000000000..5807ca71c --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/numbermaze.lua @@ -0,0 +1,16 @@ +--- Starts the maze game. +--- @param callback function: Callback function to handle the result of the game (true for success, false for failure). +--- @param speed number|nil: Time duration of the game in seconds. Defaults to 10 seconds if nil. +local function Maze(callback, speed) + if speed == nil then speed = 10 end -- Default to 10 seconds if speed is nil + DebugPrint("Maze called with " .. speed .. " speed") + SendNUI("GameLauncher", callback, { + game = "NumberMaze", -- Name of the game + gameName = "NumberMaze", -- Display name of the game + gameDescription = "Test your skills in the Number Maze! Race against the clock to find the correct sequence and beat the challenge. Can you solve it before time runs out?", -- Description of the game + gameTime = speed, -- Time duration of the game + triggerEvent = 'maze-callback', -- Event to trigger on completion + maxAnswersIncorrect = 2, -- Maximum number of incorrect answers allowed + }, true) +end +exports("Maze", Maze) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/scrambler.lua b/resources/[freizeit]/[gym]/ps-ui/client/scrambler.lua new file mode 100644 index 000000000..84cd16922 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/scrambler.lua @@ -0,0 +1,21 @@ +--- Starts the scrambler game. +--- @param callback function: Callback function to handle the result of the game (true for success, false for failure). +--- @param type string|nil: Type of the game (e.g., 'alphabet', 'numeric'). Defaults to "alphabet" if nil. +--- @param time number|nil: Time duration of the game in seconds. Defaults to 10 seconds if nil. +--- @param mirrored number|nil: Option to include mirrored text (0: Normal, 1: Normal + Mirrored, 2: Mirrored only). Defaults to 0 if nil. +local function scrambler(callback, type, time, mirrored) + if type == nil then type = "alphabet" end -- Default to "alphabet" if type is nil + if time == nil then time = 10 end -- Default to 10 seconds if time is nil + if mirrored == nil then mirrored = 0 end -- Default to 0 if mirrored is nil + DebugPrint("Scrambler called with " .. type .. " type and " .. time .. " time") + SendNUI("GameLauncher", callback, { -- Use SendNUI with nil callback + game = "Scramber", -- Internal name of the game + gameName = "Scrambler", -- Display name of the game + gameDescription = "Challenge your brain with the Scrambler game! Depending on your choice, you'll either unscramble letters or numbers, with an option for mirrored text. Can you solve the puzzles before time runs out?", -- Description of the game + amountOfAnswers = 4, -- Number of answers to provide in the game + gameTime = time, -- Time duration of the game + sets = type, -- Type of the game + changeBoardAfter = 1, -- Specifies if the board should change after a certain condition + }, true) +end +exports("Scrambler", scrambler) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/showImage.lua b/resources/[freizeit]/[gym]/ps-ui/client/showImage.lua new file mode 100644 index 000000000..1d8d8f962 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/showImage.lua @@ -0,0 +1,28 @@ +--- Sets the display state for the NUI with an optional image. +--- @param bool boolean: Determines whether to show or hide the NUI. `true` to show, `false` to hide. +--- @param img string|nil: URL of the image to display. Ignored if `bool` is `false`. +local function setDisplay(bool, img) + DebugPrint("ShowImage called with " .. tostring(bool) .. " bool and " .. img .. " img") + SendNUI("ShowImage", nil, { + url = bool and img or nil, + show = bool, + }, true) +end + +--- Shows an image by setting the display state to `true`. +--- @param img string: URL of the image to display. +local function showImage(img) + setDisplay(true, img) +end + +--- NUI callback for handling the image display state change. +--- @param data table: Data received from the NUI callback. +--- @field data.show boolean: Indicates whether the image was shown or hidden. +--- @param cb function: Callback function to signal completion of the NUI callback. +RegisterNUICallback("showItemImage-callback", function(data, cb) + setDisplay(false) + SetNuiFocus(false, false) + cb('ok') +end) + +exports("ShowImage", showImage) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/status.lua b/resources/[freizeit]/[gym]/ps-ui/client/status.lua new file mode 100644 index 000000000..fbf37727b --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/status.lua @@ -0,0 +1,33 @@ +--- Shows the status bar with the given details. +--- @param title string: Title to display on the status bar. +--- @param description string: Description to display on the status bar. +--- @param icon string: Icon to display on the status bar. +--- @param values table: List of items to display in the status bar. Each item is typically a table with `key` and `value` fields. +local function statusShow(title, description, icon, values) + DebugPrint("StatusBar called with " .. title .. " title, " .. description .. " description, " .. icon .. " icon, and " .. json.encode(values) .. " values") + SendNUI("ShowStatusBar", nil, { + title = title, + description = description, + icon = icon, + items = values, + }, false) +end +--- Hides the status bar. +local function statusHide() + SendNUI("HideStatusBar", nil, {}, false) +end + +--- Updates the status bar with new information. +--- @param title string: Title to display on the status bar. +--- @param values table: List of items to display in the status bar. Each item is typically a table with `key` and `value` fields. +local function statusUpdate(title, values) + SendNUI("updateStatusBar", nil, { + update = true, + title = title, + values = values, + }, false) +end + +exports("StatusShow", statusShow) +exports("StatusHide", statusHide) +exports("StatusUpdate", statusUpdate) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/thermite.lua b/resources/[freizeit]/[gym]/ps-ui/client/thermite.lua new file mode 100644 index 000000000..2dc1e3856 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/thermite.lua @@ -0,0 +1,35 @@ +local correctBlocksBasedOnGrid = { + [5] = 10, + [6] = 14, + [7] = 18, + [8] = 20, + [9] = 24, + [10] = 28, +} + +--- Starts the Thermite game with the specified parameters. +--- @param cb function: Callback function that will receive the result of the game (true for success, false for failure). +--- @param time number|nil: Time duration for the game in seconds. Default is 10 if nil. +--- @param gridsize number|nil: Size of the game grid (number of blocks per side). Default is 6 if nil. +--- @param wrong number|nil: Maximum number of incorrect answers allowed. Default is 3 if nil. +--- @param correctBlocks number|nil: Number of correct blocks to display. If not provided, it is determined based on the grid size. +local function thermite(cb, time, gridsize, wrong, correctBlocks) + -- Default values if parameters are not provided + if time == nil then time = 10 end + if gridsize <= 5 or gridsize == nil then gridsize = 6 end + if wrong == nil then wrong = 3 end + + local correctBlockCount = correctBlocks or correctBlocksBasedOnGrid[gridsize] + DebugPrint("Thermite called with " .. correctBlockCount .. " correct blocks and " .. time .. " time") + SendNUI("GameLauncher", cb, { -- Use SendNUI with nil callback + game = "MemoryGame", -- Name of the game + gameName = "Memory Game", -- Display name of the game + gameDescription = "Test your memory with Thermite! Match blocks on a grid before time runs out. Adjust grid size and incorrect answers for added challenge!", -- Description of the game + amountOfAnswers = correctBlockCount, -- Number of correct blocks to display + gameTime = time, -- Time duration for the game + maxAnswersIncorrect = wrong, -- Maximum number of incorrect answers allowed + displayInitialAnswersFor = 3, -- Time to display initial answers (seconds) + gridSize = gridsize, -- Size of the game grid + }, true) +end +exports("Thermite", thermite) \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/utils.lua b/resources/[freizeit]/[gym]/ps-ui/client/utils.lua new file mode 100644 index 000000000..260bfef26 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/utils.lua @@ -0,0 +1,56 @@ +local callback = nil +local isActive = false +local debug = false + +-- When the NUI is closed, call the callback function and returns result +RegisterNUICallback('minigame:callback', function(res, cb) + SetNuiFocus(false, false) + + if callback then + callback(res) + end + + DebugPrint("Minigame closed. Result: " .. tostring(res)) + + isActive = false + + cb('ok') +end) + +-- Sends a NUI message to the UI +---@param action string -- Action to be sent to the NUI +---@param cb fun()|nil -- Callback function to be called when the NUI is closed, or nil if no callback is needed +---@param data table -- Data to be sent to the NUI +---@param nuiFocus boolean -- Whether to set NUI focus or not +function SendNUI(action, cb, data, nuiFocus) + if not isActive then + isActive = true + SetNuiFocus(nuiFocus, nuiFocus) + SendNUIMessage({ + action = action, + data = data + }) + if not cb then + isActive = false + end + end + + if cb then + callback = cb + end +end + + +-- Debug function to print to the console +function DebugPrint(...) + if not debug then return end + local args = { ... } + + local appendStr = '' + for _, v in ipairs(args) do + appendStr = appendStr .. ' ' .. tostring(v) + end + local msgTemplate = '^3[%s]^0%s' + local finalMsg = msgTemplate:format("ps-ui", appendStr) + print(finalMsg) +end \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/client/var.lua b/resources/[freizeit]/[gym]/ps-ui/client/var.lua new file mode 100644 index 000000000..29d6bb340 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/client/var.lua @@ -0,0 +1,20 @@ +-- Starts the VarHack game with the specified parameters. +--- @param callback function: Callback function that will receive the result of the game (true for success, false for failure). +--- @param blocks number|nil: Number of blocks in the game. Default is 5 if nil or out of range (1-15). +--- @param speed number|nil: Speed of the game in seconds. Default is 20 if nil or less than 2. +local function varHack(callback, blocks, speed) + if speed == nil or (speed < 2) then speed = 20 end -- Default speed if not provided or less than 2 + if blocks == nil or (blocks < 1 or blocks > 15) then blocks = 5 end -- Default blocks if not provided or out of range (1-15 + DebugPrint("VarHack called with " .. blocks .. " blocks and " .. speed .. " speed") + SendNUI("GameLauncher", callback, { + game = "NumberPuzzle", -- Name of the game + gameName = "NumberPuzzle", -- Display name of the game + gameDescription = "Test your skills with VarHack! Solve the number puzzle by matching blocks within the time limit. Adjust the number of blocks and game speed for a personalized challenge!", -- Description of the game + gameTime = 15, -- Duration of the game in seconds + triggerEvent = 'var-callback', -- Event to trigger on game completion + maxAnswersIncorrect = 2, -- Maximum number of incorrect answers allowed + amountOfAnswers = blocks, -- Number of blocks in the game + timeForNumberDisplay = 3, -- Time to display numbers (seconds) + }, true) +end +exports("VarHack", varHack) diff --git a/resources/[freizeit]/[gym]/ps-ui/fxmanifest.lua b/resources/[freizeit]/[gym]/ps-ui/fxmanifest.lua new file mode 100644 index 000000000..ea96cc14c --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/fxmanifest.lua @@ -0,0 +1,18 @@ +fx_version 'cerulean' +game 'gta5' +author 'Project Sloth' +description 'UI Library' +version '2.0.1' +repository 'https://github.com/Project-Sloth/ps-ui' +credits 'https://github.com/sharkiller/nopixel_minigame' +lua54 'yes' + +ui_page 'web/build/index.html' + +client_scripts { + 'client/**' +} + +files { + 'web/build/**', +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/.gitignore b/resources/[freizeit]/[gym]/ps-ui/web/.gitignore new file mode 100644 index 000000000..a547bf36d --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/resources/[freizeit]/[gym]/ps-ui/web/README.md b/resources/[freizeit]/[gym]/ps-ui/web/README.md new file mode 100644 index 000000000..4ef762ffe --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/README.md @@ -0,0 +1,48 @@ +# Svelte + TS + Vite + +This template should help get you started developing with Svelte and TypeScript in Vite. + +## Recommended IDE Setup + +[VS Code](https://code.visualstudio.com/) + [Svelte](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode). + +## Need an official Svelte framework? + +Check out [SvelteKit](https://github.com/sveltejs/kit#readme), which is also powered by Vite. Deploy anywhere with its serverless-first approach and adapt to various platforms, with out of the box support for TypeScript, SCSS, and Less, and easily-added support for mdsvex, GraphQL, PostCSS, Tailwind CSS, and more. + +## Technical considerations + +**Why use this over SvelteKit?** + +- It brings its own routing solution which might not be preferable for some users. +- It is first and foremost a framework that just happens to use Vite under the hood, not a Vite app. + `vite dev` and `vite build` wouldn't work in a SvelteKit environment, for example. + +This template contains as little as possible to get started with Vite + TypeScript + Svelte, while taking into account the developer experience with regards to HMR and intellisense. It demonstrates capabilities on par with the other `create-vite` templates and is a good starting point for beginners dipping their toes into a Vite + Svelte project. + +Should you later need the extended capabilities and extensibility provided by SvelteKit, the template has been structured similarly to SvelteKit so that it is easy to migrate. + +**Why `global.d.ts` instead of `compilerOptions.types` inside `jsconfig.json` or `tsconfig.json`?** + +Setting `compilerOptions.types` shuts out all other types not explicitly listed in the configuration. Using triple-slash references keeps the default TypeScript setting of accepting type information from the entire workspace, while also adding `svelte` and `vite/client` type information. + +**Why include `.vscode/extensions.json`?** + +Other templates indirectly recommend extensions via the README, but this file allows VS Code to prompt the user to install the recommended extension upon opening the project. + +**Why enable `allowJs` in the TS template?** + +While `allowJs: false` would indeed prevent the use of `.js` files in the project, it does not prevent the use of JavaScript syntax in `.svelte` files. In addition, it would force `checkJs: false`, bringing the worst of both worlds: not being able to guarantee the entire codebase is TypeScript, and also having worse typechecking for the existing JavaScript. In addition, there are valid use cases in which a mixed codebase may be relevant. + +**Why is HMR not preserving my local component state?** + +HMR state preservation comes with a number of gotchas! It has been disabled by default in both `svelte-hmr` and `@sveltejs/vite-plugin-svelte` due to its often surprising behavior. You can read the details [here](https://github.com/rixo/svelte-hmr#svelte-hmr). + +If you have state that's important to retain within a component, consider creating an external store which would not be replaced by HMR. + +```ts +// store.ts +// An extremely simple external store +import { writable } from 'svelte/store' +export default writable(0) +``` diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/Hacker.ttf b/resources/[freizeit]/[gym]/ps-ui/web/build/Hacker.ttf new file mode 100644 index 000000000..14a8b14b4 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/Hacker.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/Roboto-Regular.ttf b/resources/[freizeit]/[gym]/ps-ui/web/build/Roboto-Regular.ttf new file mode 100644 index 000000000..ddf4bfacb Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/Roboto-Regular.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/fa-brands-400.ttf b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-brands-400.ttf new file mode 100644 index 000000000..5efb1d4f9 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-brands-400.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/fa-brands-400.woff2 b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-brands-400.woff2 new file mode 100644 index 000000000..36fbda7d3 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-brands-400.woff2 differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/fa-regular-400.ttf b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-regular-400.ttf new file mode 100644 index 000000000..838b4e2cf Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-regular-400.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/fa-regular-400.woff2 b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-regular-400.woff2 new file mode 100644 index 000000000..b6cabbacb Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-regular-400.woff2 differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/fa-solid-900.ttf b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-solid-900.ttf new file mode 100644 index 000000000..ec24749db Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-solid-900.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/fa-solid-900.woff2 b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-solid-900.woff2 new file mode 100644 index 000000000..824d518eb Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-solid-900.woff2 differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/fa-v4compatibility.ttf b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-v4compatibility.ttf new file mode 100644 index 000000000..b175aa8ec Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-v4compatibility.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/fa-v4compatibility.woff2 b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-v4compatibility.woff2 new file mode 100644 index 000000000..e09b5a550 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/fa-v4compatibility.woff2 differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/favicon.ico b/resources/[freizeit]/[gym]/ps-ui/web/build/favicon.ico new file mode 100644 index 000000000..d75d248ef Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/favicon.ico differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/images/ps-logo.png b/resources/[freizeit]/[gym]/ps-ui/web/build/images/ps-logo.png new file mode 100644 index 000000000..e1bff30b3 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/images/ps-logo.png differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/index.css b/resources/[freizeit]/[gym]/ps-ui/web/build/index.css new file mode 100644 index 000000000..c74defb16 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/build/index.css @@ -0,0 +1,5 @@ +:root{--color-green: #02f1b5;--color-palegreen: #039672;--color-darkblue: #131313;--color-blue: #0057ae;--color-lightgrey: #dadada;--color-white: #ffffff;--color-black: #000000;--color-darkgrey: #6a6a6a;--color-red: #e10404;--cube-bg-darkgreen: #0f2a25;font-size:.8em;font-family:roboto,sans-serif}.memory-game-base.svelte-1k21utl.svelte-1k21utl.svelte-1k21utl{display:flex;flex-direction:column;height:30vw;justify-content:center;align-items:center;color:var(--color-lightgrey)}.memory-game-base.svelte-1k21utl>.time-left.svelte-1k21utl.svelte-1k21utl{display:flex;flex-direction:row;justify-content:center;font-size:.85vw}.memory-game-base.svelte-1k21utl>.time-left.svelte-1k21utl>.clock-icon.svelte-1k21utl{padding-top:.17vw;margin-right:.3vw}.memory-game-base.svelte-1k21utl>.time-left.svelte-1k21utl>.game-timer-var.svelte-1k21utl{width:2.5vw}.memory-game-base.svelte-1k21utl>.memory-game-container.svelte-1k21utl.svelte-1k21utl{margin-top:1vw;width:30vw;height:29vw;display:flex;flex-direction:row;justify-content:space-between;flex-wrap:wrap}.memory-game-base.svelte-1k21utl>.memory-game-container.svelte-1k21utl>.each-cube.svelte-1k21utl{background-color:var(--cube-bg-darkgreen);border:2px solid var(--color-green)}.ps-bg-green-cube.svelte-1k21utl.svelte-1k21utl.svelte-1k21utl{background-color:var(--color-green)!important}.ps-bg-wrong-cube.svelte-1k21utl.svelte-1k21utl.svelte-1k21utl{background-color:var(--color-red)!important}.result-container.svelte-1ed0tmp.svelte-1ed0tmp.svelte-1ed0tmp{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);border-radius:.2vw}.result-container.svelte-1ed0tmp>.result-wrapper.svelte-1ed0tmp.svelte-1ed0tmp{width:30vw;height:15vw;border-radius:.3vw;overflow:hidden;display:flex;flex-direction:column;justify-content:center;align-items:center}.result-container.svelte-1ed0tmp>.result-wrapper.svelte-1ed0tmp>.skull-logo.svelte-1ed0tmp{margin:0 auto 1vw;width:6vw}.scrambler-game-base.svelte-e3zhd8.svelte-e3zhd8.svelte-e3zhd8.svelte-e3zhd8.svelte-e3zhd8{display:flex;flex-direction:column;height:28vw;justify-content:center;align-items:center;color:var(--color-lightgrey)}.scrambler-game-base.svelte-e3zhd8>.game-info-container.svelte-e3zhd8.svelte-e3zhd8.svelte-e3zhd8.svelte-e3zhd8{display:flex;flex-direction:column;justify-content:center}.scrambler-game-base.svelte-e3zhd8>.game-info-container.svelte-e3zhd8>.scrambler-find-data.svelte-e3zhd8.svelte-e3zhd8.svelte-e3zhd8{display:flex;flex-direction:column}.scrambler-game-base.svelte-e3zhd8>.game-info-container.svelte-e3zhd8>.scrambler-find-data.svelte-e3zhd8>.original-data-wrapper.svelte-e3zhd8.svelte-e3zhd8{width:-moz-max-content;width:max-content;border:2px solid var(--color-green);border-radius:.2vw;background-color:var(--cube-bg-darkgreen);color:var(--color-green);margin:.5vw auto;display:flex;flex-direction:row;justify-content:space-evenly}.scrambler-game-base.svelte-e3zhd8>.game-info-container.svelte-e3zhd8>.scrambler-find-data.svelte-e3zhd8>.original-data-wrapper.svelte-e3zhd8>.original-digits.svelte-e3zhd8{font-size:1vw;padding:.3vw .5vw}.scrambler-game-base.svelte-e3zhd8>.game-info-container.svelte-e3zhd8>.time-left.svelte-e3zhd8.svelte-e3zhd8.svelte-e3zhd8{display:flex;flex-direction:row;justify-content:center;font-size:.85vw}.scrambler-game-base.svelte-e3zhd8>.game-info-container.svelte-e3zhd8>.time-left.svelte-e3zhd8>.clock-icon.svelte-e3zhd8.svelte-e3zhd8{padding-top:.17vw;margin-right:.3vw}.scrambler-game-base.svelte-e3zhd8>.game-info-container.svelte-e3zhd8>.time-left.svelte-e3zhd8>.game-timer-var.svelte-e3zhd8.svelte-e3zhd8{width:2.5vw}.scrambler-game-base.svelte-e3zhd8>.scrambler-game-container.svelte-e3zhd8.svelte-e3zhd8.svelte-e3zhd8.svelte-e3zhd8{margin-top:1vw;width:30vw;height:24vw;display:flex;flex-direction:row;justify-content:space-between;flex-wrap:wrap;gap:.5vw}.scrambler-game-base.svelte-e3zhd8>.scrambler-game-container.svelte-e3zhd8>.each-cube.svelte-e3zhd8.svelte-e3zhd8.svelte-e3zhd8{width:2.5vw;height:2.5vw;font-size:1.75vw;text-align:center;margin:auto}.maze-game-base.svelte-qz9lwn.svelte-qz9lwn.svelte-qz9lwn.svelte-qz9lwn{display:flex;flex-direction:column;height:28vw;justify-content:center;align-items:center;color:var(--color-lightgrey)}.maze-game-base.svelte-qz9lwn>.time-left.svelte-qz9lwn.svelte-qz9lwn.svelte-qz9lwn{display:flex;flex-direction:row;justify-content:center;font-size:.85vw}.maze-game-base.svelte-qz9lwn>.time-left.svelte-qz9lwn>.clock-icon.svelte-qz9lwn.svelte-qz9lwn{padding-top:.17vw;margin-right:.3vw}.maze-game-base.svelte-qz9lwn>.time-left.svelte-qz9lwn>.game-timer-var.svelte-qz9lwn.svelte-qz9lwn{width:2.5vw}.maze-game-base.svelte-qz9lwn>.maze-game-container.svelte-qz9lwn.svelte-qz9lwn.svelte-qz9lwn{margin-top:.5vw;width:30vw;height:29vw;display:flex;flex-direction:row;justify-content:space-between;flex-wrap:wrap;gap:.9vw}.maze-game-base.svelte-qz9lwn>.maze-game-container.svelte-qz9lwn>.start-dest-cube.svelte-qz9lwn.svelte-qz9lwn{background-color:var(--color-green)!important;color:var(--color-darkblue);font-size:1.65vw;text-align:center}.maze-game-base.svelte-qz9lwn>.maze-game-container.svelte-qz9lwn>.start-dest-cube.svelte-qz9lwn>i.svelte-qz9lwn{vertical-align:middle}.maze-game-base.svelte-qz9lwn>.maze-game-container.svelte-qz9lwn>.each-cube.svelte-qz9lwn.svelte-qz9lwn{width:3vw;height:3vw;background-color:var(--cube-bg-darkgreen);border:2px solid var(--color-green);text-align:center;cursor:default}.maze-game-base.svelte-qz9lwn>.maze-game-container.svelte-qz9lwn>.each-cube.svelte-qz9lwn>p.svelte-qz9lwn{font-size:1.5vw;font-weight:700;margin-top:.2vw}.blinking-cube.svelte-qz9lwn.svelte-qz9lwn.svelte-qz9lwn.svelte-qz9lwn{animation:svelte-qz9lwn-blink 1s linear infinite}@keyframes svelte-qz9lwn-blink{0%,to{background-color:var(--color-green)}50%{background-color:var(--cube-bg-darkgreen)}}.ps-bg-green-cube.svelte-qz9lwn.svelte-qz9lwn.svelte-qz9lwn.svelte-qz9lwn{background-color:var(--color-green)!important}.ps-bg-wrong-cube.svelte-qz9lwn.svelte-qz9lwn.svelte-qz9lwn.svelte-qz9lwn{background-color:var(--color-red)!important}.var-game-base.svelte-13p449q.svelte-13p449q.svelte-13p449q.svelte-13p449q{display:flex;flex-direction:column;height:28vw;justify-content:center;align-items:center;color:var(--color-lightgrey)}.var-game-base.svelte-13p449q>.time-left.svelte-13p449q.svelte-13p449q.svelte-13p449q{display:flex;flex-direction:row;justify-content:center;font-size:.85vw}.var-game-base.svelte-13p449q>.time-left.svelte-13p449q>.clock-icon.svelte-13p449q.svelte-13p449q{padding-top:.17vw;margin-right:.3vw}.var-game-base.svelte-13p449q>.time-left.svelte-13p449q>.game-timer-var.svelte-13p449q.svelte-13p449q{width:2.5vw}.var-game-base.svelte-13p449q>.var-game-container.svelte-13p449q.svelte-13p449q.svelte-13p449q{border:2px solid var(--color-green);background-color:var(--cube-bg-darkgreen);margin-top:1vw;width:30vw;height:28vw}.var-game-base.svelte-13p449q>.var-game-container.svelte-13p449q>.each-cube.svelte-13p449q.svelte-13p449q{width:3vw;height:3vw;border:2px solid var(--color-lightgrey);position:absolute;text-align:center;cursor:default}.var-game-base.svelte-13p449q>.var-game-container.svelte-13p449q>.each-cube.svelte-13p449q>p.svelte-13p449q{font-size:1.5vw;font-weight:700;margin-top:.2vw;color:var(--color-black)}.games-container.svelte-17zg6q.svelte-17zg6q.svelte-17zg6q{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);border-radius:.2vw}.games-container.svelte-17zg6q>.game-wrapper.svelte-17zg6q.svelte-17zg6q{width:33vw;height:45vw;border-radius:.3vw;overflow:hidden;display:flex;flex-direction:column}.games-container.svelte-17zg6q>.game-wrapper.svelte-17zg6q>.skull-logo.svelte-17zg6q{margin:0 auto;padding-top:1vw;width:5vw}.games-container.svelte-17zg6q>.game-wrapper.svelte-17zg6q>.game-heading.svelte-17zg6q{font-size:1.1vw;letter-spacing:.4vw;color:var(--color-lightgrey);margin:.25vw auto;width:19vw;text-align:center}.games-container.svelte-17zg6q>.game-wrapper.svelte-17zg6q>.game-description.svelte-17zg6q{font-size:.7vw;font-weight:400;color:var(--color-lightgrey);text-align:center;width:33vw;margin:1vw auto}.games-container.svelte-17zg6q>.game-wrapper.svelte-17zg6q>.main-game-body.svelte-17zg6q{margin:.75vw auto 2vw;width:31vw;height:30vw}.input-base-wrapper.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:25vw;min-height:28vw;height:-moz-fit-content;height:fit-content;overflow:hidden;background-color:var(--color-darkblue);border-radius:.3vw;padding:.5vw 2vw;display:flex;flex-direction:column}.input-base-wrapper.svelte-jvpod8>.input-form.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8{margin-top:1vw;height:100%}.input-base-wrapper.svelte-jvpod8>.input-form.svelte-jvpod8>.input-wrapper.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8{display:flex;flex-direction:column}.input-base-wrapper.svelte-jvpod8>.input-form.svelte-jvpod8>.input-wrapper.svelte-jvpod8>.horizontal-line.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8{width:inherit;height:1px;background-color:var(--color-lightgrey)}.input-base-wrapper.svelte-jvpod8>.input-form.svelte-jvpod8>.input-wrapper.svelte-jvpod8>.input-data-wrapper.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8{display:flex;flex-direction:row;padding:.5vw 0}.input-base-wrapper.svelte-jvpod8>.input-form.svelte-jvpod8>.input-wrapper.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8:not(:last-child){margin-bottom:1vw}.input-base-wrapper.svelte-jvpod8>.input-form.svelte-jvpod8>.input-wrapper.svelte-jvpod8>.input-data-wrapper.svelte-jvpod8>.input-icon.svelte-jvpod8.svelte-jvpod8{margin-right:.75vw;width:1.5vw;margin-top:auto;margin-bottom:auto}.input-base-wrapper.svelte-jvpod8>.input-form.svelte-jvpod8>.input-wrapper.svelte-jvpod8>.input-data-wrapper.svelte-jvpod8>.input-area.svelte-jvpod8.svelte-jvpod8{display:flex;flex-direction:column;color:var(--color-lightgrey)}.input-base-wrapper.svelte-jvpod8>.input-form.svelte-jvpod8>.input-wrapper.svelte-jvpod8>.input-data-wrapper.svelte-jvpod8>.input-area.svelte-jvpod8>.label.svelte-jvpod8{font-size:1vw;font-weight:500!important}.input-base-wrapper.svelte-jvpod8>.input-form.svelte-jvpod8>.input-wrapper.svelte-jvpod8>.input-data-wrapper.svelte-jvpod8>.input-area.svelte-jvpod8>.value.svelte-jvpod8{font-size:.8vw;font-weight:300!important;width:18vw;background-color:inherit;margin-top:.2vw}input.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8:focus{padding-left:0;outline:none;border-bottom-width:2px;border-bottom-color:var(--color-green);margin-bottom:-1px}.input-base-wrapper.svelte-jvpod8>.button-wrapper.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8{display:flex;flex-direction:row;justify-content:space-evenly;margin:1.5vw auto 1.25vw;color:var(--color-black)}.input-base-wrapper.svelte-jvpod8>.button-wrapper.svelte-jvpod8>.submit-btn.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8{background-color:var(--color-green)}.input-base-wrapper.svelte-jvpod8>.button-wrapper.svelte-jvpod8>.cancel-btn.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8{background-color:var(--color-darkgrey)}button.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8{border-radius:.3vw;padding:.3vw 1vw;text-transform:uppercase;font-weight:500!important}button.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8.svelte-jvpod8:not(:last-child){margin-right:.5vw}.status-bar-wrapper.svelte-59nkrw.svelte-59nkrw.svelte-59nkrw.svelte-59nkrw{animation:2s svelte-59nkrw-display-status;position:absolute;left:50%;bottom:1%;transform:translate(-50%);width:23vw;min-height:8vw;height:-moz-fit-content;height:fit-content;overflow:hidden;background-color:var(--color-darkblue);border-radius:.3vw;padding:1vw 2vw;display:flex;flex-direction:column}@keyframes svelte-59nkrw-display-status{0%{opacity:0}to{opacity:1}}.status-bar-wrapper.svelte-59nkrw>.status-title-wrapper.svelte-59nkrw.svelte-59nkrw.svelte-59nkrw{display:flex;flex-direction:row}.status-bar-wrapper.svelte-59nkrw>.status-title-wrapper.svelte-59nkrw>.icon.svelte-59nkrw.svelte-59nkrw{width:1.5vw;margin-right:.5vw;font-size:1.25vw}.status-bar-wrapper.svelte-59nkrw>.status-title-wrapper.svelte-59nkrw>.title-info.svelte-59nkrw.svelte-59nkrw{display:flex;flex-direction:column;text-transform:capitalize}.status-bar-wrapper.svelte-59nkrw>.status-title-wrapper.svelte-59nkrw>.title-info.svelte-59nkrw>.title.svelte-59nkrw{font-size:1.3vw;font-weight:500;color:var(--color-white)}.status-bar-wrapper.svelte-59nkrw>.status-title-wrapper.svelte-59nkrw>.title-info.svelte-59nkrw>.title-description.svelte-59nkrw{font-size:.95vw;font-weight:200;color:var(--color-lightgrey);margin-top:-.2vw}.status-bar-wrapper.svelte-59nkrw>.items-wrapper.svelte-59nkrw.svelte-59nkrw.svelte-59nkrw{margin-left:2vw;margin-top:.5vw}.status-bar-wrapper.svelte-59nkrw>.items-wrapper.svelte-59nkrw>.each-item.svelte-59nkrw.svelte-59nkrw{display:flex;flex-direction:row;word-wrap:break-word;flex-wrap:wrap;font-size:.95vw}.status-bar-wrapper.svelte-59nkrw>.items-wrapper.svelte-59nkrw>.each-item.svelte-59nkrw.svelte-59nkrw:not(:last-child){margin-bottom:.3vw}.status-bar-wrapper.svelte-59nkrw>.items-wrapper.svelte-59nkrw>.each-item.svelte-59nkrw>.label.svelte-59nkrw{color:var(--color-lightgrey)}.status-bar-wrapper.svelte-59nkrw>.items-wrapper.svelte-59nkrw>.each-item.svelte-59nkrw>.value.svelte-59nkrw{color:var(--color-green);margin-left:.3vw}.draw-text-wrapper.svelte-1y14yon.svelte-1y14yon.svelte-1y14yon.svelte-1y14yon.svelte-1y14yon{animation:1s svelte-1y14yon-slide-right;position:absolute;top:50%;transform:translateY(-50%);min-width:10vw;width:-moz-max-content;width:max-content;min-height:3vw;height:-moz-fit-content;height:fit-content;overflow:hidden;background-color:var(--color-darkblue);border-radius:.3vw;padding:.75vw 1.5vw;display:flex;flex-direction:column}@keyframes svelte-1y14yon-slide-right{0%{margin-left:-20%}to{margin-left:2%}}@keyframes svelte-1y14yon-slide-left{0%{margin-left:2%}to{margin-left:-100%}}.draw-text-wrapper.svelte-1y14yon>.draw-text-title-wrapper.svelte-1y14yon.svelte-1y14yon.svelte-1y14yon.svelte-1y14yon{display:flex;flex-direction:row}.draw-text-wrapper.svelte-1y14yon>.draw-text-title-wrapper.svelte-1y14yon>.icon.svelte-1y14yon.svelte-1y14yon.svelte-1y14yon{width:1.5vw;margin:auto .75vw auto 0;font-size:1.25vw}.draw-text-wrapper.svelte-1y14yon>.draw-text-title-wrapper.svelte-1y14yon>.title-info.svelte-1y14yon.svelte-1y14yon.svelte-1y14yon{display:flex;flex-direction:column;text-transform:capitalize}.draw-text-wrapper.svelte-1y14yon>.draw-text-title-wrapper.svelte-1y14yon>.title-info.svelte-1y14yon>.title-description.svelte-1y14yon.svelte-1y14yon{font-size:1vw;font-weight:300;color:var(--color-lightgrey);display:flex;flex-direction:row;word-wrap:break-word;flex-wrap:wrap;margin-top:auto;margin-bottom:auto}.draw-text-wrapper.svelte-1y14yon>.draw-text-title-wrapper.svelte-1y14yon>.title-info.svelte-1y14yon>.title-description.svelte-1y14yon>p.svelte-1y14yon{margin-right:.25vw}.menu-base-wrapper.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt{position:absolute;left:70%;top:40%;transform:translate(-50%,-50%);width:20vw;height:30vw;overflow:hidden}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt{height:100%;display:flex;flex-direction:column}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.header-slot.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt{background-color:var(--color-darkblue);border-radius:.3vw;padding:.5vw 2vw;display:flex;flex-direction:row;min-height:3vw;height:-moz-fit-content;height:fit-content}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.header-slot.svelte-9n4mvt>img.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt{height:4vw;align-self:center}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.submenu-header-slot.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt{min-height:4vw;height:-moz-max-content;height:max-content;background-color:var(--color-darkblue);border-radius:.3vw;color:var(--color-white);padding:.3vw 1vw;cursor:pointer;display:flex;flex-direction:row}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.submenu-header-slot.svelte-9n4mvt>.left-chevron.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt{margin-top:auto;margin-bottom:auto;margin-right:.5vw;width:1.5vw;font-size:1.1vw}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.submenu-header-slot.svelte-9n4mvt>.main-menu.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt{font-weight:500;font-size:1.25vw;margin-top:auto;margin-bottom:auto}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.screen-body.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt{margin-top:.3vw;height:100%;overflow-y:auto;display:flex;flex-direction:column}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.screen-body.svelte-9n4mvt>.each-panel.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt{min-height:4vw;height:-moz-max-content;height:max-content;background-color:var(--color-darkblue);border-radius:.3vw;padding:.5vw 1vw;cursor:pointer;display:flex;flex-direction:row}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.screen-body.svelte-9n4mvt>.each-panel.svelte-9n4mvt.svelte-9n4mvt.svelte-9n4mvt:not(:last-child){margin-bottom:.3vw}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.screen-body.svelte-9n4mvt>.each-panel.svelte-9n4mvt>.menu-icon.svelte-9n4mvt.svelte-9n4mvt{margin-top:auto;margin-bottom:auto;margin-right:.5vw;width:1.5vw;font-size:1vw}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.screen-body.svelte-9n4mvt>.each-panel.svelte-9n4mvt>.menu-details.svelte-9n4mvt.svelte-9n4mvt{display:flex;flex-direction:column;margin-top:auto;margin-bottom:auto}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.screen-body.svelte-9n4mvt>.each-panel.svelte-9n4mvt>.menu-details.svelte-9n4mvt>.header.svelte-9n4mvt{font-size:.8vw;white-space:nowrap}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.screen-body.svelte-9n4mvt>.each-panel.svelte-9n4mvt>.menu-details.svelte-9n4mvt>.text.svelte-9n4mvt{font-size:.6vw;white-space:nowrap}.menu-base-wrapper.svelte-9n4mvt>.screen-base.svelte-9n4mvt>.screen-body.svelte-9n4mvt>.each-panel.svelte-9n4mvt>.chevron.svelte-9n4mvt.svelte-9n4mvt{margin-left:72%;font-size:1vw;margin-top:auto;margin-bottom:auto}.main-bg.svelte-17vvtz0{height:100%;width:100%;overflow:hidden}*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.absolute{position:absolute}.inset-0{top:0;right:0;bottom:0;left:0}.mb-1{margin-bottom:.25rem}.ml-3{margin-left:.75rem}.mr-1{margin-right:.25rem}.mr-4{margin-right:1rem}.mt-1{margin-top:.25rem}.mt-10{margin-top:2.5rem}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.block{display:block}.flex{display:flex}.hidden{display:none}.h-10{height:2.5rem}.h-\[400px\]{height:400px}.h-auto{height:auto}.min-h-screen{min-height:100vh}.w-0{width:0px}.w-40{width:10rem}.w-\[200px\]{width:200px}.w-\[700px\]{width:700px}.w-\[80\%\]{width:80%}.w-auto{width:auto}.min-w-full{min-width:100%}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.rounded{border-radius:.25rem}.rounded-md{border-radius:.375rem}.border{border-width:1px}.border-4{border-width:4px}.p-10{padding:2.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.opacity-40{opacity:.4}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-black{--tw-shadow-color: #000;--tw-shadow: var(--tw-shadow-colored)}.shadow-gray-800{--tw-shadow-color: #1f2937;--tw-shadow: var(--tw-shadow-colored)}.outline{outline-style:solid}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.will-change-auto{will-change:auto}.ps-font-arcade{font-family:arcade}.ps-text-green{color:var(--color-green)!important}.ps-text-lightgrey{color:var(--color-lightgrey)}.ps-text-red{color:var(--color-red)!important}.ps-border-green{border:1px solid var(--color-green)}.ps-bg-darkblue{background-color:var(--color-darkblue)}.ps-bg-green{background-color:var(--color-green)}.ps-notification-success{background-color:#2ebd2e;color:#000;border:1px solid #158515}.ps-notification-warning{background-color:#fbb433;border:1px solid #cf8d15;color:#000}.ps-notification-error{background-color:#cd2222;border:1px solid #8d0e0e;color:#fff}.ps-notification-info{background-color:#33addf;border:1px solid #1886b3;color:#000}@font-face{font-family:roboto;src:url(./Roboto-Regular.ttf)}@font-face{font-family:hacker;src:url(./Hacker.ttf)}@font-face{font-family:arcade;src:url(./ka1.ttf)}/*! + * Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */.fa{font-family:var(--fa-style-family, "Font Awesome 6 Free");font-weight:var(--fa-style, 900)}.fa,.fa-classic,.fa-sharp,.fas,.fa-solid,.far,.fa-regular,.fab,.fa-brands{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display, inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fas,.fa-classic,.fa-solid,.far,.fa-regular{font-family:"Font Awesome 6 Free"}.fab,.fa-brands{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin, 2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width, 2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color, #eee);border-radius:var(--fa-border-radius, .1em);border-style:var(--fa-border-style, solid);border-width:var(--fa-border-width, .08em);padding:var(--fa-border-padding, .2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin, .3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin, .3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1))}.fa-fade{animation-name:fa-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-beat-fade{animation-name:fa-beat-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-shake{animation-name:fa-shake;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin{animation-name:fa-spin;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 2s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin-reverse{--fa-animation-direction: reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, steps(8))}@media (prefers-reduced-motion: reduce){.fa-beat,.fa-bounce,.fa-fade,.fa-beat-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale, 1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x, 1.1),var(--fa-bounce-start-scale-y, .9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x, .9),var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x, 1.05),var(--fa-bounce-land-scale-y, .95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound, -.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity, .4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity, .4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale, 1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x, 0),var(--fa-flip-y, 1),var(--fa-flip-z, 0),var(--fa-flip-angle, -180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}8%,24%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0)}}@keyframes fa-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle, none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index, auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse, #fff)}.fa-0:before{content:"0"}.fa-1:before{content:"1"}.fa-2:before{content:"2"}.fa-3:before{content:"3"}.fa-4:before{content:"4"}.fa-5:before{content:"5"}.fa-6:before{content:"6"}.fa-7:before{content:"7"}.fa-8:before{content:"8"}.fa-9:before{content:"9"}.fa-fill-drip:before{content:""}.fa-arrows-to-circle:before{content:""}.fa-circle-chevron-right:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-at:before{content:"@"}.fa-trash-can:before{content:""}.fa-trash-alt:before{content:""}.fa-text-height:before{content:""}.fa-user-xmark:before{content:""}.fa-user-times:before{content:""}.fa-stethoscope:before{content:""}.fa-message:before{content:""}.fa-comment-alt:before{content:""}.fa-info:before{content:""}.fa-down-left-and-up-right-to-center:before{content:""}.fa-compress-alt:before{content:""}.fa-explosion:before{content:""}.fa-file-lines:before{content:""}.fa-file-alt:before{content:""}.fa-file-text:before{content:""}.fa-wave-square:before{content:""}.fa-ring:before{content:""}.fa-building-un:before{content:""}.fa-dice-three:before{content:""}.fa-calendar-days:before{content:""}.fa-calendar-alt:before{content:""}.fa-anchor-circle-check:before{content:""}.fa-building-circle-arrow-right:before{content:""}.fa-volleyball:before{content:""}.fa-volleyball-ball:before{content:""}.fa-arrows-up-to-line:before{content:""}.fa-sort-down:before{content:""}.fa-sort-desc:before{content:""}.fa-circle-minus:before{content:""}.fa-minus-circle:before{content:""}.fa-door-open:before{content:""}.fa-right-from-bracket:before{content:""}.fa-sign-out-alt:before{content:""}.fa-atom:before{content:""}.fa-soap:before{content:""}.fa-icons:before{content:""}.fa-heart-music-camera-bolt:before{content:""}.fa-microphone-lines-slash:before{content:""}.fa-microphone-alt-slash:before{content:""}.fa-bridge-circle-check:before{content:""}.fa-pump-medical:before{content:""}.fa-fingerprint:before{content:""}.fa-hand-point-right:before{content:""}.fa-magnifying-glass-location:before{content:""}.fa-search-location:before{content:""}.fa-forward-step:before{content:""}.fa-step-forward:before{content:""}.fa-face-smile-beam:before{content:""}.fa-smile-beam:before{content:""}.fa-flag-checkered:before{content:""}.fa-football:before{content:""}.fa-football-ball:before{content:""}.fa-school-circle-exclamation:before{content:""}.fa-crop:before{content:""}.fa-angles-down:before{content:""}.fa-angle-double-down:before{content:""}.fa-users-rectangle:before{content:""}.fa-people-roof:before{content:""}.fa-people-line:before{content:""}.fa-beer-mug-empty:before{content:""}.fa-beer:before{content:""}.fa-diagram-predecessor:before{content:""}.fa-arrow-up-long:before{content:""}.fa-long-arrow-up:before{content:""}.fa-fire-flame-simple:before{content:""}.fa-burn:before{content:""}.fa-person:before{content:""}.fa-male:before{content:""}.fa-laptop:before{content:""}.fa-file-csv:before{content:""}.fa-menorah:before{content:""}.fa-truck-plane:before{content:""}.fa-record-vinyl:before{content:""}.fa-face-grin-stars:before{content:""}.fa-grin-stars:before{content:""}.fa-bong:before{content:""}.fa-spaghetti-monster-flying:before{content:""}.fa-pastafarianism:before{content:""}.fa-arrow-down-up-across-line:before{content:""}.fa-spoon:before{content:""}.fa-utensil-spoon:before{content:""}.fa-jar-wheat:before{content:""}.fa-envelopes-bulk:before{content:""}.fa-mail-bulk:before{content:""}.fa-file-circle-exclamation:before{content:""}.fa-circle-h:before{content:""}.fa-hospital-symbol:before{content:""}.fa-pager:before{content:""}.fa-address-book:before{content:""}.fa-contact-book:before{content:""}.fa-strikethrough:before{content:""}.fa-k:before{content:"K"}.fa-landmark-flag:before{content:""}.fa-pencil:before{content:""}.fa-pencil-alt:before{content:""}.fa-backward:before{content:""}.fa-caret-right:before{content:""}.fa-comments:before{content:""}.fa-paste:before{content:""}.fa-file-clipboard:before{content:""}.fa-code-pull-request:before{content:""}.fa-clipboard-list:before{content:""}.fa-truck-ramp-box:before{content:""}.fa-truck-loading:before{content:""}.fa-user-check:before{content:""}.fa-vial-virus:before{content:""}.fa-sheet-plastic:before{content:""}.fa-blog:before{content:""}.fa-user-ninja:before{content:""}.fa-person-arrow-up-from-line:before{content:""}.fa-scroll-torah:before{content:""}.fa-torah:before{content:""}.fa-broom-ball:before{content:""}.fa-quidditch:before{content:""}.fa-quidditch-broom-ball:before{content:""}.fa-toggle-off:before{content:""}.fa-box-archive:before{content:""}.fa-archive:before{content:""}.fa-person-drowning:before{content:""}.fa-arrow-down-9-1:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-sort-numeric-down-alt:before{content:""}.fa-face-grin-tongue-squint:before{content:""}.fa-grin-tongue-squint:before{content:""}.fa-spray-can:before{content:""}.fa-truck-monster:before{content:""}.fa-w:before{content:"W"}.fa-earth-africa:before{content:""}.fa-globe-africa:before{content:""}.fa-rainbow:before{content:""}.fa-circle-notch:before{content:""}.fa-tablet-screen-button:before{content:""}.fa-tablet-alt:before{content:""}.fa-paw:before{content:""}.fa-cloud:before{content:""}.fa-trowel-bricks:before{content:""}.fa-face-flushed:before{content:""}.fa-flushed:before{content:""}.fa-hospital-user:before{content:""}.fa-tent-arrow-left-right:before{content:""}.fa-gavel:before{content:""}.fa-legal:before{content:""}.fa-binoculars:before{content:""}.fa-microphone-slash:before{content:""}.fa-box-tissue:before{content:""}.fa-motorcycle:before{content:""}.fa-bell-concierge:before{content:""}.fa-concierge-bell:before{content:""}.fa-pen-ruler:before{content:""}.fa-pencil-ruler:before{content:""}.fa-people-arrows:before{content:""}.fa-people-arrows-left-right:before{content:""}.fa-mars-and-venus-burst:before{content:""}.fa-square-caret-right:before{content:""}.fa-caret-square-right:before{content:""}.fa-scissors:before{content:""}.fa-cut:before{content:""}.fa-sun-plant-wilt:before{content:""}.fa-toilets-portable:before{content:""}.fa-hockey-puck:before{content:""}.fa-table:before{content:""}.fa-magnifying-glass-arrow-right:before{content:""}.fa-tachograph-digital:before{content:""}.fa-digital-tachograph:before{content:""}.fa-users-slash:before{content:""}.fa-clover:before{content:""}.fa-reply:before{content:""}.fa-mail-reply:before{content:""}.fa-star-and-crescent:before{content:""}.fa-house-fire:before{content:""}.fa-square-minus:before{content:""}.fa-minus-square:before{content:""}.fa-helicopter:before{content:""}.fa-compass:before{content:""}.fa-square-caret-down:before{content:""}.fa-caret-square-down:before{content:""}.fa-file-circle-question:before{content:""}.fa-laptop-code:before{content:""}.fa-swatchbook:before{content:""}.fa-prescription-bottle:before{content:""}.fa-bars:before{content:""}.fa-navicon:before{content:""}.fa-people-group:before{content:""}.fa-hourglass-end:before{content:""}.fa-hourglass-3:before{content:""}.fa-heart-crack:before{content:""}.fa-heart-broken:before{content:""}.fa-square-up-right:before{content:""}.fa-external-link-square-alt:before{content:""}.fa-face-kiss-beam:before{content:""}.fa-kiss-beam:before{content:""}.fa-film:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-people-robbery:before{content:""}.fa-lightbulb:before{content:""}.fa-caret-left:before{content:""}.fa-circle-exclamation:before{content:""}.fa-exclamation-circle:before{content:""}.fa-school-circle-xmark:before{content:""}.fa-arrow-right-from-bracket:before{content:""}.fa-sign-out:before{content:""}.fa-circle-chevron-down:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-unlock-keyhole:before{content:""}.fa-unlock-alt:before{content:""}.fa-cloud-showers-heavy:before{content:""}.fa-headphones-simple:before{content:""}.fa-headphones-alt:before{content:""}.fa-sitemap:before{content:""}.fa-circle-dollar-to-slot:before{content:""}.fa-donate:before{content:""}.fa-memory:before{content:""}.fa-road-spikes:before{content:""}.fa-fire-burner:before{content:""}.fa-flag:before{content:""}.fa-hanukiah:before{content:""}.fa-feather:before{content:""}.fa-volume-low:before{content:""}.fa-volume-down:before{content:""}.fa-comment-slash:before{content:""}.fa-cloud-sun-rain:before{content:""}.fa-compress:before{content:""}.fa-wheat-awn:before{content:""}.fa-wheat-alt:before{content:""}.fa-ankh:before{content:""}.fa-hands-holding-child:before{content:""}.fa-asterisk:before{content:"*"}.fa-square-check:before{content:""}.fa-check-square:before{content:""}.fa-peseta-sign:before{content:""}.fa-heading:before{content:""}.fa-header:before{content:""}.fa-ghost:before{content:""}.fa-list:before{content:""}.fa-list-squares:before{content:""}.fa-square-phone-flip:before{content:""}.fa-phone-square-alt:before{content:""}.fa-cart-plus:before{content:""}.fa-gamepad:before{content:""}.fa-circle-dot:before{content:""}.fa-dot-circle:before{content:""}.fa-face-dizzy:before{content:""}.fa-dizzy:before{content:""}.fa-egg:before{content:""}.fa-house-medical-circle-xmark:before{content:""}.fa-campground:before{content:""}.fa-folder-plus:before{content:""}.fa-futbol:before{content:""}.fa-futbol-ball:before{content:""}.fa-soccer-ball:before{content:""}.fa-paintbrush:before{content:""}.fa-paint-brush:before{content:""}.fa-lock:before{content:""}.fa-gas-pump:before{content:""}.fa-hot-tub-person:before{content:""}.fa-hot-tub:before{content:""}.fa-map-location:before{content:""}.fa-map-marked:before{content:""}.fa-house-flood-water:before{content:""}.fa-tree:before{content:""}.fa-bridge-lock:before{content:""}.fa-sack-dollar:before{content:""}.fa-pen-to-square:before{content:""}.fa-edit:before{content:""}.fa-car-side:before{content:""}.fa-share-nodes:before{content:""}.fa-share-alt:before{content:""}.fa-heart-circle-minus:before{content:""}.fa-hourglass-half:before{content:""}.fa-hourglass-2:before{content:""}.fa-microscope:before{content:""}.fa-sink:before{content:""}.fa-bag-shopping:before{content:""}.fa-shopping-bag:before{content:""}.fa-arrow-down-z-a:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-alpha-down-alt:before{content:""}.fa-mitten:before{content:""}.fa-person-rays:before{content:""}.fa-users:before{content:""}.fa-eye-slash:before{content:""}.fa-flask-vial:before{content:""}.fa-hand:before{content:""}.fa-hand-paper:before{content:""}.fa-om:before{content:""}.fa-worm:before{content:""}.fa-house-circle-xmark:before{content:""}.fa-plug:before{content:""}.fa-chevron-up:before{content:""}.fa-hand-spock:before{content:""}.fa-stopwatch:before{content:""}.fa-face-kiss:before{content:""}.fa-kiss:before{content:""}.fa-bridge-circle-xmark:before{content:""}.fa-face-grin-tongue:before{content:""}.fa-grin-tongue:before{content:""}.fa-chess-bishop:before{content:""}.fa-face-grin-wink:before{content:""}.fa-grin-wink:before{content:""}.fa-ear-deaf:before{content:""}.fa-deaf:before{content:""}.fa-deafness:before{content:""}.fa-hard-of-hearing:before{content:""}.fa-road-circle-check:before{content:""}.fa-dice-five:before{content:""}.fa-square-rss:before{content:""}.fa-rss-square:before{content:""}.fa-land-mine-on:before{content:""}.fa-i-cursor:before{content:""}.fa-stamp:before{content:""}.fa-stairs:before{content:""}.fa-i:before{content:"I"}.fa-hryvnia-sign:before{content:""}.fa-hryvnia:before{content:""}.fa-pills:before{content:""}.fa-face-grin-wide:before{content:""}.fa-grin-alt:before{content:""}.fa-tooth:before{content:""}.fa-v:before{content:"V"}.fa-bangladeshi-taka-sign:before{content:""}.fa-bicycle:before{content:""}.fa-staff-snake:before{content:""}.fa-rod-asclepius:before{content:""}.fa-rod-snake:before{content:""}.fa-staff-aesculapius:before{content:""}.fa-head-side-cough-slash:before{content:""}.fa-truck-medical:before{content:""}.fa-ambulance:before{content:""}.fa-wheat-awn-circle-exclamation:before{content:""}.fa-snowman:before{content:""}.fa-mortar-pestle:before{content:""}.fa-road-barrier:before{content:""}.fa-school:before{content:""}.fa-igloo:before{content:""}.fa-joint:before{content:""}.fa-angle-right:before{content:""}.fa-horse:before{content:""}.fa-q:before{content:"Q"}.fa-g:before{content:"G"}.fa-notes-medical:before{content:""}.fa-temperature-half:before{content:""}.fa-temperature-2:before{content:""}.fa-thermometer-2:before{content:""}.fa-thermometer-half:before{content:""}.fa-dong-sign:before{content:""}.fa-capsules:before{content:""}.fa-poo-storm:before{content:""}.fa-poo-bolt:before{content:""}.fa-face-frown-open:before{content:""}.fa-frown-open:before{content:""}.fa-hand-point-up:before{content:""}.fa-money-bill:before{content:""}.fa-bookmark:before{content:""}.fa-align-justify:before{content:""}.fa-umbrella-beach:before{content:""}.fa-helmet-un:before{content:""}.fa-bullseye:before{content:""}.fa-bacon:before{content:""}.fa-hand-point-down:before{content:""}.fa-arrow-up-from-bracket:before{content:""}.fa-folder:before{content:""}.fa-folder-blank:before{content:""}.fa-file-waveform:before{content:""}.fa-file-medical-alt:before{content:""}.fa-radiation:before{content:""}.fa-chart-simple:before{content:""}.fa-mars-stroke:before{content:""}.fa-vial:before{content:""}.fa-gauge:before{content:""}.fa-dashboard:before{content:""}.fa-gauge-med:before{content:""}.fa-tachometer-alt-average:before{content:""}.fa-wand-magic-sparkles:before{content:""}.fa-magic-wand-sparkles:before{content:""}.fa-e:before{content:"E"}.fa-pen-clip:before{content:""}.fa-pen-alt:before{content:""}.fa-bridge-circle-exclamation:before{content:""}.fa-user:before{content:""}.fa-school-circle-check:before{content:""}.fa-dumpster:before{content:""}.fa-van-shuttle:before{content:""}.fa-shuttle-van:before{content:""}.fa-building-user:before{content:""}.fa-square-caret-left:before{content:""}.fa-caret-square-left:before{content:""}.fa-highlighter:before{content:""}.fa-key:before{content:""}.fa-bullhorn:before{content:""}.fa-globe:before{content:""}.fa-synagogue:before{content:""}.fa-person-half-dress:before{content:""}.fa-road-bridge:before{content:""}.fa-location-arrow:before{content:""}.fa-c:before{content:"C"}.fa-tablet-button:before{content:""}.fa-building-lock:before{content:""}.fa-pizza-slice:before{content:""}.fa-money-bill-wave:before{content:""}.fa-chart-area:before{content:""}.fa-area-chart:before{content:""}.fa-house-flag:before{content:""}.fa-person-circle-minus:before{content:""}.fa-ban:before{content:""}.fa-cancel:before{content:""}.fa-camera-rotate:before{content:""}.fa-spray-can-sparkles:before{content:""}.fa-air-freshener:before{content:""}.fa-star:before{content:""}.fa-repeat:before{content:""}.fa-cross:before{content:""}.fa-box:before{content:""}.fa-venus-mars:before{content:""}.fa-arrow-pointer:before{content:""}.fa-mouse-pointer:before{content:""}.fa-maximize:before{content:""}.fa-expand-arrows-alt:before{content:""}.fa-charging-station:before{content:""}.fa-shapes:before{content:""}.fa-triangle-circle-square:before{content:""}.fa-shuffle:before{content:""}.fa-random:before{content:""}.fa-person-running:before{content:""}.fa-running:before{content:""}.fa-mobile-retro:before{content:""}.fa-grip-lines-vertical:before{content:""}.fa-spider:before{content:""}.fa-hands-bound:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-plane-circle-exclamation:before{content:""}.fa-x-ray:before{content:""}.fa-spell-check:before{content:""}.fa-slash:before{content:""}.fa-computer-mouse:before{content:""}.fa-mouse:before{content:""}.fa-arrow-right-to-bracket:before{content:""}.fa-sign-in:before{content:""}.fa-shop-slash:before{content:""}.fa-store-alt-slash:before{content:""}.fa-server:before{content:""}.fa-virus-covid-slash:before{content:""}.fa-shop-lock:before{content:""}.fa-hourglass-start:before{content:""}.fa-hourglass-1:before{content:""}.fa-blender-phone:before{content:""}.fa-building-wheat:before{content:""}.fa-person-breastfeeding:before{content:""}.fa-right-to-bracket:before{content:""}.fa-sign-in-alt:before{content:""}.fa-venus:before{content:""}.fa-passport:before{content:""}.fa-heart-pulse:before{content:""}.fa-heartbeat:before{content:""}.fa-people-carry-box:before{content:""}.fa-people-carry:before{content:""}.fa-temperature-high:before{content:""}.fa-microchip:before{content:""}.fa-crown:before{content:""}.fa-weight-hanging:before{content:""}.fa-xmarks-lines:before{content:""}.fa-file-prescription:before{content:""}.fa-weight-scale:before{content:""}.fa-weight:before{content:""}.fa-user-group:before{content:""}.fa-user-friends:before{content:""}.fa-arrow-up-a-z:before{content:""}.fa-sort-alpha-up:before{content:""}.fa-chess-knight:before{content:""}.fa-face-laugh-squint:before{content:""}.fa-laugh-squint:before{content:""}.fa-wheelchair:before{content:""}.fa-circle-arrow-up:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-toggle-on:before{content:""}.fa-person-walking:before{content:""}.fa-walking:before{content:""}.fa-l:before{content:"L"}.fa-fire:before{content:""}.fa-bed-pulse:before{content:""}.fa-procedures:before{content:""}.fa-shuttle-space:before{content:""}.fa-space-shuttle:before{content:""}.fa-face-laugh:before{content:""}.fa-laugh:before{content:""}.fa-folder-open:before{content:""}.fa-heart-circle-plus:before{content:""}.fa-code-fork:before{content:""}.fa-city:before{content:""}.fa-microphone-lines:before{content:""}.fa-microphone-alt:before{content:""}.fa-pepper-hot:before{content:""}.fa-unlock:before{content:""}.fa-colon-sign:before{content:""}.fa-headset:before{content:""}.fa-store-slash:before{content:""}.fa-road-circle-xmark:before{content:""}.fa-user-minus:before{content:""}.fa-mars-stroke-up:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-champagne-glasses:before{content:""}.fa-glass-cheers:before{content:""}.fa-clipboard:before{content:""}.fa-house-circle-exclamation:before{content:""}.fa-file-arrow-up:before{content:""}.fa-file-upload:before{content:""}.fa-wifi:before{content:""}.fa-wifi-3:before{content:""}.fa-wifi-strong:before{content:""}.fa-bath:before{content:""}.fa-bathtub:before{content:""}.fa-underline:before{content:""}.fa-user-pen:before{content:""}.fa-user-edit:before{content:""}.fa-signature:before{content:""}.fa-stroopwafel:before{content:""}.fa-bold:before{content:""}.fa-anchor-lock:before{content:""}.fa-building-ngo:before{content:""}.fa-manat-sign:before{content:""}.fa-not-equal:before{content:""}.fa-border-top-left:before{content:""}.fa-border-style:before{content:""}.fa-map-location-dot:before{content:""}.fa-map-marked-alt:before{content:""}.fa-jedi:before{content:""}.fa-square-poll-vertical:before{content:""}.fa-poll:before{content:""}.fa-mug-hot:before{content:""}.fa-car-battery:before{content:""}.fa-battery-car:before{content:""}.fa-gift:before{content:""}.fa-dice-two:before{content:""}.fa-chess-queen:before{content:""}.fa-glasses:before{content:""}.fa-chess-board:before{content:""}.fa-building-circle-check:before{content:""}.fa-person-chalkboard:before{content:""}.fa-mars-stroke-right:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-hand-back-fist:before{content:""}.fa-hand-rock:before{content:""}.fa-square-caret-up:before{content:""}.fa-caret-square-up:before{content:""}.fa-cloud-showers-water:before{content:""}.fa-chart-bar:before{content:""}.fa-bar-chart:before{content:""}.fa-hands-bubbles:before{content:""}.fa-hands-wash:before{content:""}.fa-less-than-equal:before{content:""}.fa-train:before{content:""}.fa-eye-low-vision:before{content:""}.fa-low-vision:before{content:""}.fa-crow:before{content:""}.fa-sailboat:before{content:""}.fa-window-restore:before{content:""}.fa-square-plus:before{content:""}.fa-plus-square:before{content:""}.fa-torii-gate:before{content:""}.fa-frog:before{content:""}.fa-bucket:before{content:""}.fa-image:before{content:""}.fa-microphone:before{content:""}.fa-cow:before{content:""}.fa-caret-up:before{content:""}.fa-screwdriver:before{content:""}.fa-folder-closed:before{content:""}.fa-house-tsunami:before{content:""}.fa-square-nfi:before{content:""}.fa-arrow-up-from-ground-water:before{content:""}.fa-martini-glass:before{content:""}.fa-glass-martini-alt:before{content:""}.fa-rotate-left:before{content:""}.fa-rotate-back:before{content:""}.fa-rotate-backward:before{content:""}.fa-undo-alt:before{content:""}.fa-table-columns:before{content:""}.fa-columns:before{content:""}.fa-lemon:before{content:""}.fa-head-side-mask:before{content:""}.fa-handshake:before{content:""}.fa-gem:before{content:""}.fa-dolly:before{content:""}.fa-dolly-box:before{content:""}.fa-smoking:before{content:""}.fa-minimize:before{content:""}.fa-compress-arrows-alt:before{content:""}.fa-monument:before{content:""}.fa-snowplow:before{content:""}.fa-angles-right:before{content:""}.fa-angle-double-right:before{content:""}.fa-cannabis:before{content:""}.fa-circle-play:before{content:""}.fa-play-circle:before{content:""}.fa-tablets:before{content:""}.fa-ethernet:before{content:""}.fa-euro-sign:before{content:""}.fa-eur:before{content:""}.fa-euro:before{content:""}.fa-chair:before{content:""}.fa-circle-check:before{content:""}.fa-check-circle:before{content:""}.fa-circle-stop:before{content:""}.fa-stop-circle:before{content:""}.fa-compass-drafting:before{content:""}.fa-drafting-compass:before{content:""}.fa-plate-wheat:before{content:""}.fa-icicles:before{content:""}.fa-person-shelter:before{content:""}.fa-neuter:before{content:""}.fa-id-badge:before{content:""}.fa-marker:before{content:""}.fa-face-laugh-beam:before{content:""}.fa-laugh-beam:before{content:""}.fa-helicopter-symbol:before{content:""}.fa-universal-access:before{content:""}.fa-circle-chevron-up:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-lari-sign:before{content:""}.fa-volcano:before{content:""}.fa-person-walking-dashed-line-arrow-right:before{content:""}.fa-sterling-sign:before{content:""}.fa-gbp:before{content:""}.fa-pound-sign:before{content:""}.fa-viruses:before{content:""}.fa-square-person-confined:before{content:""}.fa-user-tie:before{content:""}.fa-arrow-down-long:before{content:""}.fa-long-arrow-down:before{content:""}.fa-tent-arrow-down-to-line:before{content:""}.fa-certificate:before{content:""}.fa-reply-all:before{content:""}.fa-mail-reply-all:before{content:""}.fa-suitcase:before{content:""}.fa-person-skating:before{content:""}.fa-skating:before{content:""}.fa-filter-circle-dollar:before{content:""}.fa-funnel-dollar:before{content:""}.fa-camera-retro:before{content:""}.fa-circle-arrow-down:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-file-import:before{content:""}.fa-arrow-right-to-file:before{content:""}.fa-square-arrow-up-right:before{content:""}.fa-external-link-square:before{content:""}.fa-box-open:before{content:""}.fa-scroll:before{content:""}.fa-spa:before{content:""}.fa-location-pin-lock:before{content:""}.fa-pause:before{content:""}.fa-hill-avalanche:before{content:""}.fa-temperature-empty:before{content:""}.fa-temperature-0:before{content:""}.fa-thermometer-0:before{content:""}.fa-thermometer-empty:before{content:""}.fa-bomb:before{content:""}.fa-registered:before{content:""}.fa-address-card:before{content:""}.fa-contact-card:before{content:""}.fa-vcard:before{content:""}.fa-scale-unbalanced-flip:before{content:""}.fa-balance-scale-right:before{content:""}.fa-subscript:before{content:""}.fa-diamond-turn-right:before{content:""}.fa-directions:before{content:""}.fa-burst:before{content:""}.fa-house-laptop:before{content:""}.fa-laptop-house:before{content:""}.fa-face-tired:before{content:""}.fa-tired:before{content:""}.fa-money-bills:before{content:""}.fa-smog:before{content:""}.fa-crutch:before{content:""}.fa-cloud-arrow-up:before{content:""}.fa-cloud-upload:before{content:""}.fa-cloud-upload-alt:before{content:""}.fa-palette:before{content:""}.fa-arrows-turn-right:before{content:""}.fa-vest:before{content:""}.fa-ferry:before{content:""}.fa-arrows-down-to-people:before{content:""}.fa-seedling:before{content:""}.fa-sprout:before{content:""}.fa-left-right:before{content:""}.fa-arrows-alt-h:before{content:""}.fa-boxes-packing:before{content:""}.fa-circle-arrow-left:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-group-arrows-rotate:before{content:""}.fa-bowl-food:before{content:""}.fa-candy-cane:before{content:""}.fa-arrow-down-wide-short:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-down:before{content:""}.fa-cloud-bolt:before{content:""}.fa-thunderstorm:before{content:""}.fa-text-slash:before{content:""}.fa-remove-format:before{content:""}.fa-face-smile-wink:before{content:""}.fa-smile-wink:before{content:""}.fa-file-word:before{content:""}.fa-file-powerpoint:before{content:""}.fa-arrows-left-right:before{content:""}.fa-arrows-h:before{content:""}.fa-house-lock:before{content:""}.fa-cloud-arrow-down:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-download-alt:before{content:""}.fa-children:before{content:""}.fa-chalkboard:before{content:""}.fa-blackboard:before{content:""}.fa-user-large-slash:before{content:""}.fa-user-alt-slash:before{content:""}.fa-envelope-open:before{content:""}.fa-handshake-simple-slash:before{content:""}.fa-handshake-alt-slash:before{content:""}.fa-mattress-pillow:before{content:""}.fa-guarani-sign:before{content:""}.fa-arrows-rotate:before{content:""}.fa-refresh:before{content:""}.fa-sync:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-cruzeiro-sign:before{content:""}.fa-greater-than-equal:before{content:""}.fa-shield-halved:before{content:""}.fa-shield-alt:before{content:""}.fa-book-atlas:before{content:""}.fa-atlas:before{content:""}.fa-virus:before{content:""}.fa-envelope-circle-check:before{content:""}.fa-layer-group:before{content:""}.fa-arrows-to-dot:before{content:""}.fa-archway:before{content:""}.fa-heart-circle-check:before{content:""}.fa-house-chimney-crack:before{content:""}.fa-house-damage:before{content:""}.fa-file-zipper:before{content:""}.fa-file-archive:before{content:""}.fa-square:before{content:""}.fa-martini-glass-empty:before{content:""}.fa-glass-martini:before{content:""}.fa-couch:before{content:""}.fa-cedi-sign:before{content:""}.fa-italic:before{content:""}.fa-church:before{content:""}.fa-comments-dollar:before{content:""}.fa-democrat:before{content:""}.fa-z:before{content:"Z"}.fa-person-skiing:before{content:""}.fa-skiing:before{content:""}.fa-road-lock:before{content:""}.fa-a:before{content:"A"}.fa-temperature-arrow-down:before{content:""}.fa-temperature-down:before{content:""}.fa-feather-pointed:before{content:""}.fa-feather-alt:before{content:""}.fa-p:before{content:"P"}.fa-snowflake:before{content:""}.fa-newspaper:before{content:""}.fa-rectangle-ad:before{content:""}.fa-ad:before{content:""}.fa-circle-arrow-right:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-filter-circle-xmark:before{content:""}.fa-locust:before{content:""}.fa-sort:before{content:""}.fa-unsorted:before{content:""}.fa-list-ol:before{content:""}.fa-list-1-2:before{content:""}.fa-list-numeric:before{content:""}.fa-person-dress-burst:before{content:""}.fa-money-check-dollar:before{content:""}.fa-money-check-alt:before{content:""}.fa-vector-square:before{content:""}.fa-bread-slice:before{content:""}.fa-language:before{content:""}.fa-face-kiss-wink-heart:before{content:""}.fa-kiss-wink-heart:before{content:""}.fa-filter:before{content:""}.fa-question:before{content:"?"}.fa-file-signature:before{content:""}.fa-up-down-left-right:before{content:""}.fa-arrows-alt:before{content:""}.fa-house-chimney-user:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-puzzle-piece:before{content:""}.fa-money-check:before{content:""}.fa-star-half-stroke:before{content:""}.fa-star-half-alt:before{content:""}.fa-code:before{content:""}.fa-whiskey-glass:before{content:""}.fa-glass-whiskey:before{content:""}.fa-building-circle-exclamation:before{content:""}.fa-magnifying-glass-chart:before{content:""}.fa-arrow-up-right-from-square:before{content:""}.fa-external-link:before{content:""}.fa-cubes-stacked:before{content:""}.fa-won-sign:before{content:""}.fa-krw:before{content:""}.fa-won:before{content:""}.fa-virus-covid:before{content:""}.fa-austral-sign:before{content:""}.fa-f:before{content:"F"}.fa-leaf:before{content:""}.fa-road:before{content:""}.fa-taxi:before{content:""}.fa-cab:before{content:""}.fa-person-circle-plus:before{content:""}.fa-chart-pie:before{content:""}.fa-pie-chart:before{content:""}.fa-bolt-lightning:before{content:""}.fa-sack-xmark:before{content:""}.fa-file-excel:before{content:""}.fa-file-contract:before{content:""}.fa-fish-fins:before{content:""}.fa-building-flag:before{content:""}.fa-face-grin-beam:before{content:""}.fa-grin-beam:before{content:""}.fa-object-ungroup:before{content:""}.fa-poop:before{content:""}.fa-location-pin:before{content:""}.fa-map-marker:before{content:""}.fa-kaaba:before{content:""}.fa-toilet-paper:before{content:""}.fa-helmet-safety:before{content:""}.fa-hard-hat:before{content:""}.fa-hat-hard:before{content:""}.fa-eject:before{content:""}.fa-circle-right:before{content:""}.fa-arrow-alt-circle-right:before{content:""}.fa-plane-circle-check:before{content:""}.fa-face-rolling-eyes:before{content:""}.fa-meh-rolling-eyes:before{content:""}.fa-object-group:before{content:""}.fa-chart-line:before{content:""}.fa-line-chart:before{content:""}.fa-mask-ventilator:before{content:""}.fa-arrow-right:before{content:""}.fa-signs-post:before{content:""}.fa-map-signs:before{content:""}.fa-cash-register:before{content:""}.fa-person-circle-question:before{content:""}.fa-h:before{content:"H"}.fa-tarp:before{content:""}.fa-screwdriver-wrench:before{content:""}.fa-tools:before{content:""}.fa-arrows-to-eye:before{content:""}.fa-plug-circle-bolt:before{content:""}.fa-heart:before{content:""}.fa-mars-and-venus:before{content:""}.fa-house-user:before{content:""}.fa-home-user:before{content:""}.fa-dumpster-fire:before{content:""}.fa-house-crack:before{content:""}.fa-martini-glass-citrus:before{content:""}.fa-cocktail:before{content:""}.fa-face-surprise:before{content:""}.fa-surprise:before{content:""}.fa-bottle-water:before{content:""}.fa-circle-pause:before{content:""}.fa-pause-circle:before{content:""}.fa-toilet-paper-slash:before{content:""}.fa-apple-whole:before{content:""}.fa-apple-alt:before{content:""}.fa-kitchen-set:before{content:""}.fa-r:before{content:"R"}.fa-temperature-quarter:before{content:""}.fa-temperature-1:before{content:""}.fa-thermometer-1:before{content:""}.fa-thermometer-quarter:before{content:""}.fa-cube:before{content:""}.fa-bitcoin-sign:before{content:""}.fa-shield-dog:before{content:""}.fa-solar-panel:before{content:""}.fa-lock-open:before{content:""}.fa-elevator:before{content:""}.fa-money-bill-transfer:before{content:""}.fa-money-bill-trend-up:before{content:""}.fa-house-flood-water-circle-arrow-right:before{content:""}.fa-square-poll-horizontal:before{content:""}.fa-poll-h:before{content:""}.fa-circle:before{content:""}.fa-backward-fast:before{content:""}.fa-fast-backward:before{content:""}.fa-recycle:before{content:""}.fa-user-astronaut:before{content:""}.fa-plane-slash:before{content:""}.fa-trademark:before{content:""}.fa-basketball:before{content:""}.fa-basketball-ball:before{content:""}.fa-satellite-dish:before{content:""}.fa-circle-up:before{content:""}.fa-arrow-alt-circle-up:before{content:""}.fa-mobile-screen-button:before{content:""}.fa-mobile-alt:before{content:""}.fa-volume-high:before{content:""}.fa-volume-up:before{content:""}.fa-users-rays:before{content:""}.fa-wallet:before{content:""}.fa-clipboard-check:before{content:""}.fa-file-audio:before{content:""}.fa-burger:before{content:""}.fa-hamburger:before{content:""}.fa-wrench:before{content:""}.fa-bugs:before{content:""}.fa-rupee-sign:before{content:""}.fa-rupee:before{content:""}.fa-file-image:before{content:""}.fa-circle-question:before{content:""}.fa-question-circle:before{content:""}.fa-plane-departure:before{content:""}.fa-handshake-slash:before{content:""}.fa-book-bookmark:before{content:""}.fa-code-branch:before{content:""}.fa-hat-cowboy:before{content:""}.fa-bridge:before{content:""}.fa-phone-flip:before{content:""}.fa-phone-alt:before{content:""}.fa-truck-front:before{content:""}.fa-cat:before{content:""}.fa-anchor-circle-exclamation:before{content:""}.fa-truck-field:before{content:""}.fa-route:before{content:""}.fa-clipboard-question:before{content:""}.fa-panorama:before{content:""}.fa-comment-medical:before{content:""}.fa-teeth-open:before{content:""}.fa-file-circle-minus:before{content:""}.fa-tags:before{content:""}.fa-wine-glass:before{content:""}.fa-forward-fast:before{content:""}.fa-fast-forward:before{content:""}.fa-face-meh-blank:before{content:""}.fa-meh-blank:before{content:""}.fa-square-parking:before{content:""}.fa-parking:before{content:""}.fa-house-signal:before{content:""}.fa-bars-progress:before{content:""}.fa-tasks-alt:before{content:""}.fa-faucet-drip:before{content:""}.fa-cart-flatbed:before{content:""}.fa-dolly-flatbed:before{content:""}.fa-ban-smoking:before{content:""}.fa-smoking-ban:before{content:""}.fa-terminal:before{content:""}.fa-mobile-button:before{content:""}.fa-house-medical-flag:before{content:""}.fa-basket-shopping:before{content:""}.fa-shopping-basket:before{content:""}.fa-tape:before{content:""}.fa-bus-simple:before{content:""}.fa-bus-alt:before{content:""}.fa-eye:before{content:""}.fa-face-sad-cry:before{content:""}.fa-sad-cry:before{content:""}.fa-audio-description:before{content:""}.fa-person-military-to-person:before{content:""}.fa-file-shield:before{content:""}.fa-user-slash:before{content:""}.fa-pen:before{content:""}.fa-tower-observation:before{content:""}.fa-file-code:before{content:""}.fa-signal:before{content:""}.fa-signal-5:before{content:""}.fa-signal-perfect:before{content:""}.fa-bus:before{content:""}.fa-heart-circle-xmark:before{content:""}.fa-house-chimney:before{content:""}.fa-home-lg:before{content:""}.fa-window-maximize:before{content:""}.fa-face-frown:before{content:""}.fa-frown:before{content:""}.fa-prescription:before{content:""}.fa-shop:before{content:""}.fa-store-alt:before{content:""}.fa-floppy-disk:before{content:""}.fa-save:before{content:""}.fa-vihara:before{content:""}.fa-scale-unbalanced:before{content:""}.fa-balance-scale-left:before{content:""}.fa-sort-up:before{content:""}.fa-sort-asc:before{content:""}.fa-comment-dots:before{content:""}.fa-commenting:before{content:""}.fa-plant-wilt:before{content:""}.fa-diamond:before{content:""}.fa-face-grin-squint:before{content:""}.fa-grin-squint:before{content:""}.fa-hand-holding-dollar:before{content:""}.fa-hand-holding-usd:before{content:""}.fa-bacterium:before{content:""}.fa-hand-pointer:before{content:""}.fa-drum-steelpan:before{content:""}.fa-hand-scissors:before{content:""}.fa-hands-praying:before{content:""}.fa-praying-hands:before{content:""}.fa-arrow-rotate-right:before{content:""}.fa-arrow-right-rotate:before{content:""}.fa-arrow-rotate-forward:before{content:""}.fa-redo:before{content:""}.fa-biohazard:before{content:""}.fa-location-crosshairs:before{content:""}.fa-location:before{content:""}.fa-mars-double:before{content:""}.fa-child-dress:before{content:""}.fa-users-between-lines:before{content:""}.fa-lungs-virus:before{content:""}.fa-face-grin-tears:before{content:""}.fa-grin-tears:before{content:""}.fa-phone:before{content:""}.fa-calendar-xmark:before{content:""}.fa-calendar-times:before{content:""}.fa-child-reaching:before{content:""}.fa-head-side-virus:before{content:""}.fa-user-gear:before{content:""}.fa-user-cog:before{content:""}.fa-arrow-up-1-9:before{content:""}.fa-sort-numeric-up:before{content:""}.fa-door-closed:before{content:""}.fa-shield-virus:before{content:""}.fa-dice-six:before{content:""}.fa-mosquito-net:before{content:""}.fa-bridge-water:before{content:""}.fa-person-booth:before{content:""}.fa-text-width:before{content:""}.fa-hat-wizard:before{content:""}.fa-pen-fancy:before{content:""}.fa-person-digging:before{content:""}.fa-digging:before{content:""}.fa-trash:before{content:""}.fa-gauge-simple:before{content:""}.fa-gauge-simple-med:before{content:""}.fa-tachometer-average:before{content:""}.fa-book-medical:before{content:""}.fa-poo:before{content:""}.fa-quote-right:before{content:""}.fa-quote-right-alt:before{content:""}.fa-shirt:before{content:""}.fa-t-shirt:before{content:""}.fa-tshirt:before{content:""}.fa-cubes:before{content:""}.fa-divide:before{content:""}.fa-tenge-sign:before{content:""}.fa-tenge:before{content:""}.fa-headphones:before{content:""}.fa-hands-holding:before{content:""}.fa-hands-clapping:before{content:""}.fa-republican:before{content:""}.fa-arrow-left:before{content:""}.fa-person-circle-xmark:before{content:""}.fa-ruler:before{content:""}.fa-align-left:before{content:""}.fa-dice-d6:before{content:""}.fa-restroom:before{content:""}.fa-j:before{content:"J"}.fa-users-viewfinder:before{content:""}.fa-file-video:before{content:""}.fa-up-right-from-square:before{content:""}.fa-external-link-alt:before{content:""}.fa-table-cells:before{content:""}.fa-th:before{content:""}.fa-file-pdf:before{content:""}.fa-book-bible:before{content:""}.fa-bible:before{content:""}.fa-o:before{content:"O"}.fa-suitcase-medical:before{content:""}.fa-medkit:before{content:""}.fa-user-secret:before{content:""}.fa-otter:before{content:""}.fa-person-dress:before{content:""}.fa-female:before{content:""}.fa-comment-dollar:before{content:""}.fa-business-time:before{content:""}.fa-briefcase-clock:before{content:""}.fa-table-cells-large:before{content:""}.fa-th-large:before{content:""}.fa-book-tanakh:before{content:""}.fa-tanakh:before{content:""}.fa-phone-volume:before{content:""}.fa-volume-control-phone:before{content:""}.fa-hat-cowboy-side:before{content:""}.fa-clipboard-user:before{content:""}.fa-child:before{content:""}.fa-lira-sign:before{content:""}.fa-satellite:before{content:""}.fa-plane-lock:before{content:""}.fa-tag:before{content:""}.fa-comment:before{content:""}.fa-cake-candles:before{content:""}.fa-birthday-cake:before{content:""}.fa-cake:before{content:""}.fa-envelope:before{content:""}.fa-angles-up:before{content:""}.fa-angle-double-up:before{content:""}.fa-paperclip:before{content:""}.fa-arrow-right-to-city:before{content:""}.fa-ribbon:before{content:""}.fa-lungs:before{content:""}.fa-arrow-up-9-1:before{content:""}.fa-sort-numeric-up-alt:before{content:""}.fa-litecoin-sign:before{content:""}.fa-border-none:before{content:""}.fa-circle-nodes:before{content:""}.fa-parachute-box:before{content:""}.fa-indent:before{content:""}.fa-truck-field-un:before{content:""}.fa-hourglass:before{content:""}.fa-hourglass-empty:before{content:""}.fa-mountain:before{content:""}.fa-user-doctor:before{content:""}.fa-user-md:before{content:""}.fa-circle-info:before{content:""}.fa-info-circle:before{content:""}.fa-cloud-meatball:before{content:""}.fa-camera:before{content:""}.fa-camera-alt:before{content:""}.fa-square-virus:before{content:""}.fa-meteor:before{content:""}.fa-car-on:before{content:""}.fa-sleigh:before{content:""}.fa-arrow-down-1-9:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-down:before{content:""}.fa-hand-holding-droplet:before{content:""}.fa-hand-holding-water:before{content:""}.fa-water:before{content:""}.fa-calendar-check:before{content:""}.fa-braille:before{content:""}.fa-prescription-bottle-medical:before{content:""}.fa-prescription-bottle-alt:before{content:""}.fa-landmark:before{content:""}.fa-truck:before{content:""}.fa-crosshairs:before{content:""}.fa-person-cane:before{content:""}.fa-tent:before{content:""}.fa-vest-patches:before{content:""}.fa-check-double:before{content:""}.fa-arrow-down-a-z:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-down:before{content:""}.fa-money-bill-wheat:before{content:""}.fa-cookie:before{content:""}.fa-arrow-rotate-left:before{content:""}.fa-arrow-left-rotate:before{content:""}.fa-arrow-rotate-back:before{content:""}.fa-arrow-rotate-backward:before{content:""}.fa-undo:before{content:""}.fa-hard-drive:before{content:""}.fa-hdd:before{content:""}.fa-face-grin-squint-tears:before{content:""}.fa-grin-squint-tears:before{content:""}.fa-dumbbell:before{content:""}.fa-rectangle-list:before{content:""}.fa-list-alt:before{content:""}.fa-tarp-droplet:before{content:""}.fa-house-medical-circle-check:before{content:""}.fa-person-skiing-nordic:before{content:""}.fa-skiing-nordic:before{content:""}.fa-calendar-plus:before{content:""}.fa-plane-arrival:before{content:""}.fa-circle-left:before{content:""}.fa-arrow-alt-circle-left:before{content:""}.fa-train-subway:before{content:""}.fa-subway:before{content:""}.fa-chart-gantt:before{content:""}.fa-indian-rupee-sign:before{content:""}.fa-indian-rupee:before{content:""}.fa-inr:before{content:""}.fa-crop-simple:before{content:""}.fa-crop-alt:before{content:""}.fa-money-bill-1:before{content:""}.fa-money-bill-alt:before{content:""}.fa-left-long:before{content:""}.fa-long-arrow-alt-left:before{content:""}.fa-dna:before{content:""}.fa-virus-slash:before{content:""}.fa-minus:before{content:""}.fa-subtract:before{content:""}.fa-chess:before{content:""}.fa-arrow-left-long:before{content:""}.fa-long-arrow-left:before{content:""}.fa-plug-circle-check:before{content:""}.fa-street-view:before{content:""}.fa-franc-sign:before{content:""}.fa-volume-off:before{content:""}.fa-hands-asl-interpreting:before{content:""}.fa-american-sign-language-interpreting:before{content:""}.fa-asl-interpreting:before{content:""}.fa-hands-american-sign-language-interpreting:before{content:""}.fa-gear:before{content:""}.fa-cog:before{content:""}.fa-droplet-slash:before{content:""}.fa-tint-slash:before{content:""}.fa-mosque:before{content:""}.fa-mosquito:before{content:""}.fa-star-of-david:before{content:""}.fa-person-military-rifle:before{content:""}.fa-cart-shopping:before{content:""}.fa-shopping-cart:before{content:""}.fa-vials:before{content:""}.fa-plug-circle-plus:before{content:""}.fa-place-of-worship:before{content:""}.fa-grip-vertical:before{content:""}.fa-arrow-turn-up:before{content:""}.fa-level-up:before{content:""}.fa-u:before{content:"U"}.fa-square-root-variable:before{content:""}.fa-square-root-alt:before{content:""}.fa-clock:before{content:""}.fa-clock-four:before{content:""}.fa-backward-step:before{content:""}.fa-step-backward:before{content:""}.fa-pallet:before{content:""}.fa-faucet:before{content:""}.fa-baseball-bat-ball:before{content:""}.fa-s:before{content:"S"}.fa-timeline:before{content:""}.fa-keyboard:before{content:""}.fa-caret-down:before{content:""}.fa-house-chimney-medical:before{content:""}.fa-clinic-medical:before{content:""}.fa-temperature-three-quarters:before{content:""}.fa-temperature-3:before{content:""}.fa-thermometer-3:before{content:""}.fa-thermometer-three-quarters:before{content:""}.fa-mobile-screen:before{content:""}.fa-mobile-android-alt:before{content:""}.fa-plane-up:before{content:""}.fa-piggy-bank:before{content:""}.fa-battery-half:before{content:""}.fa-battery-3:before{content:""}.fa-mountain-city:before{content:""}.fa-coins:before{content:""}.fa-khanda:before{content:""}.fa-sliders:before{content:""}.fa-sliders-h:before{content:""}.fa-folder-tree:before{content:""}.fa-network-wired:before{content:""}.fa-map-pin:before{content:""}.fa-hamsa:before{content:""}.fa-cent-sign:before{content:""}.fa-flask:before{content:""}.fa-person-pregnant:before{content:""}.fa-wand-sparkles:before{content:""}.fa-ellipsis-vertical:before{content:""}.fa-ellipsis-v:before{content:""}.fa-ticket:before{content:""}.fa-power-off:before{content:""}.fa-right-long:before{content:""}.fa-long-arrow-alt-right:before{content:""}.fa-flag-usa:before{content:""}.fa-laptop-file:before{content:""}.fa-tty:before{content:""}.fa-teletype:before{content:""}.fa-diagram-next:before{content:""}.fa-person-rifle:before{content:""}.fa-house-medical-circle-exclamation:before{content:""}.fa-closed-captioning:before{content:""}.fa-person-hiking:before{content:""}.fa-hiking:before{content:""}.fa-venus-double:before{content:""}.fa-images:before{content:""}.fa-calculator:before{content:""}.fa-people-pulling:before{content:""}.fa-n:before{content:"N"}.fa-cable-car:before{content:""}.fa-tram:before{content:""}.fa-cloud-rain:before{content:""}.fa-building-circle-xmark:before{content:""}.fa-ship:before{content:""}.fa-arrows-down-to-line:before{content:""}.fa-download:before{content:""}.fa-face-grin:before{content:""}.fa-grin:before{content:""}.fa-delete-left:before{content:""}.fa-backspace:before{content:""}.fa-eye-dropper:before{content:""}.fa-eye-dropper-empty:before{content:""}.fa-eyedropper:before{content:""}.fa-file-circle-check:before{content:""}.fa-forward:before{content:""}.fa-mobile:before{content:""}.fa-mobile-android:before{content:""}.fa-mobile-phone:before{content:""}.fa-face-meh:before{content:""}.fa-meh:before{content:""}.fa-align-center:before{content:""}.fa-book-skull:before{content:""}.fa-book-dead:before{content:""}.fa-id-card:before{content:""}.fa-drivers-license:before{content:""}.fa-outdent:before{content:""}.fa-dedent:before{content:""}.fa-heart-circle-exclamation:before{content:""}.fa-house:before{content:""}.fa-home:before{content:""}.fa-home-alt:before{content:""}.fa-home-lg-alt:before{content:""}.fa-calendar-week:before{content:""}.fa-laptop-medical:before{content:""}.fa-b:before{content:"B"}.fa-file-medical:before{content:""}.fa-dice-one:before{content:""}.fa-kiwi-bird:before{content:""}.fa-arrow-right-arrow-left:before{content:""}.fa-exchange:before{content:""}.fa-rotate-right:before{content:""}.fa-redo-alt:before{content:""}.fa-rotate-forward:before{content:""}.fa-utensils:before{content:""}.fa-cutlery:before{content:""}.fa-arrow-up-wide-short:before{content:""}.fa-sort-amount-up:before{content:""}.fa-mill-sign:before{content:""}.fa-bowl-rice:before{content:""}.fa-skull:before{content:""}.fa-tower-broadcast:before{content:""}.fa-broadcast-tower:before{content:""}.fa-truck-pickup:before{content:""}.fa-up-long:before{content:""}.fa-long-arrow-alt-up:before{content:""}.fa-stop:before{content:""}.fa-code-merge:before{content:""}.fa-upload:before{content:""}.fa-hurricane:before{content:""}.fa-mound:before{content:""}.fa-toilet-portable:before{content:""}.fa-compact-disc:before{content:""}.fa-file-arrow-down:before{content:""}.fa-file-download:before{content:""}.fa-caravan:before{content:""}.fa-shield-cat:before{content:""}.fa-bolt:before{content:""}.fa-zap:before{content:""}.fa-glass-water:before{content:""}.fa-oil-well:before{content:""}.fa-vault:before{content:""}.fa-mars:before{content:""}.fa-toilet:before{content:""}.fa-plane-circle-xmark:before{content:""}.fa-yen-sign:before{content:""}.fa-cny:before{content:""}.fa-jpy:before{content:""}.fa-rmb:before{content:""}.fa-yen:before{content:""}.fa-ruble-sign:before{content:""}.fa-rouble:before{content:""}.fa-rub:before{content:""}.fa-ruble:before{content:""}.fa-sun:before{content:""}.fa-guitar:before{content:""}.fa-face-laugh-wink:before{content:""}.fa-laugh-wink:before{content:""}.fa-horse-head:before{content:""}.fa-bore-hole:before{content:""}.fa-industry:before{content:""}.fa-circle-down:before{content:""}.fa-arrow-alt-circle-down:before{content:""}.fa-arrows-turn-to-dots:before{content:""}.fa-florin-sign:before{content:""}.fa-arrow-down-short-wide:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-amount-down-alt:before{content:""}.fa-less-than:before{content:"<"}.fa-angle-down:before{content:""}.fa-car-tunnel:before{content:""}.fa-head-side-cough:before{content:""}.fa-grip-lines:before{content:""}.fa-thumbs-down:before{content:""}.fa-user-lock:before{content:""}.fa-arrow-right-long:before{content:""}.fa-long-arrow-right:before{content:""}.fa-anchor-circle-xmark:before{content:""}.fa-ellipsis:before{content:""}.fa-ellipsis-h:before{content:""}.fa-chess-pawn:before{content:""}.fa-kit-medical:before{content:""}.fa-first-aid:before{content:""}.fa-person-through-window:before{content:""}.fa-toolbox:before{content:""}.fa-hands-holding-circle:before{content:""}.fa-bug:before{content:""}.fa-credit-card:before{content:""}.fa-credit-card-alt:before{content:""}.fa-car:before{content:""}.fa-automobile:before{content:""}.fa-hand-holding-hand:before{content:""}.fa-book-open-reader:before{content:""}.fa-book-reader:before{content:""}.fa-mountain-sun:before{content:""}.fa-arrows-left-right-to-line:before{content:""}.fa-dice-d20:before{content:""}.fa-truck-droplet:before{content:""}.fa-file-circle-xmark:before{content:""}.fa-temperature-arrow-up:before{content:""}.fa-temperature-up:before{content:""}.fa-medal:before{content:""}.fa-bed:before{content:""}.fa-square-h:before{content:""}.fa-h-square:before{content:""}.fa-podcast:before{content:""}.fa-temperature-full:before{content:""}.fa-temperature-4:before{content:""}.fa-thermometer-4:before{content:""}.fa-thermometer-full:before{content:""}.fa-bell:before{content:""}.fa-superscript:before{content:""}.fa-plug-circle-xmark:before{content:""}.fa-star-of-life:before{content:""}.fa-phone-slash:before{content:""}.fa-paint-roller:before{content:""}.fa-handshake-angle:before{content:""}.fa-hands-helping:before{content:""}.fa-location-dot:before{content:""}.fa-map-marker-alt:before{content:""}.fa-file:before{content:""}.fa-greater-than:before{content:">"}.fa-person-swimming:before{content:""}.fa-swimmer:before{content:""}.fa-arrow-down:before{content:""}.fa-droplet:before{content:""}.fa-tint:before{content:""}.fa-eraser:before{content:""}.fa-earth-americas:before{content:""}.fa-earth:before{content:""}.fa-earth-america:before{content:""}.fa-globe-americas:before{content:""}.fa-person-burst:before{content:""}.fa-dove:before{content:""}.fa-battery-empty:before{content:""}.fa-battery-0:before{content:""}.fa-socks:before{content:""}.fa-inbox:before{content:""}.fa-section:before{content:""}.fa-gauge-high:before{content:""}.fa-tachometer-alt:before{content:""}.fa-tachometer-alt-fast:before{content:""}.fa-envelope-open-text:before{content:""}.fa-hospital:before{content:""}.fa-hospital-alt:before{content:""}.fa-hospital-wide:before{content:""}.fa-wine-bottle:before{content:""}.fa-chess-rook:before{content:""}.fa-bars-staggered:before{content:""}.fa-reorder:before{content:""}.fa-stream:before{content:""}.fa-dharmachakra:before{content:""}.fa-hotdog:before{content:""}.fa-person-walking-with-cane:before{content:""}.fa-blind:before{content:""}.fa-drum:before{content:""}.fa-ice-cream:before{content:""}.fa-heart-circle-bolt:before{content:""}.fa-fax:before{content:""}.fa-paragraph:before{content:""}.fa-check-to-slot:before{content:""}.fa-vote-yea:before{content:""}.fa-star-half:before{content:""}.fa-boxes-stacked:before{content:""}.fa-boxes:before{content:""}.fa-boxes-alt:before{content:""}.fa-link:before{content:""}.fa-chain:before{content:""}.fa-ear-listen:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-tree-city:before{content:""}.fa-play:before{content:""}.fa-font:before{content:""}.fa-rupiah-sign:before{content:""}.fa-magnifying-glass:before{content:""}.fa-search:before{content:""}.fa-table-tennis-paddle-ball:before{content:""}.fa-ping-pong-paddle-ball:before{content:""}.fa-table-tennis:before{content:""}.fa-person-dots-from-line:before{content:""}.fa-diagnoses:before{content:""}.fa-trash-can-arrow-up:before{content:""}.fa-trash-restore-alt:before{content:""}.fa-naira-sign:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-walkie-talkie:before{content:""}.fa-file-pen:before{content:""}.fa-file-edit:before{content:""}.fa-receipt:before{content:""}.fa-square-pen:before{content:""}.fa-pen-square:before{content:""}.fa-pencil-square:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-person-circle-exclamation:before{content:""}.fa-chevron-down:before{content:""}.fa-battery-full:before{content:""}.fa-battery:before{content:""}.fa-battery-5:before{content:""}.fa-skull-crossbones:before{content:""}.fa-code-compare:before{content:""}.fa-list-ul:before{content:""}.fa-list-dots:before{content:""}.fa-school-lock:before{content:""}.fa-tower-cell:before{content:""}.fa-down-long:before{content:""}.fa-long-arrow-alt-down:before{content:""}.fa-ranking-star:before{content:""}.fa-chess-king:before{content:""}.fa-person-harassing:before{content:""}.fa-brazilian-real-sign:before{content:""}.fa-landmark-dome:before{content:""}.fa-landmark-alt:before{content:""}.fa-arrow-up:before{content:""}.fa-tv:before{content:""}.fa-television:before{content:""}.fa-tv-alt:before{content:""}.fa-shrimp:before{content:""}.fa-list-check:before{content:""}.fa-tasks:before{content:""}.fa-jug-detergent:before{content:""}.fa-circle-user:before{content:""}.fa-user-circle:before{content:""}.fa-user-shield:before{content:""}.fa-wind:before{content:""}.fa-car-burst:before{content:""}.fa-car-crash:before{content:""}.fa-y:before{content:"Y"}.fa-person-snowboarding:before{content:""}.fa-snowboarding:before{content:""}.fa-truck-fast:before{content:""}.fa-shipping-fast:before{content:""}.fa-fish:before{content:""}.fa-user-graduate:before{content:""}.fa-circle-half-stroke:before{content:""}.fa-adjust:before{content:""}.fa-clapperboard:before{content:""}.fa-circle-radiation:before{content:""}.fa-radiation-alt:before{content:""}.fa-baseball:before{content:""}.fa-baseball-ball:before{content:""}.fa-jet-fighter-up:before{content:""}.fa-diagram-project:before{content:""}.fa-project-diagram:before{content:""}.fa-copy:before{content:""}.fa-volume-xmark:before{content:""}.fa-volume-mute:before{content:""}.fa-volume-times:before{content:""}.fa-hand-sparkles:before{content:""}.fa-grip:before{content:""}.fa-grip-horizontal:before{content:""}.fa-share-from-square:before{content:""}.fa-share-square:before{content:""}.fa-child-combatant:before{content:""}.fa-child-rifle:before{content:""}.fa-gun:before{content:""}.fa-square-phone:before{content:""}.fa-phone-square:before{content:""}.fa-plus:before{content:"+"}.fa-add:before{content:"+"}.fa-expand:before{content:""}.fa-computer:before{content:""}.fa-xmark:before{content:""}.fa-close:before{content:""}.fa-multiply:before{content:""}.fa-remove:before{content:""}.fa-times:before{content:""}.fa-arrows-up-down-left-right:before{content:""}.fa-arrows:before{content:""}.fa-chalkboard-user:before{content:""}.fa-chalkboard-teacher:before{content:""}.fa-peso-sign:before{content:""}.fa-building-shield:before{content:""}.fa-baby:before{content:""}.fa-users-line:before{content:""}.fa-quote-left:before{content:""}.fa-quote-left-alt:before{content:""}.fa-tractor:before{content:""}.fa-trash-arrow-up:before{content:""}.fa-trash-restore:before{content:""}.fa-arrow-down-up-lock:before{content:""}.fa-lines-leaning:before{content:""}.fa-ruler-combined:before{content:""}.fa-copyright:before{content:""}.fa-equals:before{content:"="}.fa-blender:before{content:""}.fa-teeth:before{content:""}.fa-shekel-sign:before{content:""}.fa-ils:before{content:""}.fa-shekel:before{content:""}.fa-sheqel:before{content:""}.fa-sheqel-sign:before{content:""}.fa-map:before{content:""}.fa-rocket:before{content:""}.fa-photo-film:before{content:""}.fa-photo-video:before{content:""}.fa-folder-minus:before{content:""}.fa-store:before{content:""}.fa-arrow-trend-up:before{content:""}.fa-plug-circle-minus:before{content:""}.fa-sign-hanging:before{content:""}.fa-sign:before{content:""}.fa-bezier-curve:before{content:""}.fa-bell-slash:before{content:""}.fa-tablet:before{content:""}.fa-tablet-android:before{content:""}.fa-school-flag:before{content:""}.fa-fill:before{content:""}.fa-angle-up:before{content:""}.fa-drumstick-bite:before{content:""}.fa-holly-berry:before{content:""}.fa-chevron-left:before{content:""}.fa-bacteria:before{content:""}.fa-hand-lizard:before{content:""}.fa-notdef:before{content:""}.fa-disease:before{content:""}.fa-briefcase-medical:before{content:""}.fa-genderless:before{content:""}.fa-chevron-right:before{content:""}.fa-retweet:before{content:""}.fa-car-rear:before{content:""}.fa-car-alt:before{content:""}.fa-pump-soap:before{content:""}.fa-video-slash:before{content:""}.fa-battery-quarter:before{content:""}.fa-battery-2:before{content:""}.fa-radio:before{content:""}.fa-baby-carriage:before{content:""}.fa-carriage-baby:before{content:""}.fa-traffic-light:before{content:""}.fa-thermometer:before{content:""}.fa-vr-cardboard:before{content:""}.fa-hand-middle-finger:before{content:""}.fa-percent:before{content:"%"}.fa-percentage:before{content:"%"}.fa-truck-moving:before{content:""}.fa-glass-water-droplet:before{content:""}.fa-display:before{content:""}.fa-face-smile:before{content:""}.fa-smile:before{content:""}.fa-thumbtack:before{content:""}.fa-thumb-tack:before{content:""}.fa-trophy:before{content:""}.fa-person-praying:before{content:""}.fa-pray:before{content:""}.fa-hammer:before{content:""}.fa-hand-peace:before{content:""}.fa-rotate:before{content:""}.fa-sync-alt:before{content:""}.fa-spinner:before{content:""}.fa-robot:before{content:""}.fa-peace:before{content:""}.fa-gears:before{content:""}.fa-cogs:before{content:""}.fa-warehouse:before{content:""}.fa-arrow-up-right-dots:before{content:""}.fa-splotch:before{content:""}.fa-face-grin-hearts:before{content:""}.fa-grin-hearts:before{content:""}.fa-dice-four:before{content:""}.fa-sim-card:before{content:""}.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-mercury:before{content:""}.fa-arrow-turn-down:before{content:""}.fa-level-down:before{content:""}.fa-person-falling-burst:before{content:""}.fa-award:before{content:""}.fa-ticket-simple:before{content:""}.fa-ticket-alt:before{content:""}.fa-building:before{content:""}.fa-angles-left:before{content:""}.fa-angle-double-left:before{content:""}.fa-qrcode:before{content:""}.fa-clock-rotate-left:before{content:""}.fa-history:before{content:""}.fa-face-grin-beam-sweat:before{content:""}.fa-grin-beam-sweat:before{content:""}.fa-file-export:before{content:""}.fa-arrow-right-from-file:before{content:""}.fa-shield:before{content:""}.fa-shield-blank:before{content:""}.fa-arrow-up-short-wide:before{content:""}.fa-sort-amount-up-alt:before{content:""}.fa-house-medical:before{content:""}.fa-golf-ball-tee:before{content:""}.fa-golf-ball:before{content:""}.fa-circle-chevron-left:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-house-chimney-window:before{content:""}.fa-pen-nib:before{content:""}.fa-tent-arrow-turn-left:before{content:""}.fa-tents:before{content:""}.fa-wand-magic:before{content:""}.fa-magic:before{content:""}.fa-dog:before{content:""}.fa-carrot:before{content:""}.fa-moon:before{content:""}.fa-wine-glass-empty:before{content:""}.fa-wine-glass-alt:before{content:""}.fa-cheese:before{content:""}.fa-yin-yang:before{content:""}.fa-music:before{content:""}.fa-code-commit:before{content:""}.fa-temperature-low:before{content:""}.fa-person-biking:before{content:""}.fa-biking:before{content:""}.fa-broom:before{content:""}.fa-shield-heart:before{content:""}.fa-gopuram:before{content:""}.fa-earth-oceania:before{content:""}.fa-globe-oceania:before{content:""}.fa-square-xmark:before{content:""}.fa-times-square:before{content:""}.fa-xmark-square:before{content:""}.fa-hashtag:before{content:"#"}.fa-up-right-and-down-left-from-center:before{content:""}.fa-expand-alt:before{content:""}.fa-oil-can:before{content:""}.fa-t:before{content:"T"}.fa-hippo:before{content:""}.fa-chart-column:before{content:""}.fa-infinity:before{content:""}.fa-vial-circle-check:before{content:""}.fa-person-arrow-down-to-line:before{content:""}.fa-voicemail:before{content:""}.fa-fan:before{content:""}.fa-person-walking-luggage:before{content:""}.fa-up-down:before{content:""}.fa-arrows-alt-v:before{content:""}.fa-cloud-moon-rain:before{content:""}.fa-calendar:before{content:""}.fa-trailer:before{content:""}.fa-bahai:before{content:""}.fa-haykal:before{content:""}.fa-sd-card:before{content:""}.fa-dragon:before{content:""}.fa-shoe-prints:before{content:""}.fa-circle-plus:before{content:""}.fa-plus-circle:before{content:""}.fa-face-grin-tongue-wink:before{content:""}.fa-grin-tongue-wink:before{content:""}.fa-hand-holding:before{content:""}.fa-plug-circle-exclamation:before{content:""}.fa-link-slash:before{content:""}.fa-chain-broken:before{content:""}.fa-chain-slash:before{content:""}.fa-unlink:before{content:""}.fa-clone:before{content:""}.fa-person-walking-arrow-loop-left:before{content:""}.fa-arrow-up-z-a:before{content:""}.fa-sort-alpha-up-alt:before{content:""}.fa-fire-flame-curved:before{content:""}.fa-fire-alt:before{content:""}.fa-tornado:before{content:""}.fa-file-circle-plus:before{content:""}.fa-book-quran:before{content:""}.fa-quran:before{content:""}.fa-anchor:before{content:""}.fa-border-all:before{content:""}.fa-face-angry:before{content:""}.fa-angry:before{content:""}.fa-cookie-bite:before{content:""}.fa-arrow-trend-down:before{content:""}.fa-rss:before{content:""}.fa-feed:before{content:""}.fa-draw-polygon:before{content:""}.fa-scale-balanced:before{content:""}.fa-balance-scale:before{content:""}.fa-gauge-simple-high:before{content:""}.fa-tachometer:before{content:""}.fa-tachometer-fast:before{content:""}.fa-shower:before{content:""}.fa-desktop:before{content:""}.fa-desktop-alt:before{content:""}.fa-m:before{content:"M"}.fa-table-list:before{content:""}.fa-th-list:before{content:""}.fa-comment-sms:before{content:""}.fa-sms:before{content:""}.fa-book:before{content:""}.fa-user-plus:before{content:""}.fa-check:before{content:""}.fa-battery-three-quarters:before{content:""}.fa-battery-4:before{content:""}.fa-house-circle-check:before{content:""}.fa-angle-left:before{content:""}.fa-diagram-successor:before{content:""}.fa-truck-arrow-right:before{content:""}.fa-arrows-split-up-and-left:before{content:""}.fa-hand-fist:before{content:""}.fa-fist-raised:before{content:""}.fa-cloud-moon:before{content:""}.fa-briefcase:before{content:""}.fa-person-falling:before{content:""}.fa-image-portrait:before{content:""}.fa-portrait:before{content:""}.fa-user-tag:before{content:""}.fa-rug:before{content:""}.fa-earth-europe:before{content:""}.fa-globe-europe:before{content:""}.fa-cart-flatbed-suitcase:before{content:""}.fa-luggage-cart:before{content:""}.fa-rectangle-xmark:before{content:""}.fa-rectangle-times:before{content:""}.fa-times-rectangle:before{content:""}.fa-window-close:before{content:""}.fa-baht-sign:before{content:""}.fa-book-open:before{content:""}.fa-book-journal-whills:before{content:""}.fa-journal-whills:before{content:""}.fa-handcuffs:before{content:""}.fa-triangle-exclamation:before{content:""}.fa-exclamation-triangle:before{content:""}.fa-warning:before{content:""}.fa-database:before{content:""}.fa-share:before{content:""}.fa-mail-forward:before{content:""}.fa-bottle-droplet:before{content:""}.fa-mask-face:before{content:""}.fa-hill-rockslide:before{content:""}.fa-right-left:before{content:""}.fa-exchange-alt:before{content:""}.fa-paper-plane:before{content:""}.fa-road-circle-exclamation:before{content:""}.fa-dungeon:before{content:""}.fa-align-right:before{content:""}.fa-money-bill-1-wave:before{content:""}.fa-money-bill-wave-alt:before{content:""}.fa-life-ring:before{content:""}.fa-hands:before{content:""}.fa-sign-language:before{content:""}.fa-signing:before{content:""}.fa-calendar-day:before{content:""}.fa-water-ladder:before{content:""}.fa-ladder-water:before{content:""}.fa-swimming-pool:before{content:""}.fa-arrows-up-down:before{content:""}.fa-arrows-v:before{content:""}.fa-face-grimace:before{content:""}.fa-grimace:before{content:""}.fa-wheelchair-move:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-turn-down:before{content:""}.fa-level-down-alt:before{content:""}.fa-person-walking-arrow-right:before{content:""}.fa-square-envelope:before{content:""}.fa-envelope-square:before{content:""}.fa-dice:before{content:""}.fa-bowling-ball:before{content:""}.fa-brain:before{content:""}.fa-bandage:before{content:""}.fa-band-aid:before{content:""}.fa-calendar-minus:before{content:""}.fa-circle-xmark:before{content:""}.fa-times-circle:before{content:""}.fa-xmark-circle:before{content:""}.fa-gifts:before{content:""}.fa-hotel:before{content:""}.fa-earth-asia:before{content:""}.fa-globe-asia:before{content:""}.fa-id-card-clip:before{content:""}.fa-id-card-alt:before{content:""}.fa-magnifying-glass-plus:before{content:""}.fa-search-plus:before{content:""}.fa-thumbs-up:before{content:""}.fa-user-clock:before{content:""}.fa-hand-dots:before{content:""}.fa-allergies:before{content:""}.fa-file-invoice:before{content:""}.fa-window-minimize:before{content:""}.fa-mug-saucer:before{content:""}.fa-coffee:before{content:""}.fa-brush:before{content:""}.fa-mask:before{content:""}.fa-magnifying-glass-minus:before{content:""}.fa-search-minus:before{content:""}.fa-ruler-vertical:before{content:""}.fa-user-large:before{content:""}.fa-user-alt:before{content:""}.fa-train-tram:before{content:""}.fa-user-nurse:before{content:""}.fa-syringe:before{content:""}.fa-cloud-sun:before{content:""}.fa-stopwatch-20:before{content:""}.fa-square-full:before{content:""}.fa-magnet:before{content:""}.fa-jar:before{content:""}.fa-note-sticky:before{content:""}.fa-sticky-note:before{content:""}.fa-bug-slash:before{content:""}.fa-arrow-up-from-water-pump:before{content:""}.fa-bone:before{content:""}.fa-user-injured:before{content:""}.fa-face-sad-tear:before{content:""}.fa-sad-tear:before{content:""}.fa-plane:before{content:""}.fa-tent-arrows-down:before{content:""}.fa-exclamation:before{content:"!"}.fa-arrows-spin:before{content:""}.fa-print:before{content:""}.fa-turkish-lira-sign:before{content:""}.fa-try:before{content:""}.fa-turkish-lira:before{content:""}.fa-dollar-sign:before{content:"$"}.fa-dollar:before{content:"$"}.fa-usd:before{content:"$"}.fa-x:before{content:"X"}.fa-magnifying-glass-dollar:before{content:""}.fa-search-dollar:before{content:""}.fa-users-gear:before{content:""}.fa-users-cog:before{content:""}.fa-person-military-pointing:before{content:""}.fa-building-columns:before{content:""}.fa-bank:before{content:""}.fa-institution:before{content:""}.fa-museum:before{content:""}.fa-university:before{content:""}.fa-umbrella:before{content:""}.fa-trowel:before{content:""}.fa-d:before{content:"D"}.fa-stapler:before{content:""}.fa-masks-theater:before{content:""}.fa-theater-masks:before{content:""}.fa-kip-sign:before{content:""}.fa-hand-point-left:before{content:""}.fa-handshake-simple:before{content:""}.fa-handshake-alt:before{content:""}.fa-jet-fighter:before{content:""}.fa-fighter-jet:before{content:""}.fa-square-share-nodes:before{content:""}.fa-share-alt-square:before{content:""}.fa-barcode:before{content:""}.fa-plus-minus:before{content:""}.fa-video:before{content:""}.fa-video-camera:before{content:""}.fa-graduation-cap:before{content:""}.fa-mortar-board:before{content:""}.fa-hand-holding-medical:before{content:""}.fa-person-circle-check:before{content:""}.fa-turn-up:before{content:""}.fa-level-up-alt:before{content:""}.sr-only,.fa-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.sr-only-focusable:not(:focus),.fa-sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:root,:host{--fa-style-family-brands: "Font Awesome 6 Brands";--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(./fa-brands-400.woff2) format("woff2"),url(./fa-brands-400.ttf) format("truetype")}.fab,.fa-brands{font-weight:400}.fa-monero:before{content:""}.fa-hooli:before{content:""}.fa-yelp:before{content:""}.fa-cc-visa:before{content:""}.fa-lastfm:before{content:""}.fa-shopware:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-aws:before{content:""}.fa-redhat:before{content:""}.fa-yoast:before{content:""}.fa-cloudflare:before{content:""}.fa-ups:before{content:""}.fa-pixiv:before{content:""}.fa-wpexplorer:before{content:""}.fa-dyalog:before{content:""}.fa-bity:before{content:""}.fa-stackpath:before{content:""}.fa-buysellads:before{content:""}.fa-first-order:before{content:""}.fa-modx:before{content:""}.fa-guilded:before{content:""}.fa-vnv:before{content:""}.fa-square-js:before{content:""}.fa-js-square:before{content:""}.fa-microsoft:before{content:""}.fa-qq:before{content:""}.fa-orcid:before{content:""}.fa-java:before{content:""}.fa-invision:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-centercode:before{content:""}.fa-glide-g:before{content:""}.fa-drupal:before{content:""}.fa-hire-a-helper:before{content:""}.fa-creative-commons-by:before{content:""}.fa-unity:before{content:""}.fa-whmcs:before{content:""}.fa-rocketchat:before{content:""}.fa-vk:before{content:""}.fa-untappd:before{content:""}.fa-mailchimp:before{content:""}.fa-css3-alt:before{content:""}.fa-square-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-contao:before{content:""}.fa-square-font-awesome:before{content:""}.fa-deskpro:before{content:""}.fa-brave:before{content:""}.fa-sistrix:before{content:""}.fa-square-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-battle-net:before{content:""}.fa-the-red-yeti:before{content:""}.fa-square-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-edge:before{content:""}.fa-threads:before{content:""}.fa-napster:before{content:""}.fa-square-snapchat:before{content:""}.fa-snapchat-square:before{content:""}.fa-google-plus-g:before{content:""}.fa-artstation:before{content:""}.fa-markdown:before{content:""}.fa-sourcetree:before{content:""}.fa-google-plus:before{content:""}.fa-diaspora:before{content:""}.fa-foursquare:before{content:""}.fa-stack-overflow:before{content:""}.fa-github-alt:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-pagelines:before{content:""}.fa-algolia:before{content:""}.fa-red-river:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-safari:before{content:""}.fa-google:before{content:""}.fa-square-font-awesome-stroke:before{content:""}.fa-font-awesome-alt:before{content:""}.fa-atlassian:before{content:""}.fa-linkedin-in:before{content:""}.fa-digital-ocean:before{content:""}.fa-nimblr:before{content:""}.fa-chromecast:before{content:""}.fa-evernote:before{content:""}.fa-hacker-news:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-adversal:before{content:""}.fa-creative-commons:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-fonticons:before{content:""}.fa-weixin:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-codepen:before{content:""}.fa-git-alt:before{content:""}.fa-lyft:before{content:""}.fa-rev:before{content:""}.fa-windows:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-square-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-meetup:before{content:""}.fa-centos:before{content:""}.fa-adn:before{content:""}.fa-cloudsmith:before{content:""}.fa-opensuse:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-square-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-codiepie:before{content:""}.fa-node:before{content:""}.fa-mix:before{content:""}.fa-steam:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-scribd:before{content:""}.fa-debian:before{content:""}.fa-openid:before{content:""}.fa-instalod:before{content:""}.fa-expeditedssl:before{content:""}.fa-sellcast:before{content:""}.fa-square-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-r-project:before{content:""}.fa-delicious:before{content:""}.fa-freebsd:before{content:""}.fa-vuejs:before{content:""}.fa-accusoft:before{content:""}.fa-ioxhost:before{content:""}.fa-fonticons-fi:before{content:""}.fa-app-store:before{content:""}.fa-cc-mastercard:before{content:""}.fa-itunes-note:before{content:""}.fa-golang:before{content:""}.fa-kickstarter:before{content:""}.fa-grav:before{content:""}.fa-weibo:before{content:""}.fa-uncharted:before{content:""}.fa-firstdraft:before{content:""}.fa-square-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-wikipedia-w:before{content:""}.fa-wpressr:before{content:""}.fa-rendact:before{content:""}.fa-angellist:before{content:""}.fa-galactic-republic:before{content:""}.fa-nfc-directional:before{content:""}.fa-skype:before{content:""}.fa-joget:before{content:""}.fa-fedora:before{content:""}.fa-stripe-s:before{content:""}.fa-meta:before{content:""}.fa-laravel:before{content:""}.fa-hotjar:before{content:""}.fa-bluetooth-b:before{content:""}.fa-square-letterboxd:before{content:""}.fa-sticker-mule:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-hips:before{content:""}.fa-behance:before{content:""}.fa-reddit:before{content:""}.fa-discord:before{content:""}.fa-chrome:before{content:""}.fa-app-store-ios:before{content:""}.fa-cc-discover:before{content:""}.fa-wpbeginner:before{content:""}.fa-confluence:before{content:""}.fa-shoelace:before{content:""}.fa-mdb:before{content:""}.fa-dochub:before{content:""}.fa-accessible-icon:before{content:""}.fa-ebay:before{content:""}.fa-amazon:before{content:""}.fa-unsplash:before{content:""}.fa-yarn:before{content:""}.fa-square-steam:before{content:""}.fa-steam-square:before{content:""}.fa-500px:before{content:""}.fa-square-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-asymmetrik:before{content:""}.fa-font-awesome:before{content:""}.fa-font-awesome-flag:before{content:""}.fa-font-awesome-logo-full:before{content:""}.fa-gratipay:before{content:""}.fa-apple:before{content:""}.fa-hive:before{content:""}.fa-gitkraken:before{content:""}.fa-keybase:before{content:""}.fa-apple-pay:before{content:""}.fa-padlet:before{content:""}.fa-amazon-pay:before{content:""}.fa-square-github:before{content:""}.fa-github-square:before{content:""}.fa-stumbleupon:before{content:""}.fa-fedex:before{content:""}.fa-phoenix-framework:before{content:""}.fa-shopify:before{content:""}.fa-neos:before{content:""}.fa-square-threads:before{content:""}.fa-hackerrank:before{content:""}.fa-researchgate:before{content:""}.fa-swift:before{content:""}.fa-angular:before{content:""}.fa-speakap:before{content:""}.fa-angrycreative:before{content:""}.fa-y-combinator:before{content:""}.fa-empire:before{content:""}.fa-envira:before{content:""}.fa-google-scholar:before{content:""}.fa-square-gitlab:before{content:""}.fa-gitlab-square:before{content:""}.fa-studiovinari:before{content:""}.fa-pied-piper:before{content:""}.fa-wordpress:before{content:""}.fa-product-hunt:before{content:""}.fa-firefox:before{content:""}.fa-linode:before{content:""}.fa-goodreads:before{content:""}.fa-square-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-sith:before{content:""}.fa-themeisle:before{content:""}.fa-page4:before{content:""}.fa-hashnode:before{content:""}.fa-react:before{content:""}.fa-cc-paypal:before{content:""}.fa-squarespace:before{content:""}.fa-cc-stripe:before{content:""}.fa-creative-commons-share:before{content:""}.fa-bitcoin:before{content:""}.fa-keycdn:before{content:""}.fa-opera:before{content:""}.fa-itch-io:before{content:""}.fa-umbraco:before{content:""}.fa-galactic-senate:before{content:""}.fa-ubuntu:before{content:""}.fa-draft2digital:before{content:""}.fa-stripe:before{content:""}.fa-houzz:before{content:""}.fa-gg:before{content:""}.fa-dhl:before{content:""}.fa-square-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-xing:before{content:""}.fa-blackberry:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-playstation:before{content:""}.fa-quinscape:before{content:""}.fa-less:before{content:""}.fa-blogger-b:before{content:""}.fa-opencart:before{content:""}.fa-vine:before{content:""}.fa-signal-messenger:before{content:""}.fa-paypal:before{content:""}.fa-gitlab:before{content:""}.fa-typo3:before{content:""}.fa-reddit-alien:before{content:""}.fa-yahoo:before{content:""}.fa-dailymotion:before{content:""}.fa-affiliatetheme:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-bootstrap:before{content:""}.fa-odnoklassniki:before{content:""}.fa-nfc-symbol:before{content:""}.fa-mintbit:before{content:""}.fa-ethereum:before{content:""}.fa-speaker-deck:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-patreon:before{content:""}.fa-avianex:before{content:""}.fa-ello:before{content:""}.fa-gofore:before{content:""}.fa-bimobject:before{content:""}.fa-brave-reverse:before{content:""}.fa-facebook-f:before{content:""}.fa-square-google-plus:before{content:""}.fa-google-plus-square:before{content:""}.fa-mandalorian:before{content:""}.fa-first-order-alt:before{content:""}.fa-osi:before{content:""}.fa-google-wallet:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-periscope:before{content:""}.fa-fulcrum:before{content:""}.fa-cloudscale:before{content:""}.fa-forumbee:before{content:""}.fa-mizuni:before{content:""}.fa-schlix:before{content:""}.fa-square-xing:before{content:""}.fa-xing-square:before{content:""}.fa-bandcamp:before{content:""}.fa-wpforms:before{content:""}.fa-cloudversify:before{content:""}.fa-usps:before{content:""}.fa-megaport:before{content:""}.fa-magento:before{content:""}.fa-spotify:before{content:""}.fa-optin-monster:before{content:""}.fa-fly:before{content:""}.fa-aviato:before{content:""}.fa-itunes:before{content:""}.fa-cuttlefish:before{content:""}.fa-blogger:before{content:""}.fa-flickr:before{content:""}.fa-viber:before{content:""}.fa-soundcloud:before{content:""}.fa-digg:before{content:""}.fa-tencent-weibo:before{content:""}.fa-letterboxd:before{content:""}.fa-symfony:before{content:""}.fa-maxcdn:before{content:""}.fa-etsy:before{content:""}.fa-facebook-messenger:before{content:""}.fa-audible:before{content:""}.fa-think-peaks:before{content:""}.fa-bilibili:before{content:""}.fa-erlang:before{content:""}.fa-x-twitter:before{content:""}.fa-cotton-bureau:before{content:""}.fa-dashcube:before{content:""}.fa-42-group:before{content:""}.fa-innosoft:before{content:""}.fa-stack-exchange:before{content:""}.fa-elementor:before{content:""}.fa-square-pied-piper:before{content:""}.fa-pied-piper-square:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-palfed:before{content:""}.fa-superpowers:before{content:""}.fa-resolving:before{content:""}.fa-xbox:before{content:""}.fa-searchengin:before{content:""}.fa-tiktok:before{content:""}.fa-square-facebook:before{content:""}.fa-facebook-square:before{content:""}.fa-renren:before{content:""}.fa-linux:before{content:""}.fa-glide:before{content:""}.fa-linkedin:before{content:""}.fa-hubspot:before{content:""}.fa-deploydog:before{content:""}.fa-twitch:before{content:""}.fa-ravelry:before{content:""}.fa-mixer:before{content:""}.fa-square-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-vimeo:before{content:""}.fa-mendeley:before{content:""}.fa-uniregistry:before{content:""}.fa-figma:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-dropbox:before{content:""}.fa-instagram:before{content:""}.fa-cmplid:before{content:""}.fa-upwork:before{content:""}.fa-facebook:before{content:""}.fa-gripfire:before{content:""}.fa-jedi-order:before{content:""}.fa-uikit:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-phabricator:before{content:""}.fa-ussunnah:before{content:""}.fa-earlybirds:before{content:""}.fa-trade-federation:before{content:""}.fa-autoprefixer:before{content:""}.fa-whatsapp:before{content:""}.fa-slideshare:before{content:""}.fa-google-play:before{content:""}.fa-viadeo:before{content:""}.fa-line:before{content:""}.fa-google-drive:before{content:""}.fa-servicestack:before{content:""}.fa-simplybuilt:before{content:""}.fa-bitbucket:before{content:""}.fa-imdb:before{content:""}.fa-deezer:before{content:""}.fa-raspberry-pi:before{content:""}.fa-jira:before{content:""}.fa-docker:before{content:""}.fa-screenpal:before{content:""}.fa-bluetooth:before{content:""}.fa-gitter:before{content:""}.fa-d-and-d:before{content:""}.fa-microblog:before{content:""}.fa-cc-diners-club:before{content:""}.fa-gg-circle:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-kickstarter-k:before{content:""}.fa-yandex:before{content:""}.fa-readme:before{content:""}.fa-html5:before{content:""}.fa-sellsy:before{content:""}.fa-sass:before{content:""}.fa-wirsindhandwerk:before{content:""}.fa-wsh:before{content:""}.fa-buromobelexperte:before{content:""}.fa-salesforce:before{content:""}.fa-octopus-deploy:before{content:""}.fa-medapps:before{content:""}.fa-ns8:before{content:""}.fa-pinterest-p:before{content:""}.fa-apper:before{content:""}.fa-fort-awesome:before{content:""}.fa-waze:before{content:""}.fa-cc-jcb:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-rust:before{content:""}.fa-wix:before{content:""}.fa-square-behance:before{content:""}.fa-behance-square:before{content:""}.fa-supple:before{content:""}.fa-webflow:before{content:""}.fa-rebel:before{content:""}.fa-css3:before{content:""}.fa-staylinked:before{content:""}.fa-kaggle:before{content:""}.fa-space-awesome:before{content:""}.fa-deviantart:before{content:""}.fa-cpanel:before{content:""}.fa-goodreads-g:before{content:""}.fa-square-git:before{content:""}.fa-git-square:before{content:""}.fa-square-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-trello:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-get-pocket:before{content:""}.fa-perbyte:before{content:""}.fa-grunt:before{content:""}.fa-weebly:before{content:""}.fa-connectdevelop:before{content:""}.fa-leanpub:before{content:""}.fa-black-tie:before{content:""}.fa-themeco:before{content:""}.fa-python:before{content:""}.fa-android:before{content:""}.fa-bots:before{content:""}.fa-free-code-camp:before{content:""}.fa-hornbill:before{content:""}.fa-js:before{content:""}.fa-ideal:before{content:""}.fa-git:before{content:""}.fa-dev:before{content:""}.fa-sketch:before{content:""}.fa-yandex-international:before{content:""}.fa-cc-amex:before{content:""}.fa-uber:before{content:""}.fa-github:before{content:""}.fa-php:before{content:""}.fa-alipay:before{content:""}.fa-youtube:before{content:""}.fa-skyatlas:before{content:""}.fa-firefox-browser:before{content:""}.fa-replyd:before{content:""}.fa-suse:before{content:""}.fa-jenkins:before{content:""}.fa-twitter:before{content:""}.fa-rockrms:before{content:""}.fa-pinterest:before{content:""}.fa-buffer:before{content:""}.fa-npm:before{content:""}.fa-yammer:before{content:""}.fa-btc:before{content:""}.fa-dribbble:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-internet-explorer:before{content:""}.fa-stubber:before{content:""}.fa-telegram:before{content:""}.fa-telegram-plane:before{content:""}.fa-old-republic:before{content:""}.fa-odysee:before{content:""}.fa-square-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-node-js:before{content:""}.fa-edge-legacy:before{content:""}.fa-slack:before{content:""}.fa-slack-hash:before{content:""}.fa-medrt:before{content:""}.fa-usb:before{content:""}.fa-tumblr:before{content:""}.fa-vaadin:before{content:""}.fa-quora:before{content:""}.fa-square-x-twitter:before{content:""}.fa-reacteurope:before{content:""}.fa-medium:before{content:""}.fa-medium-m:before{content:""}.fa-amilia:before{content:""}.fa-mixcloud:before{content:""}.fa-flipboard:before{content:""}.fa-viacoin:before{content:""}.fa-critical-role:before{content:""}.fa-sitrox:before{content:""}.fa-discourse:before{content:""}.fa-joomla:before{content:""}.fa-mastodon:before{content:""}.fa-airbnb:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-buy-n-large:before{content:""}.fa-gulp:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-strava:before{content:""}.fa-ember:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-teamspeak:before{content:""}.fa-pushed:before{content:""}.fa-wordpress-simple:before{content:""}.fa-nutritionix:before{content:""}.fa-wodu:before{content:""}.fa-google-pay:before{content:""}.fa-intercom:before{content:""}.fa-zhihu:before{content:""}.fa-korvue:before{content:""}.fa-pix:before{content:""}.fa-steam-symbol:before{content:""}:root,:host{--fa-style-family-classic: "Font Awesome 6 Free";--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(./fa-regular-400.woff2) format("woff2"),url(./fa-regular-400.ttf) format("truetype")}.far,.fa-regular{font-weight:400}:root,:host{--fa-style-family-classic: "Font Awesome 6 Free";--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(./fa-solid-900.woff2) format("woff2"),url(./fa-solid-900.ttf) format("truetype")}.fas,.fa-solid{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(./fa-brands-400.woff2) format("woff2"),url(./fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(./fa-solid-900.woff2) format("woff2"),url(./fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(./fa-regular-400.woff2) format("woff2"),url(./fa-regular-400.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(./fa-solid-900.woff2) format("woff2"),url(./fa-solid-900.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(./fa-brands-400.woff2) format("woff2"),url(./fa-brands-400.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(./fa-regular-400.woff2) format("woff2"),url(./fa-regular-400.ttf) format("truetype");unicode-range:U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC}@font-face{font-family:FontAwesome;font-display:block;src:url(./fa-v4compatibility.woff2) format("woff2"),url(./fa-v4compatibility.ttf) format("truetype");unicode-range:U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/index.html b/resources/[freizeit]/[gym]/ps-ui/web/build/index.html new file mode 100644 index 000000000..fdd728b4c --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/build/index.html @@ -0,0 +1 @@ +PS-UI
\ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/index.js b/resources/[freizeit]/[gym]/ps-ui/web/build/index.js new file mode 100644 index 000000000..29c8019ff --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/build/index.js @@ -0,0 +1,73 @@ +var _s=Object.defineProperty;var ms=(t,e,r)=>e in t?_s(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r;var bt=(t,e,r)=>(ms(t,typeof e!="symbol"?e+"":e,r),r);(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const p of document.querySelectorAll('link[rel="modulepreload"]'))n(p);new MutationObserver(p=>{for(const b of p)if(b.type==="childList")for(const T of b.addedNodes)T.tagName==="LINK"&&T.rel==="modulepreload"&&n(T)}).observe(document,{childList:!0,subtree:!0});function r(p){const b={};return p.integrity&&(b.integrity=p.integrity),p.referrerPolicy&&(b.referrerPolicy=p.referrerPolicy),p.crossOrigin==="use-credentials"?b.credentials="include":p.crossOrigin==="anonymous"?b.credentials="omit":b.credentials="same-origin",b}function n(p){if(p.ep)return;p.ep=!0;const b=r(p);fetch(p.href,b)}})();function Q(){}const Nr=t=>t;function Yr(t){return t()}function Ht(){return Object.create(null)}function Re(t){t.forEach(Yr)}function Et(t){return typeof t=="function"}function de(t,e){return t!=t?e==e:t!==e||t&&typeof t=="object"||typeof t=="function"}let at;function Ut(t,e){return t===e?!0:(at||(at=document.createElement("a")),at.href=e,t===at.href)}function vs(t){return Object.keys(t).length===0}function gs(t,...e){if(t==null){for(const n of e)n(void 0);return Q}const r=t.subscribe(...e);return r.unsubscribe?()=>r.unsubscribe():r}function fe(t,e,r){t.$$.on_destroy.push(gs(e,r))}function Ae(t){return t??""}function qt(t){const e=typeof t=="string"&&t.match(/^\s*(-?[\d.]+)([^\s]*)\s*$/);return e?[parseFloat(e[1]),e[2]||"px"]:[t,"px"]}const Fr=typeof window<"u";let ys=Fr?()=>window.performance.now():()=>Date.now(),It=Fr?t=>requestAnimationFrame(t):Q;const Xe=new Set;function Xr(t){Xe.forEach(e=>{e.c(t)||(Xe.delete(e),e.f())}),Xe.size!==0&&It(Xr)}function bs(t){let e;return Xe.size===0&&It(Xr),{promise:new Promise(r=>{Xe.add(e={c:t,f:r})}),abort(){Xe.delete(e)}}}function A(t,e){t.appendChild(e)}function Hr(t){if(!t)return document;const e=t.getRootNode?t.getRootNode():t.ownerDocument;return e&&e.host?e:t.ownerDocument}function ks(t){const e=B("style");return e.textContent="/* empty */",ws(Hr(t),e),e.sheet}function ws(t,e){return A(t.head||t,e),e.sheet}function q(t,e,r){t.insertBefore(e,r||null)}function U(t){t.parentNode&&t.parentNode.removeChild(t)}function Me(t,e){for(let r=0;rt.removeEventListener(e,r,n)}function _t(t){return function(e){return e.preventDefault(),t.call(this,e)}}function Z(t,e,r){r==null?t.removeAttribute(e):t.getAttribute(e)!==r&&t.setAttribute(e,r)}function Ss(t){return Array.from(t.childNodes)}function ce(t,e){e=""+e,t.data!==e&&(t.data=e)}function te(t,e,r,n){r==null?t.style.removeProperty(e):t.style.setProperty(e,r,n?"important":"")}function Ur(t,e,{bubbles:r=!1,cancelable:n=!1}={}){return new CustomEvent(t,{detail:e,bubbles:r,cancelable:n})}const ut=new Map;let ct=0;function Ts(t){let e=5381,r=t.length;for(;r--;)e=(e<<5)-e^t.charCodeAt(r);return e>>>0}function Ps(t,e){const r={stylesheet:ks(e),rules:{}};return ut.set(t,r),r}function Vt(t,e,r,n,p,b,T,w=0){const d=16.666/n;let m=`{ +`;for(let y=0;y<=1;y+=d){const a=e+(r-e)*b(y);m+=y*100+`%{${T(a,1-a)}} +`}const k=m+`100% {${T(r,1-r)}} +}`,g=`__svelte_${Ts(k)}_${w}`,s=Hr(t),{stylesheet:l,rules:o}=ut.get(s)||Ps(s,t);o[g]||(o[g]=!0,l.insertRule(`@keyframes ${g} ${k}`,l.cssRules.length));const h=t.style.animation||"";return t.style.animation=`${h?`${h}, `:""}${g} ${n}ms linear ${p}ms 1 both`,ct+=1,g}function Cs(t,e){const r=(t.style.animation||"").split(", "),n=r.filter(e?b=>b.indexOf(e)<0:b=>b.indexOf("__svelte")===-1),p=r.length-n.length;p&&(t.style.animation=n.join(", "),ct-=p,ct||Ms())}function Ms(){It(()=>{ct||(ut.forEach(t=>{const{ownerNode:e}=t.stylesheet;e&&U(e)}),ut.clear())})}let tt;function et(t){tt=t}function Rt(){if(!tt)throw new Error("Function called outside component initialization");return tt}function Oe(t){Rt().$$.on_mount.push(t)}function qr(t){Rt().$$.on_destroy.push(t)}function mt(){const t=Rt();return(e,r,{cancelable:n=!1}={})=>{const p=t.$$.callbacks[e];if(p){const b=Ur(e,r,{cancelable:n});return p.slice().forEach(T=>{T.call(t,b)}),!b.defaultPrevented}return!0}}const Fe=[],Ct=[];let He=[];const Gt=[],Os=Promise.resolve();let Mt=!1;function Ds(){Mt||(Mt=!0,Os.then(Vr))}function Ue(t){He.push(t)}const wt=new Set;let Ne=0;function Vr(){if(Ne!==0)return;const t=tt;do{try{for(;Net.indexOf(n)===-1?e.push(n):r.push(n)),r.forEach(n=>n()),He=e}let Je;function Is(){return Je||(Je=Promise.resolve(),Je.then(()=>{Je=null})),Je}function St(t,e,r){t.dispatchEvent(Ur(`${e?"intro":"outro"}${r}`))}const ot=new Set;let Ie;function me(){Ie={r:0,c:[],p:Ie}}function ve(){Ie.r||Re(Ie.c),Ie=Ie.p}function F(t,e){t&&t.i&&(ot.delete(t),t.i(e))}function H(t,e,r,n){if(t&&t.o){if(ot.has(t))return;ot.add(t),Ie.c.push(()=>{ot.delete(t),n&&(r&&t.d(1),n())}),t.o(e)}else n&&n()}const Rs={duration:0};function ht(t,e,r,n){let b=e(t,r,{direction:"both"}),T=n?0:1,w=null,d=null,m=null,k;function g(){m&&Cs(t,m)}function s(o,h){const y=o.b-T;return h*=Math.abs(y),{a:T,b:o.b,d:y,duration:h,start:o.start,end:o.start+h,group:o.group}}function l(o){const{delay:h=0,duration:y=300,easing:a=Nr,tick:f=Q,css:_}=b||Rs,u={start:ys()+h,b:o};o||(u.group=Ie,Ie.r+=1),"inert"in t&&(o?k!==void 0&&(t.inert=k):(k=t.inert,t.inert=!0)),w||d?d=u:(_&&(g(),m=Vt(t,T,o,y,h,a,_)),o&&f(0,1),w=s(u,y),Ue(()=>St(t,o,"start")),bs(S=>{if(d&&S>d.start&&(w=s(d,y),d=null,St(t,w.b,"start"),_&&(g(),m=Vt(t,T,w.b,w.duration,0,a,b.css))),w){if(S>=w.end)f(T=w.b,1-T),St(t,w.b,"end"),d||(w.b?g():--w.group.r||Re(w.group.c)),w=null;else if(S>=w.start){const I=S-w.start;T=w.a+w.d*a(I/w.duration),f(T,1-T)}}return!!(w||d)}))}return{run(o){Et(b)?Is().then(()=>{b=b({direction:o?"in":"out"}),l(o)}):l(o)},end(){g(),w=d=null}}}function le(t){return(t==null?void 0:t.length)!==void 0?t:Array.from(t)}function ue(t){t&&t.c()}function ae(t,e,r){const{fragment:n,after_update:p}=t.$$;n&&n.m(e,r),Ue(()=>{const b=t.$$.on_mount.map(Yr).filter(Et);t.$$.on_destroy?t.$$.on_destroy.push(...b):Re(b),t.$$.on_mount=[]}),p.forEach(Ue)}function oe(t,e){const r=t.$$;r.fragment!==null&&(Es(r.after_update),Re(r.on_destroy),r.fragment&&r.fragment.d(e),r.on_destroy=r.fragment=null,r.ctx=[])}function Zs(t,e){t.$$.dirty[0]===-1&&(Fe.push(t),Ds(),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<{const o=l.length?l[0]:s;return m.ctx&&p(m.ctx[g],m.ctx[g]=o)&&(!m.skip_bound&&m.bound[g]&&m.bound[g](o),k&&Zs(t,g)),s}):[],m.update(),k=!0,Re(m.before_update),m.fragment=n?n(m.ctx):!1,e.target){if(e.hydrate){const g=Ss(e.target);m.fragment&&m.fragment.l(g),g.forEach(U)}else m.fragment&&m.fragment.c();e.intro&&F(t.$$.fragment),ae(t,e.target,e.anchor),Vr()}et(d)}class ye{constructor(){bt(this,"$$");bt(this,"$$set")}$destroy(){oe(this,1),this.$destroy=Q}$on(e,r){if(!Et(r))return Q;const n=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return n.push(r),()=>{const p=n.indexOf(r);p!==-1&&n.splice(p,1)}}$set(e){this.$$set&&!vs(e)&&(this.$$.skip_bound=!0,this.$$set(e),this.$$.skip_bound=!1)}}const As="4";typeof window<"u"&&(window.__svelte||(window.__svelte={v:new Set})).v.add(As);function $s(t){const e=t-1;return e*e*e+1}function Wt(t,{delay:e=0,duration:r=400,easing:n=Nr}={}){const p=+getComputedStyle(t).opacity;return{delay:e,duration:r,easing:n,css:b=>`opacity: ${b*p}`}}function Kt(t,{delay:e=0,duration:r=400,easing:n=$s,x:p=0,y:b=0,opacity:T=0}={}){const w=getComputedStyle(t),d=+w.opacity,m=w.transform==="none"?"":w.transform,k=d*(1-T),[g,s]=qt(p),[l,o]=qt(b);return{delay:e,duration:r,easing:n,css:(h,y)=>` + transform: ${m} translate(${(1-h)*g}${s}, ${(1-h)*l}${o}); + opacity: ${d-k*y}`}}const Ye=[];function Te(t,e=Q){let r;const n=new Set;function p(w){if(de(t,w)&&(t=w,r)){const d=!Ye.length;for(const m of n)m[1](),Ye.push(m,t);if(d){for(let m=0;m{n.delete(m),n.size===0&&r&&(r(),r=null)}}return{set:p,update:b,subscribe:T}}var ee=(t=>(t.StatusBar="StatusBar",t.Menu="Menu",t.Input="Input",t.Game="Game",t.MemoryGame="MemoryGame",t.Image="ShowImage",t.DrawText="DrawText",t.Notification="Notify",t.None="hideUi",t))(ee||{}),_e=(t=>(t.Scrambler="Scramber",t.NumberMaze="NumberMaze",t.Memory="MemoryGame",t.NumberPuzzle="NumberPuzzle",t))(_e||{}),$e=(t=>(t.Connecting="CONNECTING TO INTERFACE",t.Connected="CONNECTED. GET READY.",t))($e||{});async function Pe(t,e={}){const r={method:"post",headers:{"Content-Type":"application/json; charset=UTF-8"},body:JSON.stringify(e)},p=(()=>{try{return window.GetParentResourceName()}catch{return"ps-ui"}})();try{return await(await fetch(`https://${p}/${t}`,r)).json()}catch{}}const xe=Te({game:"",gameName:"",gameDescription:"",amountOfAnswers:0,gameTime:0,maxAnswersIncorrect:0}),Ze=Te(),Be=Te(),Le=Te(),Tt=Te(!0);function Ls(t){const e=t;switch(Be.set(e),e.game){case _e.Memory:{we.set(ee.Game),Ze.set(_e.Memory),Le.set($e.Connecting),xe.set({game:_e.Memory,gameName:e.gameName,gameDescription:e.gameDescription,gameTime:e.gameTime||2,amountOfAnswers:e.amountOfAnswers||15,maxAnswersIncorrect:e.maxAnswersIncorrect||2});break}case _e.Scrambler:{we.set(ee.Game),Ze.set(_e.Scrambler),Le.set($e.Connecting),xe.set({game:_e.Scrambler,gameName:e.gameName,gameDescription:e.gameDescription,gameTime:e.gameTime||2,amountOfAnswers:e.amountOfAnswers||4,maxAnswersIncorrect:e.maxAnswersIncorrect||0});break}case _e.NumberMaze:{we.set(ee.Game),Ze.set(_e.NumberMaze),Le.set($e.Connecting),xe.set({game:_e.NumberMaze,gameName:e.gameName,gameDescription:e.gameDescription,gameTime:e.gameTime||2,amountOfAnswers:e.amountOfAnswers||4,maxAnswersIncorrect:e.maxAnswersIncorrect||0});break}case _e.NumberPuzzle:{we.set(ee.Game),Ze.set(_e.NumberPuzzle),Le.set($e.Connecting),xe.set({game:_e.NumberPuzzle,gameName:e.gameName,gameDescription:e.gameDescription,gameTime:e.gameTime||2,amountOfAnswers:e.amountOfAnswers||4,maxAnswersIncorrect:e.maxAnswersIncorrect||0});break}}}function vt(t){Pe("minigame:callback",t),Gr()}function Gr(){rt(),Ze.set(null),Be.set(null),xe.set({game:"",gameName:"",gameDescription:"",amountOfAnswers:0,gameTime:0,maxAnswersIncorrect:0})}const we=Te(),De=Te(),Bs=!1;function rt(){De.set(!1),we.set(void 0),Ze.set(void 0)}function pe(t,e){return Math.floor(Math.random()*(e-t)+t)}function Jt(t){return document.documentElement.clientWidth*t/100}function zs(t){let e,r,n;return{c(){e=kt("svg"),r=kt("g"),n=kt("path"),Z(n,"d",`M230.3,455.7c-8.3,0-16.6,0-25,0c-8.5-3.1-17.2-5.7-25.4-9.4c-21.9-9.8-42.1-22.2-58.1-40.4c-10-11.3-16.2-24.2-15.6-39.9\r + c0.5-13.5,0.1-27,0.1-40.5c0-2-0.2-3.2-2.5-4.1c-24.3-9.4-38-29.4-38.1-55.6c-0.1-24.7-0.3-49.4,0.1-74.1c0.2-9.7,0.9-19.6,3.2-29\r + c12.1-47.6,42.8-78.7,87.9-96.4c21.1-8.3,43.3-10.3,65.8-10c33.5,0.4,64.5,8.9,91.8,28.7c35.8,26,56,60.8,56.8,105.6\r + c0.5,25.3,0.2,50.7,0,76c-0.2,25.5-14.4,45.8-37.8,54.6c-2.4,0.9-2.8,2.1-2.8,4.3c0.1,14.3-0.1,28.6,0.1,42.9\r + c0.2,11.1-3.6,20.9-9.8,29.8c-10,14.4-23.5,24.8-38.1,34C266.6,442.5,249.2,450.7,230.3,455.7z M165.8,219.1\r + c-4.7,0.4-9.3,0.5-14,1.1c-12.7,1.5-22,8-26.3,20.1c-4.1,11.4-2.3,22.9,2.4,33.7c3.9,8.9,13.3,13.7,22.6,10.8c9-2.8,17.7-7.2,26-12\r + c8.6-5,15.2-12.4,19.6-21.6c5.8-12,2.3-22.3-9.5-28.3C180,219.5,173,218.9,165.8,219.1z M274.1,218.4c-5.8,1-11.9,1.4-17.5,3.2\r + c-14.4,4.7-19.2,16.8-12.3,30.2c1.7,3.3,3.8,6.5,6.2,9.4c9.1,11.3,21.8,17.4,34.8,22.6c11.9,4.8,24.3-0.9,28.1-13.1\r + c1.9-6.2,2.5-13,2.9-19.5c0.7-12.6-7.2-24.7-19.2-28.7C289.9,220.2,282,219.7,274.1,218.4z M212.6,371.3c-0.5-6.4-2.3-9-6.2-9.2\r + c-3.9-0.2-5.8,2.4-6.9,8.9c-4,0-7.9,0-12.1,0c0.3-4.2-0.8-7.4-4.8-8.6c-4.1-1.2-6.5,1.3-8.5,4.6c-3.7-2-5.4-4.9-5.4-8.9\r + c0-5.8,0-11.7,0-17.5c0-6.9-0.8-8.1-7.2-10.2c-9.7-3.3-19.4-6.5-29.2-9.7c-1.3-0.4-2.7-0.9-4.1-1c-3-0.2-5.1,1.3-6,4\r + c-1,2.7-0.2,5.2,2.2,6.9c1.2,0.9,2.8,1.4,4.2,1.9c8.4,2.8,16.7,5.7,25.1,8.4c2,0.6,2.6,1.6,2.6,3.6c-0.1,4.7,0,9.4,0,14\r + c0,7,2.8,12.6,8.2,16.9c8.1,6.6,17.7,8.5,27.7,8.5c17,0.1,34.1,0.3,51.1-0.1c6.8-0.2,13.7-1.2,20.3-3c9.4-2.7,15.9-8.8,16.8-19.2\r + c0.5-5.4,0.7-10.9,0.6-16.3c0-2.6,0.7-3.9,3.3-4.7c8.7-2.7,17.2-5.7,25.8-8.8c4.8-1.7,6.3-6.8,3.1-10.2c-2.4-2.6-5.3-2.2-8.3-1.2\r + c-10.3,3.5-20.6,7-31,10.4c-3.8,1.2-5.4,3.6-5.3,7.5c0.1,6,0.2,12,0,17.9c-0.1,4.8-1.2,9.3-6.5,11.3c-1.1-3.4-3.1-5.9-6.7-5.4\r + c-5.1,0.6-5.4,4.8-5.7,9c-4.2,0-8.1,0-12.1,0c-0.5-6.3-2.3-8.9-6.2-9.1c-3.8-0.2-5.8,2.4-6.9,9.2\r + C220.6,371.3,216.7,371.3,212.6,371.3z M218,331C218,331,218,331,218,331c3.9,0,7.8,0.2,11.7-0.1c5.6-0.3,8.7-3,9.4-8.6\r + c0.4-3.4,0.3-7-0.1-10.5c-1.6-11.9-4.4-23.5-11.1-33.7c-5.3-8.2-13.3-8.9-18.6-1.1c-9,13.3-12.5,28.4-12.3,44.3\r + c0.1,5.9,3.9,9.2,9.8,9.5C210.4,331.2,214.2,331,218,331z`),Z(e,"version","1.1"),Z(e,"id","Layer_1"),Z(e,"xmlns","http://www.w3.org/2000/svg"),Z(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),Z(e,"x","0px"),Z(e,"y","0px"),Z(e,"viewBox","0 0 437.3 512"),te(e,"enable-background","new 0 0 437.3 512"),Z(e,"xml:space","preserve"),Z(e,"fill",t[0])},m(p,b){q(p,e,b),A(e,r),A(r,n)},p(p,[b]){b&1&&Z(e,"fill",p[0])},i:Q,o:Q,d(p){p&&U(e)}}}function js(t,e,r){let{color:n=""}=e;return t.$$set=p=>{"color"in p&&r(0,n=p.color)},[n]}class Zt extends ye{constructor(e){super(),ge(this,e,js,zs,de,{color:0})}}function Qt(t,e,r){const n=t.slice();return n[22]=e[r],n}function er(t){let e,r,n,p,b;function T(){return t[7](t[22])}return{c(){e=B("div"),Z(e,"id",r="each-cube-"+t[22].cubeIndex),te(e,"width","0px"),te(e,"height","0px"),te(e,"border","0px"),Z(e,"class",n="each-cube "+(t[1]?"cursor-pointer":"cursor-default")+" "+(t[1]?t[22].isClicked&&t[22].isCorrectAnswer?"ps-bg-green-cube":t[22].isClicked&&!t[22].isCorrectAnswer?"ps-bg-wrong-cube":"":t[22].isCorrectAnswer?"ps-bg-green-cube":"")+" svelte-1k21utl")},m(w,d){q(w,e,d),p||(b=Se(e,"click",T),p=!0)},p(w,d){t=w,d&4&&r!==(r="each-cube-"+t[22].cubeIndex)&&Z(e,"id",r),d&6&&n!==(n="each-cube "+(t[1]?"cursor-pointer":"cursor-default")+" "+(t[1]?t[22].isClicked&&t[22].isCorrectAnswer?"ps-bg-green-cube":t[22].isClicked&&!t[22].isCorrectAnswer?"ps-bg-wrong-cube":"":t[22].isCorrectAnswer?"ps-bg-green-cube":"")+" svelte-1k21utl")&&Z(e,"class",n)},d(w){w&&U(e),p=!1,b()}}}function Ns(t){let e,r,n,p,b,T,w,d,m,k,g,s,l=le(t[2]),o=[];for(let h=0;hr(10,n=c)),fe(t,xe,c=>r(11,p=c));const b=mt();let T=[{numberOfRowCol:5,cubeSize:"4.2vw",gap:"1vw"},{numberOfRowCol:6,cubeSize:"3.7vw",gap:"0.8vw"},{numberOfRowCol:7,cubeSize:"2.9vw",gap:"1vw"},{numberOfRowCol:8,cubeSize:"2.6vw",gap:"0.9vw"},{numberOfRowCol:9,cubeSize:"2.4vw",gap:"0.75vw"},{numberOfRowCol:10,cubeSize:"2.1vw",gap:"0.75vw"}],w=0,d=p.amountOfAnswers,m=p.gameTime*100,k=p.maxAnswersIncorrect,g=[],s=n.displayInitialAnswersFor*1e3,l,o=!1,h=!1,y=!1,a=n.gridSize*n.gridSize,f=[];Oe(()=>{for(;g.lengthC.numberOfRowCol===n.gridSize)[0];setTimeout(()=>{f.forEach(C=>{const E=document.getElementById("memory-game-container");E&&(E.style.gap=c.gap);const $=document.getElementById("each-cube-"+C.cubeIndex);$&&($.style.width=c.cubeSize,$.style.height=c.cubeSize,$.style.border="2px solid var(--color-green)")})},1500),setTimeout(()=>{r(1,o=!0),l=setInterval(_,10)},s+1500)});function _(){if(m<=0){r(5,h=!0),r(6,y=u()),clearInterval(l);return}m--,r(0,w=m/100)}function u(){let c=!1;f.map($=>{$.isCorrectAnswer&&$.isClicked&&(c=!0),$.isCorrectAnswer&&!$.isClicked&&(c=!1)});const E=S().lengthc.isClicked&&!c.isCorrectAnswer)}function I(c){if(!h){const C=f.findIndex(L=>L.cubeIndex===c.cubeIndex);let E=c;E.isClicked=!0,r(2,f[C]=E,f),S().length>=k&&(clearInterval(l),setTimeout(()=>{r(6,y=!1),r(0,w=0),r(5,h=!0)},500)),r(6,y=u()),y&&(clearInterval(l),r(0,w=0),r(5,h=!0))}}function D(c){let C=c.key;if(o&&["Escape"].includes(C)&&!h)switch(C){case"Escape":vt(!1);return}}const O=c=>I(c);return t.$$.update=()=>{t.$$.dirty&96&&h&&(Pe("minigame:callback",y),b("game-ended",{hackSuccess:y}),b("closeUI",{hackSuccess:y}))},[w,o,f,I,D,h,y,O]}class Fs extends ye{constructor(e){super(),ge(this,e,Ys,Ns,de,{})}}function Xs(t){let e;return{c(){e=B("h1"),e.textContent="Access denied",Z(e,"class","text-white text-3xl uppercase")},m(r,n){q(r,e,n)},d(r){r&&U(e)}}}function Hs(t){let e;return{c(){e=B("h1"),e.textContent="Access granted",Z(e,"class","text-white text-3xl uppercase")},m(r,n){q(r,e,n)},d(r){r&&U(e)}}}function Us(t){let e,r,n,p,b,T;p=new Zt({props:{color:qs}});function w(k,g){return k[0]?Hs:Xs}let d=w(t),m=d(t);return{c(){e=B("div"),r=B("div"),n=B("div"),ue(p.$$.fragment),b=G(),m.c(),Z(n,"class","skull-logo svelte-1ed0tmp"),Z(r,"class","result-wrapper ps-bg-darkblue svelte-1ed0tmp"),Z(e,"class","result-container svelte-1ed0tmp")},m(k,g){q(k,e,g),A(e,r),A(r,n),ae(p,n,null),A(r,b),m.m(r,null),T=!0},p(k,[g]){d!==(d=w(k))&&(m.d(1),m=d(k),m&&(m.c(),m.m(r,null)))},i(k){T||(F(p.$$.fragment,k),T=!0)},o(k){H(p.$$.fragment,k),T=!1},d(k){k&&U(e),oe(p),m.d()}}}const qs="var(--color-green)";function Vs(t,e,r){let{isSuccess:n=!1}=e;return Oe(()=>{setTimeout(()=>{Gr()},2e3)}),t.$$set=p=>{"isSuccess"in p&&r(0,n=p.isSuccess)},[n]}class Gs extends ye{constructor(e){super(),ge(this,e,Vs,Us,de,{isSuccess:0})}}function tr(t,e,r){const n=t.slice();return n[25]=e[r],n}function rr(t,e,r){const n=t.slice();return n[28]=e[r],n}function sr(t){let e,r=t[28].cubeValue+"",n;return{c(){e=B("p"),n=re(r),Z(e,"class","original-digits svelte-e3zhd8")},m(p,b){q(p,e,b),A(e,n)},p(p,b){b&2&&r!==(r=p[28].cubeValue+"")&&ce(n,r)},d(p){p&&U(e)}}}function ir(t){let e,r,n=t[25].cubeValue+"",p,b,T,w;return{c(){e=B("div"),r=B("p"),p=re(n),T=G(),Z(r,"class",b=!t[2]&&t[4].includes(t[25].cubeIndex)?"ps-text-red":""),Z(e,"id",w="each-cube-"+t[25].cubeIndex),Z(e,"class","each-cube svelte-e3zhd8")},m(d,m){q(d,e,m),A(e,r),A(r,p),A(e,T)},p(d,m){m&8&&n!==(n=d[25].cubeValue+"")&&ce(p,n),m&28&&b!==(b=!d[2]&&d[4].includes(d[25].cubeIndex)?"ps-text-red":"")&&Z(r,"class",b),m&8&&w!==(w="each-cube-"+d[25].cubeIndex)&&Z(e,"id",w)},d(d){d&&U(e)}}}function Ws(t){let e,r,n,p,b,T,w,d,m,k,g,s,l,o,h,y,a,f,_=le(t[1]),u=[];for(let D=0;D<_.length;D+=1)u[D]=sr(rr(t,_,D));let S=le(t[3]),I=[];for(let D=0;Dr(12,n=E)),fe(t,xe,E=>r(13,p=E));const b=mt(),T=()=>{let E="?";switch(n.sets){case"numeric":E="0123456789";break;case"alphabet":E="ABCDEFGHIJKLMNOPQRSTUVWXYZ";break;case"alphanumeric":E="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";break;case"greek":E="ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ";break;case"braille":E="⡀⡁⡂⡃⡄⡅⡆⡇⡈⡉⡊⡋⡌⡍⡎⡏⡐⡑⡒⡓⡔⡕⡖⡗⡘⡙⡚⡛⡜⡝⡞⡟⡠⡡⡢⡣⡤⡥⡦⡧⡨⡩⡪⡫⡬⡭⡮⡯⡰⡱⡲⡳⡴⡵⡶⡷⡸⡹⡺⡻⡼⡽⡾⡿⢀⢁⢂⢃⢄⢅⢆⢇⢈⢉⢊⢋⢌⢍⢎⢏⢐⢑⢒⢓⢔⢕⢖⢗⢘⢙⢚⢛⢜⢝⢞⢟⢠⢡⢢⢣⢤⢥⢦⢧⢨⢩⢪⢫⢬⢭⢮⢯⢰⢱⢲⢳⢴⢵⢶⢷⢸⢹⢺⢻⢼⢽⢾⢿⣀⣁⣂⣃⣄⣅⣆⣇⣈⣉⣊⣋⣌⣍⣎⣏⣐⣑⣒⣓⣔⣕⣖⣗⣘⣙⣚⣛⣜⣝⣞⣟⣠⣡⣢⣣⣤⣥⣦⣧⣨⣩⣪⣫⣬⣭⣮⣯⣰⣱⣲⣳⣴⣵⣶⣷⣸⣹⣺⣻⣼⣽⣾⣿";break;case"runes":E="ᚠᚥᚧᚨᚩᚬᚭᚻᛐᛑᛒᛓᛔᛕᛖᛗᛘᛙᛚᛛᛜᛝᛞᛟᛤ";break}return E.charAt(pe(0,E.length))};let w=0,d=p.amountOfAnswers,m=p.gameTime*100,k=[],g=n.changeBoardAfter*100,s=g,l,o=!1,h=!1,y=!1,a=80,f=[],_=[],u=43;Oe(()=>{for(let j=0;j{o=!0,l=setInterval(D,10)},1e3)});function S(){r(4,_=[u]);for(let E=1;E<4;E++)u+E>=80?_.push(u+E-80):_.push(u+E)}function I(){clearInterval(l),r(2,h=!0),setTimeout(()=>{Pe("minigame:callback",y),b("game-ended",{hackSuccess:y}),b("minigame:callback",y)},500)}function D(){if(m<=0){y=!1,I();return}else g<=0&&O();m--,g--,r(0,w=m/100)}function O(){g=s;let E=[];for(let $=0;$f[j]).map(j=>j.cubeValue),L=k.map(j=>j.cubeValue);JSON.stringify($)===JSON.stringify(L)?y=!0:y=!1,I()}function C(E){let $=E.key;if(o&&["a","w","s","d","A","W","S","D","ArrowUp","ArrowDown","ArrowRight","ArrowLeft","Enter","Escape"].includes($)&&!h)switch($){case"w":case"ArrowUp":r(6,u-=10),u<0&&r(6,u+=80);break;case"s":case"ArrowDown":r(6,u+=10),r(6,u%=80);break;case"a":case"ArrowLeft":r(6,u--,u),u<0&&r(6,u=79);break;case"d":case"ArrowRight":r(6,u++,u),r(6,u%=80);break;case"Enter":clearInterval(l),c();return;case"Escape":vt(!1);return}}return t.$$.update=()=>{t.$$.dirty&64&&u&&S()},[w,k,h,f,_,C,u]}class Qs extends ye{constructor(e){super(),ge(this,e,Js,Ws,de,{})}}function nr(t,e,r){const n=t.slice();return n[25]=e[r],n}function ei(t){let e,r=t[25].cubeValue+"",n;return{c(){e=B("p"),n=re(r),Z(e,"class","svelte-qz9lwn")},m(p,b){q(p,e,b),A(e,n)},p(p,b){b&2&&r!==(r=p[25].cubeValue+"")&&ce(n,r)},d(p){p&&U(e)}}}function ti(t){let e;return{c(){e=B("i"),Z(e,"class","fa-solid fa-network-wired svelte-qz9lwn")},m(r,n){q(r,e,n)},p:Q,d(r){r&&U(e)}}}function ri(t){let e;return{c(){e=B("i"),Z(e,"class","fa-solid fa-ethernet svelte-qz9lwn")},m(r,n){q(r,e,n)},p:Q,d(r){r&&U(e)}}}function ar(t){let e,r,n,p,b,T;function w(g,s){if(g[25].cubeIndex===0)return ri;if(g[25].cubeIndex===g[5]-1)return ti;if(!g[3]||g[4])return ei}let d=w(t),m=d&&d(t);function k(){return t[8](t[25])}return{c(){e=B("div"),m&&m.c(),r=G(),Z(e,"id",n="each-cube-"+t[25].cubeIndex),Z(e,"class",p="each-cube "+t[25].classList+" "+([0,t[5]-1].includes(t[25].cubeIndex)?"start-dest-cube":"")+" "+(!t[3]&&[t[2],t[2]*7].includes(t[25].cubeIndex)?"blinking-cube":"")+" svelte-qz9lwn")},m(g,s){q(g,e,s),m&&m.m(e,null),A(e,r),b||(T=Se(e,"click",k),b=!0)},p(g,s){t=g,d===(d=w(t))&&m?m.p(t,s):(m&&m.d(1),m=d&&d(t),m&&(m.c(),m.m(e,r))),s&2&&n!==(n="each-cube-"+t[25].cubeIndex)&&Z(e,"id",n),s&14&&p!==(p="each-cube "+t[25].classList+" "+([0,t[5]-1].includes(t[25].cubeIndex)?"start-dest-cube":"")+" "+(!t[3]&&[t[2],t[2]*7].includes(t[25].cubeIndex)?"blinking-cube":"")+" svelte-qz9lwn")&&Z(e,"class",p)},d(g){g&&U(e),m&&m.d(),b=!1,T()}}}function si(t){let e,r,n,p,b,T,w,d,m,k,g,s,l=le(t[1]),o=[];for(let h=0;h0?7-e:0}function ii(t,e,r){let n;fe(t,xe,$=>r(17,n=$));const p=mt();let b=0,T=n.gameTime*100,w=n.maxAnswersIncorrect,d,m=!1,k=!1,g=49,s=[],l,o=[],h=[],y=!1,a=0,f=0,_=!1;Oe(()=>{r(2,l=pe(1,4)),o=S(l),h=Object.keys(o);for(let $=0;${m=!0,d=setInterval(I,10)},1e3)});function u($){let L=or($),j=lr($);if(L===0){let V=pe(pe(1,j),j);return[V,$+V]}if(j===0){let V=pe(pe(1,L),L);return[V,$+V*7]}if(Math.floor(Math.random()*1e3+1)%2===0){let V=pe(pe(1,j),j);return[V,$+V]}else{let V=pe(pe(1,L),L);return[V,$+V*7]}}function S($){let L=[];for(pe(1,1e3)%2===0&&($*=7);$<48;){let j=u($);L[$]=j[0],$=j[1]}return L}function I(){if(T<=0){f=w,c();return}T--,r(0,b=T/100)}function D($,L){const j=$?" ps-bg-green-cube":" ps-bg-wrong-cube",V=L.classList+j;L.classList=V,r(1,s[L.cubeIndex]=L,s),r(1,s)}function O($){if(!k&&$.cubeIndex!==0){let L=$.cubeIndex;if(a===0)r(3,y=!0),[l,l*7].includes(L)?(a=L,D(!0,$)):(f++,D(!1,$));else{let j=s[a].cubeValue,V=or(a),se=lr(a);j<=se&&L===a+j||j<=V&&L===a+j*7?(a=L,D(!0,$)):(f++,D(!1,$))}}c()}function c(){if(f===w){clearInterval(d),r(4,_=!0),r(1,s=s.map($=>($.classList=h.includes($.cubeIndex.toLocaleString())?"ps-bg-green-cube":"",$))),r(1,s),setTimeout(()=>{k=!0,Pe("minigame:callback",!1),p("game-ended",{hackSuccess:!1}),p("closeUI",{hackSuccess:!1})},3e3);return}else a===48&&(clearInterval(d),r(4,_=!0),setTimeout(()=>{k=!0,Pe("minigame:callback",!0),p("game-ended",{hackSuccess:!0}),p("closeUI",{hackSuccess:!0})},3e3))}function C($){let L=$.key;if(m&&["Escape"].includes(L)&&!k)switch(L){case"Escape":vt(!1);return}}return[b,s,l,y,_,g,O,C,$=>O($)]}class ni extends ye{constructor(e){super(),ge(this,e,ii,si,de,{})}}function ai(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Wr={exports:{}};/*! + @mojs/core – The motion graphics toolbelt for the web + Oleg Solomka @legomushroom 2023 MIT + 1.7.1 +*/(function(t,e){var r;r=()=>(()=>{var n={50:(w,d,m)=>{m.d(d,{Z:()=>s});var k=m(2),g={_sample:function(l){var o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:4,h=(0,k.Z)(o),y={};if(h==="number"){var a=0,f=Math.pow(10,o),_=1/f;y[0]=l(0);for(var u=0;uu?l[f=u+h]:l[f=u-h])-S;return IS?-1:1)*I};return y.getSamples=function(){return l},y}};g._sample._proximate=g._proximate;const s=g._sample},973:(w,d,m)=>{m.d(d,{Z:()=>h});var k=m(2),g=m(671),s=m(144),l=m(52),o=m.n(l);const h=function(){function y(){var a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};(0,g.Z)(this,y),this._o=a,this._index=this._o.index||0,this._arrayPropertyMap={strokeDashoffset:1,strokeDasharray:1,origin:1},this._skipPropsDelta={timeline:1,prevChainModule:1,callbacksContext:1},this._declareDefaults(),this._extendDefaults(),this._vars(),this._render()}return(0,s.Z)(y,[{key:"_declareDefaults",value:function(){this._defaults={}}},{key:"_vars",value:function(){this._progress=0,this._strokeDasharrayBuffer=[]}},{key:"_render",value:function(){}},{key:"_setProp",value:function(a,f){if((0,k.Z)(a)==="object")for(var _ in a)this._assignProp(_,a[_]);else this._assignProp(a,f)}},{key:"_assignProp",value:function(a,f){this._props[a]=f}},{key:"_show",value:function(){var a=this._props;this.el&&(a.isSoftHide?this._showByTransform():this.el.style.display="block",this._isShown=!0)}},{key:"_hide",value:function(){this.el&&(this._props.isSoftHide?o().setPrefixedStyle(this.el,"transform","scale(0)"):this.el.style.display="none",this._isShown=!1)}},{key:"_showByTransform",value:function(){}},{key:"_parseOptionString",value:function(a){return typeof a=="string"&&a.match(/stagger/)&&(a=o().parseStagger(a,this._index)),typeof a=="string"&&a.match(/rand/)&&(a=o().parseRand(a)),a}},{key:"_parsePositionOption",value:function(a,f){return o().unitOptionMap[a]&&(f=o().parseUnit(f).string),f}},{key:"_parseStrokeDashOption",value:function(a,f){var _=f;if(this._arrayPropertyMap[a])switch(_=[],(0,k.Z)(f)){case"number":_.push(o().parseUnit(f));break;case"string":for(var u=f.split(" "),S=0;S{m.d(d,{Z:()=>_});var k=m(2),g=m(671),s=m(144),l=m(340),o=m(963),h=m(120),y=m(52),a=m.n(y);function f(u){var S=function(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var I,D=(0,h.Z)(u);if(S){var O=(0,h.Z)(this).constructor;I=Reflect.construct(D,arguments,O)}else I=D.apply(this,arguments);return(0,o.Z)(this,I)}}const _=function(u){(0,l.Z)(I,u);var S=f(I);function I(){return(0,g.Z)(this,I),S.apply(this,arguments)}return(0,s.Z)(I,[{key:"_declareDefaults",value:function(){this._defaults={ns:"http://www.w3.org/2000/svg",tag:"ellipse",parent:document.body,ratio:1,radius:50,radiusX:null,radiusY:null,stroke:"hotpink","stroke-dasharray":"","stroke-dashoffset":"","stroke-linecap":"","stroke-width":2,"stroke-opacity":1,fill:"transparent","fill-opacity":1,width:0,height:0},this._drawMap=["stroke","stroke-width","stroke-opacity","stroke-dasharray","fill","stroke-dashoffset","stroke-linecap","fill-opacity","transform"]}},{key:"_vars",value:function(){this._state={},this._drawMapLength=this._drawMap.length}},{key:"_render",value:function(){this._isRendered||(this._isRendered=!0,this._createSVGCanvas(),this._setCanvasSize(),this._props.parent.appendChild(this._canvas))}},{key:"_createSVGCanvas",value:function(){var D=this._props;this._canvas=document.createElementNS(D.ns,"svg"),this.el=document.createElementNS(D.ns,D.tag),this._canvas.appendChild(this.el)}},{key:"_setCanvasSize",value:function(){var D=this._canvas.style;D.display="block",D.width="100%",D.height="100%",D.left="0px",D.top="0px"}},{key:"_draw",value:function(){this._props.length=this._getLength();for(var D=this._drawMapLength;D--;){var O=this._drawMap[D];switch(O){case"stroke-dasharray":case"stroke-dashoffset":this.castStrokeDash(O)}this._setAttrIfChanged(O,this._props[O])}this._state.radius=this._props.radius}},{key:"castStrokeDash",value:function(D){var O=this._props;if(a().isArray(O[D])){for(var c="",C=0;C{m.d(d,{Z:()=>a});var k=m(671),g=m(144),s=m(752),l=m(340),o=m(963),h=m(120);function y(f){var _=function(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var u,S=(0,h.Z)(f);if(_){var I=(0,h.Z)(this).constructor;u=Reflect.construct(S,arguments,I)}else u=S.apply(this,arguments);return(0,o.Z)(this,u)}}const a=function(f){(0,l.Z)(u,f);var _=y(u);function u(){return(0,k.Z)(this,u),_.apply(this,arguments)}return(0,g.Z)(u,[{key:"_declareDefaults",value:function(){(0,s.Z)((0,h.Z)(u.prototype),"_declareDefaults",this).call(this),this._defaults.tag="path"}},{key:"_draw",value:function(){(0,s.Z)((0,h.Z)(u.prototype),"_draw",this).call(this);var S=this._props,I=S.radiusX!=null?S.radiusX:S.radius,D=S.radiusY!=null?S.radiusY:S.radius,O=I===this._prevRadiusX,c=D===this._prevRadiusY,C=S.points===this._prevPoints;if(!(O&&c&&C)){var E=S.width/2,$=S.height/2,L=E+I,j="M".concat(E-I," ").concat($," Q ").concat(E," ").concat($-2*D," ").concat(L," ").concat($);this.el.setAttribute("d",j),this._prevPoints=S.points,this._prevRadiusX=I,this._prevRadiusY=D}}},{key:"_getLength",value:function(){var S=this._props,I=S.radiusX!=null?S.radiusX:S.radius,D=S.radiusY!=null?S.radiusY:S.radius,O=I+D,c=Math.sqrt((3*I+D)*(I+3*D));return .5*Math.PI*(3*O-c)}}]),u}(m(623).Z)},854:(w,d,m)=>{m.d(d,{Z:()=>a});var k=m(671),g=m(144),s=m(752),l=m(340),o=m(963),h=m(120);function y(f){var _=function(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var u,S=(0,h.Z)(f);if(_){var I=(0,h.Z)(this).constructor;u=Reflect.construct(S,arguments,I)}else u=S.apply(this,arguments);return(0,o.Z)(this,u)}}const a=function(f){(0,l.Z)(u,f);var _=y(u);function u(){return(0,k.Z)(this,u),_.apply(this,arguments)}return(0,g.Z)(u,[{key:"_declareDefaults",value:function(){(0,s.Z)((0,h.Z)(u.prototype),"_declareDefaults",this).call(this),this._defaults.tag="path",this._defaults.parent=null;for(var S=0;S'.concat(this.getShape(),""),this._canvas=S.parent.querySelector("#js-mojs-shape-canvas"),this.el=S.parent.querySelector("#js-mojs-shape-el"),this._setCanvasSize()}}},{key:"_getScale",value:function(){var S=this._props,I=S.radiusX?S.radiusX:S.radius,D=S.radiusY?S.radiusY:S.radius;S.scaleX=2*I/100,S.scaleY=2*D/100,S.maxScale=Math.max(S.scaleX,S.scaleY),S.shiftX=S.width/2-50*S.scaleX,S.shiftY=S.height/2-50*S.scaleY;var O="translate(".concat(S.shiftX,", ").concat(S.shiftY,")");return"".concat(O," scale(").concat(S.scaleX,", ").concat(S.scaleY,")")}},{key:"_getLength",value:function(){return this._length}}]),u}(m(623).Z)},342:(w,d,m)=>{m.d(d,{Z:()=>u});var k=m(671),g=m(144),s=m(340),l=m(963),o=m(752),h=m(120),y=m(52),a=m.n(y),f=m(755);function _(S){var I=function(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var D,O=(0,h.Z)(S);if(I){var c=(0,h.Z)(this).constructor;D=Reflect.construct(O,arguments,c)}else D=O.apply(this,arguments);return(0,l.Z)(this,D)}}const u=function(S){(0,s.Z)(D,S);var I=_(D);function D(){var O=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return(0,k.Z)(this,D),I.call(this,O)}return(0,g.Z)(D,[{key:"add",value:function(){for(var O=arguments.length,c=new Array(O),C=0;C=0;c--)this._timelines[c].stop(O)}},{key:"_appendTimelineArray",value:function(O){for(var c=O.length,C=this._props.repeatTime-this._props.delay,E=this._timelines.length;c--;)this._appendTimeline(O[c],E,C)}},{key:"_appendTimeline",value:function(O,c,C){O.timeline instanceof D&&(O=O.timeline),O.tween instanceof f.Z&&(O=O.tween);var E=C??this._props.duration;E+=O._props.shiftTime||0,O.index=c,this._pushTimeline(O,E)}},{key:"_pushTimelineArray",value:function(O){for(var c=0;cthis._prevTime?-1:1;this._props.isYoyo&&C&&(E*=-1);for(var $=this._props.startTime+O*this._props.duration,L=$+E,j=this._timelines.length,V=0;VL?V:j-1-V;this._timelines[se]._update($,L,this._prevYoyo,this._onEdge)}this._prevYoyo=C}},{key:"_recalcDuration",value:function(O){var c=O._props,C=c.repeatTime/c.speed+(c.shiftTime||0)+O._negativeShift;this._props.duration=Math.max(C,this._props.duration)}},{key:"_recalcTotalDuration",value:function(){var O=this._timelines.length;for(this._props.duration=0;O--;){var c=this._timelines[O];c._recalcTotalDuration&&c._recalcTotalDuration(),this._recalcDuration(c)}this._calcDimentions()}},{key:"_setStartTime",value:function(O){var c=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1];(0,o.Z)((0,h.Z)(D.prototype),"_setStartTime",this).call(this,O),this._startTimelines(this._props.startTime,c)}},{key:"_startTimelines",value:function(O){var c=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],C=this._state==="stop";O==null&&(O=this._props.startTime);for(var E=0;E{m.d(d,{Z:()=>S});var k=m(671),g=m(144),s=m(326),l=m(752),o=m(340),h=m(963),y=m(120),a=m(47),f=m(283),_=m.n(f);function u(I){var D=function(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var O,c=(0,y.Z)(I);if(D){var C=(0,y.Z)(this).constructor;O=Reflect.construct(c,arguments,C)}else O=c.apply(this,arguments);return(0,h.Z)(this,O)}}const S=function(I){(0,o.Z)(O,I);var D=u(O);function O(){var c,C=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return(0,k.Z)(this,O),(c=D.call(this,C))._props.name==null&&c._setSelfName(),(0,h.Z)(c,(0,s.Z)(c))}return(0,g.Z)(O,[{key:"_declareDefaults",value:function(){this._defaults={duration:350,delay:0,repeat:0,speed:1,isYoyo:!1,easing:"Sin.Out",backwardEasing:null,name:null,nameBase:"Tween",onProgress:null,onStart:null,onRefresh:null,onComplete:null,onRepeatStart:null,onRepeatComplete:null,onFirstUpdate:null,onUpdate:null,isChained:!1,onPlaybackStart:null,onPlaybackPause:null,onPlaybackStop:null,onPlaybackComplete:null,callbacksContext:null}}},{key:"play",value:function(){var c=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return this._state==="play"&&this._isRunning||(this._props.isReversed=!1,this._subPlay(c,"play"),this._setPlaybackState("play")),this}},{key:"playBackward",value:function(){var c=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return this._state==="reverse"&&this._isRunning||(this._props.isReversed=!0,this._subPlay(c,"reverse"),this._setPlaybackState("reverse")),this}},{key:"pause",value:function(){return this._state==="pause"||this._state==="stop"||(this._removeFromTweener(),this._setPlaybackState("pause")),this}},{key:"stop",value:function(c){if(this._state==="stop")return this;this._wasUknownUpdate=void 0;var C=c??(this._state==="reverse"?1:0);return this.setProgress(C),this.reset(),this}},{key:"replay",value:function(){var c=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return this.reset(),this.play(c),this}},{key:"replayBackward",value:function(){var c=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return this.reset(),this.playBackward(c),this}},{key:"resume",value:function(){var c=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;if(this._state!=="pause")return this;switch(this._prevState){case"play":this.play(c);break;case"reverse":this.playBackward(c)}return this}},{key:"setProgress",value:function(c){var C=this._props;return!C.startTime&&this._setStartTime(),this._playTime=null,c<0&&(c=0),c>1&&(c=1),this._update(C.startTime-C.delay+c*C.repeatTime),this}},{key:"setSpeed",value:function(c){return this._props.speed=c,this._state!=="play"&&this._state!=="reverse"||this._setResumeTime(this._state),this}},{key:"reset",value:function(){return this._removeFromTweener(),this._setPlaybackState("stop"),this._progressTime=0,this._isCompleted=!1,this._isStarted=!1,this._isFirstUpdate=!1,this._wasUknownUpdate=void 0,this._prevTime=void 0,this._prevYoyo=void 0,this._props.isReversed=!1,this}},{key:"_subPlay",value:function(){var c=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,C=arguments.length>1?arguments[1]:void 0,E=this._props,$=this._state,L=this._prevState,j=$==="pause",V=($==="play"||j&&L==="play")&&C==="reverse"||($==="reverse"||j&&L==="reverse")&&C==="play";return this._progressTime=this._progressTime>=E.repeatTime?0:this._progressTime,V&&(this._progressTime=E.repeatTime-this._progressTime),this._setResumeTime(C,c),a.Z.add(this),this}},{key:"_setResumeTime",value:function(c){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;this._resumeTime=performance.now();var E=this._resumeTime-Math.abs(C)-this._progressTime;this._setStartTime(E,!1),this._prevTime!=null&&(this._prevTime=c==="play"?this._normPrevTimeForward():this._props.endTime-this._progressTime)}},{key:"_normPrevTimeForward",value:function(){var c=this._props;return c.startTime+this._progressTime-c.delay}},{key:"_setSelfName",value:function(){var c="_".concat(this._props.nameBase,"s");a.Z[c]=a.Z[c]==null?1:++a.Z[c],this._props.name="".concat(this._props.nameBase," ").concat(a.Z[c])}},{key:"_setPlaybackState",value:function(c){this._prevState=this._state,this._state=c;var C=this._prevState==="pause",E=this._prevState==="stop",$=this._prevState==="play",L=this._prevState==="reverse",j=$||L;c!=="play"&&c!=="reverse"||!(E||C)||this._playbackStart(),c==="pause"&&j&&this._playbackPause(),c==="stop"&&(j||C)&&this._playbackStop()}},{key:"_vars",value:function(){return this.progress=0,this._prevTime=void 0,this._progressTime=0,this._negativeShift=0,this._state="stop",this._props.delay<0&&(this._negativeShift=this._props.delay,this._props.delay=0),this._calcDimentions()}},{key:"_calcDimentions",value:function(){this._props.time=this._props.duration+this._props.delay,this._props.repeatTime=this._props.time*(this._props.repeat+1)}},{key:"_extendDefaults",value:function(){this._callbackOverrides=this._o.callbackOverrides||{},delete this._o.callbackOverrides,(0,l.Z)((0,y.Z)(O.prototype),"_extendDefaults",this).call(this);var c=this._props;c.easing=_().parseEasing(c.easing),c.easing._parent=this,c.backwardEasing!=null&&(c.backwardEasing=_().parseEasing(c.backwardEasing),c.backwardEasing._parent=this)}},{key:"_setStartTime",value:function(c){var C=!(arguments.length>1&&arguments[1]!==void 0)||arguments[1],E=this._props,$=E.shiftTime||0;C&&(this._isCompleted=!1,this._isRepeatCompleted=!1,this._isStarted=!1);var L=c??performance.now();return E.startTime=L+E.delay+this._negativeShift+$,E.endTime=E.startTime+E.repeatTime-E.delay,this._playTime=this._resumeTime!=null?this._resumeTime:L+$,this._resumeTime=null,this}},{key:"_update",value:function(c,C,E,$){var L=this._props;this._prevTime==null&&C!=null&&(this._props.speed&&this._playTime&&(this._prevTime=this._playTime+this._props.speed*(C-this._playTime)),this._wasUknownUpdate=!0);var j=L.startTime-L.delay;if(L.speed&&this._playTime&&(c=this._playTime+L.speed*(c-this._playTime)),Math.abs(L.endTime-c)<1e-8&&(c=L.endTime),$&&E!=null){var V=this._getPeriod(c),se=!(!L.isYoyo||!this._props.repeat||V%2!=1);if(this._timelines)for(var ie=0;ie=L.startTime&&this._prevTime<=L.endTime&&(this._prevTime=c+1,this._repeatStart(c,se),this._start(c,se),this._isCompleted=!0)),this._prevTime=void 0}return c>j&&c=L.endTime&&(this._progressTime=L.repeatTime+1e-11),L.isReversed&&(c=L.endTime-this._progressTime),this._prevTime==null?(this._prevTime=c,this._wasUknownUpdate=!0,!1):(c>=j&&c<=L.endTime&&this._progress((c-j)/L.repeatTime,c),c>=L.startTime&&c<=L.endTime?this._updateInActiveArea(c):this._isInActiveArea?this._updateInInactiveArea(c):this._isRefreshed||c=L.endTime||c<=j)}},{key:"_updateInInactiveArea",value:function(c){if(this._isInActiveArea){var C=this._props;if(c>C.endTime&&!this._isCompleted){this._progress(1,c);var E=this._getPeriod(C.endTime),$=C.isYoyo&&E%2==0;this._setProgress($?0:1,c,$),this._repeatComplete(c,$),this._complete(c,$)}cthis._prevTime&&(this._isRepeatCompleted=!1),this._repeatComplete(c,X),this._complete(c,X);if(this._isCompleted=!1,this._isRefreshed=!1,$+L>=C.startTime){this._isInActiveArea=!0,this._isRepeatCompleted=!1,this._isRepeatStart=!1,this._isStarted=!1;var be=(c-C.startTime)%E/C.duration,Ee=V>0&&ieV;if(this._onEdge=0,Ee&&(this._onEdge=1),Ce&&(this._onEdge=-1),this._wasUknownUpdate&&(c>this._prevTime&&(this._start(c,X),this._repeatStart(c,X),this._firstUpdate(c,X)),c=0&&this._repeatStart(c,X)}c>this._prevTime&&(!this._isStarted&&this._prevTime<=C.startTime&&(this._start(c,X),this._repeatStart(c,X),this._isStarted=!1,this._isRepeatStart=!1),this._firstUpdate(c,X)),Ce&&(this.progress!==0&&this.progress!==1&&ie!=j&&this._repeatStart(c,he),ie!==j||this._wasUknownUpdate||(this._complete(c,X),this._repeatComplete(c,X),this._firstUpdate(c,X),this._isCompleted=!1),this._repeatComplete(c,X)),ie==="delay"&&(V0&&this._repeatStart(c,X)),c>this._prevTime?(be===0&&this._repeatStart(c,X),c!==C.endTime&&this._setProgress(X?1-be:be,c,X)):(c!==C.endTime&&this._setProgress(X?1-be:be,c,X),be===0&&this._repeatStart(c,X)),c===C.startTime&&this._start(c,X)}else if(this._isInActiveArea){var ze=V==="delay"?se:V,Ve=c>this._prevTime;Ve&&ze--,ne=C.isYoyo&&ze%2==1?1:0,cthis._prevTime&&(this.progress===0&&ne!==1||this._repeatComplete(c,ne===1)),this._isInActiveArea=!1}this._wasUknownUpdate=!1}},{key:"_removeFromTweener",value:function(){return a.Z.remove(this),this}},{key:"_getPeriod",value:function(c){var C=this._props,E=C.delay+C.duration,$=C.delay+c-C.startTime,L=$/E,j=c=C.endTime?Math.round(L):Math.floor(L),c>C.endTime?L=Math.round((C.endTime-C.startTime+C.delay)/E):j>0&&jthis._prevTime;if(this.progress=c,j&&!E||!j&&E)this.easedProgress=$.easing(c);else if(!j&&!E||j&&E){var V=$.backwardEasing!=null?$.backwardEasing:$.easing;this.easedProgress=V(c)}return($.prevEasedProgress!==this.easedProgress||L)&&$.onUpdate!=null&&typeof $.onUpdate=="function"&&$.onUpdate.call($.callbacksContext||this,this.easedProgress,this.progress,j,E),$.prevEasedProgress=this.easedProgress,$.wasYoyo=E,this}},{key:"_start",value:function(c,C){if(!this._isStarted){var E=this._props;E.onStart!=null&&typeof E.onStart=="function"&&E.onStart.call(E.callbacksContext||this,c>this._prevTime,C),this._isCompleted=!1,this._isStarted=!0,this._isFirstUpdate=!1}}},{key:"_playbackStart",value:function(){var c=this._props;c.onPlaybackStart!=null&&typeof c.onPlaybackStart=="function"&&c.onPlaybackStart.call(c.callbacksContext||this)}},{key:"_playbackPause",value:function(){var c=this._props;c.onPlaybackPause!=null&&typeof c.onPlaybackPause=="function"&&c.onPlaybackPause.call(c.callbacksContext||this)}},{key:"_playbackStop",value:function(){var c=this._props;c.onPlaybackStop!=null&&typeof c.onPlaybackStop=="function"&&c.onPlaybackStop.call(c.callbacksContext||this)}},{key:"_playbackComplete",value:function(){var c=this._props;c.onPlaybackComplete!=null&&typeof c.onPlaybackComplete=="function"&&c.onPlaybackComplete.call(c.callbacksContext||this)}},{key:"_complete",value:function(c,C){if(!this._isCompleted){var E=this._props;E.onComplete!=null&&typeof E.onComplete=="function"&&E.onComplete.call(E.callbacksContext||this,c>this._prevTime,C),this._isCompleted=!0,this._isStarted=!1,this._isFirstUpdate=!1,this._prevYoyo=void 0}}},{key:"_firstUpdate",value:function(c,C){if(!this._isFirstUpdate){var E=this._props;E.onFirstUpdate!=null&&typeof E.onFirstUpdate=="function"&&(E.onFirstUpdate.tween=this,E.onFirstUpdate.call(E.callbacksContext||this,c>this._prevTime,C)),this._isFirstUpdate=!0}}},{key:"_repeatComplete",value:function(c,C){if(!this._isRepeatCompleted){var E=this._props;E.onRepeatComplete!=null&&typeof E.onRepeatComplete=="function"&&E.onRepeatComplete.call(E.callbacksContext||this,c>this._prevTime,C),this._isRepeatCompleted=!0}}},{key:"_repeatStart",value:function(c,C){if(!this._isRepeatStart){var E=this._props;E.onRepeatStart!=null&&typeof E.onRepeatStart=="function"&&E.onRepeatStart.call(E.callbacksContext||this,c>this._prevTime,C),this._isRepeatStart=!0}}},{key:"_progress",value:function(c,C){var E=this._props;E.onProgress!=null&&typeof E.onProgress=="function"&&E.onProgress.call(E.callbacksContext||this,c,C>this._prevTime)}},{key:"_refresh",value:function(c){var C=this._props;if(C.onRefresh!=null){var E=C.callbacksContext||this,$=c?0:1;C.onRefresh.call(E,c,C.easing($),$)}}},{key:"_onTweenerRemove",value:function(){}},{key:"_onTweenerFinish",value:function(){this._setPlaybackState("stop"),this._playbackComplete()}},{key:"_setProp",value:function(c,C){(0,l.Z)((0,y.Z)(O.prototype),"_setProp",this).call(this,c,C),this._calcDimentions()}},{key:"_assignProp",value:function(c,C){C==null&&(C=this._defaults[c]),c==="easing"&&((C=_().parseEasing(C))._parent=this);var E=this._callbackOverrides[c],$=!C||!C.isMojsCallbackOverride;E&&$&&(C=this._overrideCallback(C,E)),(0,l.Z)((0,y.Z)(O.prototype),"_assignProp",this).call(this,c,C)}},{key:"_overrideCallback",value:function(c,C){var E=c&&typeof c=="function",$=function(){E&&c.apply(this,arguments),C.apply(this,arguments)};return $.isMojsCallbackOverride=!0,$}}]),O}(m(973).Z)},47:(w,d,m)=>{m.d(d,{Z:()=>s});var k=m(671),g=m(144);const s=new(function(){function l(){return(0,k.Z)(this,l),this._vars(),this._listenVisibilityChange(),this}return(0,g.Z)(l,[{key:"_vars",value:function(){this.tweens=[],this._savedTweens=[],this._loop=this._loop.bind(this),this._onVisibilityChange=this._onVisibilityChange.bind(this)}},{key:"_loop",value:function(){return!!this._isRunning&&(this._update(window.performance.now()),this.tweens.length?(requestAnimationFrame(this._loop),this):this._isRunning=!1)}},{key:"_startLoop",value:function(){this._isRunning||(this._isRunning=!0,requestAnimationFrame(this._loop))}},{key:"_stopLoop",value:function(){this._isRunning=!1}},{key:"_update",value:function(o){for(var h=this.tweens.length;h--;){var y=this.tweens[h];y&&y._update(o)===!0&&(this.remove(y),y._onTweenerFinish(),y._prevTime=void 0)}}},{key:"add",value:function(o){o._isRunning||(o._isRunning=!0,this.tweens.push(o),this._startLoop())}},{key:"removeAll",value:function(){this.tweens.length=0}},{key:"remove",value:function(o){var h=typeof o=="number"?o:this.tweens.indexOf(o);h!==-1&&(o=this.tweens[h])&&(o._isRunning=!1,this.tweens.splice(h,1),o._onTweenerRemove())}},{key:"_listenVisibilityChange",value:function(){document.hidden!==void 0?(this._visibilityHidden="hidden",this._visibilityChange="visibilitychange"):document.mozHidden!==void 0?(this._visibilityHidden="mozHidden",this._visibilityChange="mozvisibilitychange"):document.msHidden!==void 0?(this._visibilityHidden="msHidden",this._visibilityChange="msvisibilitychange"):document.webkitHidden!==void 0&&(this._visibilityHidden="webkitHidden",this._visibilityChange="webkitvisibilitychange"),document.addEventListener(this._visibilityChange,this._onVisibilityChange,!1)}},{key:"_onVisibilityChange",value:function(){document[this._visibilityHidden]?this._savePlayingTweens():this._restorePlayingTweens()}},{key:"_savePlayingTweens",value:function(){this._savedTweens=this.tweens.slice(0);for(var o=0;o{var k,g;g=m(52),k=new class{constructor(s){return this.vars(),this.generate}vars(){return this.generate=g.bind(this.generate,this)}generate(s,l,o,h){var y,a,f,_,u,S,I,D,O,c,C,E,$,L,j,V,se,ie;if(arguments.length<4)return this.error("Bezier function expects 4 arguments");for(E=$=0;$<4;E=++$)if(typeof(_=arguments[E])!="number"||isNaN(_)||!isFinite(_))return this.error("Bezier function expects 4 arguments");return s<0||s>1||o<0||o>1?this.error("Bezier x values should be > 0 and < 1"):(L=.1,O=!!Float32Array,y=function(K,X){return 1-3*X+3*K},a=function(K,X){return 3*X-6*K},f=function(K){return 3*K},S=function(K,X,he){return((y(X,he)*K+a(X,he))*K+f(X))*K},c=function(K,X,he){return 3*y(X,he)*K*K+2*a(X,he)*K+f(X)},V=function(K,X){var he;for(E=0;E<4;){if((he=c(X,s,o))===0)return X;X-=(S(X,s,o)-K)/he,++E}return X},I=function(){for(E=0;E<11;)j[E]=S(E*L,s,o),++E},u=function(K,X,he){var ne,be;for(be=void 0,ne=void 0,E=0;(be=S(ne=X+(he-X)/2,s,o)-K)>0?he=ne:X=ne,Math.abs(be)>1e-7&&++E<10;);return ne},C=function(K){var X,he,ne,be,Ee,Ce;for(Ce=0,X=1;X!==10&&j[X]<=K;)Ce+=L,++X;return--X,he=j[X+1]-j[X],ne=(K-j[X])/he,(Ee=c(be=Ce+ne*L,s,o))>=.001?V(K,be):Ee===0?be:u(K,Ce,Ce+L)},se=function(){if(s!==l||o!==h)return I()},j=O?new Float32Array(11):new Array(11),ie="bezier("+[s,l,o,h]+")",(D=function(K){return se(),s===l&&o===h?K:K===0?0:K===1?1:S(C(K),l,h)}).toStr=function(){return ie},D)}error(s){return g.error(s)}},w.exports=k},283:function(w,d,m){var k,g,s,l,o,h,y,a,f;y=m(52),o=m(977),s=m(162),a=m(440),l=m(50).Z,f=Math.sin,g=Math.PI,k=(function(){class _{inverse(S){return 1-S}parseEasing(S){var I;return S==null&&(S="linear.none"),typeof S=="string"?S.charAt(0).toLowerCase()==="m"?this.path(S):(I=this[(S=this._splitEasing(S))[0]])?I[S[1]]:(y.error(`Easing with name "${S[0]}" was not found, fallback to "linear.none" instead`),this.linear.none):y.isArray(S)?this.bezier.apply(this,S):S}_splitEasing(S){var I;return typeof S=="function"?S:typeof S=="string"&&S.length?[(I=S.split("."))[0].toLowerCase()||"linear",I[1].toLowerCase()||"none"]:["linear","none"]}}return _.prototype.bezier=o,_.prototype.PathEasing=s,_.prototype.path=new s("creator").create,_.prototype.approximate=l,_.prototype.linear={none:function(u){return u}},_.prototype.ease={in:o.apply(_,[.42,0,1,1]),out:o.apply(_,[0,0,.58,1]),inout:o.apply(_,[.42,0,.58,1])},_.prototype.sin={in:function(u){return 1-Math.cos(u*g/2)},out:function(u){return f(u*g/2)},inout:function(u){return .5*(1-Math.cos(g*u))}},_.prototype.quad={in:function(u){return u*u},out:function(u){return u*(2-u)},inout:function(u){return(u*=2)<1?.5*u*u:-.5*(--u*(u-2)-1)}},_.prototype.cubic={in:function(u){return u*u*u},out:function(u){return--u*u*u+1},inout:function(u){return(u*=2)<1?.5*u*u*u:.5*((u-=2)*u*u+2)}},_.prototype.quart={in:function(u){return u*u*u*u},out:function(u){return 1- --u*u*u*u},inout:function(u){return(u*=2)<1?.5*u*u*u*u:-.5*((u-=2)*u*u*u-2)}},_.prototype.quint={in:function(u){return u*u*u*u*u},out:function(u){return--u*u*u*u*u+1},inout:function(u){return(u*=2)<1?.5*u*u*u*u*u:.5*((u-=2)*u*u*u*u+2)}},_.prototype.expo={in:function(u){return u===0?0:Math.pow(1024,u-1)},out:function(u){return u===1?1:1-Math.pow(2,-10*u)},inout:function(u){return u===0?0:u===1?1:(u*=2)<1?.5*Math.pow(1024,u-1):.5*(2-Math.pow(2,-10*(u-1)))}},_.prototype.circ={in:function(u){return 1-Math.sqrt(1-u*u)},out:function(u){return Math.sqrt(1- --u*u)},inout:function(u){return(u*=2)<1?-.5*(Math.sqrt(1-u*u)-1):.5*(Math.sqrt(1-(u-=2)*u)+1)}},_.prototype.back={in:function(u){var S;return u*u*((1+(S=1.70158))*u-S)},out:function(u){var S;return--u*u*((1+(S=1.70158))*u+S)+1},inout:function(u){var S;return S=2.5949095,(u*=2)<1?u*u*((S+1)*u-S)*.5:.5*((u-=2)*u*((S+1)*u+S)+2)}},_.prototype.elastic={in:function(u){return u===0?0:u===1?1:-1*Math.pow(2,10*(u-=1))*Math.sin((u-.1)*(2*Math.PI)/.4)},out:function(u){return u===0?0:u===1?1:1*Math.pow(2,-10*u)*Math.sin((u-.1)*(2*Math.PI)/.4)+1},inout:function(u){return u===0?0:u===1?1:(u*=2)<1?1*Math.pow(2,10*(u-=1))*Math.sin((u-.1)*(2*Math.PI)/.4)*-.5:1*Math.pow(2,-10*(u-=1))*Math.sin((u-.1)*(2*Math.PI)/.4)*.5+1}},_.prototype.bounce={in:function(u){return 1-h.bounce.out(1-u)},out:function(u){return u<.36363636363636365?7.5625*u*u:u<.7272727272727273?7.5625*(u-=.5454545454545454)*u+.75:u<.9090909090909091?7.5625*(u-=.8181818181818182)*u+.9375:7.5625*(u-=.9545454545454546)*u+.984375},inout:function(u){return u<.5?.5*h.bounce.in(2*u):.5*h.bounce.out(2*u-1)+.5}},_}).call(this),(h=new k).mix=a(h),w.exports=h},440:w=>{var d,m,k,g,s,l;m=null,s=function(o){return typeof o.value=="number"?o.value:m.parseEasing(o.value)},l=function(o,h){var y;return o.value=s(o),h.value=s(h),y=0,o.toh.to&&(y=1),y},k=function(o,h){var y,a,f;for(y=a=0,f=o.length;ah)return y},g=function(...o){return o.length>1?o=o.sort(l):o[0].value=s(o[0]),function(h){var y,a;return(y=k(o,h))===void 0?1:y!==-1?(a=o[y].value,y===o.length-1&&h>o[y].to?1:typeof a=="function"?a(h):a):void 0}},d=function(o){return m=o,g},w.exports=d},162:(w,d,m)=>{var k,g;g=m(52),k=class Kr{_vars(){return this._precompute=g.clamp(this.o.precompute||1450,100,1e4),this._step=1/this._precompute,this._rect=this.o.rect||100,this._approximateMax=this.o.approximateMax||5,this._eps=this.o.eps||.001,this._boundsPrevProgress=-1}constructor(l,o={}){if(this.o=o,l!=="creator"){if(this.path=g.parsePath(l),this.path==null)return g.error("Error while parsing the path");this._vars(),this.path.setAttribute("d",this._normalizePath(this.path.getAttribute("d"))),this.pathLength=this.path.getTotalLength(),this.sample=g.bind(this.sample,this),this._hardSample=g.bind(this._hardSample,this),this._preSample()}}_preSample(){var l,o,h,y,a,f,_;for(this._samples=[],_=[],l=o=0,f=this._precompute;0<=f?o<=f:o>=f;l=0<=f?++o:--o)a=l*this._step,h=this.pathLength*a,y=this.path.getPointAtLength(h),_.push(this._samples[l]={point:y,length:h,progress:a});return _}_findBounds(l,o){var h,y,a,f,_,u,S,I,D,O,c,C,E;if(o===this._boundsPrevProgress)return this._prevBounds;for(this._boundsStartIndex==null&&(this._boundsStartIndex=0),u=l.length,this._boundsPrevProgress>o?(S=0,y="reverse"):(S=u,y="forward"),y==="forward"?(C=l[0],a=l[l.length-1]):(C=l[l.length-1],a=l[0]),f=_=O=this._boundsStartIndex,c=S;O<=c?_c;f=O<=c?++_:--_){if(D=(E=l[f]).point.x/this._rect,I=o,y==="reverse"&&(h=D,D=I,I=h),!(D-1,this.isChrome=s.indexOf("Chrome")>-1,this.isOpera=s.toLowerCase().indexOf("op")>-1,this.isChrome&&this.isSafari&&(this.isSafari=!1),s.match(/PhantomJS/gim)&&(this.isSafari=!1),this.isChrome&&this.isOpera&&(this.isChrome=!1),this.is3d=this.checkIf3d(),this.uniqIDs=-1,this.div=document.createElement("div"),document.body.appendChild(this.div),this.defaultStyles=this.computedStyle(this.div)}cloneObj(s,l){var o,h,y,a;for(a={},o=(y=Object.keys(s)).length;o--;)h=y[o],l!=null&&l[h]||(a[h]=s[h]);return a}extend(s,l){var o;for(o in l)l[o],s[o]==null&&(s[o]=l[o]);return s}getRemBase(){var s,l;return s=document.querySelector("html"),l=getComputedStyle(s),this.remBase=parseFloat(l.fontSize)}clamp(s,l,o){return so?o:s}setPrefixedStyle(s,l,o){return l==="transform"&&(s.style[`${this.prefix.css}${l}`]=o),s.style[l]=o}style(s,l,o){var h,y,a,f;if(typeof l=="object"){for(a=(y=Object.keys(l)).length,f=[];a--;)o=l[h=y[a]],f.push(this.setPrefixedStyle(s,h,o));return f}return this.setPrefixedStyle(s,l,o)}prepareForLog(s){return(s=Array.prototype.slice.apply(s)).unshift("::"),s.unshift(this.logBadgeCss),s.unshift("%cmo·js%c"),s}log(){if(mojs.isDebug!==!1)return console.log.apply(console,this.prepareForLog(arguments))}warn(){if(mojs.isDebug!==!1)return console.warn.apply(console,this.prepareForLog(arguments))}error(){if(mojs.isDebug!==!1)return console.error.apply(console,this.prepareForLog(arguments))}parseUnit(s){var l,o,h,y,a;return typeof s=="number"?{unit:"px",isStrict:!1,value:s,string:s===0?`${s}`:`${s}px`}:typeof s=="string"?(y=/px|%|rem|em|ex|cm|ch|mm|in|pt|pc|vh|vw|vmin|deg/gim,o=!0,(a=(h=s.match(y))!=null?h[0]:void 0)||(a="px",o=!1),{unit:a,isStrict:o,value:l=parseFloat(s),string:l===0?`${l}`:`${l}${a}`}):s}bind(s,l){var o,h;return h=function(){var y,a;return y=Array.prototype.slice.call(arguments),a=o.concat(y),s.apply(l,a)},o=Array.prototype.slice.call(arguments,2),h}getRadialPoint(s={}){var l,o,h;return l=.017453292519943295*(s.rotate-90),o=s.radiusX!=null?s.radiusX:s.radius,h=s.radiusY!=null?s.radiusY:s.radius,{x:s.center.x+Math.cos(l)*o,y:s.center.y+Math.sin(l)*h}}getPrefix(){var s,l,o;return o=window.getComputedStyle(document.documentElement,""),s=(Array.prototype.slice.call(o).join("").match(/-(moz|webkit|ms)-/)||o.OLink===""&&["","o"])[1],{dom:(l="WebKit|Moz|MS|O".match(new RegExp("("+s+")","i")))!=null?l[1]:void 0,lowercase:s,css:"-"+s+"-",js:(s!=null?s[0].toUpperCase():void 0)+(s!=null?s.substr(1):void 0)}}strToArr(s){var l;return l=[],typeof s!="number"||isNaN(s)?(s.trim().split(/\s+/gim).forEach(o=>l.push(this.parseUnit(this.parseIfRand(o)))),l):(l.push(this.parseUnit(s)),l)}calcArrDelta(s,l){var o,h,y,a;for(o=[],h=y=0,a=s.length;y(h=l.length))for(u=o-h,D=l.length,a=f=0,S=u;0<=S?fS;a=0<=S?++f:--f)y=a+D,l.push(this.parseUnit(`0${s[y].unit}`));else if(h>o)for(u=h-o,D=s.length,a=_=0,I=u;0<=I?_I;a=0<=I?++_:--_)y=a+D,s.push(this.parseUnit(`0${l[y].unit}`));return[s,l]}makeColorObj(s){var l,o,h,y,a,f,_,u;return s[0]==="#"&&(h={},(_=/^#?([a-f\d]{1,2})([a-f\d]{1,2})([a-f\d]{1,2})$/i.exec(s))&&(f=_[1].length===2?_[1]:_[1]+_[1],y=_[2].length===2?_[2]:_[2]+_[2],o=_[3].length===2?_[3]:_[3]+_[3],h={r:parseInt(f,16),g:parseInt(y,16),b:parseInt(o,16),a:1})),s[0]!=="#"&&((a=s[0]==="r"&&s[1]==="g"&&s[2]==="b")&&(u=s),a||(u=this.shortColors[s]?this.shortColors[s]:(this.div.style.color=s,this.computedStyle(this.div).color)),_=new RegExp("^rgba?\\((\\d{1,3}),\\s?(\\d{1,3}),\\s?(\\d{1,3}),?\\s?(\\d{1}|0?\\.\\d{1,})?\\)$","gi").exec(u),h={},l=parseFloat(_[4]||1),_&&(h={r:parseInt(_[1],10),g:parseInt(_[2],10),b:parseInt(_[3],10),a:l==null||isNaN(l)?1:l})),h}computedStyle(s){return getComputedStyle(s)}capitalize(s){if(typeof s!="string")throw Error("String expected - nothing to capitalize");return s.charAt(0).toUpperCase()+s.substring(1)}parseRand(s){var l,o,h;return o=s.split(/rand\(|\,|\)/),h=this.parseUnit(o[2]),l=this.rand(parseFloat(o[1]),parseFloat(o[2])),h.unit&&o[2].match(h.unit)?l+h.unit:l}parseStagger(s,l){var o,h,y,a,f,_;return y=(_=s.split(/stagger\(|\)$/)[1].toLowerCase()).split(/(rand\(.*?\)|[^\(,\s]+)(?=\s*,|\s*$)/gim),_=y.length>3?(o=this.parseUnit(this.parseIfRand(y[1])),y[3]):(o=this.parseUnit(0),y[1]),_=this.parseIfRand(_),h=l*(f=this.parseUnit(_)).value+o.value,(a=o.isStrict?o.unit:f.isStrict?f.unit:"")?`${h}${a}`:h}parseIfStagger(s,l){return typeof s=="string"&&s.match(/stagger/g)?this.parseStagger(s,l):s}parseIfRand(s){return typeof s=="string"&&s.match(/rand\(/)?this.parseRand(s):s}parseDelta(s,l,o){var h,y,a,f,_,u,S,I,D,O,c,C;if((a=(l=this.cloneObj(l)).easing)!=null&&(a=mojs.easing.parseEasing(a)),delete l.easing,(h=l.curve)!=null&&(h=mojs.easing.parseEasing(h)),delete l.curve,f=l[O=Object.keys(l)[0]],y={start:O},!isNaN(parseFloat(O))||O.match(/rand\(/)||O.match(/stagger\(/))if(s==="strokeDasharray"||s==="strokeDashoffset"||s==="origin"){for(c=this.strToArr(O),_=this.strToArr(f),this.normDashArrays(c,_),S=I=0,D=c.length;I0&&this.createFilter(),this.path=this.getPath(),this.path.getAttribute("d")?(this.len=this.path.getTotalLength(),this.slicedLen=this.len*(this.props.pathEnd-this.props.pathStart),this.startLen=this.props.pathStart*this.len,this.fill=this.props.fill,this.fill!=null&&(this.container=this.parseEl(this.props.fill.container),this.fillRule=this.props.fill.fillRule||"all",this.getScaler(),this.container!=null)?(this.removeEvent(this.container,"onresize",this.getScaler),this.addEvent(this.container,"onresize",this.getScaler)):void 0):(l.error("Path has no coordinates to work with, aborting"),!0)):(l.error('Missed "el" option. It could be a selector, DOMNode or another module.'),!0)}addEvent(a,f,_){return a.addEventListener(f,_,!1)}removeEvent(a,f,_){return a.removeEventListener(f,_,!1)}createFilter(){var a,f;return a=document.createElement("div"),this.filterID=`filter-${l.getUniqID()}`,a.innerHTML=``,f=a.querySelector(`#svg-${this.filterID}`),this.filter=f.querySelector("#blur"),this.filterOffset=f.querySelector("#blur-offset"),document.body.insertBefore(f,document.body.firstChild),this.el.style.filter=`url(#${this.filterID})`,this.el.style[`${l.prefix.css}filter`]=`url(#${this.filterID})`}parseEl(a){return typeof a=="string"?document.querySelector(a):a instanceof HTMLElement?a:a._setProp!=null?(this.isModule=!0,a):void 0}getPath(){return l.parsePath(this.props.path)||(this.props.path.x||this.props.path.y?this.curveToPath({start:{x:0,y:0},shift:{x:this.props.path.x||0,y:this.props.path.y||0},curvature:{x:this.props.curvature.x||this.defaults.curvature.x,y:this.props.curvature.y||this.defaults.curvature.y}}):void 0)}getScaler(){var a,f,_;switch(this.cSize={width:this.container.offsetWidth||0,height:this.container.offsetHeight||0},_=this.path.getPointAtLength(0),a=this.path.getPointAtLength(this.len),f={},this.scaler={},f.width=a.x>=_.x?a.x-_.x:_.x-a.x,f.height=a.y>=_.y?a.y-_.y:_.y-a.y,this.fillRule){case"all":return this.calcWidth(f),this.calcHeight(f);case"width":return this.calcWidth(f),this.scaler.y=this.scaler.x;case"height":return this.calcHeight(f),this.scaler.x=this.scaler.y}}calcWidth(a){return this.scaler.x=this.cSize.width/a.width,!isFinite(this.scaler.x)&&(this.scaler.x=1)}calcHeight(a){return this.scaler.y=this.cSize.height/a.height,!isFinite(this.scaler.y)&&(this.scaler.y=1)}run(a){var f,_;if(a){for(f in this.history[0],a)_=a[f],l.callbacksMap[f]||l.tweenOptionMap[f]?(l.warn(`the property "${f}" property can not be overridden on run yet`),delete a[f]):this.history[0][f]=_;this.tuneOptions(a)}return this.startTween()}createTween(){return this.tween=new s({duration:this.props.duration,delay:this.props.delay,yoyo:this.props.yoyo,repeat:this.props.repeat,easing:this.props.easing,onStart:()=>{var a;return(a=this.props.onStart)!=null?a.apply(this):void 0},onComplete:()=>{var a;return this.props.motionBlur&&this.setBlur({blur:{x:0,y:0},offset:{x:0,y:0}}),(a=this.props.onComplete)!=null?a.apply(this):void 0},onUpdate:a=>this.setProgress(a),onFirstUpdate:(a,f)=>{if(!a)return this.history.length>1&&this.tuneOptions(this.history[0])}}),this.timeline=new g,this.timeline.add(this.tween),!this.props.isRunLess&&this.startTween(),this.props.isPresetPosition&&this.setProgress(0,!0)}startTween(){return setTimeout(()=>{var a;return(a=this.timeline)!=null?a.play():void 0},1)}setProgress(a,f){var _,u,S,I;return _=this.startLen+(this.props.isReverse?(1-a)*this.slicedLen:a*this.slicedLen),S=(u=this.path.getPointAtLength(_)).x+this.props.offsetX,I=u.y+this.props.offsetY,this._getCurrentRotation(u,_,a),this._setTransformOrigin(a),this._setTransform(S,I,a,f),this.props.motionBlur&&this.makeMotionBlur(S,I)}setElPosition(a,f,_){var u;return u=`translate(${a}px,${f}px) ${this.rotate!==0?`rotate(${this.rotate}deg)`:""} ${this.props.isCompositeLayer&&l.is3d?"translateZ(0)":""}`,l.setPrefixedStyle(this.el,"transform",u)}setModulePosition(a,f){return this.el._setProp({shiftX:`${a}px`,shiftY:`${f}px`,rotate:this.rotate}),this.el._draw()}_getCurrentRotation(a,f,_){var u,S,I,D,O;return S=typeof this.props.transformOrigin=="function",this.props.isRotation||this.props.rotationOffset!=null||S?(I=this.path.getPointAtLength(f-1),D=a.y-I.y,O=a.x-I.x,u=Math.atan(D/O),!isFinite(u)&&(u=0),this.rotate=u*l.RAD_TO_DEG,typeof this.props.rotationOffset!="function"?this.rotate+=this.props.rotationOffset||0:this.rotate=this.props.rotationOffset.call(this,this.rotate,_)):this.rotate=0}_setTransform(a,f,_,u){var S;return this.scaler&&(a*=this.scaler.x,f*=this.scaler.y),S=null,u||(S=typeof this.onUpdate=="function"?this.onUpdate(_,{x:a,y:f,rotate:this.rotate}):void 0),this.isModule?this.setModulePosition(a,f):typeof S!="string"?this.setElPosition(a,f,_):l.setPrefixedStyle(this.el,"transform",S)}_setTransformOrigin(a){var f;if(this.props.transformOrigin)return f=typeof this.props.transformOrigin=="function"?this.props.transformOrigin(this.rotate,a):this.props.transformOrigin,l.setPrefixedStyle(this.el,"transform-origin",f)}makeMotionBlur(a,f){var _,u,S,I,D,O,c;return c=0,D=1,O=1,this.prevCoords.x==null||this.prevCoords.y==null?(this.speedX=0,this.speedY=0):(S=a-this.prevCoords.x,I=f-this.prevCoords.y,S>0&&(D=-1),D<0&&(O=-1),this.speedX=Math.abs(S),this.speedY=Math.abs(I),c=Math.atan(I/S)*(180/Math.PI)+90),_=c-this.rotate,u=this.rotToCoords(_),this.blurX=l.clamp(this.speedX/16*this.props.motionBlur,0,1),this.blurY=l.clamp(this.speedY/16*this.props.motionBlur,0,1),this.setBlur({blur:{x:3*this.blurX*this.blurAmount*Math.abs(u.x),y:3*this.blurY*this.blurAmount*Math.abs(u.y)},offset:{x:3*D*this.blurX*u.x*this.blurAmount,y:3*O*this.blurY*u.y*this.blurAmount}}),this.prevCoords.x=a,this.prevCoords.y=f}setBlur(a){if(!this.isMotionBlurReset)return this.filter.setAttribute("stdDeviation",`${a.blur.x},${a.blur.y}`),this.filterOffset.setAttribute("dx",a.offset.x),this.filterOffset.setAttribute("dy",a.offset.y)}extendDefaults(a){var f,_,u;for(f in _=[],a)u=a[f],_.push(this[f]=u);return _}extendOptions(a){var f,_,u;for(f in _=[],a)u=a[f],_.push(this.props[f]=u);return _}then(a){var f,_,u,S,I;for(_ in u={},S=this.history[this.history.length-1])I=S[_],!l.callbacksMap[_]&&!l.tweenOptionMap[_]||_==="duration"?a[_]==null&&(a[_]=I):a[_]==null&&(a[_]=void 0),l.tweenOptionMap[_]&&(u[_]=_!=="duration"||a[_]!=null?a[_]:S[_]);return this.history.push(a),f=this,u.onUpdate=D=>this.setProgress(D),u.onStart=()=>{var D;return(D=this.props.onStart)!=null?D.apply(this):void 0},u.onComplete=()=>{var D;return(D=this.props.onComplete)!=null?D.apply(this):void 0},u.onFirstUpdate=function(){return f.tuneOptions(f.history[this.index])},u.isChained=!a.delay,this.timeline.append(new s(u)),this}tuneOptions(a){return this.extendOptions(a),this.postVars()}rotToCoords(a){var f,_,u;return f=((a%=360)-90)*Math.PI/180,_=Math.cos(f),u=Math.sin(f),{x:1.428571429*(_=_<0?Math.max(_,-.7):Math.min(_,.7)),y:1.428571429*(u=u<0?Math.max(u,-.7):Math.min(u,.7))}}}return h.prototype.defaults={path:null,curvature:{x:"75%",y:"50%"},isCompositeLayer:!0,delay:0,duration:1e3,easing:null,repeat:0,yoyo:!1,onStart:null,onComplete:null,onUpdate:null,offsetX:0,offsetY:0,rotationOffset:null,pathStart:0,pathEnd:1,motionBlur:0,transformOrigin:null,isRotation:!1,isReverse:!1,isRunLess:!1,isPresetPosition:!0},h}).call(this),w.exports=k},785:(w,d,m)=>{var k,g;k=m(623).Z,g=class extends k{_declareDefaults(){return super._declareDefaults(),this._defaults.shape="ellipse"}_draw(){var s,l;return s=this._props.radiusX!=null?this._props.radiusX:this._props.radius,l=this._props.radiusY!=null?this._props.radiusY:this._props.radius,this._setAttrIfChanged("rx",s),this._setAttrIfChanged("ry",l),this._setAttrIfChanged("cx",this._props.width/2),this._setAttrIfChanged("cy",this._props.height/2),super._draw()}_getLength(){var s,l;return s=this._props.radiusX!=null?this._props.radiusX:this._props.radius,l=this._props.radiusY!=null?this._props.radiusY:this._props.radius,2*Math.PI*Math.sqrt((s*s+l*l)/2)}},w.exports=g},158:(w,d,m)=>{var k,g;k=m(623).Z,g=class extends k{_declareDefaults(){return super._declareDefaults(),this._defaults.tag="path"}_draw(){var s,l,o,h,y,a,f;if(super._draw(),this._props,h=this._props.radiusX!=null?this._props.radiusX:this._props.radius,y=this._props.radiusY!=null?this._props.radiusY:this._props.radius,l=h===this._prevRadiusX,o=y===this._prevRadiusY,!l||!o)return s=`M${(a=this._props.width/2)-h},${f=this._props.height/2} L${a+h},${f} M${a},${f-y} L${a},${f+y}`,this.el.setAttribute("d",s),this._prevRadiusX=h,this._prevRadiusY=y}_getLength(){return 2*((this._props.radiusX!=null?this._props.radiusX:this._props.radius)+(this._props.radiusY!=null?this._props.radiusY:this._props.radius))}},w.exports=g},153:(w,d,m)=>{var k,g;k=m(623).Z,g=class extends k{_declareDefaults(){return super._declareDefaults(),this._defaults.tag="path",this._defaults.points=2}_draw(){var s,l,o,h,y,a,f,_,u,S,I,D,O,c,C,E;if(super._draw(),f=this._props,this._props.points&&(_=this._props.radiusX!=null?this._props.radiusX:this._props.radius,u=this._props.radiusY!=null?this._props.radiusY:this._props.radius,h=_===this._prevRadiusX,y=u===this._prevRadiusY,o=f.points===this._prevPoints,!(h&&y&&o))){for(I=this._props.width/2,c=this._props.height/2,D=I-_,O=I+_,s="",E=2*u/(this._props.points-1),C=c-u,l=a=0,S=this._props.points;0<=S?aS;l=0<=S?++a:--a)s+=`M${D}, ${c=`${l*E+C}`} L${O}, ${c} `;return this.el.setAttribute("d",s),this._prevPoints=f.points,this._prevRadiusX=_,this._prevRadiusY=u}}_getLength(){return 2*(this._props.radiusX!=null?this._props.radiusX:this._props.radius)}},w.exports=g},786:(w,d,m)=>{var k,g;k=m(623).Z,g=class extends k{_declareDefaults(){return super._declareDefaults(),this._defaults.tag="line"}_draw(){var s,l,o;return s=this._props.radiusX!=null?this._props.radiusX:this._props.radius,l=this._props.width/2,o=this._props.height/2,this._setAttrIfChanged("x1",l-s),this._setAttrIfChanged("x2",l+s),this._setAttrIfChanged("y1",o),this._setAttrIfChanged("y2",o),super._draw()}},w.exports=g},878:(w,d,m)=>{var k,g,s;s=m(52),k=m(623).Z,g=class extends k{_declareDefaults(){return super._declareDefaults(),this._defaults.tag="path",this._defaults.points=3}_draw(){var l,o,h,y,a,f,_,u,S,I,D,O,c,C,E;if(S=this._props,D=this._props.radiusX!=null?this._props.radiusX:this._props.radius,O=this._props.radiusY!=null?this._props.radiusY:this._props.radius,y=D===this._prevRadiusX,a=O===this._prevRadiusY,h=S.points===this._prevPoints,!(y&&a&&h)){for(E=360/this._props.points,this._radialPoints==null?this._radialPoints=[]:this._radialPoints.length=0,o=f=0,c=this._props.points;0<=c?fc;o=0<=c?++f:--f)this._radialPoints.push(s.getRadialPoint({radius:this._props.radius,radiusX:this._props.radiusX,radiusY:this._props.radiusY,rotate:o*E,center:{x:S.width/2,y:S.height/2}}));for(l="",o=_=0,u=(C=this._radialPoints).length;_{var k,g;k=m(623).Z,g=class extends k{_declareDefaults(){return super._declareDefaults(),this._defaults.tag="rect",this._defaults.rx=0,this._defaults.ry=0}_draw(){var s,l,o;return super._draw(),l=(s=this._props).radiusX!=null?s.radiusX:s.radius,o=s.radiusY!=null?s.radiusY:s.radius,this._setAttrIfChanged("width",2*l),this._setAttrIfChanged("height",2*o),this._setAttrIfChanged("x",s.width/2-l),this._setAttrIfChanged("y",s.height/2-o),this._setAttrIfChanged("rx",s.rx),this._setAttrIfChanged("ry",s.ry)}_getLength(){return 2*(2*(this._props.radiusX!=null?this._props.radiusX:this._props.radius)+2*(this._props.radiusY!=null?this._props.radiusY:this._props.radius))}},w.exports=g},806:function(w,d,m){var k,g,s,l,o,h,y,a,f,_,u,S;S=m(52),k=m(623).Z,h=m(854).Z,s=m(785),a=m(786),u=m(322),_=m(979),f=m(878),l=m(158),o=m(472).Z,y=m(153),g=(function(){class I{constructor(){this.addShape=S.bind(this.addShape,this)}getShape(O){return this[O]||S.error(`no "${O}" shape available yet, please choose from this list:`,["circle","line","zigzag","rect","polygon","cross","equal","curve"])}addShape(O,c){return this[O]=c}}return I.prototype.bit=k,I.prototype.custom=h,I.prototype.circle=s,I.prototype.line=a,I.prototype.zigzag=u,I.prototype.rect=_,I.prototype.polygon=f,I.prototype.cross=l,I.prototype.equal=y,I.prototype.curve=o,I}).call(this),w.exports=new g},322:(w,d,m)=>{var k,g;k=m(623).Z,g=class extends k{_declareDefaults(){return super._declareDefaults(),this._defaults.tag="path",this._defaults.points=3}_draw(){var s,l,o,h,y,a,f,_,u,S,I,D,O,c,C,E;if(super._draw(),u=this._props,this._props.points&&(I=this._props.radiusX!=null?this._props.radiusX:this._props.radius,D=this._props.radiusY!=null?this._props.radiusY:this._props.radius,y=I===this._prevRadiusX,a=D===this._prevRadiusY,h=u.points===this._prevPoints,!(y&&a&&h))){for(s=u.width/2-I,l=C=u.height/2,c=2*I/(u.points-1),E=-1,_=-(o=Math.sqrt(c*c+D*D)),S=`M${s}, ${C} `,f=0,O=u.points;0<=O?fO;0<=O?++f:--f)S+=`L${s}, ${l} `,s+=c,_+=o,l=E===-1?C-D:C,E=-E;return this._length=_,this.el.setAttribute("d",S),this._prevPoints=u.points,this._prevRadiusX=I,this._prevRadiusY=D}}_getLength(){return this._length}},w.exports=g},247:(w,d)=>{var m,k;k=class{constructor(g={}){this.o=g,window.isAnyResizeEventInited||(this.vars(),this.redefineProto())}vars(){return window.isAnyResizeEventInited=!0,this.allowedProtos=[HTMLDivElement,HTMLFormElement,HTMLLinkElement,HTMLBodyElement,HTMLParagraphElement,HTMLFieldSetElement,HTMLLegendElement,HTMLLabelElement,HTMLButtonElement,HTMLUListElement,HTMLOListElement,HTMLLIElement,HTMLHeadingElement,HTMLQuoteElement,HTMLPreElement,HTMLBRElement,HTMLFontElement,HTMLHRElement,HTMLModElement,HTMLParamElement,HTMLMapElement,HTMLTableElement,HTMLTableCaptionElement,HTMLImageElement,HTMLTableCellElement,HTMLSelectElement,HTMLInputElement,HTMLTextAreaElement,HTMLAnchorElement,HTMLObjectElement,HTMLTableColElement,HTMLTableSectionElement,HTMLTableRowElement],this.timerElements={img:1,textarea:1,input:1,embed:1,object:1,svg:1,canvas:1,tr:1,tbody:1,thead:1,tfoot:1,a:1,select:1,option:1,optgroup:1,dl:1,dt:1,br:1,basefont:1,font:1,col:1,iframe:1}}redefineProto(){var g,s,l;return s=this,(function(){var o,h,y,a;for(y=this.allowedProtos,a=[],g=o=0,h=y.length;othis.dispatchEvent(l)),l.iframe=o),l.isAnyResizeEventInited=!0}initTimer(g){var s,l;return l=0,s=0,this.interval=setInterval(()=>{var o,h;if(h=g.offsetWidth,o=g.offsetHeight,h!==l||o!==s)return this.dispatchEvent(g),l=h,s=o},this.o.interval||62.5)}dispatchEvent(g){var s;return document.createEvent?((s=document.createEvent("HTMLEvents")).initEvent("onresize",!1,!1),g.dispatchEvent(s)):!!document.createEventObject&&(s=document.createEventObject(),g.fireEvent("onresize",s))}destroy(){var g,s,l,o,h,y;for(clearInterval(this.interval),this.interval=null,window.isAnyResizeEventInited=!1,y=[],g=s=0,l=(h=this.allowedProtos).length;s{function k(g){if(g===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g}m.d(d,{Z:()=>k})},671:(w,d,m)=>{function k(g,s){if(!(g instanceof s))throw new TypeError("Cannot call a class as a function")}m.d(d,{Z:()=>k})},144:(w,d,m)=>{m.d(d,{Z:()=>s});var k=m(142);function g(l,o){for(var h=0;h{m.d(d,{Z:()=>g});var k=m(120);function g(){return g=typeof Reflect<"u"&&Reflect.get?Reflect.get.bind():function(s,l,o){var h=function(a,f){for(;!Object.prototype.hasOwnProperty.call(a,f)&&(a=(0,k.Z)(a))!==null;);return a}(s,l);if(h){var y=Object.getOwnPropertyDescriptor(h,l);return y.get?y.get.call(arguments.length<3?s:o):y.value}},g.apply(this,arguments)}},120:(w,d,m)=>{function k(g){return k=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(s){return s.__proto__||Object.getPrototypeOf(s)},k(g)}m.d(d,{Z:()=>k})},340:(w,d,m)=>{function k(s,l){return k=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(o,h){return o.__proto__=h,o},k(s,l)}function g(s,l){if(typeof l!="function"&&l!==null)throw new TypeError("Super expression must either be null or a function");s.prototype=Object.create(l&&l.prototype,{constructor:{value:s,writable:!0,configurable:!0}}),Object.defineProperty(s,"prototype",{writable:!1}),l&&k(s,l)}m.d(d,{Z:()=>g})},963:(w,d,m)=>{m.d(d,{Z:()=>s});var k=m(2),g=m(326);function s(l,o){if(o&&((0,k.Z)(o)==="object"||typeof o=="function"))return o;if(o!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return(0,g.Z)(l)}},142:(w,d,m)=>{m.d(d,{Z:()=>g});var k=m(2);function g(s){var l=function(o,h){if((0,k.Z)(o)!=="object"||o===null)return o;var y=o[Symbol.toPrimitive];if(y!==void 0){var a=y.call(o,h||"default");if((0,k.Z)(a)!=="object")return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return(h==="string"?String:Number)(o)}(s,"string");return(0,k.Z)(l)==="symbol"?l:String(l)}},2:(w,d,m)=>{function k(g){return k=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(s){return typeof s}:function(s){return s&&typeof Symbol=="function"&&s.constructor===Symbol&&s!==Symbol.prototype?"symbol":typeof s},k(g)}m.d(d,{Z:()=>k})}},p={};function b(w){var d=p[w];if(d!==void 0)return d.exports;var m=p[w]={exports:{}};return n[w].call(m.exports,m,m.exports,b),m.exports}b.n=w=>{var d=w&&w.__esModule?()=>w.default:()=>w;return b.d(d,{a:d}),d},b.d=(w,d)=>{for(var m in d)b.o(d,m)&&!b.o(w,m)&&Object.defineProperty(w,m,{enumerable:!0,get:d[m]})},b.o=(w,d)=>Object.prototype.hasOwnProperty.call(w,d);var T={};return(()=>{b.d(T,{default:()=>ds});var w=b(52),d=b.n(w),m=b(806),k=b.n(m),g=b(671),s=b(144),l=b(340),o=b(963),h=b(120),y=b(342),a=b(142);function f(Y,x,M){return(x=(0,a.Z)(x))in Y?Object.defineProperty(Y,x,{value:M,enumerable:!0,configurable:!0,writable:!0}):Y[x]=M,Y}var _=b(752),u=b(755),S=b(973);function I(Y){var x=function(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var M,i=(0,h.Z)(Y);if(x){var v=(0,h.Z)(this).constructor;M=Reflect.construct(i,arguments,v)}else M=i.apply(this,arguments);return(0,o.Z)(this,M)}}const D=function(Y){(0,l.Z)(M,Y);var x=I(M);function M(){var i,v=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return(0,g.Z)(this,M),(i=x.call(this,v))._transformTweenOptions(),!i._o.isTweenLess&&i._makeTween(),!i._o.isTimelineLess&&i._makeTimeline(),i}return(0,s.Z)(M,[{key:"play",value:function(){return this.timeline.play.apply(this.timeline,arguments),this}},{key:"playBackward",value:function(){return this.timeline.playBackward.apply(this.timeline,arguments),this}},{key:"pause",value:function(){return this.timeline.pause.apply(this.timeline,arguments),this}},{key:"stop",value:function(){return this.timeline.stop.apply(this.timeline,arguments),this}},{key:"reset",value:function(){return this.timeline.reset.apply(this.timeline,arguments),this}},{key:"replay",value:function(){return this.timeline.replay.apply(this.timeline,arguments),this}},{key:"replayBackward",value:function(){return this.timeline.replayBackward.apply(this.timeline,arguments),this}},{key:"resume",value:function(){return this.timeline.resume.apply(this.timeline,arguments),this}},{key:"setProgress",value:function(){return this.timeline.setProgress.apply(this.timeline,arguments),this}},{key:"setSpeed",value:function(){return this.timeline.setSpeed.apply(this.timeline,arguments),this}},{key:"_transformTweenOptions",value:function(){}},{key:"_makeTween",value:function(){this._o.callbacksContext=this._o.callbacksContext||this,this.tween=new u.Z(this._o),this._o.isTimelineLess&&(this.timeline=this.tween)}},{key:"_makeTimeline",value:function(){this._o.timeline=this._o.timeline||{},this._o.timeline.callbacksContext=this._o.callbacksContext||this,this.timeline=new y.Z(this._o.timeline),this._isTimeline=!0,this.tween&&this.timeline.add(this.tween)}}]),M}(S.Z);function O(Y){var x=function(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var M,i=(0,h.Z)(Y);if(x){var v=(0,h.Z)(this).constructor;M=Reflect.construct(i,arguments,v)}else M=i.apply(this,arguments);return(0,o.Z)(this,M)}}var c=function(Y){(0,l.Z)(M,Y);var x=O(M);function M(){return(0,g.Z)(this,M),x.apply(this,arguments)}return(0,s.Z)(M,[{key:"then",value:function(i){if(i==null||!Object.keys(i).length)return 1;var v=this._history[this._history.length-1],P=this._mergeThenOptions(v,i);this._resetMergedFlags(P);var R=new this.constructor(P);return R._masterModule=this,this._modules.push(R),this.timeline.append(R),this}},{key:"_resetMergedFlags",value:function(i){return i.isTimelineLess=!0,i.isShowStart=!1,i.isRefreshState=!1,i.callbacksContext=this._props.callbacksContext||this,i.prevChainModule=d().getLastItem(this._modules),i.masterModule=this,i}},{key:"_vars",value:function(){(0,_.Z)((0,h.Z)(M.prototype),"_vars",this).call(this),this._masterModule=this._o.masterModule,this._isChained=!!this._masterModule;var i=d().cloneObj(this._props);for(var v in this._arrayPropertyMap)if(this._o[v]){var P=this._parsePreArrayProperty(v,this._o[v]);i[v]=P}this._history=[i],this._modules=[this],this._nonMergeProps={shape:1}}},{key:"_mergeThenOptions",value:function(i,v){var P={};return this._mergeStartLoop(P,i),this._mergeEndLoop(P,i,v),this._history.push(P),P}},{key:"_checkStartValue",value:function(i,v){return v}},{key:"_mergeStartLoop",value:function(i,v){for(var P in v){var R=v[P];v[P]!=null&&(d().isTweenProp(P)&&P!=="duration"||(this._isDelta(R)?i[P]=d().getDeltaEnd(R):i[P]=R))}}},{key:"_mergeEndLoop",value:function(i,v,P){for(var R in P)if(R!="parent"){var z=P[R],N=v[R]!=null?v[R]:this._defaults[R];if(N=this._checkStartValue(R,N),z!=null){var W=R==="radiusX"||R==="radiusY";W&&N==null&&(N=v.radius),(W=R==="scaleX"||R==="scaleY")&&N==null&&(N=v.scale),i[R]=this._mergeThenProperty(R,N,z)}}else i[R]=P[R]}},{key:"_mergeThenProperty",value:function(i,v,P){var R,z,N=typeof P=="boolean";if(d().isTweenProp(i)||this._nonMergeProps[i]||N)return P;if(d().isObject(P)&&P.to!=null&&(R=P.curve,z=P.easing,P=P.to),this._isDelta(P))return this._parseDeltaValues(i,P);var W,J,ke=this._parsePreArrayProperty(i,P);return this._isDelta(v)?(f(W={},d().getDeltaEnd(v),ke),f(W,"easing",z),f(W,"curve",R),W):(f(J={},v,ke),f(J,"easing",z),f(J,"curve",R),J)}},{key:"_getArrayLength",value:function(i){return d().isArray(i)?i.length:-1}},{key:"_isDelta",value:function(i){var v=d().isObject(i);return!(!(v=v&&!i.unit)||d().isArray(i)||d().isDOM(i))}},{key:"_isFirstInChain",value:function(){return!this._masterModule}},{key:"_isLastInChain",value:function(){var i=this._masterModule;return i?this===d().getLastItem(i._modules):this._modules.length===1}}]),M}(D);const C=c;function E(Y){var x=function(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var M,i=(0,h.Z)(Y);if(x){var v=(0,h.Z)(this).constructor;M=Reflect.construct(i,arguments,v)}else M=i.apply(this,arguments);return(0,o.Z)(this,M)}}var $=function(Y){(0,l.Z)(M,Y);var x=E(M);function M(){return(0,g.Z)(this,M),x.apply(this,arguments)}return(0,s.Z)(M,[{key:"tune",value:function(i){if(i&&Object.keys(i).length){for(var v in this._transformHistory(i),this._tuneNewOptions(i),this._history[0]=d().cloneObj(this._props),this._arrayPropertyMap)i[v]!=null&&(this._history[0][v]=this._preparsePropValue(v,i[v]));this._tuneSubModules(),this._resetTweens()}return this}},{key:"generate",value:function(){return this.tune(this._o)}},{key:"_transformHistory",value:function(i){for(var v in i){var P=i[v];this._transformHistoryFor(v,this._preparsePropValue(v,P))}}},{key:"_transformHistoryFor",value:function(i,v){for(var P=0;P2&&arguments[2]!==void 0?arguments[2]:0;v.shiftTime=P,i._setProp(v)}}]),M}(C);const L=$;function j(Y){var x=function(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var M,i=(0,h.Z)(Y);if(x){var v=(0,h.Z)(this).constructor;M=Reflect.construct(i,arguments,v)}else M=i.apply(this,arguments);return(0,o.Z)(this,M)}}var V=function(Y){(0,l.Z)(M,Y);var x=j(M);function M(i,v){var P;return(0,g.Z)(this,M),P=x.call(this),(0,o.Z)(P,P._init(i,v))}return(0,s.Z)(M,[{key:"then",value:function(i){if(i==null)return this;for(var v=0;v0&&arguments[0]!==void 0?arguments[0]:{};this.timeline=new y.Z(i.timeline)}},{key:"_makeTween",value:function(){}},{key:"_makeTimeline",value:function(){}}]),M}(L),se=b(47),ie=b(283),K=b.n(ie);function X(Y){var x=function(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var M,i=(0,h.Z)(Y);if(x){var v=(0,h.Z)(this).constructor;M=Reflect.construct(i,arguments,v)}else M=i.apply(this,arguments);return(0,o.Z)(this,M)}}var he=function(Y){(0,l.Z)(M,Y);var x=X(M);function M(){return(0,g.Z)(this,M),x.apply(this,arguments)}return(0,s.Z)(M,[{key:"_declareDefaults",value:function(){this._defaults={parent:document.body,className:"",shape:"circle",stroke:"transparent",strokeOpacity:1,strokeLinecap:"",strokeWidth:2,strokeDasharray:0,strokeDashoffset:0,fill:"deeppink",fillOpacity:1,isSoftHide:!0,isForce3d:!1,left:"50%",top:"50%",x:0,y:0,rotate:0,scale:1,scaleX:null,scaleY:null,origin:"50% 50%",opacity:1,rx:0,ry:0,points:3,radius:50,radiusX:null,radiusY:null,isShowStart:!1,isShowEnd:!0,isRefreshState:!0,duration:400,width:null,height:null,isWithShape:!0,callbacksContext:this}}},{key:"tune",value:function(i){return(0,_.Z)((0,h.Z)(M.prototype),"tune",this).call(this,i),this._getMaxSizeInChain(),this}},{key:"then",value:function(i){return(0,_.Z)((0,h.Z)(M.prototype),"then",this).call(this,i),this._getMaxSizeInChain(),this}},{key:"_vars",value:function(){return(0,_.Z)((0,h.Z)(M.prototype),"_vars",this).call(this),this._lastSet={},this._prevChainModule=this._o.prevChainModule,this.isForeign=!!this._o.ctx,this.isForeignBit=!!this._o.shape}},{key:"_render",value:function(){return this._isRendered||this._isChained?this._isChained&&(this.el=this._masterModule.el,this.shapeModule=this._masterModule.shapeModule):(this.el=document.createElement("div"),this.el.setAttribute("data-name","mojs-shape"),this.el.setAttribute("class",this._props.className),this._createShape(),this._props.parent.appendChild(this.el),this._setElStyles(),this._setProgress(0,0),this._props.isShowStart?this._show():this._hide(),this._isRendered=!0),this}},{key:"_setElStyles",value:function(){if(this.el){var i=this._props,v=this.el.style,P=i.shapeWidth,R=i.shapeHeight;if(v.position="absolute",this._setElSizeStyles(P,R),i.isForce3d){var z="backface-visibility";v["".concat(z)]="hidden",v["".concat(d().prefix.css).concat(z)]="hidden"}}}},{key:"_setElSizeStyles",value:function(i,v){var P=this.el.style;P.width="".concat(i,"px"),P.height="".concat(v,"px"),P["margin-left"]="".concat(-i/2,"px"),P["margin-top"]="".concat(-v/2,"px")}},{key:"_draw",value:function(){if(this.shapeModule){var i=this._props,v=this.shapeModule._props;v.rx=i.rx,v.ry=i.ry,v.stroke=i.stroke,v["stroke-width"]=i.strokeWidth,v["stroke-opacity"]=i.strokeOpacity,v["stroke-dasharray"]=i.strokeDasharray,v["stroke-dashoffset"]=i.strokeDashoffset,v["stroke-linecap"]=i.strokeLinecap,v.fill=i.fill,v["fill-opacity"]=i.fillOpacity,v.radius=i.radius,v.radiusX=i.radiusX,v.radiusY=i.radiusY,v.points=i.points,this.shapeModule._draw(),this._drawEl()}}},{key:"_drawEl",value:function(){if(this.el==null)return!0;var i=this._props,v=this.el.style;if(this._isPropChanged("opacity")&&(v.opacity=i.opacity),!this.isForeign){this._isPropChanged("left")&&(v.left=i.left),this._isPropChanged("top")&&(v.top=i.top);var P=this._isPropChanged("x"),R=this._isPropChanged("y"),z=P||R,N=this._isPropChanged("scaleX"),W=this._isPropChanged("scaleY"),J=this._isPropChanged("scale"),ke=this._isPropChanged("rotate");if(J=J||N||W,z||J||ke){var Ke=this._fillTransform();v["".concat(d().prefix.css,"transform")]=Ke,v.transform=Ke}if(this._isPropChanged("origin")||this._deltas.origin){var Xt=this._fillOrigin();v["".concat(d().prefix.css,"transform-origin")]=Xt,v["transform-origin"]=Xt}}}},{key:"_isPropChanged",value:function(i){return this._lastSet[i]==null&&(this._lastSet[i]={}),this._lastSet[i].value!==this._props[i]&&(this._lastSet[i].value=this._props[i],!0)}},{key:"_tuneNewOptions",value:function(i){if((0,_.Z)((0,h.Z)(M.prototype),"_tuneNewOptions",this).call(this,i),i==null||!Object.keys(i).length)return 1;this._setElStyles()}},{key:"_getMaxRadius",value:function(i){var v;return v=this._getRadiusSize("radius"),this._getRadiusSize(i,v)}},{key:"_increaseSizeWithEasing",value:function(){var i=this._props,v=this._o.easing;switch(v&&typeof v=="string"&&v.toLowerCase()){case"elastic.out":case"elastic.inout":i.size*=1.25;break;case"back.out":case"back.inout":i.size*=1.1}}},{key:"_getRadiusSize",value:function(i){var v=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,P=this._deltas[i];return P!=null?Math.max(Math.abs(P.end),Math.abs(P.start)):this._props[i]!=null?parseFloat(this._props[i]):v}},{key:"_getShapeSize",value:function(){var i=this._props,v=this._getMaxStroke();i.shapeWidth=i.width!=null?i.width:2*this._getMaxRadius("radiusX")+v,i.shapeHeight=i.height!=null?i.height:2*this._getMaxRadius("radiusY")+v}},{key:"_createShape",value:function(){if(this._getShapeSize(),this._props.isWithShape){var i=this._props,v=k().getShape(this._props.shape);this.shapeModule=new v({width:i.shapeWidth,height:i.shapeHeight,parent:this.el})}}},{key:"_getMaxSizeInChain",value:function(){for(var i=0,v=0,P=0;P"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var M,i=(0,h.Z)(Y);if(x){var v=(0,h.Z)(this).constructor;M=Reflect.construct(i,arguments,v)}else M=i.apply(this,arguments);return(0,o.Z)(this,M)}}const Ee=function(Y){(0,l.Z)(M,Y);var x=be(M);function M(){return(0,g.Z)(this,M),x.apply(this,arguments)}return(0,s.Z)(M,[{key:"_declareDefaults",value:function(){(0,_.Z)((0,h.Z)(M.prototype),"_declareDefaults",this).call(this),this._defaults.isSwirl=!0,this._defaults.swirlSize=10,this._defaults.swirlFrequency=3,this._defaults.pathScale=1,this._defaults.degreeShift=0,this._defaults.radius=5,this._defaults.x=0,this._defaults.y=0,this._defaults.scale={1:0},this._defaults.direction=1}},{key:"_extendDefaults",value:function(){(0,_.Z)((0,h.Z)(M.prototype),"_extendDefaults",this).call(this),this._calcPosData()}},{key:"_tuneNewOptions",value:function(i){i!=null&&((0,_.Z)((0,h.Z)(M.prototype),"_tuneNewOptions",this).call(this,i),i.x==null&&i.y==null||this._calcPosData())}},{key:"_calcPosData",value:function(){var i=this._getPosValue("x"),v=this._getPosValue("y"),P=90+Math.atan(v.delta/i.delta||0)*d().RAD_TO_DEG;this._posData={radius:Math.sqrt(i.delta*i.delta+v.delta*v.delta),rotate:i.delta<0?P+180:P,x:i,y:v}}},{key:"_getPosValue",value:function(i){var v=this._deltas[i];if(v)return delete this._deltas[i],{start:v.start.value,end:v.end.value,delta:v.delta,units:v.end.unit};var P=d().parseUnit(this._props[i]);return{start:P.value,end:P.value,delta:0,units:P.unit}}},{key:"_setProgress",value:function(i,v){this._progress=i,this._calcCurrentProps(i,v),this._calcSwirlXY(i),this._draw(i)}},{key:"_calcSwirlXY",value:function(i){var v=this._props,P=this._posData.rotate+v.degreeShift,R=d().getRadialPoint({rotate:v.isSwirl?P+this._getSwirl(i):P,radius:i*this._posData.radius*v.pathScale,center:{x:this._posData.x.start,y:this._posData.y.start}}),z=R.x,N=R.y,W=1e-6;z>0&&z0&&N-1e-6&&(z=-1e-6),N<0&&N>-1e-6&&(N=-1e-6),v.x=this._o.ctx?z:"".concat(z).concat(this._posData.x.units),v.y=this._o.ctx?N:"".concat(N).concat(this._posData.y.units)}},{key:"_getSwirl",value:function(i){var v=this._props;return v.direction*v.swirlSize*Math.sin(v.swirlFrequency*i)}},{key:"_draw",value:function(){var i=this._props.isWithShape?"_draw":"_drawEl";ne.prototype[i].call(this)}}]),M}(ne);function Ce(Y){var x=function(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var M,i=(0,h.Z)(Y);if(x){var v=(0,h.Z)(this).constructor;M=Reflect.construct(i,arguments,v)}else M=i.apply(this,arguments);return(0,o.Z)(this,M)}}var qe=function(Y){(0,l.Z)(M,Y);var x=Ce(M);function M(){return(0,g.Z)(this,M),x.apply(this,arguments)}return(0,s.Z)(M,[{key:"_declareDefaults",value:function(){this._defaults={count:5,degree:360,radius:{0:50},radiusX:null,radiusY:null,width:0,height:0}}},{key:"then",value:function(i){this._removeTweenProperties(i);var v=this._masterThen(i),P=this._childThen(i);return this._setSwirlDuration(v,this._calcPackTime(P)),this.timeline._recalcTotalDuration(),this}},{key:"tune",value:function(i){return i==null||(this._saveTimelineOptions(i),this.timeline._setProp(this._timelineOptions),this._removeTweenProperties(i),this._tuneNewOptions(i),this.masterSwirl.tune(i),this._tuneSwirls(i),this._recalcModulesTime()),this}},{key:"_extendDefaults",value:function(){this._removeTweenProperties(this._o),(0,_.Z)((0,h.Z)(M.prototype),"_extendDefaults",this).call(this)}},{key:"_removeTweenProperties",value:function(i){for(var v in d().tweenOptionMap)this._defaults[v]==null&&delete i[v]}},{key:"_recalcModulesTime",value:function(){for(var i=this.masterSwirl._modules,v=this._swirls,P=0,R=0;R2&&arguments[2]!==void 0?arguments[2]:{})[i];return d().isArray(P)?P[v%P.length]:P}},{key:"_addOptionalProps",value:function(i,v){return i.index=v,i.parent=this.masterSwirl.el,this._addBurstProperties(i,v),i}},{key:"_addBurstProperties",value:function(i,v,P){var R=this._index;this._index=v;var z=this._parseProperty("degreeShift",i.degreeShift||0);this._index=R;var N=this._props,W=N.degree%360==0?N.count:N.count-1||1,J=N.degree/W,ke=this._getSidePoint("start",v*J+z,P),Ke=this._getSidePoint("end",v*J+z,P);i.x=this._getDeltaFromPoints("x",ke,Ke),i.y=this._getDeltaFromPoints("y",ke,Ke),i.rotate=this._getBitRotation(i.rotate||0,z,v)}},{key:"_getBitRotation",value:function(){var i=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,v=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,P=arguments.length>2?arguments[2]:void 0,R=this._props,z=R.degree%360==0?R.count:R.count-1||1,N=P*(R.degree/z)+90;if(N+=v,this._isDelta(i)){var W={},J=Object.keys(i)[0],ke=i[J];J=d().parseStringOption(J,P),ke=d().parseStringOption(ke,P),W[parseFloat(J)+N]=parseFloat(ke)+N,i=W}else i+=N;return i}},{key:"_getSidePoint",value:function(i,v,P){var R=this._getSideRadius(i,P);return d().getRadialPoint({radius:R.radius,radiusX:R.radiusX,radiusY:R.radiusY,rotate:v,center:{x:0,y:0}})}},{key:"_getSideRadius",value:function(i,v){return{radius:this._getRadiusByKey("radius",i,v),radiusX:this._getRadiusByKey("radiusX",i,v),radiusY:this._getRadiusByKey("radiusY",i,v)}}},{key:"_getRadiusByKey",value:function(i,v){var P=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,R=this._masterSwirls[P],z=R._deltas,N=R._props;return z[i]!=null?z[i][v]:N[i]!=null?N[i]:void 0}},{key:"_getDeltaFromPoints",value:function(i,v,P){var R={};return v[i]===P[i]?R=v[i]:R[v[i]]=P[i],R}},{key:"_makeTimeline",value:function(){this._o.timeline=this._timelineOptions,(0,_.Z)((0,h.Z)(M.prototype),"_makeTimeline",this).call(this),this.timeline.add(this.masterSwirl,this._swirls[0])}},{key:"_makeTween",value:function(){}},{key:"_hide",value:function(){}},{key:"_show",value:function(){}}]),M}(L),ze=function(Y){(0,l.Z)(M,Y);var x=Ce(M);function M(){return(0,g.Z)(this,M),x.apply(this,arguments)}return(0,s.Z)(M,[{key:"_declareDefaults",value:function(){(0,_.Z)((0,h.Z)(M.prototype),"_declareDefaults",this).call(this),this._defaults.isSwirl=!1,this._o.duration=this._o.duration!=null?this._o.duration:700}},{key:"_calcSwirlXY",value:function(i){var v=this._props.degreeShift;this._props.degreeShift=0,(0,_.Z)((0,h.Z)(M.prototype),"_calcSwirlXY",this).call(this,i),this._props.degreeShift=v}}]),M}(Ee),Ve=function(Y){(0,l.Z)(M,Y);var x=Ce(M);function M(){return(0,g.Z)(this,M),x.apply(this,arguments)}return(0,s.Z)(M,[{key:"_declareDefaults",value:function(){(0,_.Z)((0,h.Z)(M.prototype),"_declareDefaults",this).call(this),this._defaults.scale=1,this._defaults.width=0,this._defaults.height=0,this._defaults.radius={25:75}}}]),M}(ze);qe.ChildSwirl=ze,qe.MainSwirl=Ve;const is=qe;var ns=function(){function Y(){var x=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};(0,g.Z)(this,Y),this._o=x,this._createTween(x.tweenOptions),!this._o.isChained&&this.refresh(!0)}return(0,s.Z)(Y,[{key:"refresh",value:function(x){this._previousValues=[];for(var M=this._o.deltas,i=0;i0&&arguments[0]!==void 0?arguments[0]:{},M=this;x.callbackOverrides={onUpdate:function(i,v){M._calcCurrentProps(i,v)}},this._o.isChained||(x.callbackOverrides.onRefresh=function(i,v,P){M._calcCurrentProps(v,P)}),x.callbacksContext=this._o.callbacksContext,this.tween=new u.Z(x)}},{key:"_calcCurrentProps",value:function(x,M){for(var i=this._o.deltas,v=0;v0&&arguments[0]!==void 0?arguments[0]:{};(0,g.Z)(this,Y),this._o=x,this._shortColors={transparent:"rgba(0,0,0,0)",none:"rgba(0,0,0,0)",aqua:"rgb(0,255,255)",black:"rgb(0,0,0)",blue:"rgb(0,0,255)",fuchsia:"rgb(255,0,255)",gray:"rgb(128,128,128)",green:"rgb(0,128,0)",lime:"rgb(0,255,0)",maroon:"rgb(128,0,0)",navy:"rgb(0,0,128)",olive:"rgb(128,128,0)",purple:"rgb(128,0,128)",red:"rgb(255,0,0)",silver:"rgb(192,192,192)",teal:"rgb(0,128,128)",white:"rgb(255,255,255)",yellow:"rgb(255,255,0)",orange:"rgb(255,128,0)"},this._ignoreDeltasMap={prevChainModule:1,masterModule:1},this._parseDeltas(x.options),this._createDeltas(),this._createTimeline(this._mainTweenOptions)}return(0,s.Z)(Y,[{key:"refresh",value:function(x){for(var M=0;M"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var M,i=(0,h.Z)(Y);if(x){var v=(0,h.Z)(this).constructor;M=Reflect.construct(i,arguments,v)}else M=i.apply(this,arguments);return(0,o.Z)(this,M)}}var We={};u.Z.prototype._declareDefaults.call(We);for(var Yt=Object.keys(We._defaults),yt=0;yt0&&arguments[0]!==void 0?arguments[0]:{};this._customProps=i.customProperties||{},this._customProps=je({},this._customProps),this._customDraw=this._customProps.draw,delete this._customProps.draw,delete i.customProperties,this._copyDefaultCustomProps()}},{key:"_copyDefaultCustomProps",value:function(){for(var i in this._customProps)this._o[i]==null&&(this._o[i]=this._customProps[i])}},{key:"_resetMergedFlags",value:function(i){return(0,_.Z)((0,h.Z)(M.prototype),"_resetMergedFlags",this).call(this,i),i.props=this._props,i.customProperties=this._customProps,i}},{key:"_parseOption",value:function(i,v){(0,_.Z)((0,h.Z)(M.prototype),"_parseOption",this).call(this,i,v);var P=this._props[i];d().isArray(P)&&(this._props[i]=this._arrToString(P))}},{key:"_arrToString",value:function(i){for(var v="",P=0;P0&&arguments[0]!==void 0?arguments[0]:{};return(0,g.Z)(this,Y),this.o=x,this.o.el?(this._vars(),this._declareDefaults(),this._extendDefaults(),this._parseFrames(),this._frames.length<=2&&d().warn("Spriter: only ".concat(this._frames.length," frames found")),this._frames.length<1&&d().error("Spriter: there is no frames to animate, aborting"),this._createTween(),this):d().error('No "el" option specified, aborting')}return(0,s.Z)(Y,[{key:"_declareDefaults",value:function(){this._defaults={duration:500,delay:0,easing:"linear.none",repeat:0,yoyo:!1,isRunLess:!1,isShowEnd:!1,onStart:null,onUpdate:null,onComplete:null}}},{key:"_vars",value:function(){this._props=d().cloneObj(this.o),this.el=this.o.el,this._frames=[]}},{key:"run",value:function(){return this.timeline.play()}},{key:"_extendDefaults",value:function(){return d().extend(this._props,this._defaults)}},{key:"_parseFrames",value:function(){this._frames=Array.prototype.slice.call(this.el.children,0),this._frames.forEach(function(x){return x.style.opacity=0}),this._frameStep=1/this._frames.length}},{key:"_createTween",value:function(){var x=this;this._tween=new u.Z({duration:this._props.duration,delay:this._props.delay,yoyo:this._props.yoyo,repeat:this._props.repeat,easing:this._props.easing,onStart:function(){return x._props.onStart&&x._props.onStart()},onComplete:function(){return x._props.onComplete&&x._props.onComplete()},onUpdate:function(M){return x._setProgress(M)}}),this.timeline=new y.Z,this.timeline.add(this._tween),this._props.isRunLess||this._startTween()}},{key:"_startTween",value:function(){var x=this;setTimeout(function(){return x.timeline.play()},1)}},{key:"_setProgress",value:function(x){var M=Math.floor(x/this._frameStep);if(this._prevFrame!=this._frames[M]){this._prevFrame&&(this._prevFrame.style.opacity=0);var i=x===1&&this._props.isShowEnd?M-1:M;this._frames[i]&&(this._frames[i].style.opacity=1),this._prevFrame=this._frames[M]}this._props.onUpdate&&this._props.onUpdate(x)}}]),Y}();var ps=b(291),fs=b.n(ps),Ft={revision:"1.7.1",isDebug:!1,helpers:d(),Shape:ne,ShapeSwirl:Ee,Burst:is,Html:cs,stagger:function(Y){return function(x){return new V(x,Y)}},Spriter:hs,MotionPath:fs(),Tween:u.Z,Timeline:y.Z,Tweenable:D,Thenable:C,Tunable:L,Module:S.Z,tweener:se.Z,easing:K(),shapesMap:k(),_pool:{Delta:$t,Deltas:jt},h:d(),delta:d().delta,addShape:k().addShape,CustomShape:k().custom,Transit:ne,Swirl:Ee};typeof window<"u"&&(window.mojs=Ft);const ds=Ft})(),T=T.default})(),t.exports=r()})(Wr);var oi=Wr.exports;const li=ai(oi);function ur(t,e,r){const n=t.slice();return n[22]=e[r],n}function cr(t){let e,r=t[22].cubeValue+1+"",n;return{c(){e=B("p"),n=re(r),Z(e,"class","svelte-13p449q")},m(p,b){q(p,e,b),A(e,n)},p(p,b){b&4&&r!==(r=p[22].cubeValue+1+"")&&ce(n,r)},d(p){p&&U(e)}}}function hr(t){let e,r,n,p,b,T=t[1]>0&&cr(t);function w(){return t[5](t[22])}return{c(){e=B("div"),T&&T.c(),r=G(),Z(e,"id",n="each-cube-"+t[22].cubeIndex),Z(e,"class","each-cube svelte-13p449q"),te(e,"background-color",t[22].bgColor),te(e,"top",t[22].top+"vw"),te(e,"left",t[22].left+"vw")},m(d,m){q(d,e,m),T&&T.m(e,null),A(e,r),p||(b=Se(e,"click",w),p=!0)},p(d,m){t=d,t[1]>0?T?T.p(t,m):(T=cr(t),T.c(),T.m(e,r)):T&&(T.d(1),T=null),m&4&&n!==(n="each-cube-"+t[22].cubeIndex)&&Z(e,"id",n),m&4&&te(e,"background-color",t[22].bgColor),m&4&&te(e,"top",t[22].top+"vw"),m&4&&te(e,"left",t[22].left+"vw")},d(d){d&&U(e),T&&T.d(),p=!1,b()}}}function ui(t){let e,r,n,p,b,T,w,d,m,k,g,s,l=le(t[2]),o=[];for(let h=0;hr(12,n=c)),fe(t,xe,c=>r(13,p=c));const b=mt();let T=0,w=p.amountOfAnswers,d=p.gameTime*100,m=p.maxAnswersIncorrect,k=n.timeForNumberDisplay*100,g,s=!1,l=!1,o=[],h=0,y=0,a=["var(--color-green)","var(--color-palegreen)","var(--color-blue)"];Oe(()=>{let c=[];for(;c.length{s=!0,document.querySelectorAll(".each-cube").forEach(E=>{f(E)}),g=setInterval(_,10)},1e3)});function f(c){let C=c.offsetTop,E=c.offsetLeft,$=pe(pr,fr),L=pe(dr,_r),j=Jt($),V=Jt(L),se=j-C,ie=V-E,K=pe(10,40)*100;new li.Html({el:"#"+c.id,x:{0:ie,duration:K,easing:"linear.none"},y:{0:se,duration:K,easing:"linear.none"},duration:K+50,onComplete(){if(c.offsetTop===0&&c.offsetLeft===0){this.pause();return}const X=c.style.backgroundColor;c.style="background-color: "+X+"; top: "+$+"vw; left: "+L+"vw; transform: none;",f(c)},onUpdate(){s===!1&&this.pause()}}).play()}function _(){if(d<=0){I(!1);return}r(1,k--,k),d--,r(0,T=d/100)}function u(c){if(s&&!l&&k<=0){if(h===c.cubeIndex){let C=document.getElementById("each-cube-"+c.cubeIndex);C.style.backgroundColor="var(--color-darkgrey)",h=h+1}else y=y+1;S()}}function S(){h===o.length-1&&y=m&&I(!1)}function I(c){l||(l=!0,clearInterval(g),setTimeout(()=>{Pe("minigame:callback",c),b("game-ended",{hackSuccess:c}),b("minigame:callback",{hackSuccess:c})},1e3))}function D(c){let C=c.key;if(s&&["Escape"].includes(C)&&!l)switch(C){case"Escape":vt(!1);return}}return[T,k,o,u,D,c=>u(c)]}class hi extends ye{constructor(e){super(),ge(this,e,ci,ui,de,{})}}function pi(t){let e,r;return e=new Gs({props:{isSuccess:t[1]}}),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},p(n,p){const b={};p&2&&(b.isSuccess=n[1]),e.$set(b)},i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function fi(t){var D,O;let e,r,n,p,b,T,w,d=((D=t[2])==null?void 0:D.gameName)+"",m,k,g,s,l=((O=t[2])==null?void 0:O.gameDescription)+"",o,h,y,a,f,_;p=new Zt({props:{color:yi}});const u=[vi,mi,_i,di],S=[];function I(c,C){return c[3]===_e.Memory?0:c[3]===_e.Scrambler?1:c[3]===_e.NumberMaze?2:c[3]===_e.NumberPuzzle?3:-1}return~(a=I(t))&&(f=S[a]=u[a](t)),{c(){e=B("div"),r=B("div"),n=B("div"),ue(p.$$.fragment),b=G(),T=B("div"),w=B("p"),m=re(d),k=G(),g=B("div"),s=B("p"),o=re(l),h=G(),y=B("div"),f&&f.c(),Z(n,"class","skull-logo svelte-17zg6q"),Z(w,"class","ps-font-arcade"),Z(T,"class","game-heading svelte-17zg6q"),Z(g,"class","game-description svelte-17zg6q"),Z(y,"class","main-game-body svelte-17zg6q"),Z(r,"class","game-wrapper ps-bg-darkblue svelte-17zg6q"),Z(e,"class","games-container svelte-17zg6q")},m(c,C){q(c,e,C),A(e,r),A(r,n),ae(p,n,null),A(r,b),A(r,T),A(T,w),A(w,m),A(r,k),A(r,g),A(g,s),A(s,o),A(r,h),A(r,y),~a&&S[a].m(y,null),_=!0},p(c,C){var $,L;(!_||C&4)&&d!==(d=(($=c[2])==null?void 0:$.gameName)+"")&&ce(m,d),(!_||C&4)&&l!==(l=((L=c[2])==null?void 0:L.gameDescription)+"")&&ce(o,l);let E=a;a=I(c),a===E?~a&&S[a].p(c,C):(f&&(me(),H(S[E],1,1,()=>{S[E]=null}),ve()),~a?(f=S[a],f?f.p(c,C):(f=S[a]=u[a](c),f.c()),F(f,1),f.m(y,null)):f=null)},i(c){_||(F(p.$$.fragment,c),F(f),_=!0)},o(c){H(p.$$.fragment,c),H(f),_=!1},d(c){c&&U(e),oe(p),~a&&S[a].d()}}}function di(t){let e,r;return e=new hi({}),e.$on("game-ended",t[7]),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},p:Q,i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function _i(t){let e,r;return e=new ni({}),e.$on("game-ended",t[6]),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},p:Q,i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function mi(t){let e,r;return e=new Qs({}),e.$on("game-ended",t[5]),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},p:Q,i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function vi(t){let e,r;return e=new Fs({}),e.$on("game-ended",t[4]),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},p:Q,i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function gi(t){let e,r,n,p;const b=[fi,pi],T=[];function w(d,m){return d[0]?1:0}return e=w(t),r=T[e]=b[e](t),{c(){r.c(),n=dt()},m(d,m){T[e].m(d,m),q(d,n,m),p=!0},p(d,[m]){let k=e;e=w(d),e===k?T[e].p(d,m):(me(),H(T[k],1,1,()=>{T[k]=null}),ve(),r=T[e],r?r.p(d,m):(r=T[e]=b[e](d),r.c()),F(r,1),r.m(n.parentNode,n))},i(d){p||(F(r),p=!0)},o(d){H(r),p=!1},d(d){d&&U(n),T[e].d(d)}}}const yi="var(--color-green)";function bi(t,e,r){let n,p;fe(t,Be,g=>r(2,n=g)),fe(t,Ze,g=>r(3,p=g));let b=!1,T=!1;return[b,T,n,p,g=>{r(0,b=!0),r(1,T=g.detail.hackSuccess)},g=>{r(0,b=!0),r(1,T=g.detail.hackSuccess)},g=>{r(0,b=!0),r(1,T=g.detail.hackSuccess)},g=>{r(0,b=!0),r(1,T=g.detail.hackSuccess)}]}class ki extends ye{constructor(e){super(),ge(this,e,bi,gi,de,{})}}function mr(t){let e,r,n,p,b,T,w,d,m,k,g;return p=new Zt({props:{color:Si}}),{c(){e=B("div"),r=B("div"),n=B("span"),ue(p.$$.fragment),b=G(),T=B("p"),w=re(t[3]),d=G(),m=B("div"),k=B("div"),k.innerHTML="",Z(n,"class","w-40"),Z(T,"class","text-white text-3xl mt-2"),Z(k,"class","ps-bg-green opacity-40 will-change-auto w-0"),Z(m,"class","flex mt-10 ps-border-green border-4 w-[80%] h-10"),Z(r,"class","flex flex-col h-[400px] w-[700px] ps-bg-darkblue shadow-md shadow-black justify-center items-center"),Z(e,"class","flex min-h-screen justify-center items-center")},m(s,l){q(s,e,l),A(e,r),A(r,n),ae(p,n,null),A(r,b),A(r,T),A(T,w),A(r,d),A(r,m),A(m,k),t[4](k),g=!0},p(s,l){(!g||l&8)&&ce(w,s[3])},i(s){g||(F(p.$$.fragment,s),g=!0)},o(s){H(p.$$.fragment,s),g=!1},d(s){s&&U(e),oe(p),t[4](null)}}}function vr(t){let e,r;return e=new ki({}),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function wi(t){let e,r,n,p=t[2]&&mr(t),b=!t[2]&&t[1]&&vr();return{c(){p&&p.c(),e=G(),b&&b.c(),r=dt()},m(T,w){p&&p.m(T,w),q(T,e,w),b&&b.m(T,w),q(T,r,w),n=!0},p(T,[w]){T[2]?p?(p.p(T,w),w&4&&F(p,1)):(p=mr(T),p.c(),F(p,1),p.m(e.parentNode,e)):p&&(me(),H(p,1,1,()=>{p=null}),ve()),!T[2]&&T[1]?b?w&6&&F(b,1):(b=vr(),b.c(),F(b,1),b.m(r.parentNode,r)):b&&(me(),H(b,1,1,()=>{b=null}),ve())},i(T){n||(F(p),F(b),n=!0)},o(T){H(p),H(b),n=!1},d(T){T&&(U(e),U(r)),p&&p.d(T),b&&b.d(T)}}}const Si="#02f1b5";function Ti(t,e,r){let n,p;fe(t,Tt,m=>r(2,n=m)),fe(t,Le,m=>r(3,p=m));let b,T=!1;async function w(){return new Promise(m=>{let k=0,g=setInterval(()=>{k++,r(0,b.style.width=`${k}%`,b),k===100&&(clearInterval(g),m())},30)})}Oe(async()=>{Le.set($e.Connecting),Tt.set(!0),await w(),Le.set($e.Connected),setTimeout(()=>{Tt.set(!1),r(1,T=!0)},2e3)}),qr(async()=>{r(1,T=!1)});function d(m){Ct[m?"unshift":"push"](()=>{b=m,r(0,b)})}return[b,T,n,p,d]}class Pi extends ye{constructor(e){super(),ge(this,e,Ti,wi,de,{})}}const lt=Te({title:"",description:"",items:[],icon:""}),Ot=Te(!1);function gr(t){De.set(!0),we.set(ee.StatusBar),lt.set({title:t.title,description:t.description,items:t.items,icon:t.icon||"fa-solid fa-circle-info"})}function Ci(){Ot.set(!0)}const Jr=Te([{id:"1",label:"Label",icon:"fa-solid fa-user",placeholder:"Insert name",type:"text"},{id:"2",label:"Label",icon:"fa-solid fa-user",placeholder:"Placeholder",type:"password"},{id:"3",label:"Label",icon:"fa-solid fa-user",placeholder:"Placeholder",type:"phone"}]);function Mi(t){De.set(!0),we.set(ee.Input),Jr.set([...t])}const Qr=Te({show:!1,url:""});function Oi(t){De.set(!0),we.set(ee.Image),Qr.set({show:t.show,url:t.url})}const pt=Te([]);function Di(t){we.set(ee.Notification),pt.update(r=>[...r,t]),pt.subscribe(r=>{r.forEach(n=>{setTimeout(()=>{xi(n)},n.length)})})()}function xi(t){pt.update(e=>e.filter(n=>n!==t))}const Dt=Te({icon:"",keys:"",color:""}),xt=Te(!1);function Ei(t){De.set(!0),we.set(ee.DrawText),Dt.set({icon:t.icon||"fa-solid fa-circle-info",keys:t.keys,color:t.color||"var(--color-green)"})}function Ii(){xt.set(!0)}const At=Te([]);function Ri(t){De.set(!0),we.set(ee.Menu),At.set(t.menuData)}function ft(){De.set(!1),we.set(null),At.set([{header:"",text:"",icon:"",color:"",callback:"",subMenu:null}]),Pe("menuClose"),rt()}function Zi(t){let e;return{c(){e=B("div"),e.innerHTML='',Z(e,"class","absolute inset-0 flex items-center justify-center"),te(e,"pointer-events","none"),te(e,"z-index","100")},m(r,n){q(r,e,n)},p:Q,i:Q,o:Q,d(r){r&&U(e)}}}let Ai="#ffffff",$i="#2B312B",Li="#068f6d",Bi="#00ff00";function Pt(t,e){return t=Math.ceil(t),e=Math.floor(e),Math.floor(Math.random()*(e-t+1)+t)}function zi(t,e,r){let n,p,b,T,w=0,d=0,m="#38D5AF",k,g,s,l,o=4,h=0,y=!1,a=2;function f(){p.clearRect(0,0,b,T),p.beginPath(),p.strokeStyle=$i,p.lineWidth=20,p.arc(b/2,T/2,Math.min(b,T)/2-10,0,Math.PI*2,!1),p.stroke(),p.beginPath(),p.strokeStyle=S===!0?Bi:Li,p.lineWidth=20,p.arc(b/2,T/2,Math.min(b,T)/2-10,g-90*Math.PI/180,s-90*Math.PI/180,!1),p.stroke();let C=w*Math.PI/180;p.beginPath(),p.strokeStyle=m,p.lineWidth=40,p.arc(b/2,T/2,Math.min(b,T)/2-20,C-.1-90*Math.PI/180,C-90*Math.PI/180,!1),p.stroke(),p.fillStyle=Ai,p.font="100px sans-serif";let E=p.measureText(k).width;p.fillText(k,b/2-E/2,T/2+35)}function _(){typeof l!==void 0&&clearInterval(l),g=Pt(20,40)/10,s=Pt(5,10)/10,s=g+s,w=0,d=360,k=""+Pt(1,4),l=setInterval(u,a)}function u(){if(w>=d){I();return}w+=2,f()}function S(){h+=1,h==o?(clearInterval(l),O(!0)):_()}function I(){clearInterval(l),O(!1)}function D(){document.getElementById("circle").style.display="block",document.getElementById("circle").style.pointerEvents="auto",y=!0,_()}function O(C){document.getElementById("circle").style.display="none",y=!1,fetch("https://ps-ui/circle-result",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({endResult:!!C})}),h=0,o=4}function c(C){o=C.circles??4,a=C.time??2,D()}return Oe(()=>{n=document.getElementById("circle"),p=n.getContext("2d"),b=window.innerWidth*.2,T=window.innerHeight*.2,n.width=b,n.height=T,window.addEventListener("message",C=>{C.data.action=="circle-start"&&(o=C.data.circles??4,a=C.data.time??2,D())}),document.addEventListener("keydown",function(C){let E=C.key;if(["1","2","3","4"].includes(E)&&y)if(E===k){let L=180/Math.PI*g,j=180/Math.PI*s;wj?I():S()}else I()})}),[c]}class es extends ye{constructor(e){super(),ge(this,e,zi,Zi,de,{setupCircleGame:0})}get setupCircleGame(){return this.$$.ctx[0]}}const ts=Te(null);function ji(){ts.update(t=>t||new es({target:document.body}))}function Ni(t){ts.update(e=>(e&&e.setupCircleGame(t),e))}function Yi(){function t(e){switch(De.set(!0),e.data.action){case"ShowStatusBar":gr(e.data.data);break;case"UpdateStatusBar":gr(e.data.data);break;case"HideStatusBar":Ci();break;case"ShowMenu":Ri(e.data.data);break;case"HideMenu":ft();break;case"ShowInput":Mi(e.data.data);break;case"ShowImage":Oi(e.data.data);break;case"hideUi":rt();break;case"ShowNotification":Di(e.data.data);break;case"ShowDrawTextMenu":Ei(e.data.data);break;case"HideDrawTextMenu":Ii();break;case"CircleGame":ji(),Ni(e.data.data);break;case"MemoryGame":case"Scramber":case"NumberMaze":case"GameLauncher":Ls(e.data.data);break}}Oe(()=>window.addEventListener("message",t)),qr(()=>window.removeEventListener("message",t))}function rs(t){t.key=="Escape"&&(we.subscribe(r=>{switch(r){case ee.Input:Pe("input-close",{ok:!0});break;case ee.Menu:ft();break;case ee.Image:Pe("minigame:callback",!0);break;case ee.Game:Ze.set(null),Be.set(null),xe.set({game:"",gameName:"",gameDescription:"",amountOfAnswers:0,gameTime:0,maxAnswersIncorrect:0,triggerEvent:""});break}}),rt())}function yr(t){let e,r,n,p,b,T;return{c(){e=B("div"),r=B("div"),n=B("img"),Ut(n.src,p=t[0].url)||Z(n,"src",p),Z(n,"alt","Image Placeholder"),Z(r,"class","flex items-center flex-col ps-bg-darkblue p-10 shadow-md shadow-gray-800 rounded-md"),Z(e,"class","flex items-center justify-center min-h-screen")},m(w,d){q(w,e,d),A(e,r),A(r,n),T=!0},p(w,d){(!T||d&1&&!Ut(n.src,p=w[0].url))&&Z(n,"src",p)},i(w){T||(w&&Ue(()=>{T&&(b||(b=ht(e,Kt,{y:400},!0)),b.run(1))}),T=!0)},o(w){w&&(b||(b=ht(e,Kt,{y:400},!1)),b.run(0)),T=!1},d(w){w&&U(e),w&&b&&b.end()}}}function Fi(t){let e,r=t[0].show&&yr(t);return{c(){r&&r.c(),e=dt()},m(n,p){r&&r.m(n,p),q(n,e,p)},p(n,[p]){n[0].show?r?(r.p(n,p),p&1&&F(r,1)):(r=yr(n),r.c(),F(r,1),r.m(e.parentNode,e)):r&&(me(),H(r,1,1,()=>{r=null}),ve())},i(n){F(r)},o(n){H(r)},d(n){n&&U(e),r&&r.d(n)}}}function Xi(t,e,r){let n;return fe(t,Qr,p=>r(0,n=p)),[n]}class Hi extends ye{constructor(e){super(),ge(this,e,Xi,Fi,de,{})}}var Qe=(t=>(t.Success="ps-notification-success",t.Error="ps-notification-error",t.Warning="ps-notification-warning",t.Info="ps-notification-info",t))(Qe||{}),st=(t=>(t.Success="fa-solid fa-circle-check",t.Error="fa-solid fa-circle-exclamation",t.Warning="fa-solid fa-triangle-exclamation",t.Info="fa-solid fa-circle-info",t))(st||{});function br(t,e,r){const n=t.slice();return n[1]=e[r],n}function Ui(t){let e;return{c(){e=B("i"),Z(e,"class",st.Info)},m(r,n){q(r,e,n)},d(r){r&&U(e)}}}function qi(t){let e;return{c(){e=B("i"),Z(e,"class",st.Error)},m(r,n){q(r,e,n)},d(r){r&&U(e)}}}function Vi(t){let e;return{c(){e=B("i"),Z(e,"class",st.Warning)},m(r,n){q(r,e,n)},d(r){r&&U(e)}}}function Gi(t){let e;return{c(){e=B("i"),Z(e,"class",st.Success)},m(r,n){q(r,e,n)},d(r){r&&U(e)}}}function kr(t){let e,r,n,p,b=t[1].text+"",T,w,d;function m(s,l){if(s[1].type===Qe.Success)return Gi;if(s[1].type===Qe.Warning)return Vi;if(s[1].type===Qe.Error)return qi;if(s[1].type===Qe.Info)return Ui}let k=m(t),g=k&&k(t);return{c(){e=B("div"),r=B("div"),g&&g.c(),n=G(),p=B("span"),T=re(b),w=G(),Z(r,"class","text-2xl mt-1"),Z(p,"class","ml-3"),Z(e,"class",d=t[1].type+" flex items-center px-4 py-3 mb-1 text-white min-w-full rounded")},m(s,l){q(s,e,l),A(e,r),g&&g.m(r,null),A(e,n),A(e,p),A(p,T),A(e,w)},p(s,l){k!==(k=m(s))&&(g&&g.d(1),g=k&&k(s),g&&(g.c(),g.m(r,null))),l&1&&b!==(b=s[1].text+"")&&ce(T,b),l&1&&d!==(d=s[1].type+" flex items-center px-4 py-3 mb-1 text-white min-w-full rounded")&&Z(e,"class",d)},d(s){s&&U(e),g&&g.d()}}}function Wi(t){let e,r,n=le(t[0]),p=[];for(let b=0;br(0,n=p)),[n]}class Ji extends ye{constructor(e){super(),ge(this,e,Ki,Wi,de,{})}}function Qi(t){let e,r;return{c(){e=B("i"),Z(e,"class",r=t[1]+" "+t[0]+" "+t[2]),te(e,"color",t[3])},m(n,p){q(n,e,p)},p(n,[p]){p&7&&r!==(r=n[1]+" "+n[0]+" "+n[2])&&Z(e,"class",r),p&8&&te(e,"color",n[3])},i:Q,o:Q,d(n){n&&U(e)}}}function en(t,e,r){let{icon:n}=e,{color:p=""}=e,{classes:b=""}=e,{styleColor:T=""}=e;return t.$$set=w=>{"icon"in w&&r(0,n=w.icon),"color"in w&&r(1,p=w.color),"classes"in w&&r(2,b=w.classes),"styleColor"in w&&r(3,T=w.styleColor)},[n,p,b,T]}class it extends ye{constructor(e){super(),ge(this,e,en,Qi,de,{icon:0,color:1,classes:2,styleColor:3})}}function wr(t,e,r){const n=t.slice();return n[4]=e[r],n}function Sr(t){let e,r,n,p,b,T,w,d=t[4].label+"",m,k,g,s,l,o,h,y,a,f,_;return p=new it({props:{icon:t[4].icon,color:"ps-text-green",classes:"text-2xl"}}),{c(){e=B("div"),r=B("div"),n=B("div"),ue(p.$$.fragment),b=G(),T=B("div"),w=B("p"),m=re(d),k=G(),g=B("input"),y=G(),a=B("div"),f=G(),Z(n,"class","input-icon svelte-jvpod8"),Z(w,"class","label svelte-jvpod8"),Z(g,"id",s=t[4].id),Z(g,"type",l=t[4].type),Z(g,"class","value svelte-jvpod8"),Z(g,"placeholder",o=t[4].placeholder),g.value=h=t[4].value,Z(T,"class","input-area svelte-jvpod8"),Z(r,"class","input-data-wrapper svelte-jvpod8"),Z(a,"class","horizontal-line svelte-jvpod8"),Z(e,"class","input-wrapper svelte-jvpod8")},m(u,S){q(u,e,S),A(e,r),A(r,n),ae(p,n,null),A(r,b),A(r,T),A(T,w),A(w,m),A(T,k),A(T,g),A(e,y),A(e,a),A(e,f),_=!0},p(u,S){const I={};S&2&&(I.icon=u[4].icon),p.$set(I),(!_||S&2)&&d!==(d=u[4].label+"")&&ce(m,d),(!_||S&2&&s!==(s=u[4].id))&&Z(g,"id",s),(!_||S&2&&l!==(l=u[4].type))&&Z(g,"type",l),(!_||S&2&&o!==(o=u[4].placeholder))&&Z(g,"placeholder",o),(!_||S&2&&h!==(h=u[4].value)&&g.value!==h)&&(g.value=h)},i(u){_||(F(p.$$.fragment,u),_=!0)},o(u){H(p.$$.fragment,u),_=!1},d(u){u&&U(e),oe(p)}}}function tn(t){let e,r,n,p,b,T,w,d,m,k,g,s,l=le(t[1]),o=[];for(let y=0;yH(o[y],1,1,()=>{o[y]=null});return{c(){e=B("div"),r=B("div"),r.innerHTML='ps-logo',n=G(),p=B("div");for(let y=0;yr(3,n=w)),document.onkeyup=rs;let p=n;Oe(()=>{r(1,p=p.map(w=>(w.value=null,w)))});function b(){let w=[];document.querySelectorAll("input").forEach((m,k)=>{let g={id:m.id,value:m.value};w.push(g)}),Pe("input-callback",w),T()}function T(){document.querySelectorAll("input").forEach(d=>{d.value=""}),r(1,p=[]),Pe("input-close",{ok:!0}),rt()}return[T,p,b]}class sn extends ye{constructor(e){super(),ge(this,e,rn,tn,de,{closeInputs:0})}get closeInputs(){return this.$$.ctx[0]}}function Tr(t,e,r){const n=t.slice();return n[5]=e[r],n}function Pr(t){let e,r,n=t[5].key+"",p,b,T,w,d=t[5].value+"",m,k;return{c(){e=B("div"),r=B("p"),p=re(n),b=re(":"),T=G(),w=B("p"),m=re(d),k=G(),Z(r,"class","label svelte-59nkrw"),Z(w,"class","value svelte-59nkrw"),Z(e,"class","each-item svelte-59nkrw")},m(g,s){q(g,e,s),A(e,r),A(r,p),A(r,b),A(e,T),A(e,w),A(w,m),A(e,k)},p(g,s){s&2&&n!==(n=g[5].key+"")&&ce(p,n),s&2&&d!==(d=g[5].value+"")&&ce(m,d)},d(g){g&&U(e)}}}function nn(t){let e,r,n,p,b,T,w,d=t[0].title+"",m,k,g,s=t[0].description+"",l,o,h,y;p=new it({props:{icon:t[0].icon,color:"ps-text-green"}});let a=le(t[1]),f=[];for(let _=0;_r(3,n=d));let p=n,b=p.items;lt.subscribe(d=>{r(0,p=d),r(1,b=p.items)});let T=!1;Ot.subscribe(d=>{r(2,T=d)}),Oe(()=>{});function w(){const d=document.getElementById("status-bar-wrapper");if(d){d.style.animation="2s hide-statusbar";let m=document.createElement("style");m.innerHTML=` + @keyframes hide-statusbar { + from { + opacity: 1; + } + to { + opacity: 0; + } + } + + .status-bar-wrapper { + -moz-animation: 2s hide-statusbar; + -webkit-animation: 2s hide-statusbar; + animation: 2s hide-statusbar; + } + `,d.appendChild(m),setTimeout(()=>{De.set(!1),we.set(null),lt.set({title:"",description:"",items:[],icon:""}),Ot.set(!1)},500)}}return t.$$.update=()=>{t.$$.dirty&4&&T&&w()},[p,b,T]}class on extends ye{constructor(e){super(),ge(this,e,an,nn,de,{})}}function Cr(t,e,r){const n=t.slice();return n[7]=e[r],n}function Mr(t){let e,r=t[7].value+"",n;return{c(){e=B("p"),n=re(r),te(e,"color",t[7].color),Z(e,"class","svelte-1y14yon")},m(p,b){q(p,e,b),A(e,n)},p(p,b){b&2&&r!==(r=p[7].value+"")&&ce(n,r),b&2&&te(e,"color",p[7].color)},d(p){p&&U(e)}}}function ln(t){let e,r,n,p,b,T,w,d;p=new it({props:{icon:t[0].icon,styleColor:t[2]}});let m=le(t[1]),k=[];for(let g=0;gr(0,n=k));let p=!1;xt.subscribe(k=>{r(3,p=k)});let b=[],T="";Oe(()=>{w(),d()});function w(){switch(n.color){case"primary":r(2,T="#0275d8");break;case"error":r(2,T="#d9534f");break;case"success":r(2,T="#5cb85c");break;case"warning":r(2,T="#f0ad4e");break;case"info":r(2,T="#5bc0de");break;case"mint":r(2,T="#a1f8c7");break;default:r(2,T="var(--color-green)");break}}function d(){let k=n.keys.match(/\[(.*?)\]/);if(k){let g=k[0],s=n.keys.split(g);r(1,b=[{value:s[0],color:"var(--color-lightgrey)"},{value:g,color:T},{value:s[1],color:"var(--color-lightgrey)"}])}else r(1,b=[{value:n.keys,color:"var(--color-lightgrey)"}])}function m(){const k=document.getElementById("draw-text-wrapper");if(k){k.style.animation="2s slide-left";let g=document.createElement("style");g.innerHTML=` + @keyframes slide-left { + from { + margin-left: `+ss+`; + } + to { + margin-left: -20%; + } + } + + .draw-text-wrapper { + -moz-animation: 2s slide-left; + -webkit-animation: 2s slide-left; + animation: 2s slide-left; + } + `,k.appendChild(g),setTimeout(()=>{De.set(!1),we.set(null),Dt.set({icon:"",keys:"",color:""}),xt.set(!1)},500)}}return t.$$.update=()=>{t.$$.dirty&9&&(p&&m(),n&&d())},[n,b,T,p]}class cn extends ye{constructor(e){super(),ge(this,e,un,ln,de,{})}}function Or(t,e,r){const n=t.slice();return n[16]=e[r],n[18]=r,n}function Dr(t,e,r){const n=t.slice();return n[16]=e[r],n[18]=r,n}function hn(t){let e,r,n,p,b,T,w=le(t[1]),d=[];for(let k=0;kH(d[k],1,1,()=>{d[k]=null});return{c(){e=B("div"),e.innerHTML=' ',r=G(),n=B("div");for(let k=0;kH(T[d],1,1,()=>{T[d]=null});return{c(){e=B("div"),e.innerHTML='ps-logo',r=G(),n=B("div");for(let d=0;d{d[s]=null}),ve()),~p?(b=d[p],b?b.p(k,g):(b=d[p]=w[p](k),b.c()),F(b,1),b.m(r,null)):b=null)},i(k){T||(F(b),T=!0)},o(k){H(b),T=!1},d(k){k&&U(e),~p&&d[p].d()}}}function mn(t,e,r){let n;fe(t,At,_=>r(15,n=_));let p=n,b=null,T=null,w={id:null,color:"black"},d={id:null,color:"black"};function m(_){r(0,b=_),_&&(!_.subMenu&&!Bs?(Pe("MenuSelect",{data:_}),ft()):r(1,T=b.subMenu))}function k(_){Pe("MenuSelect",{data:_}),ft()}function g(_,u,S,I="enter",D=!1){const O=document.getElementById(_);I==="enter"?D?(O.style.backgroundColor=S||"var(--color-green)",r(2,w.id=u,w)):(O.style.backgroundColor=S||"var(--color-green)",r(3,d.id=u,d)):(O.style.backgroundColor="var(--color-darkblue)",r(2,w.id=null,w),r(3,d.id=null,d))}return[b,T,w,d,p,m,k,g,(_,u)=>g("menu-"+_,_,u.color,"enter",!1),(_,u)=>g("menu-"+_,_,u.color,"leave",!1),_=>m(_),()=>m(null),(_,u)=>g("sub-menu-"+_,_,u.color,"enter",!0),(_,u)=>g("sub-menu-"+_,_,u.color,"leave",!0),_=>k(_)]}class vn extends ye{constructor(e){super(),ge(this,e,mn,_n,de,{})}}function Rr(t){let e,r,n,p,b,T,w,d,m,k,g,s=t[1]===ee.StatusBar&&Zr(),l=t[1]===ee.DrawText&&Ar(),o=t[1]===ee.Menu&&$r(),h=t[1]===ee.Input&&Lr(),y=t[1]===ee.Game&&Br(),a=t[1]===ee.Image&&zr(),f=t[1]===ee.Notification&&jr();return m=new es({}),{c(){e=B("main"),s&&s.c(),r=G(),l&&l.c(),n=G(),o&&o.c(),p=G(),h&&h.c(),b=G(),y&&y.c(),T=G(),a&&a.c(),w=G(),f&&f.c(),d=G(),ue(m.$$.fragment),Z(e,"class","main-bg svelte-17vvtz0")},m(_,u){q(_,e,u),s&&s.m(e,null),A(e,r),l&&l.m(e,null),A(e,n),o&&o.m(e,null),A(e,p),h&&h.m(e,null),A(e,b),y&&y.m(e,null),A(e,T),a&&a.m(e,null),A(e,w),f&&f.m(e,null),A(e,d),ae(m,e,null),g=!0},p(_,u){_[1]===ee.StatusBar?s?u&2&&F(s,1):(s=Zr(),s.c(),F(s,1),s.m(e,r)):s&&(me(),H(s,1,1,()=>{s=null}),ve()),_[1]===ee.DrawText?l?u&2&&F(l,1):(l=Ar(),l.c(),F(l,1),l.m(e,n)):l&&(me(),H(l,1,1,()=>{l=null}),ve()),_[1]===ee.Menu?o?u&2&&F(o,1):(o=$r(),o.c(),F(o,1),o.m(e,p)):o&&(me(),H(o,1,1,()=>{o=null}),ve()),_[1]===ee.Input?h?u&2&&F(h,1):(h=Lr(),h.c(),F(h,1),h.m(e,b)):h&&(me(),H(h,1,1,()=>{h=null}),ve()),_[1]===ee.Game?y?u&2&&F(y,1):(y=Br(),y.c(),F(y,1),y.m(e,T)):y&&(me(),H(y,1,1,()=>{y=null}),ve()),_[1]===ee.Image?a?u&2&&F(a,1):(a=zr(),a.c(),F(a,1),a.m(e,w)):a&&(me(),H(a,1,1,()=>{a=null}),ve()),_[1]===ee.Notification?f?u&2&&F(f,1):(f=jr(),f.c(),F(f,1),f.m(e,d)):f&&(me(),H(f,1,1,()=>{f=null}),ve())},i(_){g||(F(s),F(l),F(o),F(h),F(y),F(a),F(f),F(m.$$.fragment,_),_&&Ue(()=>{g&&(k||(k=ht(e,Wt,{duration:100},!0)),k.run(1))}),g=!0)},o(_){H(s),H(l),H(o),H(h),H(y),H(a),H(f),H(m.$$.fragment,_),_&&(k||(k=ht(e,Wt,{duration:100},!1)),k.run(0)),g=!1},d(_){_&&U(e),s&&s.d(),l&&l.d(),o&&o.d(),h&&h.d(),y&&y.d(),a&&a.d(),f&&f.d(),oe(m),_&&k&&k.end()}}}function Zr(t){let e,r;return e=new on({}),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function Ar(t){let e,r;return e=new cn({}),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function $r(t){let e,r;return e=new vn({}),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function Lr(t){let e,r;return e=new sn({}),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function Br(t){let e,r;return e=new Pi({}),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function zr(t){let e,r;return e=new Hi({}),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function jr(t){let e,r;return e=new Ji({}),{c(){ue(e.$$.fragment)},m(n,p){ae(e,n,p),r=!0},i(n){r||(F(e.$$.fragment,n),r=!0)},o(n){H(e.$$.fragment,n),r=!1},d(n){oe(e,n)}}}function gn(t){let e,r,n=t[0]&&Rr(t);return{c(){n&&n.c(),e=dt()},m(p,b){n&&n.m(p,b),q(p,e,b),r=!0},p(p,[b]){p[0]?n?(n.p(p,b),b&1&&F(n,1)):(n=Rr(p),n.c(),F(n,1),n.m(e.parentNode,e)):n&&(me(),H(n,1,1,()=>{n=null}),ve())},i(p){r||(F(n),r=!0)},o(p){H(n),r=!1},d(p){p&&U(e),n&&n.d(p)}}}function yn(t,e,r){let n,p;return fe(t,De,b=>r(0,n=b)),fe(t,we,b=>r(1,p=b)),Yi(),document.onkeyup=rs,[n,p]}class bn extends ye{constructor(e){super(),ge(this,e,yn,gn,de,{})}}new bn({target:document.getElementById("app")}); diff --git a/resources/[freizeit]/[gym]/ps-ui/web/build/ka1.ttf b/resources/[freizeit]/[gym]/ps-ui/web/build/ka1.ttf new file mode 100644 index 000000000..d1df85235 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/build/ka1.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/css/master.css b/resources/[freizeit]/[gym]/ps-ui/web/css/master.css new file mode 100644 index 000000000..64bf594f6 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/css/master.css @@ -0,0 +1 @@ +@import './themes.css'; \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/css/themes.css b/resources/[freizeit]/[gym]/ps-ui/web/css/themes.css new file mode 100644 index 000000000..5422c7628 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/css/themes.css @@ -0,0 +1,16 @@ +:root { + --color-green: #02f1b5; + --color-palegreen: #039672; + --color-darkblue: #131313; + --color-blue: #0057ae; + --color-lightgrey: #dadada; + --color-white: #ffffff; + --color-black: #000000; + --color-darkgrey: #6a6a6a; + --color-red: #e10404; + + --cube-bg-darkgreen: #0f2a25; + + font-size: 0.8em; + font-family: 'roboto', sans-serif; +} \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/index.html b/resources/[freizeit]/[gym]/ps-ui/web/index.html new file mode 100644 index 000000000..b1e54cab9 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/index.html @@ -0,0 +1,21 @@ + + + + + + + + PS-UI + + + +
+ + + diff --git a/resources/[freizeit]/[gym]/ps-ui/web/package-lock.json b/resources/[freizeit]/[gym]/ps-ui/web/package-lock.json new file mode 100644 index 000000000..66276f9d5 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/package-lock.json @@ -0,0 +1,3019 @@ +{ + "name": "ps-ui", + "version": "2.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "ps-ui", + "version": "2.0.0", + "dependencies": { + "@fortawesome/fontawesome-free": "^6.5.1", + "@mojs/core": "^1.7.1" + }, + "devDependencies": { + "@sveltejs/vite-plugin-svelte": "^3.0.1", + "@tsconfig/svelte": "^5.0.2", + "autoprefixer": "^10.4.16", + "html-minifier": "^4.0.0", + "postcss": "^8.4.33", + "svelte": "^4.2.8", + "svelte-check": "^3.6.2", + "svelte-preprocess": "^5.1.3", + "tailwindcss": "^3.4.1", + "tslib": "^2.6.2", + "typescript": "^5.3.3", + "vite": "^5.0.11" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.8.tgz", + "integrity": "sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@fortawesome/fontawesome-free": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.6.0.tgz", + "integrity": "sha512-60G28ke/sXdtS9KZCpZSHHkCbdsOGEhIUGlwq6yhY74UpTiToIh8np7A8yphhM4BWsvNFtIvLpi4co+h9Mr9Ow==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@mojs/core": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/@mojs/core/-/core-1.7.1.tgz", + "integrity": "sha512-DMe8b6DPiYqpPoVi9HiDTVTchDE47A6aqGD0b1yGmHrGnNO+I25fSKkVFxvjWrW1lAIqpV/ROMZH03GPl3d6PA==", + "dependencies": { + "@babel/runtime": "^7.23.1" + }, + "engines": { + "node": "^20", + "npm": "^10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.19.0.tgz", + "integrity": "sha512-JlPfZ/C7yn5S5p0yKk7uhHTTnFlvTgLetl2VxqE518QgyM7C9bSfFTYvB/Q/ftkq0RIPY4ySxTz+/wKJ/dXC0w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.19.0.tgz", + "integrity": "sha512-RDxUSY8D1tWYfn00DDi5myxKgOk6RvWPxhmWexcICt/MEC6yEMr4HNCu1sXXYLw8iAsg0D44NuU+qNq7zVWCrw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.19.0.tgz", + "integrity": "sha512-emvKHL4B15x6nlNTBMtIaC9tLPRpeA5jMvRLXVbl/W9Ie7HhkrE7KQjvgS9uxgatL1HmHWDXk5TTS4IaNJxbAA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.19.0.tgz", + "integrity": "sha512-fO28cWA1dC57qCd+D0rfLC4VPbh6EOJXrreBmFLWPGI9dpMlER2YwSPZzSGfq11XgcEpPukPTfEVFtw2q2nYJg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.19.0.tgz", + "integrity": "sha512-2Rn36Ubxdv32NUcfm0wB1tgKqkQuft00PtM23VqLuCUR4N5jcNWDoV5iBC9jeGdgS38WK66ElncprqgMUOyomw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.19.0.tgz", + "integrity": "sha512-gJuzIVdq/X1ZA2bHeCGCISe0VWqCoNT8BvkQ+BfsixXwTOndhtLUpOg0A1Fcx/+eA6ei6rMBzlOz4JzmiDw7JQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.19.0.tgz", + "integrity": "sha512-0EkX2HYPkSADo9cfeGFoQ7R0/wTKb7q6DdwI4Yn/ULFE1wuRRCHybxpl2goQrx4c/yzK3I8OlgtBu4xvted0ug==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.19.0.tgz", + "integrity": "sha512-GlIQRj9px52ISomIOEUq/IojLZqzkvRpdP3cLgIE1wUWaiU5Takwlzpz002q0Nxxr1y2ZgxC2obWxjr13lvxNQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.19.0.tgz", + "integrity": "sha512-N6cFJzssruDLUOKfEKeovCKiHcdwVYOT1Hs6dovDQ61+Y9n3Ek4zXvtghPPelt6U0AH4aDGnDLb83uiJMkWYzQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.19.0.tgz", + "integrity": "sha512-2DnD3mkS2uuam/alF+I7M84koGwvn3ZVD7uG+LEWpyzo/bq8+kKnus2EVCkcvh6PlNB8QPNFOz6fWd5N8o1CYg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.19.0.tgz", + "integrity": "sha512-D6pkaF7OpE7lzlTOFCB2m3Ngzu2ykw40Nka9WmKGUOTS3xcIieHe82slQlNq69sVB04ch73thKYIWz/Ian8DUA==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.19.0.tgz", + "integrity": "sha512-HBndjQLP8OsdJNSxpNIN0einbDmRFg9+UQeZV1eiYupIRuZsDEoeGU43NQsS34Pp166DtwQOnpcbV/zQxM+rWA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.19.0.tgz", + "integrity": "sha512-HxfbvfCKJe/RMYJJn0a12eiOI9OOtAUF4G6ozrFUK95BNyoJaSiBjIOHjZskTUffUrB84IPKkFG9H9nEvJGW6A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.19.0.tgz", + "integrity": "sha512-HxDMKIhmcguGTiP5TsLNolwBUK3nGGUEoV/BO9ldUBoMLBssvh4J0X8pf11i1fTV7WShWItB1bKAKjX4RQeYmg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.19.0.tgz", + "integrity": "sha512-xItlIAZZaiG/u0wooGzRsx11rokP4qyc/79LkAOdznGRAbOFc+SfEdfUOszG1odsHNgwippUJavag/+W/Etc6Q==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.19.0.tgz", + "integrity": "sha512-xNo5fV5ycvCCKqiZcpB65VMR11NJB+StnxHz20jdqRAktfdfzhgjTiJ2doTDQE/7dqGaV5I7ZGqKpgph6lCIag==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@sveltejs/vite-plugin-svelte": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-3.1.1.tgz", + "integrity": "sha512-rimpFEAboBBHIlzISibg94iP09k/KYdHgVhJlcsTfn7KMBhc70jFX/GRWkRdFCc2fdnk+4+Bdfej23cMDnJS6A==", + "dev": true, + "dependencies": { + "@sveltejs/vite-plugin-svelte-inspector": "^2.1.0", + "debug": "^4.3.4", + "deepmerge": "^4.3.1", + "kleur": "^4.1.5", + "magic-string": "^0.30.10", + "svelte-hmr": "^0.16.0", + "vitefu": "^0.2.5" + }, + "engines": { + "node": "^18.0.0 || >=20" + }, + "peerDependencies": { + "svelte": "^4.0.0 || ^5.0.0-next.0", + "vite": "^5.0.0" + } + }, + "node_modules/@sveltejs/vite-plugin-svelte-inspector": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-2.1.0.tgz", + "integrity": "sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.0.0 || >=20" + }, + "peerDependencies": { + "@sveltejs/vite-plugin-svelte": "^3.0.0", + "svelte": "^4.0.0 || ^5.0.0-next.0", + "vite": "^5.0.0" + } + }, + "node_modules/@tsconfig/svelte": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/svelte/-/svelte-5.0.4.tgz", + "integrity": "sha512-BV9NplVgLmSi4mwKzD8BD/NQ8erOY/nUE/GpgWe2ckx+wIQF5RyRirn/QsSSCPeulVpc3RA/iJt6DpfTIZps0Q==", + "dev": true + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/@types/pug": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.10.tgz", + "integrity": "sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dev": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.19", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001599", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.2.tgz", + "integrity": "sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001640", + "electron-to-chromium": "^1.4.820", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-crc32": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-1.0.0.tgz", + "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001643", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001643.tgz", + "integrity": "sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/code-red": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz", + "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15", + "@types/estree": "^1.0.1", + "acorn": "^8.10.0", + "estree-walker": "^3.0.3", + "periscopic": "^3.1.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.2.tgz", + "integrity": "sha512-kc4r3U3V3WLaaZqThjYz/Y6z8tJe+7K0bbjUVo3i+LWIypVdMx5nXCkwRe6SWbY6ILqLdc1rKcKmr3HoH7wjSQ==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/es6-promise": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", + "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/foreground-child": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", + "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/html-minifier": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-4.0.0.tgz", + "integrity": "sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==", + "dev": true, + "dependencies": { + "camel-case": "^3.0.0", + "clean-css": "^4.2.1", + "commander": "^2.19.0", + "he": "^1.2.0", + "param-case": "^2.1.1", + "relateurl": "^0.2.7", + "uglify-js": "^3.5.1" + }, + "bin": { + "html-minifier": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", + "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", + "dev": true, + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-reference": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz", + "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-character": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", + "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", + "dev": true + }, + "node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true + }, + "node_modules/magic-string": { + "version": "0.30.10", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", + "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15" + } + }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "dev": true, + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, + "dependencies": { + "lower-case": "^1.1.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "dev": true + }, + "node_modules/param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/periscopic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", + "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^3.0.0", + "is-reference": "^3.0.0" + } + }, + "node_modules/picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.4.40", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.40.tgz", + "integrity": "sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz", + "integrity": "sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/rollup": { + "version": "4.19.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.19.0.tgz", + "integrity": "sha512-5r7EYSQIowHsK4eTZ0Y81qpZuJz+MUuYeqmmYmRMl1nwhdmbiYqt5jwzf6u7wyOzJgYqtCRMtVRKOtHANBz7rA==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.19.0", + "@rollup/rollup-android-arm64": "4.19.0", + "@rollup/rollup-darwin-arm64": "4.19.0", + "@rollup/rollup-darwin-x64": "4.19.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.19.0", + "@rollup/rollup-linux-arm-musleabihf": "4.19.0", + "@rollup/rollup-linux-arm64-gnu": "4.19.0", + "@rollup/rollup-linux-arm64-musl": "4.19.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.19.0", + "@rollup/rollup-linux-riscv64-gnu": "4.19.0", + "@rollup/rollup-linux-s390x-gnu": "4.19.0", + "@rollup/rollup-linux-x64-gnu": "4.19.0", + "@rollup/rollup-linux-x64-musl": "4.19.0", + "@rollup/rollup-win32-arm64-msvc": "4.19.0", + "@rollup/rollup-win32-ia32-msvc": "4.19.0", + "@rollup/rollup-win32-x64-msvc": "4.19.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "dev": true, + "dependencies": { + "mri": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/sander": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/sander/-/sander-0.5.1.tgz", + "integrity": "sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==", + "dev": true, + "dependencies": { + "es6-promise": "^3.1.2", + "graceful-fs": "^4.1.3", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.2" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sorcery": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/sorcery/-/sorcery-0.11.1.tgz", + "integrity": "sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.14", + "buffer-crc32": "^1.0.0", + "minimist": "^1.2.0", + "sander": "^0.5.0" + }, + "bin": { + "sorcery": "bin/sorcery" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sucrase/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svelte": { + "version": "4.2.18", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.18.tgz", + "integrity": "sha512-d0FdzYIiAePqRJEb90WlJDkjUEx42xhivxN8muUBmfZnP+tzUgz12DJ2hRJi8sIHCME7jeK1PTMgKPSfTd8JrA==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.1", + "@jridgewell/sourcemap-codec": "^1.4.15", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/estree": "^1.0.1", + "acorn": "^8.9.0", + "aria-query": "^5.3.0", + "axobject-query": "^4.0.0", + "code-red": "^1.0.3", + "css-tree": "^2.3.1", + "estree-walker": "^3.0.3", + "is-reference": "^3.0.1", + "locate-character": "^3.0.0", + "magic-string": "^0.30.4", + "periscopic": "^3.1.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/svelte-check": { + "version": "3.8.4", + "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.8.4.tgz", + "integrity": "sha512-61aHMkdinWyH8BkkTX9jPLYxYzaAAz/FK/VQqdr2FiCQQ/q04WCwDlpGbHff1GdrMYTmW8chlTFvRWL9k0A8vg==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "chokidar": "^3.4.1", + "picocolors": "^1.0.0", + "sade": "^1.7.4", + "svelte-preprocess": "^5.1.3", + "typescript": "^5.0.3" + }, + "bin": { + "svelte-check": "bin/svelte-check" + }, + "peerDependencies": { + "svelte": "^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0" + } + }, + "node_modules/svelte-hmr": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.16.0.tgz", + "integrity": "sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==", + "dev": true, + "engines": { + "node": "^12.20 || ^14.13.1 || >= 16" + }, + "peerDependencies": { + "svelte": "^3.19.0 || ^4.0.0" + } + }, + "node_modules/svelte-preprocess": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.1.4.tgz", + "integrity": "sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@types/pug": "^2.0.6", + "detect-indent": "^6.1.0", + "magic-string": "^0.30.5", + "sorcery": "^0.11.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">= 16.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.10.2", + "coffeescript": "^2.5.1", + "less": "^3.11.3 || ^4.0.0", + "postcss": "^7 || ^8", + "postcss-load-config": "^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0", + "pug": "^3.0.0", + "sass": "^1.26.8", + "stylus": "^0.55.0", + "sugarss": "^2.0.0 || ^3.0.0 || ^4.0.0", + "svelte": "^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0", + "typescript": ">=3.9.5 || ^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "coffeescript": { + "optional": true + }, + "less": { + "optional": true + }, + "postcss": { + "optional": true + }, + "postcss-load-config": { + "optional": true + }, + "pug": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/tailwindcss": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.7.tgz", + "integrity": "sha512-rxWZbe87YJb4OcSopb7up2Ba4U82BoiSGUdoDr3Ydrg9ckxFS/YWsvhN323GMcddgU65QRy7JndC7ahhInhvlQ==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.0", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/tslib": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", + "dev": true + }, + "node_modules/typescript": { + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", + "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/uglify-js": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.0.tgz", + "integrity": "sha512-wNKHUY2hYYkf6oSFfhwwiHo4WCHzHmzcXsqXYTN9ja3iApYIFbb2U6ics9hBcYLHcYGQoAlwnZlTrf3oF+BL/Q==", + "dev": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", + "dev": true + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/vite": { + "version": "5.3.5", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.3.5.tgz", + "integrity": "sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==", + "dev": true, + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.39", + "rollup": "^4.13.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vitefu": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-0.2.5.tgz", + "integrity": "sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==", + "dev": true, + "peerDependencies": { + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yaml": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz", + "integrity": "sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==", + "dev": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + } + } +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/package.json b/resources/[freizeit]/[gym]/ps-ui/web/package.json new file mode 100644 index 000000000..2f7ca6d19 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/package.json @@ -0,0 +1,29 @@ +{ + "name": "ps-ui", + "version": "2.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview", + "check": "svelte-check --tsconfig ./tsconfig.json" + }, + "devDependencies": { + "@sveltejs/vite-plugin-svelte": "^3.0.1", + "@tsconfig/svelte": "^5.0.2", + "autoprefixer": "^10.4.16", + "postcss": "^8.4.33", + "svelte": "^4.2.8", + "svelte-check": "^3.6.2", + "svelte-preprocess": "^5.1.3", + "tailwindcss": "^3.4.1", + "tslib": "^2.6.2", + "typescript": "^5.3.3", + "vite": "^5.0.11", + "html-minifier": "^4.0.0" + }, + "dependencies": { + "@fortawesome/fontawesome-free": "^6.5.1", + "@mojs/core": "^1.7.1" + } +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/pnpm-lock.yaml b/resources/[freizeit]/[gym]/ps-ui/web/pnpm-lock.yaml new file mode 100644 index 000000000..38efdbe8e --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/pnpm-lock.yaml @@ -0,0 +1,1961 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@fortawesome/fontawesome-free': + specifier: ^6.5.1 + version: 6.5.1 + '@mojs/core': + specifier: ^1.7.1 + version: 1.7.1 + devDependencies: + '@sveltejs/vite-plugin-svelte': + specifier: ^3.0.1 + version: 3.0.1(svelte@4.2.8)(vite@5.0.11) + '@tsconfig/svelte': + specifier: ^5.0.2 + version: 5.0.2 + autoprefixer: + specifier: ^10.4.16 + version: 10.4.16(postcss@8.4.33) + html-minifier: + specifier: ^4.0.0 + version: 4.0.0 + postcss: + specifier: ^8.4.33 + version: 8.4.33 + svelte: + specifier: ^4.2.8 + version: 4.2.8 + svelte-check: + specifier: ^3.6.2 + version: 3.6.2(postcss@8.4.33)(svelte@4.2.8) + svelte-preprocess: + specifier: ^5.1.3 + version: 5.1.3(postcss@8.4.33)(svelte@4.2.8)(typescript@5.3.3) + tailwindcss: + specifier: ^3.4.1 + version: 3.4.1 + tslib: + specifier: ^2.6.2 + version: 2.6.2 + typescript: + specifier: ^5.3.3 + version: 5.3.3 + vite: + specifier: ^5.0.11 + version: 5.0.11 + +packages: + + '@alloc/quick-lru@5.2.0': + resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} + engines: {node: '>=10'} + + '@ampproject/remapping@2.2.1': + resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + engines: {node: '>=6.0.0'} + + '@babel/runtime@7.23.7': + resolution: {integrity: sha512-w06OXVOFso7LcbzMiDGt+3X7Rh7Ho8MmgPoWU3rarH+8upf+wSU/grlGbWzQyr3DkdN6ZeuMFjpdwW0Q+HxobA==} + engines: {node: '>=6.9.0'} + + '@esbuild/aix-ppc64@0.19.11': + resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.19.11': + resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.19.11': + resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.19.11': + resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.19.11': + resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.19.11': + resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.19.11': + resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.19.11': + resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.19.11': + resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.19.11': + resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.19.11': + resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.19.11': + resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.19.11': + resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.19.11': + resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.19.11': + resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.19.11': + resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.19.11': + resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-x64@0.19.11': + resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-x64@0.19.11': + resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.19.11': + resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.19.11': + resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.19.11': + resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.19.11': + resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@fortawesome/fontawesome-free@6.5.1': + resolution: {integrity: sha512-CNy5vSwN3fsUStPRLX7fUYojyuzoEMSXPl7zSLJ8TgtRfjv24LOnOWKT2zYwaHZCJGkdyRnTmstR0P+Ah503Gw==} + engines: {node: '>=6'} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@jridgewell/gen-mapping@0.3.3': + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.1': + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.1.2': + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/sourcemap-codec@1.4.15': + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + + '@jridgewell/trace-mapping@0.3.20': + resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} + + '@mojs/core@1.7.1': + resolution: {integrity: sha512-DMe8b6DPiYqpPoVi9HiDTVTchDE47A6aqGD0b1yGmHrGnNO+I25fSKkVFxvjWrW1lAIqpV/ROMZH03GPl3d6PA==} + engines: {node: ^20, npm: ^10} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@rollup/rollup-android-arm-eabi@4.9.3': + resolution: {integrity: sha512-nvh9bB41vXEoKKvlWCGptpGt8EhrEwPQFDCY0VAto+R+qpSbaErPS3OjMZuXR8i/2UVw952Dtlnl2JFxH31Qvg==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.9.3': + resolution: {integrity: sha512-kffYCJ2RhDL1DlshLzYPyJtVeusHlA8Q1j6k6s4AEVKLq/3HfGa2ADDycLsmPo3OW83r4XtOPqRMbcFzFsEIzQ==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.9.3': + resolution: {integrity: sha512-Fo7DR6Q9/+ztTyMBZ79+WJtb8RWZonyCgkBCjV51rW5K/dizBzImTW6HLC0pzmHaAevwM0jW1GtB5LCFE81mSw==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.9.3': + resolution: {integrity: sha512-5HcxDF9fqHucIlTiw/gmMb3Qv23L8bLCg904I74Q2lpl4j/20z9ogaD3tWkeguRuz+/17cuS321PT3PAuyjQdg==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-linux-arm-gnueabihf@4.9.3': + resolution: {integrity: sha512-cO6hKV+99D1V7uNJQn1chWaF9EGp7qV2N8sGH99q9Y62bsbN6Il55EwJppEWT+JiqDRg396vWCgwdHwje8itBQ==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.9.3': + resolution: {integrity: sha512-xANyq6lVg6KMO8UUs0LjA4q7di3tPpDbzLPgVEU2/F1ngIZ54eli8Zdt3uUUTMXVbgTCafIO+JPeGMhu097i3w==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.9.3': + resolution: {integrity: sha512-TZJUfRTugVFATQToCMD8DNV6jv/KpSwhE1lLq5kXiQbBX3Pqw6dRKtzNkh5wcp0n09reBBq/7CGDERRw9KmE+g==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.9.3': + resolution: {integrity: sha512-4/QVaRyaB5tkEAGfjVvWrmWdPF6F2NoaoO5uEP7N0AyeBw7l8SeCWWKAGrbx/00PUdHrJVURJiYikazslSKttQ==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.9.3': + resolution: {integrity: sha512-koLC6D3pj1YLZSkTy/jsk3HOadp7q2h6VQl/lPX854twOmmLNekHB6yuS+MkWcKdGGdW1JPuPBv/ZYhr5Yhtdg==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.9.3': + resolution: {integrity: sha512-0OAkQ4HBp+JO2ip2Lgt/ShlrveOMzyhwt2D0KvqH28jFPqfZco28KSq76zymZwmU+F6GRojdxtQMJiNSXKNzeA==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.9.3': + resolution: {integrity: sha512-z5uvoMvdRWggigOnsb9OOCLERHV0ykRZoRB5O+URPZC9zM3pkoMg5fN4NKu2oHqgkzZtfx9u4njqqlYEzM1v9A==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.9.3': + resolution: {integrity: sha512-wxomCHjBVKws+O4N1WLnniKCXu7vkLtdq9Fl9CN/EbwEldojvUrkoHE/fBLZzC7IT/x12Ut6d6cRs4dFvqJkMg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.9.3': + resolution: {integrity: sha512-1Qf/qk/iEtx0aOi+AQQt5PBoW0mFngsm7bPuxHClC/hWh2hHBktR6ktSfUg5b5rC9v8hTwNmHE7lBWXkgqluUQ==} + cpu: [x64] + os: [win32] + + '@sveltejs/vite-plugin-svelte-inspector@2.0.0': + resolution: {integrity: sha512-gjr9ZFg1BSlIpfZ4PRewigrvYmHWbDrq2uvvPB1AmTWKuM+dI1JXQSUu2pIrYLb/QncyiIGkFDFKTwJ0XqQZZg==} + engines: {node: ^18.0.0 || >=20} + peerDependencies: + '@sveltejs/vite-plugin-svelte': ^3.0.0 + svelte: ^4.0.0 || ^5.0.0-next.0 + vite: ^5.0.0 + + '@sveltejs/vite-plugin-svelte@3.0.1': + resolution: {integrity: sha512-CGURX6Ps+TkOovK6xV+Y2rn8JKa8ZPUHPZ/NKgCxAmgBrXReavzFl8aOSCj3kQ1xqT7yGJj53hjcV/gqwDAaWA==} + engines: {node: ^18.0.0 || >=20} + peerDependencies: + svelte: ^4.0.0 || ^5.0.0-next.0 + vite: ^5.0.0 + + '@tsconfig/svelte@5.0.2': + resolution: {integrity: sha512-BRbo1fOtyVbhfLyuCWw6wAWp+U8UQle+ZXu84MYYWzYSEB28dyfnRBIE99eoG+qdAC0po6L2ScIEivcT07UaMA==} + + '@types/estree@1.0.5': + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + + '@types/pug@2.0.10': + resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==} + + acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} + hasBin: true + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + arg@5.0.2: + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + + aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + + autoprefixer@10.4.16: + resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + axobject-query@3.2.1: + resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + binary-extensions@2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + + browserslist@4.22.2: + resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camel-case@3.0.0: + resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} + + camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} + + caniuse-lite@1.0.30001574: + resolution: {integrity: sha512-BtYEK4r/iHt/txm81KBudCUcTy7t+s9emrIaHqjYurQ10x71zJ5VQ9x1dYPcz/b+pKSp4y/v1xSI67A+LzpNyg==} + + chokidar@3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + + clean-css@4.2.4: + resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} + engines: {node: '>= 4.0'} + + code-red@1.0.4: + resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + + css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + + didyoumean@1.2.2: + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + + dlv@1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + electron-to-chromium@1.4.623: + resolution: {integrity: sha512-lKoz10iCYlP1WtRYdh5MvocQPWVRoI7ysp6qf18bmeBgR8abE6+I2CsfyNKztRDZvhdWc+krKT6wS7Neg8sw3A==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + es6-promise@3.3.1: + resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} + + esbuild@0.19.11: + resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} + engines: {node: '>=12'} + hasBin: true + + escalade@3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fastq@1.16.0: + resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} + + fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + + foreground-child@3.1.1: + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + engines: {node: '>=14'} + + fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob@10.3.10: + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + html-minifier@4.0.0: + resolution: {integrity: sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==} + engines: {node: '>=6'} + hasBin: true + + import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-reference@3.0.2: + resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + jackspeak@2.3.6: + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} + engines: {node: '>=14'} + + jiti@1.21.0: + resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} + hasBin: true + + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lilconfig@3.0.0: + resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} + engines: {node: '>=14'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + locate-character@3.0.0: + resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} + + lower-case@1.1.4: + resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} + + lru-cache@10.1.0: + resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} + engines: {node: 14 || >=16.14} + + magic-string@0.30.5: + resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} + engines: {node: '>=12'} + + mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@7.0.4: + resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + engines: {node: '>=16 || 14 >=14.17'} + + mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + + ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + + nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + no-case@2.3.2: + resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} + + node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-hash@3.0.0: + resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} + engines: {node: '>= 6'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + param-case@2.1.1: + resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.10.1: + resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} + engines: {node: '>=16 || 14 >=14.17'} + + periscopic@3.1.0: + resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} + + picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + + postcss-import@15.1.0: + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} + engines: {node: '>=14.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-js@4.0.1: + resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} + engines: {node: ^12 || ^14 || >= 16} + peerDependencies: + postcss: ^8.4.21 + + postcss-load-config@4.0.2: + resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-nested@6.0.1: + resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.2.14 + + postcss-selector-parser@6.0.15: + resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} + engines: {node: '>=4'} + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@8.4.33: + resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} + engines: {node: ^10 || ^12 || >=14} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + relateurl@0.2.7: + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + hasBin: true + + rollup@4.9.3: + resolution: {integrity: sha512-JnchF0ZGFiqGpAPjg3e89j656Ne4tTtCY1VZc1AxtoQcRIxjTu9jyYHBAtkDXE+X681n4un/nX9SU52AroSRzg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + sade@1.8.1: + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} + + sander@0.5.1: + resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + sorcery@0.11.0: + resolution: {integrity: sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==} + hasBin: true + + source-map-js@1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svelte-check@3.6.2: + resolution: {integrity: sha512-E6iFh4aUCGJLRz6QZXH3gcN/VFfkzwtruWSRmlKrLWQTiO6VzLsivR6q02WYLGNAGecV3EocqZuCDrC2uttZ0g==} + hasBin: true + peerDependencies: + svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0 + + svelte-hmr@0.15.3: + resolution: {integrity: sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==} + engines: {node: ^12.20 || ^14.13.1 || >= 16} + peerDependencies: + svelte: ^3.19.0 || ^4.0.0 + + svelte-preprocess@5.1.3: + resolution: {integrity: sha512-xxAkmxGHT+J/GourS5mVJeOXZzne1FR5ljeOUAMXUkfEhkLEllRreXpbl3dIYJlcJRfL1LO1uIAPpBpBfiqGPw==} + engines: {node: '>= 16.0.0', pnpm: ^8.0.0} + peerDependencies: + '@babel/core': ^7.10.2 + coffeescript: ^2.5.1 + less: ^3.11.3 || ^4.0.0 + postcss: ^7 || ^8 + postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + pug: ^3.0.0 + sass: ^1.26.8 + stylus: ^0.55.0 + sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0 + svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0 + typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0' + peerDependenciesMeta: + '@babel/core': + optional: true + coffeescript: + optional: true + less: + optional: true + postcss: + optional: true + postcss-load-config: + optional: true + pug: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + typescript: + optional: true + + svelte@4.2.8: + resolution: {integrity: sha512-hU6dh1MPl8gh6klQZwK/n73GiAHiR95IkFsesLPbMeEZi36ydaXL/ZAb4g9sayT0MXzpxyZjR28yderJHxcmYA==} + engines: {node: '>=16'} + + tailwindcss@3.4.1: + resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==} + engines: {node: '>=14.0.0'} + hasBin: true + + thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + + thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + + tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + + typescript@5.3.3: + resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} + engines: {node: '>=14.17'} + hasBin: true + + uglify-js@3.17.4: + resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} + engines: {node: '>=0.8.0'} + hasBin: true + + update-browserslist-db@1.0.13: + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + upper-case@1.1.3: + resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + vite@5.0.11: + resolution: {integrity: sha512-XBMnDjZcNAw/G1gEiskiM1v6yzM4GE5aMGvhWTlHAYYhxb7S3/V1s3m2LDHa8Vh6yIWYYB0iJwsEaS523c4oYA==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + vitefu@0.2.5: + resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + vite: + optional: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + yaml@2.3.4: + resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} + engines: {node: '>= 14'} + +snapshots: + + '@alloc/quick-lru@5.2.0': {} + + '@ampproject/remapping@2.2.1': + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.20 + + '@babel/runtime@7.23.7': + dependencies: + regenerator-runtime: 0.14.1 + + '@esbuild/aix-ppc64@0.19.11': + optional: true + + '@esbuild/android-arm64@0.19.11': + optional: true + + '@esbuild/android-arm@0.19.11': + optional: true + + '@esbuild/android-x64@0.19.11': + optional: true + + '@esbuild/darwin-arm64@0.19.11': + optional: true + + '@esbuild/darwin-x64@0.19.11': + optional: true + + '@esbuild/freebsd-arm64@0.19.11': + optional: true + + '@esbuild/freebsd-x64@0.19.11': + optional: true + + '@esbuild/linux-arm64@0.19.11': + optional: true + + '@esbuild/linux-arm@0.19.11': + optional: true + + '@esbuild/linux-ia32@0.19.11': + optional: true + + '@esbuild/linux-loong64@0.19.11': + optional: true + + '@esbuild/linux-mips64el@0.19.11': + optional: true + + '@esbuild/linux-ppc64@0.19.11': + optional: true + + '@esbuild/linux-riscv64@0.19.11': + optional: true + + '@esbuild/linux-s390x@0.19.11': + optional: true + + '@esbuild/linux-x64@0.19.11': + optional: true + + '@esbuild/netbsd-x64@0.19.11': + optional: true + + '@esbuild/openbsd-x64@0.19.11': + optional: true + + '@esbuild/sunos-x64@0.19.11': + optional: true + + '@esbuild/win32-arm64@0.19.11': + optional: true + + '@esbuild/win32-ia32@0.19.11': + optional: true + + '@esbuild/win32-x64@0.19.11': + optional: true + + '@fortawesome/fontawesome-free@6.5.1': {} + + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + '@jridgewell/gen-mapping@0.3.3': + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.20 + + '@jridgewell/resolve-uri@3.1.1': {} + + '@jridgewell/set-array@1.1.2': {} + + '@jridgewell/sourcemap-codec@1.4.15': {} + + '@jridgewell/trace-mapping@0.3.20': + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + + '@mojs/core@1.7.1': + dependencies: + '@babel/runtime': 7.23.7 + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.16.0 + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@rollup/rollup-android-arm-eabi@4.9.3': + optional: true + + '@rollup/rollup-android-arm64@4.9.3': + optional: true + + '@rollup/rollup-darwin-arm64@4.9.3': + optional: true + + '@rollup/rollup-darwin-x64@4.9.3': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.9.3': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.9.3': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.9.3': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.9.3': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.9.3': + optional: true + + '@rollup/rollup-linux-x64-musl@4.9.3': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.9.3': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.9.3': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.9.3': + optional: true + + '@sveltejs/vite-plugin-svelte-inspector@2.0.0(@sveltejs/vite-plugin-svelte@3.0.1)(svelte@4.2.8)(vite@5.0.11)': + dependencies: + '@sveltejs/vite-plugin-svelte': 3.0.1(svelte@4.2.8)(vite@5.0.11) + debug: 4.3.4 + svelte: 4.2.8 + vite: 5.0.11 + transitivePeerDependencies: + - supports-color + + '@sveltejs/vite-plugin-svelte@3.0.1(svelte@4.2.8)(vite@5.0.11)': + dependencies: + '@sveltejs/vite-plugin-svelte-inspector': 2.0.0(@sveltejs/vite-plugin-svelte@3.0.1)(svelte@4.2.8)(vite@5.0.11) + debug: 4.3.4 + deepmerge: 4.3.1 + kleur: 4.1.5 + magic-string: 0.30.5 + svelte: 4.2.8 + svelte-hmr: 0.15.3(svelte@4.2.8) + vite: 5.0.11 + vitefu: 0.2.5(vite@5.0.11) + transitivePeerDependencies: + - supports-color + + '@tsconfig/svelte@5.0.2': {} + + '@types/estree@1.0.5': {} + + '@types/pug@2.0.10': {} + + acorn@8.11.3: {} + + ansi-regex@5.0.1: {} + + ansi-regex@6.0.1: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@6.2.1: {} + + any-promise@1.3.0: {} + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + arg@5.0.2: {} + + aria-query@5.3.0: + dependencies: + dequal: 2.0.3 + + autoprefixer@10.4.16(postcss@8.4.33): + dependencies: + browserslist: 4.22.2 + caniuse-lite: 1.0.30001574 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.33 + postcss-value-parser: 4.2.0 + + axobject-query@3.2.1: + dependencies: + dequal: 2.0.3 + + balanced-match@1.0.2: {} + + binary-extensions@2.2.0: {} + + brace-expansion@1.1.11: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.2: + dependencies: + fill-range: 7.0.1 + + browserslist@4.22.2: + dependencies: + caniuse-lite: 1.0.30001574 + electron-to-chromium: 1.4.623 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.22.2) + + buffer-crc32@0.2.13: {} + + callsites@3.1.0: {} + + camel-case@3.0.0: + dependencies: + no-case: 2.3.2 + upper-case: 1.1.3 + + camelcase-css@2.0.1: {} + + caniuse-lite@1.0.30001574: {} + + chokidar@3.5.3: + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + + clean-css@4.2.4: + dependencies: + source-map: 0.6.1 + + code-red@1.0.4: + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + '@types/estree': 1.0.5 + acorn: 8.11.3 + estree-walker: 3.0.3 + periscopic: 3.1.0 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + commander@2.20.3: {} + + commander@4.1.1: {} + + concat-map@0.0.1: {} + + cross-spawn@7.0.3: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + css-tree@2.3.1: + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.0.2 + + cssesc@3.0.0: {} + + debug@4.3.4: + dependencies: + ms: 2.1.2 + + deepmerge@4.3.1: {} + + dequal@2.0.3: {} + + detect-indent@6.1.0: {} + + didyoumean@1.2.2: {} + + dlv@1.1.3: {} + + eastasianwidth@0.2.0: {} + + electron-to-chromium@1.4.623: {} + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + es6-promise@3.3.1: {} + + esbuild@0.19.11: + optionalDependencies: + '@esbuild/aix-ppc64': 0.19.11 + '@esbuild/android-arm': 0.19.11 + '@esbuild/android-arm64': 0.19.11 + '@esbuild/android-x64': 0.19.11 + '@esbuild/darwin-arm64': 0.19.11 + '@esbuild/darwin-x64': 0.19.11 + '@esbuild/freebsd-arm64': 0.19.11 + '@esbuild/freebsd-x64': 0.19.11 + '@esbuild/linux-arm': 0.19.11 + '@esbuild/linux-arm64': 0.19.11 + '@esbuild/linux-ia32': 0.19.11 + '@esbuild/linux-loong64': 0.19.11 + '@esbuild/linux-mips64el': 0.19.11 + '@esbuild/linux-ppc64': 0.19.11 + '@esbuild/linux-riscv64': 0.19.11 + '@esbuild/linux-s390x': 0.19.11 + '@esbuild/linux-x64': 0.19.11 + '@esbuild/netbsd-x64': 0.19.11 + '@esbuild/openbsd-x64': 0.19.11 + '@esbuild/sunos-x64': 0.19.11 + '@esbuild/win32-arm64': 0.19.11 + '@esbuild/win32-ia32': 0.19.11 + '@esbuild/win32-x64': 0.19.11 + + escalade@3.1.1: {} + + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.5 + + fast-glob@3.3.2: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + + fastq@1.16.0: + dependencies: + reusify: 1.0.4 + + fill-range@7.0.1: + dependencies: + to-regex-range: 5.0.1 + + foreground-child@3.1.1: + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.1.0 + + fraction.js@4.3.7: {} + + fs.realpath@1.0.0: {} + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + glob@10.3.10: + dependencies: + foreground-child: 3.1.1 + jackspeak: 2.3.6 + minimatch: 9.0.3 + minipass: 7.0.4 + path-scurry: 1.10.1 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + graceful-fs@4.2.11: {} + + hasown@2.0.0: + dependencies: + function-bind: 1.1.2 + + he@1.2.0: {} + + html-minifier@4.0.0: + dependencies: + camel-case: 3.0.0 + clean-css: 4.2.4 + commander: 2.20.3 + he: 1.2.0 + param-case: 2.1.1 + relateurl: 0.2.7 + uglify-js: 3.17.4 + + import-fresh@3.3.0: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@2.0.4: {} + + is-binary-path@2.1.0: + dependencies: + binary-extensions: 2.2.0 + + is-core-module@2.13.1: + dependencies: + hasown: 2.0.0 + + is-extglob@2.1.1: {} + + is-fullwidth-code-point@3.0.0: {} + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-number@7.0.0: {} + + is-reference@3.0.2: + dependencies: + '@types/estree': 1.0.5 + + isexe@2.0.0: {} + + jackspeak@2.3.6: + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + + jiti@1.21.0: {} + + kleur@4.1.5: {} + + lilconfig@2.1.0: {} + + lilconfig@3.0.0: {} + + lines-and-columns@1.2.4: {} + + locate-character@3.0.0: {} + + lower-case@1.1.4: {} + + lru-cache@10.1.0: {} + + magic-string@0.30.5: + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + + mdn-data@2.0.30: {} + + merge2@1.4.1: {} + + micromatch@4.0.5: + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + + min-indent@1.0.1: {} + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.11 + + minimatch@9.0.3: + dependencies: + brace-expansion: 2.0.1 + + minimist@1.2.8: {} + + minipass@7.0.4: {} + + mkdirp@0.5.6: + dependencies: + minimist: 1.2.8 + + mri@1.2.0: {} + + ms@2.1.2: {} + + mz@2.7.0: + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + + nanoid@3.3.7: {} + + no-case@2.3.2: + dependencies: + lower-case: 1.1.4 + + node-releases@2.0.14: {} + + normalize-path@3.0.0: {} + + normalize-range@0.1.2: {} + + object-assign@4.1.1: {} + + object-hash@3.0.0: {} + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + param-case@2.1.1: + dependencies: + no-case: 2.3.2 + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + path-is-absolute@1.0.1: {} + + path-key@3.1.1: {} + + path-parse@1.0.7: {} + + path-scurry@1.10.1: + dependencies: + lru-cache: 10.1.0 + minipass: 7.0.4 + + periscopic@3.1.0: + dependencies: + '@types/estree': 1.0.5 + estree-walker: 3.0.3 + is-reference: 3.0.2 + + picocolors@1.0.0: {} + + picomatch@2.3.1: {} + + pify@2.3.0: {} + + pirates@4.0.6: {} + + postcss-import@15.1.0(postcss@8.4.33): + dependencies: + postcss: 8.4.33 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.8 + + postcss-js@4.0.1(postcss@8.4.33): + dependencies: + camelcase-css: 2.0.1 + postcss: 8.4.33 + + postcss-load-config@4.0.2(postcss@8.4.33): + dependencies: + lilconfig: 3.0.0 + postcss: 8.4.33 + yaml: 2.3.4 + + postcss-nested@6.0.1(postcss@8.4.33): + dependencies: + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 + + postcss-selector-parser@6.0.15: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss-value-parser@4.2.0: {} + + postcss@8.4.33: + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.0 + source-map-js: 1.0.2 + + queue-microtask@1.2.3: {} + + read-cache@1.0.0: + dependencies: + pify: 2.3.0 + + readdirp@3.6.0: + dependencies: + picomatch: 2.3.1 + + regenerator-runtime@0.14.1: {} + + relateurl@0.2.7: {} + + resolve-from@4.0.0: {} + + resolve@1.22.8: + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + reusify@1.0.4: {} + + rimraf@2.7.1: + dependencies: + glob: 7.2.3 + + rollup@4.9.3: + dependencies: + '@types/estree': 1.0.5 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.9.3 + '@rollup/rollup-android-arm64': 4.9.3 + '@rollup/rollup-darwin-arm64': 4.9.3 + '@rollup/rollup-darwin-x64': 4.9.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.9.3 + '@rollup/rollup-linux-arm64-gnu': 4.9.3 + '@rollup/rollup-linux-arm64-musl': 4.9.3 + '@rollup/rollup-linux-riscv64-gnu': 4.9.3 + '@rollup/rollup-linux-x64-gnu': 4.9.3 + '@rollup/rollup-linux-x64-musl': 4.9.3 + '@rollup/rollup-win32-arm64-msvc': 4.9.3 + '@rollup/rollup-win32-ia32-msvc': 4.9.3 + '@rollup/rollup-win32-x64-msvc': 4.9.3 + fsevents: 2.3.3 + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + sade@1.8.1: + dependencies: + mri: 1.2.0 + + sander@0.5.1: + dependencies: + es6-promise: 3.3.1 + graceful-fs: 4.2.11 + mkdirp: 0.5.6 + rimraf: 2.7.1 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@3.0.0: {} + + signal-exit@4.1.0: {} + + sorcery@0.11.0: + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + buffer-crc32: 0.2.13 + minimist: 1.2.8 + sander: 0.5.1 + + source-map-js@1.0.2: {} + + source-map@0.6.1: {} + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@5.1.2: + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.0: + dependencies: + ansi-regex: 6.0.1 + + strip-indent@3.0.0: + dependencies: + min-indent: 1.0.1 + + sucrase@3.35.0: + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + commander: 4.1.1 + glob: 10.3.10 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.6 + ts-interface-checker: 0.1.13 + + supports-preserve-symlinks-flag@1.0.0: {} + + svelte-check@3.6.2(postcss@8.4.33)(svelte@4.2.8): + dependencies: + '@jridgewell/trace-mapping': 0.3.20 + chokidar: 3.5.3 + fast-glob: 3.3.2 + import-fresh: 3.3.0 + picocolors: 1.0.0 + sade: 1.8.1 + svelte: 4.2.8 + svelte-preprocess: 5.1.3(postcss@8.4.33)(svelte@4.2.8)(typescript@5.3.3) + typescript: 5.3.3 + transitivePeerDependencies: + - '@babel/core' + - coffeescript + - less + - postcss + - postcss-load-config + - pug + - sass + - stylus + - sugarss + + svelte-hmr@0.15.3(svelte@4.2.8): + dependencies: + svelte: 4.2.8 + + svelte-preprocess@5.1.3(postcss@8.4.33)(svelte@4.2.8)(typescript@5.3.3): + dependencies: + '@types/pug': 2.0.10 + detect-indent: 6.1.0 + magic-string: 0.30.5 + postcss: 8.4.33 + sorcery: 0.11.0 + strip-indent: 3.0.0 + svelte: 4.2.8 + typescript: 5.3.3 + + svelte@4.2.8: + dependencies: + '@ampproject/remapping': 2.2.1 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.20 + acorn: 8.11.3 + aria-query: 5.3.0 + axobject-query: 3.2.1 + code-red: 1.0.4 + css-tree: 2.3.1 + estree-walker: 3.0.3 + is-reference: 3.0.2 + locate-character: 3.0.0 + magic-string: 0.30.5 + periscopic: 3.1.0 + + tailwindcss@3.4.1: + dependencies: + '@alloc/quick-lru': 5.2.0 + arg: 5.0.2 + chokidar: 3.5.3 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.3.2 + glob-parent: 6.0.2 + is-glob: 4.0.3 + jiti: 1.21.0 + lilconfig: 2.1.0 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.0.0 + postcss: 8.4.33 + postcss-import: 15.1.0(postcss@8.4.33) + postcss-js: 4.0.1(postcss@8.4.33) + postcss-load-config: 4.0.2(postcss@8.4.33) + postcss-nested: 6.0.1(postcss@8.4.33) + postcss-selector-parser: 6.0.15 + resolve: 1.22.8 + sucrase: 3.35.0 + transitivePeerDependencies: + - ts-node + + thenify-all@1.6.0: + dependencies: + thenify: 3.3.1 + + thenify@3.3.1: + dependencies: + any-promise: 1.3.0 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + ts-interface-checker@0.1.13: {} + + tslib@2.6.2: {} + + typescript@5.3.3: {} + + uglify-js@3.17.4: {} + + update-browserslist-db@1.0.13(browserslist@4.22.2): + dependencies: + browserslist: 4.22.2 + escalade: 3.1.1 + picocolors: 1.0.0 + + upper-case@1.1.3: {} + + util-deprecate@1.0.2: {} + + vite@5.0.11: + dependencies: + esbuild: 0.19.11 + postcss: 8.4.33 + rollup: 4.9.3 + optionalDependencies: + fsevents: 2.3.3 + + vitefu@0.2.5(vite@5.0.11): + dependencies: + vite: 5.0.11 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@8.1.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + + wrappy@1.0.2: {} + + yaml@2.3.4: {} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/postcss.config.js b/resources/[freizeit]/[gym]/ps-ui/web/postcss.config.js new file mode 100644 index 000000000..d175d1e05 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/postcss.config.js @@ -0,0 +1,7 @@ +import tailwind from 'tailwindcss'; +import autoprefixer from 'autoprefixer'; +import tailwindConfig from './tailwind.config.cjs'; + +export default { + plugins: [tailwind(tailwindConfig), autoprefixer], +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/public/favicon.ico b/resources/[freizeit]/[gym]/ps-ui/web/public/favicon.ico new file mode 100644 index 000000000..d75d248ef Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/public/favicon.ico differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/public/images/ps-logo.png b/resources/[freizeit]/[gym]/ps-ui/web/public/images/ps-logo.png new file mode 100644 index 000000000..e1bff30b3 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/public/images/ps-logo.png differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/App.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/App.svelte new file mode 100644 index 000000000..01ad0e4df --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/App.svelte @@ -0,0 +1,224 @@ + + +{#if $showUi } + +
+ {#if $showComponent === UIComponentsEnum.StatusBar} + + {/if} + + {#if $showComponent === UIComponentsEnum.DrawText} + + {/if} + + {#if $showComponent === UIComponentsEnum.Menu} + + {/if} + + {#if $showComponent === UIComponentsEnum.Input} + + {/if} + + {#if $showComponent === UIComponentsEnum.Game} + + {/if} + + {#if $showComponent === UIComponentsEnum.Image} + + {/if} + + {#if $showComponent === UIComponentsEnum.Notification} + + {/if} + +
+{/if} + + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Hacker-Technology-Font/Hacker.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Hacker-Technology-Font/Hacker.ttf new file mode 100644 index 000000000..14a8b14b4 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Hacker-Technology-Font/Hacker.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Black.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Black.ttf new file mode 100644 index 000000000..0112e7da6 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Black.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-BlackItalic.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-BlackItalic.ttf new file mode 100644 index 000000000..b2c6aca57 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-BlackItalic.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Bold.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Bold.ttf new file mode 100644 index 000000000..43da14d84 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Bold.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-BoldItalic.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-BoldItalic.ttf new file mode 100644 index 000000000..bcfdab431 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-BoldItalic.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Italic.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Italic.ttf new file mode 100644 index 000000000..1b5eaa361 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Italic.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Light.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Light.ttf new file mode 100644 index 000000000..e7307e72c Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Light.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-LightItalic.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-LightItalic.ttf new file mode 100644 index 000000000..2d277afb2 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-LightItalic.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Medium.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Medium.ttf new file mode 100644 index 000000000..ac0f908b9 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Medium.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-MediumItalic.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-MediumItalic.ttf new file mode 100644 index 000000000..fc36a4785 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-MediumItalic.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Regular.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Regular.ttf new file mode 100644 index 000000000..ddf4bfacb Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Regular.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Thin.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Thin.ttf new file mode 100644 index 000000000..2e0dee6a8 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-Thin.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-ThinItalic.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-ThinItalic.ttf new file mode 100644 index 000000000..084f9c0f5 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/Roboto/Roboto-ThinItalic.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/karmatic_arcade/ka1.ttf b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/karmatic_arcade/ka1.ttf new file mode 100644 index 000000000..d1df85235 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/fonts/karmatic_arcade/ka1.ttf differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svelte.png b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svelte.png new file mode 100644 index 000000000..e673c91c7 Binary files /dev/null and b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svelte.png differ diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svgs/Skull.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svgs/Skull.svelte new file mode 100644 index 000000000..fc435d919 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svgs/Skull.svelte @@ -0,0 +1,40 @@ + + + + + + + diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svgs/Skull.svg b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svgs/Skull.svg new file mode 100644 index 000000000..e69de29bb diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svgs/ethernet-solid.svg b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svgs/ethernet-solid.svg new file mode 100644 index 000000000..b009d7f0f --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svgs/ethernet-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svgs/network-wired-solid.svg b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svgs/network-wired-solid.svg new file mode 100644 index 000000000..d03383497 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/assets/svgs/network-wired-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/components/DrawTextComponent.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/components/DrawTextComponent.svelte new file mode 100644 index 000000000..b831291aa --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/components/DrawTextComponent.svelte @@ -0,0 +1,229 @@ + + +
+
+
+ +
+ +
+

+ {#each interactionText as text} +

{text.value}

+ {/each} +

+
+
+
+ + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/components/Icon.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/components/Icon.svelte new file mode 100644 index 000000000..db6611d69 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/components/Icon.svelte @@ -0,0 +1,8 @@ + + + diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/components/Image.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/components/Image.svelte new file mode 100644 index 000000000..6a7f6cb02 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/components/Image.svelte @@ -0,0 +1,13 @@ + + +{#if $imageStore.show} +
+
+ + Image Placeholder +
+
+{/if} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/components/InputComponent.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/components/InputComponent.svelte new file mode 100644 index 000000000..35d3797d4 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/components/InputComponent.svelte @@ -0,0 +1,203 @@ + + +
+ + +
+ {#each inputData as inputValue} +
+
+
+ +
+
+

+ {inputValue.label} +

+ +
+
+
+ +
+ {/each} +
+ +
+ + +
+
+ + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/components/InteractionMenuComponent.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/components/InteractionMenuComponent.svelte new file mode 100644 index 000000000..8b66da963 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/components/InteractionMenuComponent.svelte @@ -0,0 +1,256 @@ + + + + + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/components/Notification.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/components/Notification.svelte new file mode 100644 index 000000000..31c2e2ea1 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/components/Notification.svelte @@ -0,0 +1,27 @@ + + +
+
+ {#each $notifications as notification} +
+
+ {#if notification.type === NotificationTypes.Success} + + {:else if notification.type === NotificationTypes.Warning} + + {:else if notification.type === NotificationTypes.Error} + + {:else if notification.type === NotificationTypes.Info} + + {/if} +
+ {notification.text} +
+ {/each} +
+
\ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/components/StatusBarComponent.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/components/StatusBarComponent.svelte new file mode 100644 index 000000000..ba71a384c --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/components/StatusBarComponent.svelte @@ -0,0 +1,195 @@ + + +
+
+
+ +
+ +
+

+ {statusData.title} +

+

+ {statusData.description} +

+
+
+ +
+ {#each statusDataItems as item} +
+

+ {item.key}: +

+

+ {item.value} +

+
+ {/each} +
+
+ + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/enums/GameConnectionMessages.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/enums/GameConnectionMessages.ts new file mode 100644 index 000000000..fc9646fef --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/enums/GameConnectionMessages.ts @@ -0,0 +1,4 @@ +export enum ConnectingGameMessageEnum { + Connecting = 'CONNECTING TO INTERFACE', + Connected = 'CONNECTED. GET READY.', +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/enums/GamesEnum.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/enums/GamesEnum.ts new file mode 100644 index 000000000..4199d75f1 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/enums/GamesEnum.ts @@ -0,0 +1,6 @@ +export enum GamesEnum { + Scrambler = 'Scramber', + NumberMaze = 'NumberMaze', + Memory = 'MemoryGame', + NumberPuzzle = 'NumberPuzzle', +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/enums/NotificationTypesEnum.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/enums/NotificationTypesEnum.ts new file mode 100644 index 000000000..4766c2e06 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/enums/NotificationTypesEnum.ts @@ -0,0 +1,13 @@ +export enum NotificationTypes { + Success = 'ps-notification-success', + Error = 'ps-notification-error', + Warning = 'ps-notification-warning', + Info = 'ps-notification-info', +} + +export enum NotificationIcons { + Success = 'fa-solid fa-circle-check', + Error = 'fa-solid fa-circle-exclamation', + Warning = 'fa-solid fa-triangle-exclamation', + Info = 'fa-solid fa-circle-info', +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/enums/UIComponentsEnum.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/enums/UIComponentsEnum.ts new file mode 100644 index 000000000..6dd3247a1 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/enums/UIComponentsEnum.ts @@ -0,0 +1,11 @@ +export enum UIComponentsEnum { + StatusBar = 'StatusBar', + Menu = 'Menu', + Input = 'Input', + Game = 'Game', + MemoryGame = 'MemoryGame', + Image = 'ShowImage', + DrawText = 'DrawText', + Notification = 'Notify', + None = 'hideUi', +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/games/CircleGame.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/games/CircleGame.svelte new file mode 100644 index 000000000..7412e2331 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/games/CircleGame.svelte @@ -0,0 +1,139 @@ + + +
+ +
\ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/games/GameBase.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/games/GameBase.svelte new file mode 100644 index 000000000..70fa1d314 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/games/GameBase.svelte @@ -0,0 +1,104 @@ + + +{#if !showResultScreen} +
+
+ + +
+

+ {$currentActiveGameDetails?.gameName} +

+
+ +
+

{$currentActiveGameDetails?.gameDescription}

+
+ +
+ {#if $currentGameActive === GamesEnum.Memory} + {showResultScreen = true; hackSuccess = event.detail.hackSuccess; }} /> + {:else if $currentGameActive === GamesEnum.Scrambler} + {showResultScreen = true; hackSuccess = event.detail.hackSuccess; }} /> + {:else if $currentGameActive === GamesEnum.NumberMaze} + {showResultScreen = true; hackSuccess = event.detail.hackSuccess; }} /> + {:else if $currentGameActive === GamesEnum.NumberPuzzle} + {showResultScreen = true; hackSuccess = event.detail.hackSuccess; }} /> + {/if} +
+
+
+{:else} + +{/if} + + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/games/GameLauncher.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/games/GameLauncher.svelte new file mode 100644 index 000000000..4ee0b7090 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/games/GameLauncher.svelte @@ -0,0 +1,79 @@ + + +{#if $showLoading} +
+
+ +

{$connectionText}

+ + +
+ +
+
+
+
+
+{/if} + +{#if !$showLoading && gameLoaded} + +{/if} \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/games/MemoryGame.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/games/MemoryGame.svelte new file mode 100644 index 000000000..f048d48fa --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/games/MemoryGame.svelte @@ -0,0 +1,269 @@ + + + +
+
+ +

{gameTimeRemaining}

time remaining +
+ +
+ {#each allCubes as cube} +
guessAnswer(cube)} + style="width: 0px; height: 0px; border: 0px;" + class="each-cube {gameStarted ? 'cursor-pointer' : 'cursor-default'} {!gameStarted ? (cube.isCorrectAnswer ? 'ps-bg-green-cube' : '') : (cube.isClicked && cube.isCorrectAnswer ? 'ps-bg-green-cube' : (cube.isClicked && !cube.isCorrectAnswer ? 'ps-bg-wrong-cube' : ''))}"> +
+ {/each} +
+
+ + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/games/NumberMaze.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/games/NumberMaze.svelte new file mode 100644 index 000000000..fad639ecb --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/games/NumberMaze.svelte @@ -0,0 +1,331 @@ + + + +
+
+ +

{gameTimeRemaining}

time remaining +
+
+ {#each allCubes as cube} +
handleCubeClick(cube)} + class="each-cube {cube.classList} + {[0, numberOfCubes - 1].includes(cube.cubeIndex) ? 'start-dest-cube' : ''} + {!stopBlinking && [blinkingIndex, blinkingIndex * 7].includes(cube.cubeIndex) ? 'blinking-cube' : ''} + " + > + {#if cube.cubeIndex === 0} + + {:else if cube.cubeIndex === numberOfCubes - 1} + + {:else} + {#if !stopBlinking || displayCubeNumbers} +

{ cube.cubeValue }

+ {/if} + {/if} +
+ {/each} +
+
+ + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/games/NumberPuzzle.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/games/NumberPuzzle.svelte new file mode 100644 index 000000000..c7dcca68a --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/games/NumberPuzzle.svelte @@ -0,0 +1,240 @@ + + + +
+
+ +

{gameTimeRemaining}

time remaining +
+ +
+ {#each allCubes as cube} +
handleClick(cube)} + > + {#if displayNumbersOnCubesFor > 0} +

{cube.cubeValue + 1}

+ {/if} +
+ {/each} +
+
+ + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/games/Scrambler.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/games/Scrambler.svelte new file mode 100644 index 000000000..a171a6949 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/games/Scrambler.svelte @@ -0,0 +1,321 @@ + + + +
+
+
+

Match the numbers underneath.

+
+ {#each correctAnswers as value} +

{value.cubeValue}

+ {/each} +
+
+
+ +

{gameTimeRemaining}

time remaining +
+
+ +
+ {#each allCubes as cube} +
+

{cube.cubeValue}

+
+ {/each} +
+
+ + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/games/SuccessFailureScreen.svelte b/resources/[freizeit]/[gym]/ps-ui/web/src/games/SuccessFailureScreen.svelte new file mode 100644 index 000000000..23cb26652 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/games/SuccessFailureScreen.svelte @@ -0,0 +1,61 @@ + + +
+
+ + {#if isSuccess} +

+ Access granted +

+ {:else} +

+ Access denied +

+ {/if} +
+ +
+ + \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/index.css b/resources/[freizeit]/[gym]/ps-ui/web/src/index.css new file mode 100644 index 000000000..e37a6e1d2 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/index.css @@ -0,0 +1,86 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + + + +@font-face { + font-family: roboto; + src: url('./assets/fonts/Roboto/Roboto-Regular.ttf'); +} + +@font-face { + font-family: hacker; + src: url('./assets/fonts/Hacker-Technology-Font/Hacker.ttf'); +} + +@font-face { + font-family: arcade; + src: url('./assets/fonts/karmatic_arcade/ka1.ttf'); +} + +@layer utilities { + .ps-text-roboto { + font-family: 'roboto'; + } + .ps-font-arcade { + font-family: 'arcade'; + } + .ps-font-hacker { + font-family: 'hacker'; + } + + .ps-text-green { + color: var(--color-green) !important; + } + .ps-text-lightgrey { + color: var(--color-lightgrey); + } + .ps-text-darkblue { + color: var(--color-darkblue); + } + .ps-text-red { + color: var(--color-red) !important; + } + + .ps-border-green { + border: 1px solid var(--color-green); + } + .ps-outline-green { + outline: 1px solid var(--color-green); + } + + .ps-bg-lightgrey { + background-color: var(--color-lightgrey); + } + .ps-bg-darkblue { + background-color: var(--color-darkblue); + } + .ps-bg-green { + background-color: var(--color-green); + } + + .ps-bg-green-w-opacity { + background-color: rgba(2, 241, 181, 0.2); + } + .ps-notification-success { + background-color: #2ebd2e; + color: black; + border: 1px solid #158515; + } + .ps-notification-warning { + background-color: #fbb433; + border: 1px solid #cf8d15; + color: black; + } + .ps-notification-error { + background-color: #cd2222; + border: 1px solid #8d0e0e; + color: white; + } + .ps-notification-info { + background-color: #33addf; + border: 1px solid #1886b3; + color: black; + } +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IDrawText.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IDrawText.ts new file mode 100644 index 000000000..719ffbf5a --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IDrawText.ts @@ -0,0 +1,6 @@ +export interface IDrawText { + // title: string; + icon: string; + keys: string; + color: string; +} \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IGameSettings.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IGameSettings.ts new file mode 100644 index 000000000..faf64dd92 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IGameSettings.ts @@ -0,0 +1,8 @@ +export interface IGameSettings { + game: string; + gameName: string; + gameDescription: string; + gameTime: number; + amountOfAnswers: number; + maxAnswersIncorrect: number; +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IImage.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IImage.ts new file mode 100644 index 000000000..042dab419 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IImage.ts @@ -0,0 +1,5 @@ +export interface IImage { + action?: string; + show: boolean; + url: string; +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IInput.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IInput.ts new file mode 100644 index 000000000..a24d3da71 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IInput.ts @@ -0,0 +1,7 @@ +export interface IInput { + id: string; + label: string; + icon: string; + placeholder?: string; + type: string; +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IMenu.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IMenu.ts new file mode 100644 index 000000000..2170b8021 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IMenu.ts @@ -0,0 +1,15 @@ +export interface IMenu { + header: string; + text?: string; + icon: string; + color: string; + callback: string; + subMenu: Array; +}; + +export interface ISubMenu { + header: string; + text?: string; + icon: string; + color: string; +}; diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/INotification.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/INotification.ts new file mode 100644 index 000000000..a97d9c4bd --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/INotification.ts @@ -0,0 +1,8 @@ +import type { NotificationTypes } from './../enums/NotificationTypesEnum'; + +export interface INotification { + text: string; + type: NotificationTypes; + icon: string; + length: number; +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IStatusBar.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IStatusBar.ts new file mode 100644 index 000000000..df73aa17f --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/IStatusBar.ts @@ -0,0 +1,11 @@ +export interface IStatusBar { + title: string; + description: string; + icon: string; + items: Array; +} + +export interface IStatusBarItem { + key: string; + value: string; +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/main.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/main.ts new file mode 100644 index 000000000..24e47b4ba --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/main.ts @@ -0,0 +1,9 @@ +import App from './App.svelte' +import './index.css' +import '@fortawesome/fontawesome-free/css/all.css' + +const app = new App({ + target: document.getElementById('app') + }) + +export default app diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/stores/CircleGameStore.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/CircleGameStore.ts new file mode 100644 index 000000000..efa82c7f6 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/CircleGameStore.ts @@ -0,0 +1,25 @@ +import { writable } from 'svelte/store'; +import CircleGame from '../games/CircleGame.svelte'; + +const circleGameStore = writable(null); + +export function initializeCircleGame() { + circleGameStore.update(component => { + if (!component) { + const newComponent = new CircleGame({ + target: document.body + }); + return newComponent; + } + return component; + }); +} + +export function setupCircleGame(data: { circles?: number; time?: number }) { + circleGameStore.update(component => { + if (component) { + component.setupCircleGame(data); + } + return component; + }); +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/stores/DrawTextStore.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/DrawTextStore.ts new file mode 100644 index 000000000..ac03f3aea --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/DrawTextStore.ts @@ -0,0 +1,29 @@ +import { writable, type Writable } from 'svelte/store'; +import { showComponent, showUi } from './GeneralStores'; +import { UIComponentsEnum } from '../enums/UIComponentsEnum'; +import type { IDrawText } from '../interfaces/IDrawText'; + +export const drawTextStore: Writable = writable({ + // title: '', + icon: '', + keys: '', + color: '' +}); + +export const hideDrawTextStore: Writable = writable(false); + +export function showDrawTextMenu(data: IDrawText) { + showUi.set(true); + showComponent.set(UIComponentsEnum.DrawText); + + drawTextStore.set({ + // title: data.title, + icon: data.icon || 'fa-solid fa-circle-info', + keys: data.keys, + color: data.color || 'var(--color-green)' + }); +} + +export function hideDrawTextMenu() { + hideDrawTextStore.set(true); +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/stores/GameLauncherStore.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/GameLauncherStore.ts new file mode 100644 index 000000000..32ced183b --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/GameLauncherStore.ts @@ -0,0 +1,118 @@ +import { UIComponentsEnum } from '../enums/UIComponentsEnum'; +import { GamesEnum } from '../enums/GamesEnum'; +import { ConnectingGameMessageEnum } from '../enums/GameConnectionMessages'; +import { hideUi, isDevMode, showComponent } from './GeneralStores'; +import type { IGameSettings } from './../interfaces/IGameSettings'; +import { writable, type Writable } from 'svelte/store'; +import fetchNui from './../../utils/fetch'; + +export const gameSettings: Writable = writable({ + game: '', + gameName: '', + gameDescription: '', + amountOfAnswers: 0, + gameTime: 0, + maxAnswersIncorrect: 0, +}); +export const currentGameActive: Writable | undefined = writable(); +export const currentActiveGameDetails: Writable | undefined = writable(); +export const connectionText: Writable = writable(); +export const showLoading: Writable = writable(true); + +export function setupGame(data): void { + const settings = data; + currentActiveGameDetails.set(settings); + + switch (settings.game) { + case GamesEnum.Memory: { + showComponent.set(UIComponentsEnum.Game); + + currentGameActive.set(GamesEnum.Memory); + connectionText.set(ConnectingGameMessageEnum.Connecting); + + gameSettings.set({ + game: GamesEnum.Memory, + gameName: settings.gameName, + gameDescription: settings.gameDescription, + gameTime: settings.gameTime || 2,// 1000 = 10 seconds + amountOfAnswers: settings.amountOfAnswers || 15, + maxAnswersIncorrect: settings.maxAnswersIncorrect || 2 + }); + + break; + } + + case GamesEnum.Scrambler: { + showComponent.set(UIComponentsEnum.Game); + + currentGameActive.set(GamesEnum.Scrambler); + connectionText.set(ConnectingGameMessageEnum.Connecting); + + gameSettings.set({ + game: GamesEnum.Scrambler, + gameName: settings.gameName, + gameDescription: settings.gameDescription, + gameTime: settings.gameTime || 2,// 1000 = 10 seconds + amountOfAnswers: settings.amountOfAnswers || 4, + maxAnswersIncorrect: settings.maxAnswersIncorrect || 0, + }); + + break; + } + + case GamesEnum.NumberMaze: { + showComponent.set(UIComponentsEnum.Game); + + currentGameActive.set(GamesEnum.NumberMaze); + connectionText.set(ConnectingGameMessageEnum.Connecting); + + gameSettings.set({ + game: GamesEnum.NumberMaze, + gameName: settings.gameName, + gameDescription: settings.gameDescription, + gameTime: settings.gameTime || 2,// 1000 = 10 seconds + amountOfAnswers: settings.amountOfAnswers || 4, + maxAnswersIncorrect: settings.maxAnswersIncorrect || 0, + }); + break; + } + + case GamesEnum.NumberPuzzle: { + showComponent.set(UIComponentsEnum.Game); + + currentGameActive.set(GamesEnum.NumberPuzzle); + connectionText.set(ConnectingGameMessageEnum.Connecting); + + gameSettings.set({ + game: GamesEnum.NumberPuzzle, + gameName: settings.gameName, + gameDescription: settings.gameDescription, + gameTime: settings.gameTime || 2,// 1000 = 10 seconds + amountOfAnswers: settings.amountOfAnswers || 4, + maxAnswersIncorrect: settings.maxAnswersIncorrect || 0, + }); + break; + } + } +} + +export function closeGame(isSuccess: boolean): void { + if(!isDevMode) { + fetchNui('minigame:callback', isSuccess); + } + closeUi(); +} + +export function closeUi() { + hideUi(); + currentGameActive.set(null); + currentActiveGameDetails.set(null); + gameSettings.set({ + game: '', + gameName: '', + gameDescription: '', + amountOfAnswers: 0, + gameTime: 0, + maxAnswersIncorrect: 0, + }); +} \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/stores/GeneralStores.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/GeneralStores.ts new file mode 100644 index 000000000..402eec090 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/GeneralStores.ts @@ -0,0 +1,22 @@ +import type { UIComponentsEnum } from './../enums/UIComponentsEnum'; +import { writable, type Writable } from 'svelte/store'; +import { currentGameActive } from './GameLauncherStore'; + +export const showComponent: Writable = writable(); + +export const showUi: Writable = writable(); +export const isDevMode = false; + +export function hideUi(): void { + showUi.set(false); + showComponent.set(undefined); + currentGameActive.set(undefined); +} + +export function getRandomArbitrary(min, max) { + return Math.floor(Math.random() * (max - min) + min); +} + +export function convertVwToPx(vw) { + return (document.documentElement.clientWidth * vw) / 100; +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/stores/ImageStore.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/ImageStore.ts new file mode 100644 index 000000000..214ff08e4 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/ImageStore.ts @@ -0,0 +1,15 @@ +import type { IImage } from './../interfaces/IImage'; +import { writable, type Writable } from 'svelte/store'; +import { showComponent, showUi } from './GeneralStores'; +import { UIComponentsEnum } from './../enums/UIComponentsEnum'; + +export const imageStore: Writable = writable({ show: false, url: '' }); + +export function showImage(event: any) { + showUi.set(true); + showComponent.set(UIComponentsEnum.Image); + imageStore.set({ + show: event.show, + url: event.url, + }); +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/stores/InputStores.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/InputStores.ts new file mode 100644 index 000000000..af44c0ef4 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/InputStores.ts @@ -0,0 +1,36 @@ +import { writable, type Writable } from 'svelte/store'; +import type { IInput } from './../interfaces/IInput'; +import { showComponent, showUi } from './GeneralStores'; +import { UIComponentsEnum } from '../enums/UIComponentsEnum'; + +export const inputStore: Writable> = writable([ + { + id: '1', + label: 'Label', + icon: 'fa-solid fa-user', + placeholder: 'Insert name', + type: 'text', + }, + { + id: '2', + label: 'Label', + icon: 'fa-solid fa-user', + placeholder: 'Placeholder', + type: 'password', + }, + { + id: '3', + label: 'Label', + icon: 'fa-solid fa-user', + placeholder: 'Placeholder', + type: 'phone', + }, +]); + +/** Show the input component */ +export function showInput(data: Array): void { + showUi.set(true); + showComponent.set(UIComponentsEnum.Input); + + inputStore.set([...data]); +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/stores/MenuStores.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/MenuStores.ts new file mode 100644 index 000000000..b036400f4 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/MenuStores.ts @@ -0,0 +1,32 @@ +import type { IMenu } from './../interfaces/IMenu'; +import { writable, type Writable } from 'svelte/store'; +import { hideUi, showComponent, showUi } from './GeneralStores'; +import { UIComponentsEnum } from '..//enums/UIComponentsEnum'; +import fetchNui from '../../utils/fetch'; + +export const menuStore: Writable> = writable([]); + +export const menuIdShown: Writable = writable(); + +export function setupInteractionMenu(data: Array): void { + showUi.set(true); + showComponent.set(UIComponentsEnum.Menu); + menuStore.set(data.menuData); +} + +export function closeInteractionMenu(): void { + showUi.set(false); + showComponent.set(null); + menuStore.set([ + { + header: '', + text: '', + icon: '', + color: '', + callback: '', + subMenu: null, + } + ]); + fetchNui('menuClose'); + hideUi(); +} \ No newline at end of file diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/stores/NotificationStore.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/NotificationStore.ts new file mode 100644 index 000000000..a00916339 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/NotificationStore.ts @@ -0,0 +1,30 @@ +import type { INotification } from 'src/interfaces/INotification'; +import { writable, type Writable } from 'svelte/store'; +import { showComponent } from './GeneralStores'; +import { UIComponentsEnum } from './../enums/UIComponentsEnum'; + +export const notifications: Writable> = writable([]); + +export function addNotification(newNotification: INotification): void { + showComponent.set(UIComponentsEnum.Notification); + notifications.update((currentNotifications) => { + const updatedNotifications = [...currentNotifications, newNotification]; + return updatedNotifications; + }); + + const unsubscribe = notifications.subscribe((data: Array) => { + data.forEach((notification: INotification) => { + setTimeout(() => { + removeNotification(notification); + }, notification.length); + }); + }); + unsubscribe(); +} + +function removeNotification(notification: INotification): void { + notifications.update((currentNotifications) => { + const updatedNotifications = currentNotifications.filter((n) => n !== notification); + return updatedNotifications; + }); +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/stores/StatusBarStores.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/StatusBarStores.ts new file mode 100644 index 000000000..3d0b02393 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/stores/StatusBarStores.ts @@ -0,0 +1,29 @@ +import { writable, type Writable } from 'svelte/store'; +import type { IStatusBar } from '../interfaces/IStatusBar'; +import { showComponent, showUi } from './GeneralStores'; +import { UIComponentsEnum } from '../enums/UIComponentsEnum'; + +export const statusBarStore: Writable = writable({ + title: '', + description: '', + items: [], + icon: '', +}); + +export const hideStatusBarStore: Writable = writable(false); + +export function showStatusBar(data: IStatusBar) { + showUi.set(true); + showComponent.set(UIComponentsEnum.StatusBar); + + statusBarStore.set({ + title: data.title, + description: data.description, + items: data.items, + icon: data.icon || 'fa-solid fa-circle-info', + }); +} + +export function hideStatusBar() { + hideStatusBarStore.set(true); +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/src/vite-env.d.ts b/resources/[freizeit]/[gym]/ps-ui/web/src/vite-env.d.ts new file mode 100644 index 000000000..4078e7476 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/src/vite-env.d.ts @@ -0,0 +1,2 @@ +/// +/// diff --git a/resources/[freizeit]/[gym]/ps-ui/web/svelte.config.js b/resources/[freizeit]/[gym]/ps-ui/web/svelte.config.js new file mode 100644 index 000000000..3630bb396 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/svelte.config.js @@ -0,0 +1,7 @@ +import sveltePreprocess from 'svelte-preprocess' + +export default { + // Consult https://github.com/sveltejs/svelte-preprocess + // for more information about preprocessors + preprocess: sveltePreprocess() +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/tailwind.config.cjs b/resources/[freizeit]/[gym]/ps-ui/web/tailwind.config.cjs new file mode 100644 index 000000000..63b5ba989 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/tailwind.config.cjs @@ -0,0 +1,11 @@ +module.exports = { + darkmode: true, + content: [ + "./index.html", + "./src/**/*.{svelte,js,ts,jsx,tsx}", + ], + theme: { + extend: {}, + }, + plugins: [], +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/tsconfig.json b/resources/[freizeit]/[gym]/ps-ui/web/tsconfig.json new file mode 100644 index 000000000..f9039a5aa --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "@tsconfig/svelte/tsconfig.json", + "compilerOptions": { + "target": "esnext", + "useDefineForClassFields": true, + "module": "esnext", + "resolveJsonModule": true, + "baseUrl": ".", + /** + * Typecheck JS in `.svelte` and `.js` files by default. + * Disable checkJs if you'd like to use dynamic types in JS. + * Note that setting allowJs false does not prevent the use + * of JS in `.svelte` files. + */ + "allowJs": true, + "checkJs": true + }, + "include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"] +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/utils/eventHandler.ts b/resources/[freizeit]/[gym]/ps-ui/web/utils/eventHandler.ts new file mode 100644 index 000000000..c8cead60f --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/utils/eventHandler.ts @@ -0,0 +1,105 @@ +import { hideStatusBar, showStatusBar } from '../src/stores/StatusBarStores'; +import { hideUi, showComponent, showUi } from '../src/stores/GeneralStores'; +import { showInput } from './../src/stores/InputStores'; + +import { onMount, onDestroy } from 'svelte'; +import fetchNui from './fetch'; +import { UIComponentsEnum } from './../src/enums/UIComponentsEnum'; +import { currentActiveGameDetails, currentGameActive, gameSettings, setupGame } from '../src/stores/GameLauncherStore'; +import { showImage } from './../src/stores/ImageStore'; +import { addNotification } from './../src/stores/NotificationStore'; +import { hideDrawTextMenu, showDrawTextMenu } from '../src/stores/DrawTextStore'; +import { closeInteractionMenu, setupInteractionMenu } from '../src/stores/MenuStores'; +import { initializeCircleGame, setupCircleGame } from '../src/stores/CircleGameStore'; + +interface nuiMessage { + action: string; + data: {[key: string]: any}; +} + +export function EventHandler() { + function mainEvent(event: nuiMessage) { + showUi.set(true); + switch (event.data.action) { + case 'ShowStatusBar': + showStatusBar(event.data.data as any); + break; + case 'UpdateStatusBar': + showStatusBar(event.data.data as any); + break; + case 'HideStatusBar': + hideStatusBar(); + break; + case 'ShowMenu': + setupInteractionMenu(event.data.data as any) + break; + case 'HideMenu': + closeInteractionMenu(); + break; + case 'ShowInput': + showInput(event.data.data as any); + break; + case 'ShowImage': + showImage(event.data.data as any); + break; + case 'hideUi': + hideUi(); + break; + case 'ShowNotification': + addNotification(event.data.data as any); + break; + case 'ShowDrawTextMenu': + showDrawTextMenu(event.data.data as any); + break; + case 'HideDrawTextMenu': + hideDrawTextMenu(); + break; + case 'CircleGame': + initializeCircleGame() + setupCircleGame(event.data.data) + break; + case 'MemoryGame': + case 'Scramber': + case 'NumberMaze': + case 'GameLauncher': + setupGame(event.data.data as any); + break; + } + } + + onMount(() => window.addEventListener('message', mainEvent)); + onDestroy(() => window.removeEventListener('message', mainEvent)); +} + +export function handleKeyUp(event: KeyboardEvent) { + const charCode = event.key; + if (charCode == 'Escape') { + showComponent.subscribe((component: UIComponentsEnum) => { + switch (component) { + case UIComponentsEnum.Input: + fetchNui('input-close', { ok: true }); + break; + case UIComponentsEnum.Menu: + closeInteractionMenu(); + break; + case UIComponentsEnum.Image: + fetchNui('minigame:callback', true); + break; + case UIComponentsEnum.Game: + currentGameActive.set(null); + currentActiveGameDetails.set(null); + gameSettings.set({ + game: '', + gameName: '', + gameDescription: '', + amountOfAnswers: 0, + gameTime: 0, + maxAnswersIncorrect: 0, + triggerEvent: '', + }); + break; + } + }); + hideUi(); + } +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/utils/fetch.ts b/resources/[freizeit]/[gym]/ps-ui/web/utils/fetch.ts new file mode 100644 index 000000000..1d954597a --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/utils/fetch.ts @@ -0,0 +1,28 @@ +export default async function fetchNui(eventName: string, data: unknown = {}) { + const options = { + method: 'post', + headers: { + 'Content-Type': 'application/json; charset=UTF-8', + }, + body: JSON.stringify(data), + }; + + const getResourceName = () => { + try { + // @ts-ignore + return window.GetParentResourceName(); + } catch (err) { + return 'ps-ui'; + } + }; + + const resourceName = getResourceName(); + + try { + const resp = await fetch( + `https://${resourceName}/${eventName}`, + options + ); + return await resp.json(); + } catch (err) {} +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/utils/mockEvent.ts b/resources/[freizeit]/[gym]/ps-ui/web/utils/mockEvent.ts new file mode 100644 index 000000000..8fd0e7144 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/utils/mockEvent.ts @@ -0,0 +1,45 @@ +import type { IImage } from './../src/interfaces/IImage'; +export default function mockEventCall(data: unknown = {}) { + window.dispatchEvent(new MessageEvent('message', { data })); +} + +export function newMemoryGameMock() { + setTimeout(() => { + mockEventCall({ + action: 'MemoryGame', + data: { + game: 'MemoryGame', + amountOfAnswers: 1, + gameTime: 5, + maxAnswersIncorrect: 2, + triggerEvent: '', + }, + }); + }, 100); +} + +export function showImageMock() { + setTimeout(() => { + mockEventCall({ + action: 'ShowImage', + data: { + show: true, + url: 'https://i.ytimg.com/vi/7V15_-32iCU/maxresdefault.jpg', + }, + }); + }, 100); +} + +export function notificationMock() { + setTimeout(() => { + mockEventCall({ + action: 'ShowNotification', + data: { + text: 'New notification', + type: 'ps-notification-success', + icon: 'fa-solid fa-times', + length: 5000, + }, + }); + }, 500); +} diff --git a/resources/[freizeit]/[gym]/ps-ui/web/vite.config.js b/resources/[freizeit]/[gym]/ps-ui/web/vite.config.js new file mode 100644 index 000000000..b20a6ef28 --- /dev/null +++ b/resources/[freizeit]/[gym]/ps-ui/web/vite.config.js @@ -0,0 +1,42 @@ +import { defineConfig } from 'vite'; +import { svelte } from '@sveltejs/vite-plugin-svelte'; +import postcss from './postcss.config.js'; +import { minify } from 'html-minifier'; + +const minifyHtml = () => { + return { + name: 'html-transform', + transformIndexHtml(html) { + return minify(html, { + collapseWhitespace: true, + }); + }, + }; +}; + +// https://vitejs.dev/config/ +export default defineConfig({ + css: { + postcss, + }, + plugins: [svelte(), minifyHtml()], + test: { + globals: true, + environment: 'jsdom', + }, + base: './', // fivem nui needs to have local dir reference + build: { + minify: true, + emptyOutDir: true, + outDir: '../web/build', + assetsDir: './', + rollupOptions: { + output: { + // By not having hashes in the name, you don't have to update the manifest, yay! + entryFileNames: `[name].js`, + chunkFileNames: `[name].js`, + assetFileNames: `[name].[ext]`, + }, + }, + }, +}); diff --git a/resources/[inventory]/nordi_alctester/client/client.lua b/resources/[inventory]/nordi_alctester/client/client.lua deleted file mode 100644 index 9511c7ead..000000000 --- a/resources/[inventory]/nordi_alctester/client/client.lua +++ /dev/null @@ -1,107 +0,0 @@ -local QBCore = exports['qb-core']:GetCoreObject() -local bac = nil -local display = false - -function SetDisplay(bool) - display = bool - SetNuiFocus(bool, bool) - SendNUIMessage({ - type = "ui", - status = bool, - }) -end - -RegisterNUICallback("exit", function(data) - SetDisplay(false) - SendNUIMessage({ - type = "data", - bac = '0.00', - textColor = '--color-black' - }) -end) - -RegisterNUICallback("startBac", function(data) - local target = GetClosestPlayerRadius(2.0) - if target == nil then - QBCore.Functions.Notify("Keine Person in der Nähe gefunden!", "error") - return - end - TriggerServerEvent('qb-alcoholtest:server:doBacTest', GetPlayerServerId(target)) - QBCore.Functions.Notify('Anfrage wurde an ' .. GetPlayerName(target) .. ' gesendet') -end) - --- Kontrollen deaktivieren, wenn UI geöffnet ist -Citizen.CreateThread(function() - while true do - Citizen.Wait(0) - if display then - DisableControlAction(0, 1, display) -- LookLeftRight - DisableControlAction(0, 2, display) -- LookUpDown - DisableControlAction(0, 142, display) -- MeleeAttackAlternate - DisableControlAction(0, 18, display) -- Enter - DisableControlAction(0, 322, display) -- ESC - DisableControlAction(0, 106, display) -- VehicleMouseControlOverride - else - Citizen.Wait(500) - end - end -end) - --- Alkoholtester Item verwenden -RegisterNetEvent('qb-alcoholtest:client:useBreathalyzer') -AddEventHandler('qb-alcoholtest:client:useBreathalyzer', function() - SetDisplay(true) -end) - --- BAC-Test Anfrage erhalten -RegisterNetEvent('qb-alcoholtest:client:requestBac') -AddEventHandler('qb-alcoholtest:client:requestBac', function(leo, target) - local accepted = nil - QBCore.Functions.Notify(GetPlayerName(GetPlayerFromServerId(leo)) .. " möchte deinen Alkoholwert testen.") - QBCore.Functions.Notify("Akzeptieren [Y] Ablehnen [N]") - - Citizen.CreateThread(function() - while accepted == nil do - Citizen.Wait(0) - if IsControlJustReleased(1, 246) then -- Y Taste - accepted = true - TriggerServerEvent('qb-alcoholtest:server:acceptedBac', leo, target) - - -- Tatsächlichen BAC-Wert vom System abrufen - TriggerServerEvent('qb-alcoholtest:server:getActualBAC', leo, target) - end - if IsControlJustReleased(1, 249) then -- N Taste - accepted = false - TriggerServerEvent('qb-alcoholtest:server:refusedBac', leo, target) - end - end - end) -end) - --- BAC-Wert anzeigen -RegisterNetEvent('qb-alcoholtest:client:displayBac') -AddEventHandler('qb-alcoholtest:client:displayBac', function(bac, color) - SendNUIMessage({ - type = "data", - bac = bac, - textColor = color - }) -end) - --- BAC-Test abgelehnt -RegisterNetEvent('qb-alcoholtest:client:bacRefused') -AddEventHandler('qb-alcoholtest:client:bacRefused', function(target) - SetDisplay(false) - SendNUIMessage({ - type = "data", - bac = '0.00', - textColor = '--color-black' - }) - QBCore.Functions.Notify(GetPlayerName(GetPlayerFromServerId(target)) .. " hat den Alkoholtest abgelehnt!", "error") -end) - --- BAC-Test akzeptiert -RegisterNetEvent('qb-alcoholtest:client:acceptedBac') -AddEventHandler('qb-alcoholtest:client:acceptedBac', function(target) - QBCore.Functions.Notify("Teste " .. GetPlayerName(GetPlayerFromServerId(target)) .. "'s Blutalkoholwert...") -end) diff --git a/resources/[inventory]/nordi_alctester/client/client_functions.lua b/resources/[inventory]/nordi_alctester/client/client_functions.lua deleted file mode 100644 index 7d4b4e24f..000000000 --- a/resources/[inventory]/nordi_alctester/client/client_functions.lua +++ /dev/null @@ -1,35 +0,0 @@ -function GetClosestPlayerRadius(radius) - local players = GetPlayers() - local closestDistance = -1 - local closestPlayer = -1 - local ply = PlayerPedId() - local plyCoords = GetEntityCoords(ply) - - for index,value in ipairs(players) do - local target = GetPlayerPed(value) - if(target ~= ply) then - local targetCoords = GetEntityCoords(GetPlayerPed(value), 0) - local distance = #(targetCoords - plyCoords) - if(closestDistance == -1 or closestDistance > distance) then - closestPlayer = value - closestDistance = distance - end - end - end - if closestDistance ~= -1 and closestDistance <= radius then - return closestPlayer - else - return nil - end -end - -function GetPlayers() - local players = {} - for _, player in ipairs(GetActivePlayers()) do - local ped = GetPlayerPed(player) - if DoesEntityExist(ped) then - table.insert(players, player) - end - end - return players -end diff --git a/resources/[inventory]/nordi_alctester/config.lua b/resources/[inventory]/nordi_alctester/config.lua deleted file mode 100644 index e74ab6df9..000000000 --- a/resources/[inventory]/nordi_alctester/config.lua +++ /dev/null @@ -1,37 +0,0 @@ -Config = {} - --- Debug-Modus (zeigt zusätzliche Informationen) -Config.Debug = false - --- Wie schnell der Alkohol im Blut abgebaut wird (pro Minute) -Config.BACDecayRate = 0.01 - --- Ab welchem BAC-Wert die Anzeige rot wird (gesetzliches Limit) -Config.LegalLimit = 0.08 - --- Alkoholgehalt verschiedener Getränke (BAC-Erhöhung pro Drink) -Config.AlcoholItems = { - ['beer'] = 0.02, - ['whiskey'] = 0.04, - ['vodka'] = 0.04, - ['wine'] = 0.03, - ['raki'] = 0.05, - ['cerveza_barracho'] = 0.02, - ['kayas_rotwein'] = 0.03, - ['kadis_rostbite'] = 0.04, - ['ifs_olden_ectar'] = 0.03, - ['ggdrasils_ssence'] = 0.03, - ['baldurslightelixir'] = 0.03, - ['eimdalls_lear_ight'] = 0.03, - ['lokis_trickster_punch'] = 0.04, - ['odins_wisdom_brew'] = 0.03, - ['skadis_hunt'] = 0.03, - ['njords_tide'] = 0.03, - ['sifs_golden-ale'] = 0.02, - ['yggdrasils_root'] = 0.03, - ['baldurs_light'] = 0.03, - ['heimdalls_watch'] = 0.03, - ['freyas_kiss'] = 0.03, - ['thors_hammer'] = 0.04, - ['odins_mead'] = 0.03, -} diff --git a/resources/[inventory]/nordi_alctester/fxmanifest.lua b/resources/[inventory]/nordi_alctester/fxmanifest.lua deleted file mode 100644 index e0f438c9f..000000000 --- a/resources/[inventory]/nordi_alctester/fxmanifest.lua +++ /dev/null @@ -1,33 +0,0 @@ -fx_version 'cerulean' -game 'gta5' - -author 'JKSensation & Angepasst' -description 'QBCore Alkoholtester System' -version '1.0.0' - -shared_scripts { - '@qb-core/shared/locale.lua', - 'config.lua' -} - -client_scripts { - 'client/client.lua', - 'client/client_functions.lua' -} - -server_scripts { - '@oxmysql/lib/MySQL.lua', - 'server/server.lua' -} - -ui_page 'web/index.html' - -files { - 'web/index.html', - 'web/index.js', - 'web/styles.css', - 'web/portablebreathalyzer.png', - 'web/digital-7.ttf' -} - -lua54 'yes' diff --git a/resources/[inventory]/nordi_alctester/server/server.lua b/resources/[inventory]/nordi_alctester/server/server.lua deleted file mode 100644 index 50ccf0d47..000000000 --- a/resources/[inventory]/nordi_alctester/server/server.lua +++ /dev/null @@ -1,205 +0,0 @@ -local QBCore = exports['qb-core']:GetCoreObject() - --- BAC-Abbaurate (wie viel BAC pro Minute abnimmt) -local BAC_DECAY_RATE = Config.BACDecayRate - --- Player BAC Cache um übermäßige Datenbankaufrufe zu vermeiden -local playerBAC = {} - --- Funktion zum Aktualisieren des BAC-Levels eines Spielers -local function UpdatePlayerBAC(citizenid, addAmount) - -- Initialisieren, falls nicht vorhanden - if not playerBAC[citizenid] then - playerBAC[citizenid] = { - bac = 0.0, - lastUpdated = os.time() - } - end - - -- Zeitbasierten Abbau berechnen - local currentTime = os.time() - local minutesPassed = (currentTime - playerBAC[citizenid].lastUpdated) / 60 - - -- Abbau anwenden, aber nicht unter 0 - local decayAmount = BAC_DECAY_RATE * minutesPassed - local newBAC = math.max(0.0, playerBAC[citizenid].bac - decayAmount) - - -- Neuen Alkoholwert hinzufügen - newBAC = newBAC + addAmount - - -- Bei realistischem Maximum begrenzen (0.5% wäre tödlich) - newBAC = math.min(0.5, newBAC) - - -- Cache aktualisieren - playerBAC[citizenid] = { - bac = newBAC, - lastUpdated = currentTime - } - - -- Datenbank aktualisieren - MySQL.Async.execute('INSERT INTO player_bac (citizenid, bac_level) VALUES (?, ?) ON DUPLICATE KEY UPDATE bac_level = ?, last_updated = CURRENT_TIMESTAMP', - {citizenid, newBAC, newBAC}) -end - --- Funktion zum Abrufen des aktuellen BAC-Levels eines Spielers mit Abbauberechnung -local function GetCurrentBAC(citizenid) - -- Wenn wir Cache-Daten haben - if playerBAC[citizenid] then - local currentTime = os.time() - local minutesPassed = (currentTime - playerBAC[citizenid].lastUpdated) / 60 - - -- Abbau anwenden, aber nicht unter 0 - local decayAmount = BAC_DECAY_RATE * minutesPassed - local currentBAC = math.max(0.0, playerBAC[citizenid].bac - decayAmount) - - -- Cache mit abgebautem Wert aktualisieren - playerBAC[citizenid] = { - bac = currentBAC, - lastUpdated = currentTime - } - - -- Datenbank mit neuem abgebautem Wert aktualisieren - MySQL.Async.execute('UPDATE player_bac SET bac_level = ?, last_updated = CURRENT_TIMESTAMP WHERE citizenid = ?', - {currentBAC, citizenid}) - - return currentBAC - else - -- Wenn nicht im Cache, aus Datenbank abrufen - local result = MySQL.Sync.fetchAll('SELECT bac_level, last_updated FROM player_bac WHERE citizenid = ?', {citizenid}) - - if result and result[1] then - local storedBAC = result[1].bac_level - local lastUpdated = result[1].last_updated - - -- MySQL-Zeitstempel in Unix-Zeitstempel umwandeln - local pattern = "(%d+)-(%d+)-(%d+) (%d+):(%d+):(%d+)" - local year, month, day, hour, min, sec = lastUpdated:match(pattern) - local lastUpdateTime = os.time({year=year, month=month, day=day, hour=hour, min=min, sec=sec}) - - local currentTime = os.time() - local minutesPassed = (currentTime - lastUpdateTime) / 60 - - -- Abbau anwenden, aber nicht unter 0 - local decayAmount = BAC_DECAY_RATE * minutesPassed - local currentBAC = math.max(0.0, storedBAC - decayAmount) - - -- Cache aktualisieren - playerBAC[citizenid] = { - bac = currentBAC, - lastUpdated = currentTime - } - - -- Datenbank mit neuem abgebautem Wert aktualisieren - MySQL.Async.execute('UPDATE player_bac SET bac_level = ?, last_updated = CURRENT_TIMESTAMP WHERE citizenid = ?', - {currentBAC, citizenid}) - - return currentBAC - else - -- Kein Eintrag gefunden, mit 0 initialisieren - playerBAC[citizenid] = { - bac = 0.0, - lastUpdated = os.time() - } - - return 0.0 - end - end -end - --- Anbindung an das Konsumsystem --- Dieses Event sollte ausgelöst werden, wenn ein Spieler ein alkoholisches Item konsumiert -RegisterNetEvent('qb-alcoholtest:server:alcoholConsumed') -AddEventHandler('qb-alcoholtest:server:alcoholConsumed', function(itemName, intensity) - local src = source - local Player = QBCore.Functions.GetPlayer(src) - - if not Player then return end - - local citizenid = Player.PlayerData.citizenid - local alcoholContent = 0.0 - - -- Prüfen, ob das konsumierte Item alkoholisch ist - if Config.AlcoholItems[itemName] then - alcoholContent = Config.AlcoholItems[itemName] - - -- Basierend auf Intensität anpassen, falls angegeben - if intensity then - alcoholContent = alcoholContent * intensity - end - - -- BAC des Spielers aktualisieren - UpdatePlayerBAC(citizenid, alcoholContent) - - -- Spieler benachrichtigen - if Config.Debug then - TriggerClientEvent('QBCore:Notify', src, 'Du spürst die Wirkung des Alkohols.', 'primary') - end - end -end) - --- Verwendbares Alkoholtester-Item erstellen -QBCore.Functions.CreateUseableItem('breathalyzer', function(source, item) - local src = source - TriggerClientEvent('qb-alcoholtest:client:useBreathalyzer', src) -end) - --- Alkoholtester-Events -RegisterServerEvent('qb-alcoholtest:server:doBacTest') -AddEventHandler('qb-alcoholtest:server:doBacTest', function(target) - TriggerClientEvent('qb-alcoholtest:client:requestBac', target, source, target) -end) - -RegisterServerEvent('qb-alcoholtest:server:refusedBac') -AddEventHandler('qb-alcoholtest:server:refusedBac', function(leo, target) - TriggerClientEvent('qb-alcoholtest:client:bacRefused', leo, target) -end) - -RegisterServerEvent('qb-alcoholtest:server:acceptedBac') -AddEventHandler('qb-alcoholtest:server:acceptedBac', function(leo, target) - TriggerClientEvent('qb-alcoholtest:client:acceptedBac', leo, target) -end) - --- Neues Event, um den tatsächlichen BAC-Wert aus dem System zu erhalten -RegisterServerEvent('qb-alcoholtest:server:getActualBAC') -AddEventHandler('qb-alcoholtest:server:getActualBAC', function(leo, target) - local targetPlayer = QBCore.Functions.GetPlayer(target) - - if not targetPlayer then return end - - local citizenid = targetPlayer.PlayerData.citizenid - local currentBAC = GetCurrentBAC(citizenid) - - -- BAC auf 2 Dezimalstellen formatieren - local formattedBAC = string.format("%.2f", currentBAC) - - -- Farbe basierend auf gesetzlichem Limit bestimmen - local color = '--color-black' - if currentBAC > Config.LegalLimit then - color = '--color-red' - end - - -- BAC-Ergebnis an den Beamten senden - TriggerClientEvent('qb-alcoholtest:client:displayBac', leo, formattedBAC, color) -end) - --- Öffentliche Funktion für andere Ressourcen -exports('GetPlayerBAC', function(citizenid) - return GetCurrentBAC(citizenid) -end) - --- Öffentliche Funktion zum Aktualisieren des BAC-Werts -exports('UpdatePlayerBAC', function(citizenid, amount) - UpdatePlayerBAC(citizenid, amount) -end) - --- Sicherstellen, dass die Datenbanktabelle existiert, wenn die Ressource startet -MySQL.ready(function() - MySQL.Async.execute([[ - CREATE TABLE IF NOT EXISTS `player_bac` ( - `citizenid` varchar(50) NOT NULL, - `bac_level` float NOT NULL DEFAULT 0.0, - `last_updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (`citizenid`) - ); - ]]) -end) diff --git a/resources/[inventory]/nordi_alctester/web/digital-7.ttf b/resources/[inventory]/nordi_alctester/web/digital-7.ttf deleted file mode 100644 index 5dbe6f908..000000000 Binary files a/resources/[inventory]/nordi_alctester/web/digital-7.ttf and /dev/null differ diff --git a/resources/[inventory]/nordi_alctester/web/index.html b/resources/[inventory]/nordi_alctester/web/index.html deleted file mode 100644 index 272593552..000000000 --- a/resources/[inventory]/nordi_alctester/web/index.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - -
-
-
-
-

0.00

-
-
-
- - -
-
- - - \ No newline at end of file diff --git a/resources/[inventory]/nordi_alctester/web/index.js b/resources/[inventory]/nordi_alctester/web/index.js deleted file mode 100644 index a04239fda..000000000 --- a/resources/[inventory]/nordi_alctester/web/index.js +++ /dev/null @@ -1,43 +0,0 @@ -// [ Breathalyzer Script 0.1 Created By JKSensation ] // -// [ DO NOT RELEASE/LEAK/SHARE CODE WITHOUT PERMISSION FROM JKSENSATION ] // - -$(function () { - function display(bool) { - if (bool) { - $("#container").show(); - } else { - $("#container").hide(); - } - } - - display(false) - - window.addEventListener('message', function(event) { - var item = event.data; - if (item.type === "ui") { - if (item.status == true) { - display(true) - } else { - display(false) - } - }else if(item.type === 'data'){ - $('#bacLevel').text(item.bac) - $('#bacLevel').css("color", `var(${item.textColor})`) - } - }) - - document.onkeyup = function (data) { - if (data.which == 27) { - $.post('http://breathalyzer/exit', JSON.stringify({})); - return - } - }; - $("#power").click(function () { - $.post('http://breathalyzer/exit', JSON.stringify({})); - return - }) - $("#start").click(function () { - $.post('http://breathalyzer/startBac', JSON.stringify({})); - return - }) -}) \ No newline at end of file diff --git a/resources/[inventory]/nordi_alctester/web/portablebreathalyzer.png b/resources/[inventory]/nordi_alctester/web/portablebreathalyzer.png deleted file mode 100644 index 2f8537d24..000000000 Binary files a/resources/[inventory]/nordi_alctester/web/portablebreathalyzer.png and /dev/null differ diff --git a/resources/[inventory]/nordi_alctester/web/styles.css b/resources/[inventory]/nordi_alctester/web/styles.css deleted file mode 100644 index 0e649cb9f..000000000 --- a/resources/[inventory]/nordi_alctester/web/styles.css +++ /dev/null @@ -1,99 +0,0 @@ -/* [ Breathalyzer Script 0.1 Created By JKSensation ] */ -/* [ DO NOT RELEASE/LEAK/SHARE CODE WITHOUT PERMISSION FROM JKSENSATION ] */ - -body { - background: none !important; -} - -:root{ - --color-red: #ca2f2f; -} - -@font-face { - font-family: digital; - src: url(digital-7.ttf); -} - -#container { - position: fixed; - top: 50%; - left: 75%; - transform: translate(-50%, -50%); - display: flex; - justify-content: center; - align-items: center; - height: 600px; - width: 350px; - background-size: cover; - flex-direction: column; -} - -.buttonContainer{ - display: flex; - justify-content: center; - align-items: center; - flex-direction: column; - margin-top: 45px; - /* background-color: #00804d; */ -} - -button{ - padding: 7px 0px; - width: 100px; - margin-bottom: 5px; - font-weight: 800; - font-size: 14px; - border: 2px solid #333; - border-radius: 5px; - transition: 0.2s; -} - -.green{ - background: #54BF54; -} - -.green:hover{ - background: #469e46; -} - -.green:active{ - background: #367a36; -} - -.red{ - background: #ca2f2f; -} - -.red:hover{ - background: #bb2b2b; -} - -.red:active{ - background: #a72626; -} - -.screen{ - position: absolute; - top: 75px; - display: flex; - flex-direction: column; -} - -.middle{ - font-family: digital; - font-size: 65px; - font-weight: 100; - height: 50px; - margin: 0px; -} - -.image{ - background-image: url('./portablebreathalyzer.png'); - margin-left: 40px; - width: 500px; - height: 600px; - position: absolute; - background-size: contain; - background-repeat: no-repeat; - z-index: -100; -} \ No newline at end of file