\n\n\n\n\n\n","import { render } from \"./Spinner.vue?vue&type=template&id=9794b8a6\"\nimport script from \"./Spinner.vue?vue&type=script&lang=js\"\nexport * from \"./Spinner.vue?vue&type=script&lang=js\"\n\nimport \"./Spinner.vue?vue&type=style&index=0&id=9794b8a6&lang=css\"\n\nimport exportComponent from \"../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import Vue from 'vue'\nimport { createApp } from 'vue'\n// import VueRouter from 'vue-router';\nimport App from '@/App.vue'\nimport Router from '@/router'\nimport AuthService from '@/AuthService'\nimport ApiService from '@/apiService'\nimport VueMatomo from 'vue-matomo'\nimport State from '@/state.js'\nimport VueHtml2pdf from 'vue-html2pdf'\n\nimport BootstrapVue from 'bootstrap-vue'\n\nimport 'bootstrap/dist/css/bootstrap.css'\nimport 'bootstrap-vue/dist/bootstrap-vue.css'\n\nconst app = createApp(App);\n\n//import a section of this package to use, in this case the 'library' part. This is base data for our fonts\n//Note: I followed FA docs to learn how to add to Vue\nimport { library } from '@fortawesome/fontawesome-svg-core'\n//pull out the individual icons we want to use in our app so we dont load unnecessary fonts and bloat the code\nimport {\n faSearch,\n faInfoCircle,\n faQuestionCircle,\n faSignInAlt,\n faExternalLinkSquareAlt,\n faExternalLinkAlt,\n faImage\n} from '@fortawesome/free-solid-svg-icons'\n//pull in some additional FA data we need according to FA docs\nimport { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'\nimport 'bootstrap/dist/js/bootstrap.bundle';\n// import '@/plugins/vue-html2pdf';\n// import custom css as well as all bootstrap css\n// not needed since im using css loader via config\nimport '@/_custom.scss'\nimport '@/cndBootstrap.min.css'\n// instead of loading the entire Bootstrap js file below, we are going to import them into individual components as needed to minimize bloat\n//import 'bootstrap.js';\nimport 'animate.css'\n//a custom spinner component i made for this app. It's just a basic Vue template with CSS!\nimport Spinner from '@/components/Spinner.vue'\n\n//we are loading the below components now because we need to use them in the Vue Router\n\n//imported jquery for now because needed toggling logic for datadetails component..hope to use straight JS when I get time\n//window.$ = window.jQuery = require('jquery');\n\n//FA docs said to globally add our cherrypicked icons to our library package from above\nlibrary.add(\n faSearch,\n faInfoCircle,\n faQuestionCircle,\n faSignInAlt,\n faExternalLinkSquareAlt,\n faExternalLinkAlt,\n faImage\n);\n\napp.config.productionTip = false;\n// app.use(VueRouter);\napp.use(BootstrapVue);\nvar VueScrollTo = require('vue-scrollto');\napp.use(VueScrollTo);\napp.use(VueHtml2pdf);\n\n//register globally for usage throughout app; use html w3c standards for element names. Now we can just plug them in our components as needed! Our, we could have just imported these individually into each component as needed, but that's too much work since we are using multiple components with these elements. Easier just to make these global.\napp.component('FontAwesomeIcon', FontAwesomeIcon);\napp.component('SpinnerLoaderIcon', Spinner);\n\n// setup as shown here https://router.vuejs.org/guide/advanced/meta.html#route-meta-fields\n// router.beforeEach((to, from, next) => {\n// const token = window.localStorage.getItem('tokens-gx');\n// if (to.matched.some(record => record.meta.requiresAuth)) {\n// // this route requires auth, check if logged in\n// //also, turn on 'GeoAxis' if needed. See 'config.json' in src\n// if (token == null || Config.geoAxis == false) {\n// next('/');\n// } else if (token != null && Config.geoAxis) {\n// next();\n// }\n// } else {\n// next(); // make sure to always call next() to close the pipeline!\n// }\n// });\n\n\n//Only run Matomo analytics if app is in production mode and specific domain\nif (\n process.env.NODE_ENV == 'production' &&\n window.location.hostname == 'fgs-dps.gs.mil'\n) {\n app.use(VueMatomo, {\n // Configure your matomo server and site\n host: '//webanalytics.nga.mil',\n siteId: 414,\n\n // Overrides the autogenerated tracker endpoint entirely\n // Default: undefined\n // trackerUrl: 'https://example.com/whatever/endpoint/you/have',\n\n // Enables automatically registering pageviews on the router\n router: Router,\n\n // Enables link tracking on regular links. Note that this won't\n // work for routing links (ie. internal Vue router links)\n // Default: true\n enableLinkTracking: true,\n\n // Require consent before sending tracking information to matomo\n // Default: false\n requireConsent: false,\n\n // Whether to track the initial page view\n // Default: true\n trackInitialView: true,\n\n // Changes the default .js and .php endpoint's filename\n // Default: 'piwik'\n trackerFileName: 'piwik',\n\n // Whether or not to log debug information\n // Default: false\n debug: false\n // trackInteraction: (to, from) => {\n // // If this is the first route visited, then always record a page visit\n // if (!from) {\n // return true;\n // }\n \n // // Return true if the path or hash changed, but not anything else\n // return to.path !== from.path || to.hash !== from.hash;\n // },\n });\n\n // this.$matomo && this.$matomo.trackPageView()\n}\n\n// new Vue({\n// //State is imported immutable global data that you may want to use in other parts of the app. In a more complex app we shoud use the VUEX library\n// data: State,\n// created: function() {\n// //check for response parameters if user has an auth token (uses JSO plugin)\n// AuthService.authCallBack();\n// },\n// render: h => h(App),\n// router: Router\n// }).$mount('#app');\n\n// createApp(App).use(Router).mount('#app')\n// createApp(App,{\n// data() {\n// return {\n// data: State,\n// created: function() {\n// //check for response parameters if user has an auth token (uses JSO plugin)\n// AuthService.authCallBack();\n// }\n// }\n// }\n// //State is imported immutable global data that you may want to use in other parts of the app. In a more complex app we shoud use the VUEX library\n \n \n// })\napp.use(State);\napp.use(Router).mount('#app');\n\n// createApp(App).use(Router).mount('#app')\n","// use for common messages throughout the app\nexport default {\n message: 'in a bottle',\n point: 'Point geometry',\n surface: 'Surface geometry',\n geoExtractedTip:\n 'Reflects the geometry type that extraction information is available for each entity. Each geometry type representation is by a single letter: \"P\" for point, \"C\" for curve, and \"S\" for surface geometry. Not all entities contain extraction information for all geometry types. For this reason, the Geometry Extracted field only displays the geometry type letter if extraction information is available for each entity.',\n nasIdTip:\n 'A hyperlink for each GCES Entity to the item’s presentation page in the NAS Register of the NSG Standards Registry (NSGREG). The hyperlink is formulated to include the itemIdentifier (unique primary key used to identify this element within the model) in the URL. Clicking this hyperlink presents users with a new tab, displaying the item’s presentation page on NSGREG, which provides NAS information such as the alphaCode, name, definition, and description of the item; as well as its inheritance relations (superclasses and subclasses), properties (such as attributes and association roles), and constraints.'\n};\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\t// no module.id needed\n\t\t// no module.loaded needed\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// 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","__webpack_require__.amdD = function () {\n\tthrow new Error('define cannot be used indirect');\n};","__webpack_require__.amdO = {};","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};","var getProto = Object.getPrototypeOf ? function(obj) { return Object.getPrototypeOf(obj); } : function(obj) { return obj.__proto__; };\nvar leafPrototypes;\n// create a fake namespace object\n// mode & 1: value is a module id, require it\n// mode & 2: merge all properties of value into the ns\n// mode & 4: return value when already ns object\n// mode & 16: return value when it's Promise-like\n// mode & 8|1: behave like require\n__webpack_require__.t = function(value, mode) {\n\tif(mode & 1) value = this(value);\n\tif(mode & 8) return value;\n\tif(typeof value === 'object' && value) {\n\t\tif((mode & 4) && value.__esModule) return value;\n\t\tif((mode & 16) && typeof value.then === 'function') return value;\n\t}\n\tvar ns = Object.create(null);\n\t__webpack_require__.r(ns);\n\tvar def = {};\n\tleafPrototypes = leafPrototypes || [null, getProto({}), getProto([]), getProto(getProto)];\n\tfor(var current = mode & 2 && value; typeof current == 'object' && !~leafPrototypes.indexOf(current); current = getProto(current)) {\n\t\tObject.getOwnPropertyNames(current).forEach(function(key) { def[key] = function() { return value[key]; }; });\n\t}\n\tdef['default'] = function() { return value; };\n\t__webpack_require__.d(ns, def);\n\treturn ns;\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/\" + ({\"30\":\"tpconcAnnexes\",\"45\":\"tmAnnexA\",\"146\":\"tmAC\",\"245\":\"EvcAnnexes\",\"275\":\"tpconcAnnexA\",\"286\":\"jogAnnexA\",\"345\":\"EvcAnnexestest\",\"360\":\"tmAnnexes\",\"362\":\"jogPC\",\"381\":\"jogAnnexes\",\"428\":\"tpconcAC\",\"597\":\"EvcAC\",\"647\":\"jogBT\",\"663\":\"evcBT\",\"742\":\"tpconcBT\",\"802\":\"EvcPC\",\"844\":\"tmBT\",\"869\":\"jogAC\",\"870\":\"evcAnnexA\",\"941\":\"tmPC\",\"957\":\"gces\",\"959\":\"tpconcPC\"}[chunkId] || chunkId) + \"-legacy.\" + {\"7\":\"d12be060\",\"30\":\"3efb2e10\",\"45\":\"ae15248a\",\"57\":\"bcc8b098\",\"104\":\"8905975a\",\"122\":\"5a30a32b\",\"146\":\"76870283\",\"172\":\"af496146\",\"209\":\"3f29237e\",\"245\":\"d64df831\",\"272\":\"9ebedc9d\",\"275\":\"e1011667\",\"286\":\"1fc0aa50\",\"334\":\"dc5e9bab\",\"345\":\"c9c82dd9\",\"360\":\"6dc26a32\",\"362\":\"7f0aded2\",\"381\":\"dcfb4e34\",\"404\":\"da934c9b\",\"428\":\"1f113226\",\"459\":\"01fa5dfa\",\"563\":\"0c428f78\",\"597\":\"51d86a0b\",\"615\":\"a858b925\",\"620\":\"6dc135eb\",\"647\":\"5b641494\",\"659\":\"3e011074\",\"660\":\"5a7f6f5a\",\"663\":\"0b1602ec\",\"670\":\"3ad0a00a\",\"682\":\"8901a8f8\",\"742\":\"3ac6683f\",\"802\":\"204cb2ad\",\"844\":\"cbe51bea\",\"867\":\"d839e9a6\",\"869\":\"2a715a41\",\"870\":\"74c69c4f\",\"873\":\"740f387d\",\"877\":\"82d9996c\",\"901\":\"29e2920a\",\"911\":\"ce6c7f5b\",\"941\":\"e471306c\",\"953\":\"783c118b\",\"957\":\"cc845d12\",\"959\":\"9bcbe5c6\"}[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/\" + ({\"30\":\"tpconcAnnexes\",\"45\":\"tmAnnexA\",\"146\":\"tmAC\",\"245\":\"EvcAnnexes\",\"275\":\"tpconcAnnexA\",\"286\":\"jogAnnexA\",\"345\":\"EvcAnnexestest\",\"360\":\"tmAnnexes\",\"362\":\"jogPC\",\"381\":\"jogAnnexes\",\"428\":\"tpconcAC\",\"597\":\"EvcAC\",\"647\":\"jogBT\",\"663\":\"evcBT\",\"742\":\"tpconcBT\",\"802\":\"EvcPC\",\"844\":\"tmBT\",\"869\":\"jogAC\",\"870\":\"evcAnnexA\",\"941\":\"tmPC\",\"957\":\"gces\",\"959\":\"tpconcPC\"}[chunkId] || chunkId) + \".\" + {\"30\":\"a42a62c4\",\"45\":\"22199219\",\"104\":\"f6786b51\",\"122\":\"a3423fa6\",\"146\":\"83a49cab\",\"245\":\"7dd72a0f\",\"275\":\"53454979\",\"286\":\"61a5ed1f\",\"345\":\"353b242e\",\"360\":\"25810600\",\"362\":\"d98bd934\",\"381\":\"f4b6425d\",\"404\":\"9162121a\",\"428\":\"33895d3e\",\"563\":\"0a6d611d\",\"597\":\"cb0db447\",\"620\":\"a4e58e69\",\"647\":\"9fa40e95\",\"659\":\"54d5c4bf\",\"663\":\"7784168c\",\"682\":\"5362fa76\",\"742\":\"35eae1c9\",\"802\":\"87251671\",\"844\":\"28183340\",\"869\":\"a9b96e5d\",\"870\":\"fc652c71\",\"941\":\"3cc35d71\",\"953\":\"0a60818d\",\"957\":\"54b6a0f3\",\"959\":\"e28945b4\"}[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 = \"gces-ui:\";\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__.p = \"/\";","if (typeof document === \"undefined\") return;\nvar createStylesheet = function(chunkId, fullhref, oldTag, resolve, reject) {\n\tvar linkTag = document.createElement(\"link\");\n\n\tlinkTag.rel = \"stylesheet\";\n\tlinkTag.type = \"text/css\";\n\tif (__webpack_require__.nc) {\n\t\tlinkTag.nonce = __webpack_require__.nc;\n\t}\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;\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(\" + errorType + \": \" + realHref + \")\");\n\t\t\terr.name = \"ChunkLoadError\";\n\t\t\terr.code = \"CSS_CHUNK_LOAD_FAILED\";\n\t\t\terr.type = errorType;\n\t\t\terr.request = realHref;\n\t\t\tif (linkTag.parentNode) linkTag.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\n\tif (oldTag) {\n\t\toldTag.parentNode.insertBefore(linkTag, oldTag.nextSibling);\n\t} else {\n\t\tdocument.head.appendChild(linkTag);\n\t}\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, null, 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 = {\"30\":1,\"45\":1,\"104\":1,\"122\":1,\"146\":1,\"245\":1,\"275\":1,\"286\":1,\"345\":1,\"360\":1,\"362\":1,\"381\":1,\"404\":1,\"428\":1,\"563\":1,\"597\":1,\"620\":1,\"647\":1,\"659\":1,\"663\":1,\"682\":1,\"742\":1,\"802\":1,\"844\":1,\"869\":1,\"870\":1,\"941\":1,\"953\":1,\"957\":1,\"959\":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\n\n// no prefetching\n\n// no preloaded","// 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[\"webpackChunkgces_ui\"] = self[\"webpackChunkgces_ui\"] || [];\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__(4237); })\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["ClientOAuth2","require","client","providerID","client_id","authorization","redirect_uri","authLogin","getToken","authLogOut","wipeTokens","authCallBack","callback","getBearerToken","token","this","access_token","getBearerTokenFromLocalStorage","localStorage","getItem","JSON","parse","checkIfUserIsAdmin","ssoUser","ApiService","getUserInfo","adminTableCheck","checkAdminStatus","user_id","results","data","count","getValidAuthToken","setAxiosDefaults","isTokenValid","e","console","error","isGeoaxisUp","response","getGeoaxisStatus","status","axiosClient","Config","apiClient","axios","baseURL","api","withCredentials","headers","Accept","getApiClient","defaults","common","getAll","get","getFocusEntity","NAS_ID","getDefinitions","getDefinitionswAuth","getNas","getNasPlain","updateNas","theData","post","getNasPDF","getAppearancePDF","getDistinctEPDF","getExtractionCPDF","getDelineationGPDF","getExtractionGPDF","getAttributionGPDF","getImagesPDF","getAppearance","getAppearancePlain","countAppearExGuid","newAppearExGuid","put","updateAppearExGuid","removeAppearExGuid","delete","putAppearance","getDistinctE","getUniqueID","getName","removeDistinctE","newDistinctE","getExtractionC","newExtractCritAndDelGuid","updateExtractCritAndDelGuid","log","removeExtractCritAndDelGuid","countExtractCritAndDelGuid","getExtractionG","getExtractionGPlain","getDelineationG","getAttributeG","getAttributeGPlain","newAttributeG","updateAttributeG","deleteAttributeG","countAttributeG","getImages","updateImage","imgInfo","newImage","removeImage","getTM","getTMImages","getDPSTMSymbolDetails","_ID","getDPSTMSymbolRules","getDPSTMSymbolComponents","getDPSTMLabelRules","getDPSTMFinishingRules","getDPSTMFinishingRuleDefs","Rule_ID","getTMAnA1","getTMACAnA","getTMACAnAMeta","getTMACAnAMain","getTMACAnAMainAnnoRule","getTMACAnAAnnoRules","getTMACAnAVerRules","getTMACAnAComp","getTMACAnASubTitles","getTMAnA2","getTMAnB","getTMAnC","getTMAnD","getTMAnE","getTMAnF","getTMAnG","getTMAnH","getTMAnI","getTMAnJ","getTPCONC","getTPCONCImages","getTPCONCAnA1","getTPCONCAnA2","getTPCONCAnB","getTPCONCAnC","getTPCONCAnD","getTPCONCAnE","getTPCONCAnF","getTPCONCAnG","getTPCONCAnH","getTPCONCAnI","getTPCONCAnJ","getDPSTPCSymbolDetails","getDPSTPCSymbolRules","getDPSTPCSymbolComponents","getDPSTPCLabelRules","getDPSTPCFinishingRules","getDPSTPCFinishingRuleDefs","getTDSAttribute","getJOG","getJOGImages","getDPSJOGSymbolDetails","getDPSJOGSymbolRules","getDPSJOGSymbolComponents","getDPSJOGLabelRules","getDPSJOGFinishingRules","getDPSJOGFinishingRuleDefs","getJOGAnA1","getJOGAnA2","getJOGAnB","getJOGAnC","getJOGAnD","getJOGAnE","getJOGAnF","getJOGAnG","getJOGAnH","getJOGAnI","getJOGAnJ","getJOGACAnA","getJOGACAnAMeta","getJOGACAnAMain","getJOGACAnAMainAnnoRule","getJOGACAnAAnnoRules","getJOGACAnAVerRules","getJOGACAnAComp","getJOGACAnASubTitles","getEVC","getEVCImages","getDPSEVCSymbolDetails","getDPSEVCSymbolRules","getDPSEVCSymbolComponents","getDPSEVCLabelRules","getDPSEVCFinishingRules","getDPSEVCFinishingRuleDefs","getEVCAnB1","getEVCAnB2","getEVCAnB","getEVCAnC","getEVCAnD","getEVCAnE","getEVCAnF","getEVCAnG","getEVCAnH","getEVCAnI","getEVCAnJ","getEVCAnN","getAttributeEnumerate","getTdsMagAttribute","getMagEnumAttribute","getOsmMagTDSAttribute","getApiBaseUrl","apiBaseUrl","id","result","imageSource","s3","imageSourceDps","s3Dps","downloadSource","s3Downloads","tpconcSymbolImages","tmSymbolImages","jogSymbolImages","evcSymbolImages","class","_createElementBlock","_hoisted_1","_createVNode","_component_banner","_createElementVNode","_hoisted_2","_component_main_nav","_Transition","name","mode","default","_withCtx","_createBlock","_component_router_view","key","_ctx","$route","params","_","style","_hoisted_3","__exports__","_component_router_link","to","exact","_createTextVNode","_hoisted_4","_hoisted_5","title","_hoisted_6","_hoisted_7","gx","methods","login","AuthService","logout","components","Banner","MainNav","render","OverView","DataTable","GCESList","GCESEdit","TabAttrib","TdsMag","OsmMag","test","ComingSoon","Downloads","DataDetail","GCESPDF","NotFound","DPSContent","DPSHome","DPSOverview","DPSTpcOncBodyText","DPSTpcOncBodyTextForward","DPSTpcOncBodyText1","DPSTpcOncBodyText2","DPSTpcOncBodyText3","DPSTpcOncBodyText4","DPSTpcOncBodyText5","DPSTpcOncBodyText6","DPSTpcOncBodyText7","DPSTpcOncBodyText8","DPSTpcOncBodyText9","DPSTpcOncBodyText10","DPSTpcOncBodyText11","DPSTpcOncBodyText12","DPSTMBodyTextForward","DPSTMBodyText1","DPSTMBodyText2","DPSTMBodyText3","DPSTMBodyText4","DPSTMBodyText5","DPSTMBodyText6","DPSTMBodyText7","DPSTMBodyText8","DPSTMBodyText9","DPSTMBodyText10","DPSTMBodyText11","DPSTMBodyText12","DPSJogBodyTextForward","DPSJogBodyText1","DPSJogBodyText2","DPSJogBodyText3","DPSJogBodyText4","DPSJogBodyText5","DPSJogBodyText6","DPSJogBodyText7","DPSJogBodyText8","DPSJogBodyText9","DPSJogBodyText10","DPSJogBodyText11","DPSJogBodyText12","DPSEvcBodyTextForward","DPSEvcBodyTextPurpose","DPSEvcBodyTextRef","DPSEvcBodyTextTerms","DPSEvcBodyText1","DPSEvcBodyText2","DPSEvcBodyText3","DPSEvcBodyText4","DPSEvcBodyText5","DPSEvcBodyText6","DPSEvcBodyText7","DPSEvcBodyText8","DPSEvcBodyText9","DPSEvcBodyText10","DPSEvcBodyText11","DPSEvcBodyText12","DPSACF","DPSACC1","DPSACC2","DPSACC3","DPSACC4","DPSPCF","DPSPCC1","DPSPCC2","DPSPCC3","DPSPCC4","DPSPdfGen","DPSDetail","DPSJogDetail","DPSEvcDetail","DPSJogDetailOld","DPSTmDetail","DPSTpcDetail","ProtectedResource","Jog","Evc","JogOld","Tm","TpcOnc","TPCONCAnB","TPCONCAnC","TPCONCAnD","TPCONCAnE","TPCONCAnF","TPCONCAnG","TPCONCAnH","TPCONCAnI","TPCONCAnJ","TPCONCAnHInfo","TPCONCAnIInfo","TPCONCAnJInfo","TPCONCAnK","TPCONCAnL","TPCONCACAnA","TPCONCACAnB","TPCONCBTAnA1","TPCONCBTAnA2","TMPCF","TMPCC1","TMPCC2","TMPCC3","TMPCC4","TMAnB","TMAnC","TMAnD","TMAnE","TMAnF","TMAnG","TMAnH","TMAnI","TMAnJ","TMAnHInfo","TMAnIInfo","TMAnJInfo","TMAnK","TMAnL","TMACAnA","TMACAnADetail","TMACAnB","TMACF","TMACC1","TMACC2","TMACC3","TMACC4","TMBTAnA1","TMBTAnA2","JogPCF","JogPCC1","JogPCC2","JogPCC3","JogPCC4","JogAnB","JogAnC","JogAnD","JogAnE","JogAnF","JogAnG","JogAnH","JogAnI","JogAnJ","JogAnHInfo","JogAnIInfo","JogAnJInfo","JogAnK","JogAnL","JogAnM","JogACAnA","JogACAnADetail","JogACAnB","JogACF","JogACC1","JogACC2","JogACC3","JogACC4","JogBTAnA1","JogBTAnA2","EvcPCC1","EvcPCC2","EvcPCC3","EvcPCC4","EvcPCC5","EvcAnB","EvcAnC","EvcAnD","EvcAnE","EvcAnF","EvcAnG","EvcAnH","EvcAnI","EvcAnJ","EvcAnHInfo","EvcAnIInfo","EvcAnJInfo","EvcAnK","EvcAnL","EvcAnM","EvcAnN","EvcAnO","EvcAnP","EvcAnPT","EvcAnP3","EvcAnT","EvcACC1","EvcACC2","EvcACC3","EvcBTAnB1","EvcBTAnB2","router","createRouter","history","createWebHistory","linkActiveClass","linkExactActiveClass","routes","path","component","meta","requiresAuth","props","beforeEnter","from","next","beforeEach","async","matched","some","record","window","document","_createStaticVNode","app","createApp","App","library","add","faSearch","faInfoCircle","faQuestionCircle","faSignInAlt","faExternalLinkSquareAlt","faExternalLinkAlt","faImage","config","productionTip","use","BootstrapVue","VueScrollTo","VueHtml2pdf","FontAwesomeIcon","Spinner","location","hostname","VueMatomo","host","siteId","Router","enableLinkTracking","requireConsent","trackInitialView","trackerFileName","debug","State","mount","message","point","surface","geoExtractedTip","nasIdTip","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","exports","module","__webpack_modules__","call","m","amdD","Error","amdO","deferred","O","chunkIds","fn","priority","notFulfilled","Infinity","i","length","fulfilled","j","Object","keys","every","splice","r","n","getter","__esModule","d","a","leafPrototypes","getProto","getPrototypeOf","obj","__proto__","t","value","then","ns","create","def","current","indexOf","getOwnPropertyNames","forEach","definition","o","defineProperty","enumerable","f","chunkId","Promise","all","reduce","promises","u","miniCssF","g","globalThis","Function","prop","prototype","hasOwnProperty","inProgress","dataWebpackPrefix","l","url","done","push","script","needAttach","scripts","getElementsByTagName","s","getAttribute","createElement","charset","timeout","nc","setAttribute","src","onScriptComplete","prev","event","onerror","onload","clearTimeout","doneFns","parentNode","removeChild","setTimeout","bind","type","target","head","appendChild","Symbol","toStringTag","p","createStylesheet","fullhref","oldTag","resolve","reject","linkTag","rel","nonce","onLinkComplete","errorType","realHref","href","err","code","request","insertBefore","nextSibling","findStylesheet","existingLinkTags","tag","dataHref","existingStyleTags","loadStylesheet","installedCssChunks","miniCss","cssChunks","installedChunks","installedChunkData","promise","loadingEnded","realSrc","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","chunkLoadingGlobal","self","__webpack_exports__"],"sourceRoot":""}