\r\n \r\n \r\n \r\n |\r\n \r\n \r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n","import { render } from \"./LanguageToggler.vue?vue&type=template&id=397ceae3&scoped=true\"\nimport script from \"./LanguageToggler.vue?vue&type=script&lang=js\"\nexport * from \"./LanguageToggler.vue?vue&type=script&lang=js\"\n\nimport \"./LanguageToggler.vue?vue&type=style&index=0&id=397ceae3&lang=scss&scoped=true\"\n\nimport exportComponent from \"C:\\\\Users\\\\SondosKashef\\\\Repositories\\\\baermedia\\\\Atlas\\\\360 Atlas\\\\campus\\\\node_modules\\\\vue-loader\\\\dist\\\\exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-397ceae3\"]])\n\nexport default __exports__","import { render } from \"./App.vue?vue&type=template&id=43d3f0bf\"\nimport script from \"./App.vue?vue&type=script&lang=js\"\nexport * from \"./App.vue?vue&type=script&lang=js\"\n\nimport \"./App.vue?vue&type=style&index=0&id=43d3f0bf&lang=scss\"\n\nimport exportComponent from \"C:\\\\Users\\\\SondosKashef\\\\Repositories\\\\baermedia\\\\Atlas\\\\360 Atlas\\\\campus\\\\node_modules\\\\vue-loader\\\\dist\\\\exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","/**\r\n * Router\r\n * @author Yasien Kashef\r\n * @version 3.0.0\r\n */\r\nimport { createRouter, createWebHashHistory } from \"vue-router\";\r\nimport useAppStore from \"@/stores/AppStore\";\r\n\r\nconst router = createRouter({\r\n history: createWebHashHistory(process.env.BASE_URL),\r\n routes: [\r\n {\r\n path: \"/\",\r\n name: \"StartseiteView\",\r\n component: () =>\r\n import(\r\n /* webpackChunkName: \"StartseiteView\" */ \"@/views/StartseiteView.vue\"\r\n ),\r\n meta: {\r\n nonAuth: true,\r\n },\r\n },\r\n {\r\n path: \"/Campus1View\",\r\n name: \"Campus1View\",\r\n component: () =>\r\n import(/* webpackChunkName: \"Campus1View\" */ \"@/views/Campus1View.vue\"),\r\n },\r\n {\r\n path: \"/Campus2View\",\r\n name: \"Campus2View\",\r\n component: () =>\r\n import(/* webpackChunkName: \"Campus2View\" */ \"@/views/Campus2View.vue\"),\r\n },\r\n {\r\n path: \"/Campus3View\",\r\n name: \"Campus3View\",\r\n component: () =>\r\n import(/* webpackChunkName: \"Campus3View\" */ \"@/views/Campus3View.vue\"),\r\n },\r\n {\r\n path: \"/Campus4View\",\r\n name: \"Campus4View\",\r\n component: () =>\r\n import(/* webpackChunkName: \"Campus4View\" */ \"@/views/Campus4View.vue\"),\r\n },\r\n {\r\n path: \"/InfoView\",\r\n name: \"InfoView\",\r\n component: () =>\r\n import(/* webpackChunkName: \"InfoView\" */ \"@/views/InfoView.vue\"),\r\n },\r\n {\r\n path: \"/ShowroomView\",\r\n name: \"ShowroomView\",\r\n component: () =>\r\n import(\r\n /* webpackChunkName: \"ShowroomView\" */ \"@/views/ShowroomView.vue\"\r\n ),\r\n },\r\n {\r\n path: \"/admin\",\r\n name: \"Admin\",\r\n redirect: \"/Campus1View\",\r\n },\r\n {\r\n path: \"/1910\",\r\n name: \"1910\",\r\n redirect: \"/Campus1View\",\r\n },\r\n {\r\n path: \"/:catchAll(.*)\",\r\n redirect: \"/\",\r\n },\r\n ],\r\n});\r\n\r\n/**\r\n * Handles the routing with authentication check.\r\n */\r\nrouter.beforeEach((to, from, next) => {\r\n const AppStore = useAppStore();\r\n if (\r\n (to.redirectedFrom && to.redirectedFrom.path === \"/admin\") ||\r\n (to.redirectedFrom && to.redirectedFrom.path === \"/1910\")\r\n )\r\n AppStore.setCookie(\"auth\", true);\r\n // If route requires auth, check if logged in\r\n if (!to.meta.nonAuth) {\r\n let isAuthenticated = AppStore.cookies.auth;\r\n if (!isAuthenticated) {\r\n next(\"/\");\r\n } else {\r\n next();\r\n }\r\n } else {\r\n // If route does not require auth:\r\n next();\r\n }\r\n});\r\n\r\nexport default router;\r\n","/**\r\n * Utilities\r\n * Common & Helper functions\r\n * @author Yasien Kashef yk@baermedia.com\r\n * @version 1.0.1\r\n */\r\n\r\nexport default {\r\n // Common Image Extensions\r\n imgExtensions: [\"jpg\", \"jpeg\", \"png\", \"gif\"],\r\n // Common Video Extensions\r\n vidExtensions: [\"mp4\", \"webm\"],\r\n /**\r\n * @since v1.0.1\r\n */\r\n getFileType(filename, explicit = false) {\r\n let extension = filename.split(\".\").pop().toLowerCase();\r\n if (!explicit) {\r\n if (this.imgExtensions.includes(extension)) return \"image\";\r\n if (this.vidExtensions.includes(extension)) return \"video\";\r\n else return undefined;\r\n }\r\n return extension;\r\n },\r\n /**\r\n *\r\n */\r\n async preloadImages(imageURLs) {\r\n let counter = 0;\r\n let preloadedImages = await Promise.all(\r\n imageURLs.map(\r\n (imageURL) =>\r\n new Promise((resolve) => {\r\n const image = new Image();\r\n image.src = imageURL;\r\n image.onload = () => {\r\n counter++;\r\n resolve(image.src);\r\n };\r\n image.onerror = resolve;\r\n })\r\n )\r\n );\r\n return preloadedImages;\r\n },\r\n /**\r\n *\r\n */\r\n async preloadVideos(videoURLs) {\r\n let counter = 0;\r\n let preloadedVideos = await Promise.all(\r\n videoURLs.map(\r\n (videoURL, i) =>\r\n new Promise((resolve) => {\r\n var req = new XMLHttpRequest();\r\n req.open(\"GET\", videoURL, true);\r\n req.responseType = \"blob\";\r\n req.onload = function () {\r\n if (this.status === 200) {\r\n let videoBlob = req.response;\r\n let vid = URL.createObjectURL(videoBlob);\r\n counter++;\r\n resolve(vid);\r\n }\r\n };\r\n req.send();\r\n })\r\n )\r\n );\r\n return preloadedVideos;\r\n },\r\n /**\r\n *\r\n */\r\n isMobile() {\r\n let check = false;\r\n (function (a) {\r\n if (\r\n /(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(\r\n a\r\n ) ||\r\n /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i.test(\r\n a.substr(0, 4)\r\n )\r\n )\r\n check = true;\r\n })(navigator.userAgent || navigator.vendor || window.opera);\r\n return check;\r\n },\r\n /**\r\n *\r\n */\r\n isIpadOS() {\r\n return (\r\n navigator.userAgent.match(/Mac/) &&\r\n navigator.maxTouchPoints &&\r\n navigator.maxTouchPoints > 2\r\n );\r\n },\r\n /**\r\n *\r\n */\r\n isTouch() {\r\n return this.isMobile() || this.isIpadOS();\r\n },\r\n};\r\n","/**\r\n * Main\r\n * @author Yasien Kashef\r\n * @version 3.2.1\r\n */\r\nimport { createApp } from \"vue\";\r\nimport { createPinia } from \"pinia\";\r\nimport vueCookies from \"vue-cookies\";\r\nimport App from \"./App.vue\";\r\nimport router from \"./router\";\r\nimport utils from \"./services/utils\";\r\n\r\nconst CMS_URL = \"https://atlas-baermedia-cms.mobilistics.zone\";\r\n\r\n/**\r\n * Fixes the JS modulo bug\r\n * @param {Number} n\r\n * @returns\r\n */\r\nNumber.prototype.mod = function (n) {\r\n return ((this % n) + n) % n;\r\n};\r\n\r\nconst pinia = createPinia();\r\npinia.use(({ store }) => {\r\n store.cmsURL = CMS_URL;\r\n store.$router = router;\r\n store.$cookies = vueCookies;\r\n store.$utils = utils;\r\n});\r\n\r\ncreateApp(App)\r\n .use(pinia)\r\n .use(router)\r\n .use(vueCookies)\r\n .provide(\"$utils\", utils)\r\n .mount(\"#app\");\r\n","/**\r\n * App Store\r\n * @author Yasien Kashef\r\n * @version 3.2.0\r\n */\r\nimport { defineStore } from 'pinia';\r\nimport { Directus } from '@directus/sdk';\r\n\r\nexport default defineStore('App', {\r\n state: () => {\r\n return {\r\n ready: false,\r\n localeTexts: {},\r\n cookies: {\r\n showArbeitsschutz: false,\r\n auth: false,\r\n lang: 'de',\r\n banner: false\r\n }\r\n }\r\n },\r\n getters: {\r\n directus() {\r\n return new Directus(this.cmsURL);\r\n },\r\n /**\r\n * Gets the UI Texts in the current language.\r\n * @returns json object of localized texts.\r\n */\r\n uiTexts(state) {\r\n return state.localeTexts[state.cookies.lang]\r\n }\r\n },\r\n actions: {\r\n /**\r\n * Initializes the App Store.\r\n * Gets the saved cookies if existent or sets the default values to them.\r\n * Loads the UI for the App Store.\r\n * @returns Promise.\r\n */\r\n async init() {\r\n this.ready = false;\r\n this.cookies.auth = this.$cookies.get('auth') || false;\r\n this.cookies.lang = this.$cookies.get('lang') || 'de';\r\n this.setCookie('lang', this.cookies.lang);\r\n this.cookies.banner = this.$cookies.get('banner') || false;\r\n await this.loadUI();\r\n this.ready = true;\r\n },\r\n /**\r\n * Loads the UI Assets for the App, as in UI texts.\r\n * @returns Promise.\r\n */\r\n async loadUI() {\r\n await fetch(`./ui_texts.json`)\r\n .then((res) => res.json())\r\n .then((data) => {\r\n Object.keys(data).forEach(lang => {\r\n this.localeTexts[lang] = data[lang];\r\n });\r\n })\r\n .catch((err) => {\r\n throw \"An error has occured while fetching the images: \" + err;\r\n })\r\n },\r\n /**\r\n * Helper function to set a cookie reactively.\r\n * @params {string} key\r\n * @params {string|number} value : Will be stored as a string per default in the browser cookie.\r\n */\r\n setCookie(key, value) {\r\n this.$cookies.set(key, value);\r\n this.cookies[key] = value;\r\n },\r\n /**\r\n * Helper function to remove a cookie reactively.\r\n * @params {string} key\r\n */\r\n removeCookie(key) {\r\n this.$cookies.remove(key);\r\n this.cookies[key] = false;\r\n }\r\n }\r\n})\r\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","var deferred = [];\n__webpack_require__.O = function(result, chunkIds, fn, priority) {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every(function(key) { return __webpack_require__.O[key](chunkIds[j]); })) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = function(chunkId) {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce(function(promises, key) {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = function(chunkId) {\n\t// return url for filenames based on template\n\treturn \"js/\" + ({\"4\":\"StartseiteView\",\"44\":\"Campus3View\",\"279\":\"Campus4View\",\"298\":\"Campus1View\",\"413\":\"Campus2View\",\"688\":\"InfoView\",\"758\":\"ShowroomView\"}[chunkId] || chunkId) + \".\" + {\"4\":\"7685c534\",\"44\":\"0c5ffcb7\",\"83\":\"fbb27bad\",\"279\":\"5faf7ac3\",\"298\":\"973bec75\",\"413\":\"10d67ac0\",\"688\":\"73319305\",\"758\":\"aae319f3\"}[chunkId] + \".js\";\n};","// This function allow to reference async chunks\n__webpack_require__.miniCssF = function(chunkId) {\n\t// return url for filenames based on template\n\treturn \"css/\" + {\"4\":\"StartseiteView\",\"44\":\"Campus3View\",\"279\":\"Campus4View\",\"298\":\"Campus1View\",\"413\":\"Campus2View\",\"688\":\"InfoView\",\"758\":\"ShowroomView\"}[chunkId] + \".\" + {\"4\":\"65a3dcde\",\"44\":\"6b8dfbc1\",\"279\":\"0610ff54\",\"298\":\"b52222f9\",\"413\":\"c79b67f3\",\"688\":\"a4cb95ab\",\"758\":\"08203214\"}[chunkId] + \".css\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","var inProgress = {};\nvar dataWebpackPrefix = \"campus:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = function(url, done, key, chunkId) {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tscript.timeout = 120;\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = function(prev, event) {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach(function(fn) { return fn(event); });\n\t\tif(prev) return prev(event);\n\t}\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = function(module) {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.p = \"\";","var createStylesheet = function(chunkId, fullhref, resolve, reject) {\n\tvar linkTag = document.createElement(\"link\");\n\n\tlinkTag.rel = \"stylesheet\";\n\tlinkTag.type = \"text/css\";\n\tvar onLinkComplete = function(event) {\n\t\t// avoid mem leaks.\n\t\tlinkTag.onerror = linkTag.onload = null;\n\t\tif (event.type === 'load') {\n\t\t\tresolve();\n\t\t} else {\n\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\tvar realHref = event && event.target && event.target.href || fullhref;\n\t\t\tvar err = new Error(\"Loading CSS chunk \" + chunkId + \" failed.\\n(\" + realHref + \")\");\n\t\t\terr.code = \"CSS_CHUNK_LOAD_FAILED\";\n\t\t\terr.type = errorType;\n\t\t\terr.request = realHref;\n\t\t\tlinkTag.parentNode.removeChild(linkTag)\n\t\t\treject(err);\n\t\t}\n\t}\n\tlinkTag.onerror = linkTag.onload = onLinkComplete;\n\tlinkTag.href = fullhref;\n\n\tdocument.head.appendChild(linkTag);\n\treturn linkTag;\n};\nvar findStylesheet = function(href, fullhref) {\n\tvar existingLinkTags = document.getElementsByTagName(\"link\");\n\tfor(var i = 0; i < existingLinkTags.length; i++) {\n\t\tvar tag = existingLinkTags[i];\n\t\tvar dataHref = tag.getAttribute(\"data-href\") || tag.getAttribute(\"href\");\n\t\tif(tag.rel === \"stylesheet\" && (dataHref === href || dataHref === fullhref)) return tag;\n\t}\n\tvar existingStyleTags = document.getElementsByTagName(\"style\");\n\tfor(var i = 0; i < existingStyleTags.length; i++) {\n\t\tvar tag = existingStyleTags[i];\n\t\tvar dataHref = tag.getAttribute(\"data-href\");\n\t\tif(dataHref === href || dataHref === fullhref) return tag;\n\t}\n};\nvar loadStylesheet = function(chunkId) {\n\treturn new Promise(function(resolve, reject) {\n\t\tvar href = __webpack_require__.miniCssF(chunkId);\n\t\tvar fullhref = __webpack_require__.p + href;\n\t\tif(findStylesheet(href, fullhref)) return resolve();\n\t\tcreateStylesheet(chunkId, fullhref, resolve, reject);\n\t});\n}\n// object to store loaded CSS chunks\nvar installedCssChunks = {\n\t524: 0\n};\n\n__webpack_require__.f.miniCss = function(chunkId, promises) {\n\tvar cssChunks = {\"4\":1,\"44\":1,\"279\":1,\"298\":1,\"413\":1,\"688\":1,\"758\":1};\n\tif(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);\n\telse if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {\n\t\tpromises.push(installedCssChunks[chunkId] = loadStylesheet(chunkId).then(function() {\n\t\t\tinstalledCssChunks[chunkId] = 0;\n\t\t}, function(e) {\n\t\t\tdelete installedCssChunks[chunkId];\n\t\t\tthrow e;\n\t\t}));\n\t}\n};\n\n// no hmr","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t524: 0\n};\n\n__webpack_require__.f.j = function(chunkId, promises) {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise(function(resolve, reject) { installedChunkData = installedChunks[chunkId] = [resolve, reject]; });\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = function(event) {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; };\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = function(parentChunkLoadingFunction, data) {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunkcampus\"] = self[\"webpackChunkcampus\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [504], function() { return __webpack_require__(369); })\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["id","class","_createElementVNode","_hoisted_3","_hoisted_4","_hoisted_5","_hoisted_6","_hoisted_7","_hoisted_8","_hoisted_9","_hoisted_10","_hoisted_11","_hoisted_12","_hoisted_13","_hoisted_14","_createElementBlock","_hoisted_1","_hoisted_2","_ctx","ready","_createVNode","_component_router_view","Component","_Transition","name","mode","_createBlock","_resolveDynamicComponent","_component_Navigation","_component_Logo","cookies","banner","_component_CookieBanner","key","_component_RotateHint","_component_LanguageToggler","$options","_component_router_link","to","onClick","__default__","inject","computed","mapStores","useAppStore","showNav","this","$route","path","includes","styleWidth","$utils","isMobile","methods","logout","AppStore","removeCookie","$router","push","__exports__","src","_imports_0","_imports_1","visible","isStartseite","backToCampus","query","campus","text","acceptLabel","texts","uiTexts","CookieBanner","acceptCookies","setCookie","ref","$data","rotateHint","data","showHint","RotateHint","checkOrientation","window","orientation","auth","mounted","onorientationchange","selected","for","type","value","lang","watch","newValue","styleTop","styleColor","color","hover","components","Navigation","Logo","LanguageToggler","created","init","render","router","createRouter","history","createWebHashHistory","process","routes","component","meta","nonAuth","redirect","beforeEach","from","next","redirectedFrom","isAuthenticated","imgExtensions","vidExtensions","getFileType","filename","explicit","extension","split","pop","toLowerCase","preloadImages","imageURLs","preloadedImages","Promise","all","map","imageURL","resolve","image","Image","onload","onerror","preloadVideos","videoURLs","preloadedVideos","videoURL","i","req","XMLHttpRequest","open","responseType","status","videoBlob","response","vid","URL","createObjectURL","send","check","a","test","substr","navigator","userAgent","vendor","opera","isIpadOS","match","maxTouchPoints","isTouch","CMS_URL","Number","prototype","mod","n","pinia","createPinia","use","store","cmsURL","$cookies","vueCookies","utils","createApp","App","provide","mount","defineStore","state","localeTexts","showArbeitsschutz","getters","directus","Directus","actions","get","loadUI","fetch","then","res","json","Object","keys","forEach","catch","err","set","remove","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","exports","module","loaded","__webpack_modules__","call","m","deferred","O","result","chunkIds","fn","priority","notFulfilled","Infinity","length","fulfilled","j","every","splice","r","getter","__esModule","d","definition","o","defineProperty","enumerable","f","e","chunkId","reduce","promises","u","miniCssF","g","globalThis","Function","obj","prop","hasOwnProperty","inProgress","dataWebpackPrefix","l","url","done","script","needAttach","scripts","document","getElementsByTagName","s","getAttribute","createElement","charset","timeout","nc","setAttribute","onScriptComplete","prev","event","clearTimeout","doneFns","parentNode","removeChild","setTimeout","bind","target","head","appendChild","Symbol","toStringTag","nmd","paths","children","p","createStylesheet","fullhref","reject","linkTag","rel","onLinkComplete","errorType","realHref","href","Error","code","request","findStylesheet","existingLinkTags","tag","dataHref","existingStyleTags","loadStylesheet","installedCssChunks","miniCss","cssChunks","installedChunks","installedChunkData","promise","error","loadingEnded","realSrc","message","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","some","chunkLoadingGlobal","self","__webpack_exports__"],"sourceRoot":""}