diff --git a/backend/app/api/__pycache__/recommendations.cpython-313.pyc b/backend/app/api/__pycache__/recommendations.cpython-313.pyc index 2f5c65da..addff3b2 100644 Binary files a/backend/app/api/__pycache__/recommendations.cpython-313.pyc and b/backend/app/api/__pycache__/recommendations.cpython-313.pyc differ diff --git a/backend/app/engine/__pycache__/recommender.cpython-313.pyc b/backend/app/engine/__pycache__/recommender.cpython-313.pyc index 8f2765cf..2cad5ad1 100644 Binary files a/backend/app/engine/__pycache__/recommender.cpython-313.pyc and b/backend/app/engine/__pycache__/recommender.cpython-313.pyc differ diff --git a/backend/app/engine/__pycache__/scheduler.cpython-313.pyc b/backend/app/engine/__pycache__/scheduler.cpython-313.pyc index 0c4460be..78cfd724 100644 Binary files a/backend/app/engine/__pycache__/scheduler.cpython-313.pyc and b/backend/app/engine/__pycache__/scheduler.cpython-313.pyc differ diff --git a/backend/app/engine/__pycache__/screener.cpython-313.pyc b/backend/app/engine/__pycache__/screener.cpython-313.pyc index 5a7872ed..15c6cc6b 100644 Binary files a/backend/app/engine/__pycache__/screener.cpython-313.pyc and b/backend/app/engine/__pycache__/screener.cpython-313.pyc differ diff --git a/backend/app/engine/recommender.py b/backend/app/engine/recommender.py index 8ef728d2..c9b1a475 100644 --- a/backend/app/engine/recommender.py +++ b/backend/app/engine/recommender.py @@ -7,7 +7,7 @@ import logging import json import asyncio -from datetime import datetime +from datetime import datetime, timedelta from app.engine.screener import run_screening from app.data.models import Recommendation, MarketTemperature, SectorInfo from app.db.database import get_db @@ -277,7 +277,6 @@ async def get_latest_sectors() -> list[SectorInfo]: async def get_recommendation_history(days: int = 7) -> list[dict]: """获取历史推荐记录,按日期分组返回""" - from datetime import timedelta import json start = (datetime.now() - timedelta(days=days)).strftime("%Y-%m-%d") @@ -427,6 +426,7 @@ async def _save_to_db(result: dict): # 保存推荐(按 ts_code 清除当日旧记录,避免同一天多次扫描产生重复) today_str = datetime.now().strftime("%Y-%m-%d") + now_ts = datetime.now().strftime("%Y-%m-%d %H:%M:%S") saved_count = 0 for rec in result.get("recommendations", []): if rec.score < 60: @@ -458,6 +458,7 @@ async def _save_to_db(result: dict): entry_signal_type=rec.entry_signal_type, llm_score=rec.llm_score, scan_session=rec.scan_session, + created_at=now_ts, ) await db.execute(stmt) saved_count += 1 diff --git a/backend/app/engine/screener.py b/backend/app/engine/screener.py index 8ec7eee4..14fb30d8 100644 --- a/backend/app/engine/screener.py +++ b/backend/app/engine/screener.py @@ -653,22 +653,22 @@ async def _build_recommendations( rec.llm_analysis = llm_data.get("analysis", "") # LLM 信号强度转换为分数调整 + # 调整幅度温和,保底不低于 60,避免推荐被过滤掉 strength = llm_data.get("strength", "中") llm_signal = llm_data.get("signal", "HOLD") - # 基础调整:量化评分 * 调整系数 if llm_signal == "SKIP": - adjustment = 0.50 + # 降分但保底 60,排序靠后但不消失 + rec.score = max(60, round(rec.score - 15, 1)) elif llm_signal == "HOLD": - adjustment = 0.85 + rec.score = max(60, round(rec.score - 5, 1)) elif llm_signal == "BUY" and strength == "强": - adjustment = 1.15 + rec.score = round(rec.score + 10, 1) elif llm_signal == "BUY" and strength == "中": - adjustment = 1.05 + rec.score = round(rec.score + 5, 1) else: # BUY + 弱 - adjustment = 1.00 + pass # 不调整 - rec.score = round(rec.score * adjustment, 1) rec.level = _score_to_level(rec.score) # 用 LLM 给出的价格替代硬编码价格 diff --git a/backend/astock.db b/backend/astock.db index dd60dc25..805e3709 100644 Binary files a/backend/astock.db and b/backend/astock.db differ diff --git a/frontend/.next/app-build-manifest.json b/frontend/.next/app-build-manifest.json index eb1c6941..1b3b57dc 100644 --- a/frontend/.next/app-build-manifest.json +++ b/frontend/.next/app-build-manifest.json @@ -1,25 +1,3 @@ { - "pages": { - "/(public)/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/(public)/page.js" - ], - "/(public)/layout": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/(public)/layout.js" - ], - "/layout": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/css/app/layout.css", - "static/chunks/app/layout.js" - ], - "/_not-found/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/_not-found/page.js" - ] - } + "pages": {} } \ No newline at end of file diff --git a/frontend/.next/build-manifest.json b/frontend/.next/build-manifest.json index 018cb67f..b8b66ce6 100644 --- a/frontend/.next/build-manifest.json +++ b/frontend/.next/build-manifest.json @@ -8,10 +8,7 @@ "static/development/_buildManifest.js", "static/development/_ssgManifest.js" ], - "rootMainFiles": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js" - ], + "rootMainFiles": [], "pages": { "/_app": [] }, diff --git a/frontend/.next/server/app-paths-manifest.json b/frontend/.next/server/app-paths-manifest.json index 13cc60be..9e26dfee 100644 --- a/frontend/.next/server/app-paths-manifest.json +++ b/frontend/.next/server/app-paths-manifest.json @@ -1,4 +1 @@ -{ - "/_not-found/page": "app/_not-found/page.js", - "/(public)/page": "app/(public)/page.js" -} \ No newline at end of file +{} \ No newline at end of file diff --git a/frontend/.next/server/middleware-build-manifest.js b/frontend/.next/server/middleware-build-manifest.js index 36489d8c..02294560 100644 --- a/frontend/.next/server/middleware-build-manifest.js +++ b/frontend/.next/server/middleware-build-manifest.js @@ -5,10 +5,7 @@ self.__BUILD_MANIFEST = { "devFiles": [], "ampDevFiles": [], "lowPriorityFiles": [], - "rootMainFiles": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js" - ], + "rootMainFiles": [], "pages": { "/_app": [] }, diff --git a/frontend/.next/server/server-reference-manifest.json b/frontend/.next/server/server-reference-manifest.json index f8bf2b03..8ad49da8 100644 --- a/frontend/.next/server/server-reference-manifest.json +++ b/frontend/.next/server/server-reference-manifest.json @@ -1,5 +1,5 @@ { "node": {}, "edge": {}, - "encryptionKey": "SjG27okSsVCMkYFxh9VzL5dGKrpz1m5ZqXbmUB/f6XQ=" + "encryptionKey": "TvpNgjmx7YLTcpuR9/rx1RyNnHAsQtr+fCBhzhbdwwo=" } \ No newline at end of file diff --git a/frontend/.next/server/webpack-runtime.js b/frontend/.next/server/webpack-runtime.js deleted file mode 100644 index b76056f6..00000000 --- a/frontend/.next/server/webpack-runtime.js +++ /dev/null @@ -1,215 +0,0 @@ -/* - * ATTENTION: An "eval-source-map" devtool has been used. - * This devtool is neither made for production nor for readable output files. - * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. - * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) - * or disable the default devtool with "devtool: false". - * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). - */ -/******/ (() => { // webpackBootstrap -/******/ "use strict"; -/******/ var __webpack_modules__ = ({}); -/************************************************************************/ -/******/ // The module cache -/******/ var __webpack_module_cache__ = {}; -/******/ -/******/ // The require function -/******/ function __webpack_require__(moduleId) { -/******/ // Check if module is in cache -/******/ var cachedModule = __webpack_module_cache__[moduleId]; -/******/ if (cachedModule !== undefined) { -/******/ return cachedModule.exports; -/******/ } -/******/ // Create a new module (and put it into the cache) -/******/ var module = __webpack_module_cache__[moduleId] = { -/******/ id: moduleId, -/******/ loaded: false, -/******/ exports: {} -/******/ }; -/******/ -/******/ // Execute the module function -/******/ var threw = true; -/******/ try { -/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); -/******/ threw = false; -/******/ } finally { -/******/ if(threw) delete __webpack_module_cache__[moduleId]; -/******/ } -/******/ -/******/ // Flag the module as loaded -/******/ module.loaded = true; -/******/ -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } -/******/ -/******/ // expose the modules object (__webpack_modules__) -/******/ __webpack_require__.m = __webpack_modules__; -/******/ -/************************************************************************/ -/******/ /* webpack/runtime/compat get default export */ -/******/ (() => { -/******/ // getDefaultExport function for compatibility with non-harmony modules -/******/ __webpack_require__.n = (module) => { -/******/ var getter = module && module.__esModule ? -/******/ () => (module['default']) : -/******/ () => (module); -/******/ __webpack_require__.d(getter, { a: getter }); -/******/ return getter; -/******/ }; -/******/ })(); -/******/ -/******/ /* webpack/runtime/create fake namespace object */ -/******/ (() => { -/******/ var getProto = Object.getPrototypeOf ? (obj) => (Object.getPrototypeOf(obj)) : (obj) => (obj.__proto__); -/******/ var leafPrototypes; -/******/ // create a fake namespace object -/******/ // mode & 1: value is a module id, require it -/******/ // mode & 2: merge all properties of value into the ns -/******/ // mode & 4: return value when already ns object -/******/ // mode & 16: return value when it's Promise-like -/******/ // mode & 8|1: behave like require -/******/ __webpack_require__.t = function(value, mode) { -/******/ if(mode & 1) value = this(value); -/******/ if(mode & 8) return value; -/******/ if(typeof value === 'object' && value) { -/******/ if((mode & 4) && value.__esModule) return value; -/******/ if((mode & 16) && typeof value.then === 'function') return value; -/******/ } -/******/ var ns = Object.create(null); -/******/ __webpack_require__.r(ns); -/******/ var def = {}; -/******/ leafPrototypes = leafPrototypes || [null, getProto({}), getProto([]), getProto(getProto)]; -/******/ for(var current = mode & 2 && value; typeof current == 'object' && !~leafPrototypes.indexOf(current); current = getProto(current)) { -/******/ Object.getOwnPropertyNames(current).forEach((key) => (def[key] = () => (value[key]))); -/******/ } -/******/ def['default'] = () => (value); -/******/ __webpack_require__.d(ns, def); -/******/ return ns; -/******/ }; -/******/ })(); -/******/ -/******/ /* webpack/runtime/define property getters */ -/******/ (() => { -/******/ // define getter functions for harmony exports -/******/ __webpack_require__.d = (exports, definition) => { -/******/ for(var key in definition) { -/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { -/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); -/******/ } -/******/ } -/******/ }; -/******/ })(); -/******/ -/******/ /* webpack/runtime/ensure chunk */ -/******/ (() => { -/******/ __webpack_require__.f = {}; -/******/ // This file contains only the entry chunk. -/******/ // The chunk loading function for additional chunks -/******/ __webpack_require__.e = (chunkId) => { -/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => { -/******/ __webpack_require__.f[key](chunkId, promises); -/******/ return promises; -/******/ }, [])); -/******/ }; -/******/ })(); -/******/ -/******/ /* webpack/runtime/get javascript chunk filename */ -/******/ (() => { -/******/ // This function allow to reference async chunks and sibling chunks for the entrypoint -/******/ __webpack_require__.u = (chunkId) => { -/******/ // return url for filenames based on template -/******/ return "" + chunkId + ".js"; -/******/ }; -/******/ })(); -/******/ -/******/ /* webpack/runtime/getFullHash */ -/******/ (() => { -/******/ __webpack_require__.h = () => ("9f25f13e592044c8") -/******/ })(); -/******/ -/******/ /* webpack/runtime/hasOwnProperty shorthand */ -/******/ (() => { -/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop)) -/******/ })(); -/******/ -/******/ /* webpack/runtime/make namespace object */ -/******/ (() => { -/******/ // define __esModule on exports -/******/ __webpack_require__.r = (exports) => { -/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { -/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); -/******/ } -/******/ Object.defineProperty(exports, '__esModule', { value: true }); -/******/ }; -/******/ })(); -/******/ -/******/ /* webpack/runtime/node module decorator */ -/******/ (() => { -/******/ __webpack_require__.nmd = (module) => { -/******/ module.paths = []; -/******/ if (!module.children) module.children = []; -/******/ return module; -/******/ }; -/******/ })(); -/******/ -/******/ /* webpack/runtime/startup entrypoint */ -/******/ (() => { -/******/ __webpack_require__.X = (result, chunkIds, fn) => { -/******/ // arguments: chunkIds, moduleId are deprecated -/******/ var moduleId = chunkIds; -/******/ if(!fn) chunkIds = result, fn = () => (__webpack_require__(__webpack_require__.s = moduleId)); -/******/ chunkIds.map(__webpack_require__.e, __webpack_require__) -/******/ var r = fn(); -/******/ return r === undefined ? result : r; -/******/ } -/******/ })(); -/******/ -/******/ /* webpack/runtime/require chunk loading */ -/******/ (() => { -/******/ // no baseURI -/******/ -/******/ // object to store loaded chunks -/******/ // "1" means "loaded", otherwise not loaded yet -/******/ var installedChunks = { -/******/ "webpack-runtime": 1 -/******/ }; -/******/ -/******/ // no on chunks loaded -/******/ -/******/ var installChunk = (chunk) => { -/******/ var moreModules = chunk.modules, chunkIds = chunk.ids, runtime = chunk.runtime; -/******/ for(var moduleId in moreModules) { -/******/ if(__webpack_require__.o(moreModules, moduleId)) { -/******/ __webpack_require__.m[moduleId] = moreModules[moduleId]; -/******/ } -/******/ } -/******/ if(runtime) runtime(__webpack_require__); -/******/ for(var i = 0; i < chunkIds.length; i++) -/******/ installedChunks[chunkIds[i]] = 1; -/******/ -/******/ }; -/******/ -/******/ // require() chunk loading for javascript -/******/ __webpack_require__.f.require = (chunkId, promises) => { -/******/ // "1" is the signal for "already loaded" -/******/ if(!installedChunks[chunkId]) { -/******/ if("webpack-runtime" != chunkId) { -/******/ installChunk(require("./" + __webpack_require__.u(chunkId))); -/******/ } else installedChunks[chunkId] = 1; -/******/ } -/******/ }; -/******/ -/******/ module.exports = __webpack_require__; -/******/ __webpack_require__.C = installChunk; -/******/ -/******/ // no HMR -/******/ -/******/ // no HMR manifest -/******/ })(); -/******/ -/************************************************************************/ -/******/ -/******/ -/******/ })() -; \ No newline at end of file diff --git a/frontend/.next/trace b/frontend/.next/trace index f49bef76..a59d66c0 100644 --- a/frontend/.next/trace +++ b/frontend/.next/trace @@ -1,17 +1,2 @@ -[{"name":"hot-reloader","duration":24,"timestamp":6741452849894,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776348399886,"traceId":"bd498e2bd237b710"},{"name":"start","duration":0,"timestamp":6741452850343,"id":4,"parentId":3,"tags":{},"startTime":1776348399886,"traceId":"bd498e2bd237b710"},{"name":"get-version-info","duration":425045,"timestamp":6741452850433,"id":5,"parentId":4,"tags":{},"startTime":1776348399886,"traceId":"bd498e2bd237b710"},{"name":"clean","duration":139123,"timestamp":6741453275523,"id":6,"parentId":4,"tags":{},"startTime":1776348400311,"traceId":"bd498e2bd237b710"},{"name":"create-pages-mapping","duration":100,"timestamp":6741453415249,"id":8,"parentId":7,"tags":{},"startTime":1776348400451,"traceId":"bd498e2bd237b710"},{"name":"create-entrypoints","duration":211350,"timestamp":6741453415360,"id":9,"parentId":7,"tags":{},"startTime":1776348400451,"traceId":"bd498e2bd237b710"},{"name":"generate-webpack-config","duration":58008,"timestamp":6741453626737,"id":10,"parentId":7,"tags":{},"startTime":1776348400662,"traceId":"bd498e2bd237b710"},{"name":"get-webpack-config","duration":269548,"timestamp":6741453415207,"id":7,"parentId":4,"tags":{},"startTime":1776348400451,"traceId":"bd498e2bd237b710"},{"name":"make","duration":496,"timestamp":6741453720841,"id":12,"parentId":11,"tags":{},"startTime":1776348400756,"traceId":"bd498e2bd237b710"},{"name":"chunk-graph","duration":323,"timestamp":6741453722580,"id":14,"parentId":13,"tags":{},"startTime":1776348400758,"traceId":"bd498e2bd237b710"},{"name":"optimize-modules","duration":9,"timestamp":6741453722956,"id":16,"parentId":13,"tags":{},"startTime":1776348400759,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunks","duration":56,"timestamp":6741453723045,"id":17,"parentId":13,"tags":{},"startTime":1776348400759,"traceId":"bd498e2bd237b710"},{"name":"optimize-tree","duration":9,"timestamp":6741453723128,"id":18,"parentId":13,"tags":{},"startTime":1776348400759,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunk-modules","duration":10,"timestamp":6741453723221,"id":19,"parentId":13,"tags":{},"startTime":1776348400759,"traceId":"bd498e2bd237b710"},{"name":"optimize","duration":334,"timestamp":6741453722936,"id":15,"parentId":13,"tags":{},"startTime":1776348400759,"traceId":"bd498e2bd237b710"},{"name":"module-hash","duration":45,"timestamp":6741453723546,"id":20,"parentId":13,"tags":{},"startTime":1776348400759,"traceId":"bd498e2bd237b710"},{"name":"code-generation","duration":101,"timestamp":6741453723601,"id":21,"parentId":13,"tags":{},"startTime":1776348400759,"traceId":"bd498e2bd237b710"},{"name":"hash","duration":211,"timestamp":6741453723817,"id":22,"parentId":13,"tags":{},"startTime":1776348400759,"traceId":"bd498e2bd237b710"},{"name":"code-generation-jobs","duration":27,"timestamp":6741453724027,"id":23,"parentId":13,"tags":{},"startTime":1776348400760,"traceId":"bd498e2bd237b710"},{"name":"module-assets","duration":33,"timestamp":6741453724043,"id":24,"parentId":13,"tags":{},"startTime":1776348400760,"traceId":"bd498e2bd237b710"},{"name":"create-chunk-assets","duration":122,"timestamp":6741453724080,"id":25,"parentId":13,"tags":{},"startTime":1776348400760,"traceId":"bd498e2bd237b710"},{"name":"NextJsBuildManifest-generateClientManifest","duration":653,"timestamp":6741453753737,"id":27,"parentId":11,"tags":{},"startTime":1776348400789,"traceId":"bd498e2bd237b710"},{"name":"NextJsBuildManifest-createassets","duration":895,"timestamp":6741453753505,"id":26,"parentId":11,"tags":{},"startTime":1776348400789,"traceId":"bd498e2bd237b710"},{"name":"seal","duration":32437,"timestamp":6741453722483,"id":13,"parentId":11,"tags":{},"startTime":1776348400758,"traceId":"bd498e2bd237b710"},{"name":"webpack-compilation","duration":35716,"timestamp":6741453719323,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776348400755,"traceId":"bd498e2bd237b710"},{"name":"emit","duration":2804,"timestamp":6741453755229,"id":28,"parentId":3,"tags":{},"startTime":1776348400791,"traceId":"bd498e2bd237b710"},{"name":"make","duration":765,"timestamp":6741453762591,"id":30,"parentId":29,"tags":{},"startTime":1776348400798,"traceId":"bd498e2bd237b710"},{"name":"chunk-graph","duration":14,"timestamp":6741453763569,"id":32,"parentId":31,"tags":{},"startTime":1776348400799,"traceId":"bd498e2bd237b710"},{"name":"optimize-modules","duration":2,"timestamp":6741453763594,"id":34,"parentId":31,"tags":{},"startTime":1776348400799,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunks","duration":28,"timestamp":6741453763625,"id":35,"parentId":31,"tags":{},"startTime":1776348400799,"traceId":"bd498e2bd237b710"},{"name":"optimize-tree","duration":4,"timestamp":6741453763671,"id":36,"parentId":31,"tags":{},"startTime":1776348400799,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunk-modules","duration":23,"timestamp":6741453763698,"id":37,"parentId":31,"tags":{},"startTime":1776348400799,"traceId":"bd498e2bd237b710"},{"name":"optimize","duration":161,"timestamp":6741453763590,"id":33,"parentId":31,"tags":{},"startTime":1776348400799,"traceId":"bd498e2bd237b710"},{"name":"module-hash","duration":4,"timestamp":6741453763814,"id":38,"parentId":31,"tags":{},"startTime":1776348400799,"traceId":"bd498e2bd237b710"},{"name":"code-generation","duration":3,"timestamp":6741453763823,"id":39,"parentId":31,"tags":{},"startTime":1776348400799,"traceId":"bd498e2bd237b710"},{"name":"hash","duration":51,"timestamp":6741453763845,"id":40,"parentId":31,"tags":{},"startTime":1776348400799,"traceId":"bd498e2bd237b710"},{"name":"code-generation-jobs","duration":23,"timestamp":6741453763896,"id":41,"parentId":31,"tags":{},"startTime":1776348400800,"traceId":"bd498e2bd237b710"},{"name":"module-assets","duration":6,"timestamp":6741453763915,"id":42,"parentId":31,"tags":{},"startTime":1776348400800,"traceId":"bd498e2bd237b710"},{"name":"create-chunk-assets","duration":7,"timestamp":6741453763924,"id":43,"parentId":31,"tags":{},"startTime":1776348400800,"traceId":"bd498e2bd237b710"},{"name":"seal","duration":835,"timestamp":6741453763518,"id":31,"parentId":29,"tags":{},"startTime":1776348400799,"traceId":"bd498e2bd237b710"},{"name":"webpack-compilation","duration":2515,"timestamp":6741453761905,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776348400798,"traceId":"bd498e2bd237b710"},{"name":"emit","duration":2845,"timestamp":6741453764452,"id":44,"parentId":3,"tags":{},"startTime":1776348400800,"traceId":"bd498e2bd237b710"},{"name":"make","duration":75,"timestamp":6741453769525,"id":46,"parentId":45,"tags":{},"startTime":1776348400805,"traceId":"bd498e2bd237b710"},{"name":"chunk-graph","duration":11,"timestamp":6741453769840,"id":48,"parentId":47,"tags":{},"startTime":1776348400805,"traceId":"bd498e2bd237b710"},{"name":"optimize-modules","duration":2,"timestamp":6741453769859,"id":50,"parentId":47,"tags":{},"startTime":1776348400805,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunks","duration":4,"timestamp":6741453769884,"id":51,"parentId":47,"tags":{},"startTime":1776348400806,"traceId":"bd498e2bd237b710"},{"name":"optimize-tree","duration":2,"timestamp":6741453769893,"id":52,"parentId":47,"tags":{},"startTime":1776348400806,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6741453769905,"id":53,"parentId":47,"tags":{},"startTime":1776348400806,"traceId":"bd498e2bd237b710"},{"name":"optimize","duration":59,"timestamp":6741453769856,"id":49,"parentId":47,"tags":{},"startTime":1776348400805,"traceId":"bd498e2bd237b710"},{"name":"module-hash","duration":7,"timestamp":6741453769957,"id":54,"parentId":47,"tags":{},"startTime":1776348400806,"traceId":"bd498e2bd237b710"},{"name":"code-generation","duration":3,"timestamp":6741453769968,"id":55,"parentId":47,"tags":{},"startTime":1776348400806,"traceId":"bd498e2bd237b710"},{"name":"hash","duration":36,"timestamp":6741453769992,"id":56,"parentId":47,"tags":{},"startTime":1776348400806,"traceId":"bd498e2bd237b710"},{"name":"code-generation-jobs","duration":8,"timestamp":6741453770028,"id":57,"parentId":47,"tags":{},"startTime":1776348400806,"traceId":"bd498e2bd237b710"},{"name":"module-assets","duration":4,"timestamp":6741453770034,"id":58,"parentId":47,"tags":{},"startTime":1776348400806,"traceId":"bd498e2bd237b710"},{"name":"create-chunk-assets","duration":6,"timestamp":6741453770040,"id":59,"parentId":47,"tags":{},"startTime":1776348400806,"traceId":"bd498e2bd237b710"},{"name":"seal","duration":475,"timestamp":6741453769825,"id":47,"parentId":45,"tags":{},"startTime":1776348400805,"traceId":"bd498e2bd237b710"},{"name":"webpack-compilation","duration":1548,"timestamp":6741453768774,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776348400804,"traceId":"bd498e2bd237b710"},{"name":"emit","duration":495,"timestamp":6741453770339,"id":60,"parentId":3,"tags":{},"startTime":1776348400806,"traceId":"bd498e2bd237b710"}] -[{"name":"make","duration":138,"timestamp":6741453984724,"id":65,"parentId":64,"tags":{},"startTime":1776348401020,"traceId":"bd498e2bd237b710"},{"name":"chunk-graph","duration":13,"timestamp":6741453984939,"id":67,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"optimize-modules","duration":2,"timestamp":6741453984960,"id":69,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunks","duration":4,"timestamp":6741453984970,"id":70,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"optimize-tree","duration":2,"timestamp":6741453984979,"id":71,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6741453984990,"id":72,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"optimize","duration":45,"timestamp":6741453984957,"id":68,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"module-hash","duration":4,"timestamp":6741453985047,"id":73,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"code-generation","duration":3,"timestamp":6741453985054,"id":74,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"hash","duration":23,"timestamp":6741453985072,"id":75,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"code-generation-jobs","duration":7,"timestamp":6741453985095,"id":76,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"module-assets","duration":3,"timestamp":6741453985100,"id":77,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"create-chunk-assets","duration":7,"timestamp":6741453985106,"id":78,"parentId":66,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"NextJsBuildManifest-generateClientManifest","duration":180,"timestamp":6741453985293,"id":80,"parentId":64,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"NextJsBuildManifest-createassets","duration":201,"timestamp":6741453985274,"id":79,"parentId":64,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"seal","duration":615,"timestamp":6741453984926,"id":66,"parentId":64,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"webpack-compilation","duration":1162,"timestamp":6741453984391,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776348401020,"traceId":"bd498e2bd237b710"},{"name":"setup-dev-bundler","duration":1262311,"timestamp":6741452745091,"id":2,"parentId":1,"tags":{},"startTime":1776348399781,"traceId":"bd498e2bd237b710"},{"name":"emit","duration":22666,"timestamp":6741453985562,"id":81,"parentId":61,"tags":{},"startTime":1776348401021,"traceId":"bd498e2bd237b710"},{"name":"webpack-invalidated-client","duration":26603,"timestamp":6741453982183,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776348401018,"traceId":"bd498e2bd237b710"},{"name":"make","duration":224,"timestamp":6741454009884,"id":83,"parentId":82,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"chunk-graph","duration":23,"timestamp":6741454010185,"id":85,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"optimize-modules","duration":2,"timestamp":6741454010215,"id":87,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunks","duration":89,"timestamp":6741454010249,"id":88,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"optimize-tree","duration":2,"timestamp":6741454010344,"id":89,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6741454010356,"id":90,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"optimize","duration":157,"timestamp":6741454010212,"id":86,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"module-hash","duration":4,"timestamp":6741454010517,"id":91,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"code-generation","duration":8,"timestamp":6741454010526,"id":92,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"hash","duration":27,"timestamp":6741454010549,"id":93,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"code-generation-jobs","duration":11,"timestamp":6741454010576,"id":94,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"module-assets","duration":4,"timestamp":6741454010585,"id":95,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"create-chunk-assets","duration":7,"timestamp":6741454010591,"id":96,"parentId":84,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"seal","duration":586,"timestamp":6741454010169,"id":84,"parentId":82,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"webpack-compilation","duration":1264,"timestamp":6741454009514,"id":82,"parentId":62,"tags":{"name":"server"},"startTime":1776348401045,"traceId":"bd498e2bd237b710"},{"name":"run-instrumentation-hook","duration":21,"timestamp":6741454027803,"id":98,"parentId":1,"tags":{},"startTime":1776348401063,"traceId":"bd498e2bd237b710"},{"name":"emit","duration":24831,"timestamp":6741454010789,"id":97,"parentId":62,"tags":{},"startTime":1776348401046,"traceId":"bd498e2bd237b710"},{"name":"webpack-invalidated-server","duration":53645,"timestamp":6741453982274,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776348401018,"traceId":"bd498e2bd237b710"},{"name":"make","duration":70,"timestamp":6741454037072,"id":100,"parentId":99,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"chunk-graph","duration":12,"timestamp":6741454037283,"id":102,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"optimize-modules","duration":48,"timestamp":6741454037303,"id":104,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunks","duration":5,"timestamp":6741454037360,"id":105,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"optimize-tree","duration":2,"timestamp":6741454037372,"id":106,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6741454037382,"id":107,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"optimize","duration":94,"timestamp":6741454037300,"id":103,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"module-hash","duration":4,"timestamp":6741454037439,"id":108,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"code-generation","duration":3,"timestamp":6741454037447,"id":109,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"hash","duration":23,"timestamp":6741454037463,"id":110,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"code-generation-jobs","duration":7,"timestamp":6741454037487,"id":111,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"module-assets","duration":3,"timestamp":6741454037492,"id":112,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"create-chunk-assets","duration":7,"timestamp":6741454037498,"id":113,"parentId":101,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"seal","duration":401,"timestamp":6741454037268,"id":101,"parentId":99,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"webpack-compilation","duration":971,"timestamp":6741454036711,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776348401072,"traceId":"bd498e2bd237b710"},{"name":"start-dev-server","duration":1522173,"timestamp":6741452517115,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"79659008","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"240304128","memory.heapTotal":"105955328","memory.heapUsed":"75191488"},"startTime":1776348399553,"traceId":"bd498e2bd237b710"},{"name":"emit","duration":3817,"timestamp":6741454037691,"id":114,"parentId":63,"tags":{},"startTime":1776348401073,"traceId":"bd498e2bd237b710"},{"name":"webpack-invalidated-edge-server","duration":60043,"timestamp":6741453982289,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776348401018,"traceId":"bd498e2bd237b710"}] -[{"name":"build-module","duration":36252,"timestamp":6741460116346,"id":121,"parentId":120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776348407152,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3061,"timestamp":6741460167637,"id":128,"parentId":127,"tags":{},"startTime":1776348407203,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3171,"timestamp":6741460167538,"id":127,"parentId":123,"tags":{},"startTime":1776348407203,"traceId":"bd498e2bd237b710"},{"name":"build-module-tsx","duration":5359,"timestamp":6741460166659,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"rsc"},"startTime":1776348407202,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5041,"timestamp":6741460167692,"id":130,"parentId":129,"tags":{},"startTime":1776348407203,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5097,"timestamp":6741460167639,"id":129,"parentId":124,"tags":{},"startTime":1776348407203,"traceId":"bd498e2bd237b710"},{"name":"build-module-tsx","duration":6866,"timestamp":6741460166809,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/layout.tsx","layer":"rsc"},"startTime":1776348407202,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6202,"timestamp":6741460167518,"id":126,"parentId":125,"tags":{},"startTime":1776348407203,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6586,"timestamp":6741460167135,"id":125,"parentId":122,"tags":{},"startTime":1776348407203,"traceId":"bd498e2bd237b710"},{"name":"build-module-tsx","duration":10140,"timestamp":6741460165413,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1776348407201,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6544,"timestamp":6741460169031,"id":140,"parentId":139,"tags":{},"startTime":1776348407205,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6591,"timestamp":6741460168985,"id":139,"parentId":134,"tags":{},"startTime":1776348407205,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8118,"timestamp":6741460168567,"id":134,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1776348407204,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7639,"timestamp":6741460169066,"id":142,"parentId":141,"tags":{},"startTime":1776348407205,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7673,"timestamp":6741460169033,"id":141,"parentId":135,"tags":{},"startTime":1776348407205,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10227,"timestamp":6741460168620,"id":135,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1776348407204,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":11870,"timestamp":6741460168981,"id":138,"parentId":133,"tags":{},"startTime":1776348407205,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":78,"timestamp":6741460180885,"id":143,"parentId":133,"tags":{},"startTime":1776348407217,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13689,"timestamp":6741460168453,"id":133,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776348407204,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":13190,"timestamp":6741460168963,"id":136,"parentId":131,"tags":{},"startTime":1776348407205,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":49,"timestamp":6741460182163,"id":144,"parentId":131,"tags":{},"startTime":1776348407218,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":14817,"timestamp":6741460167953,"id":131,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1776348407204,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":13810,"timestamp":6741460168977,"id":137,"parentId":132,"tags":{},"startTime":1776348407205,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":43,"timestamp":6741460182796,"id":145,"parentId":132,"tags":{},"startTime":1776348407218,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":17315,"timestamp":6741460168365,"id":132,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1776348407204,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":271,"timestamp":6741460188728,"id":146,"parentId":133,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1776348407224,"traceId":"bd498e2bd237b710"},{"name":"build-module-external","duration":19,"timestamp":6741460192963,"id":152,"parentId":132,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"build-module-external","duration":6,"timestamp":6741460192997,"id":153,"parentId":132,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"build-module-external","duration":4,"timestamp":6741460193006,"id":154,"parentId":132,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2782,"timestamp":6741460193429,"id":164,"parentId":163,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2814,"timestamp":6741460193401,"id":163,"parentId":151,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3769,"timestamp":6741460192929,"id":151,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3085,"timestamp":6741460193635,"id":166,"parentId":165,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3211,"timestamp":6741460193511,"id":165,"parentId":155,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4013,"timestamp":6741460193013,"id":155,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3676,"timestamp":6741460193366,"id":160,"parentId":159,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3730,"timestamp":6741460193314,"id":159,"parentId":149,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4427,"timestamp":6741460192788,"id":149,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1776348407228,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3827,"timestamp":6741460193399,"id":162,"parentId":161,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3857,"timestamp":6741460193370,"id":161,"parentId":150,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4605,"timestamp":6741460192884,"id":150,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4046,"timestamp":6741460193679,"id":168,"parentId":167,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4091,"timestamp":6741460193638,"id":167,"parentId":156,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5816,"timestamp":6741460193146,"id":156,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7050,"timestamp":6741460193703,"id":170,"parentId":169,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7074,"timestamp":6741460193682,"id":169,"parentId":157,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8738,"timestamp":6741460193198,"id":157,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8236,"timestamp":6741460193715,"id":172,"parentId":171,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8248,"timestamp":6741460193705,"id":171,"parentId":158,"tags":{},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8873,"timestamp":6741460193236,"id":158,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1776348407229,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":10379,"timestamp":6741460192768,"id":148,"parentId":147,"tags":{},"startTime":1776348407228,"traceId":"bd498e2bd237b710"},{"name":"build-module-css","duration":11505,"timestamp":6741460191904,"id":147,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1776348407228,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":4506,"timestamp":6741460200230,"id":178,"parentId":174,"tags":{},"startTime":1776348407236,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":37,"timestamp":6741460204744,"id":181,"parentId":174,"tags":{},"startTime":1776348407240,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5317,"timestamp":6741460199980,"id":174,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1776348407236,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":5068,"timestamp":6741460200236,"id":179,"parentId":175,"tags":{},"startTime":1776348407236,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":36,"timestamp":6741460205309,"id":182,"parentId":175,"tags":{},"startTime":1776348407241,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5455,"timestamp":6741460200045,"id":175,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1776348407236,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":5286,"timestamp":6741460200240,"id":180,"parentId":176,"tags":{},"startTime":1776348407236,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":29,"timestamp":6741460205530,"id":183,"parentId":176,"tags":{},"startTime":1776348407241,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6300,"timestamp":6741460200100,"id":176,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1776348407236,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":6188,"timestamp":6741460200217,"id":177,"parentId":173,"tags":{},"startTime":1776348407236,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":48,"timestamp":6741460206410,"id":184,"parentId":173,"tags":{},"startTime":1776348407242,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":15384,"timestamp":6741460199866,"id":173,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1776348407235,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":3844,"timestamp":6741460215679,"id":186,"parentId":185,"tags":{},"startTime":1776348407251,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":40,"timestamp":6741460219535,"id":189,"parentId":185,"tags":{},"startTime":1776348407255,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5377,"timestamp":6741460215579,"id":185,"parentId":156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1776348407251,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":6660,"timestamp":6741460218833,"id":188,"parentId":187,"tags":{},"startTime":1776348407254,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":33,"timestamp":6741460225504,"id":204,"parentId":187,"tags":{},"startTime":1776348407261,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7101,"timestamp":6741460218742,"id":187,"parentId":134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js","layer":"rsc"},"startTime":1776348407254,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":5702,"timestamp":6741460221315,"id":193,"parentId":191,"tags":{},"startTime":1776348407257,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":32,"timestamp":6741460227025,"id":205,"parentId":191,"tags":{},"startTime":1776348407263,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6184,"timestamp":6741460221220,"id":191,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1776348407257,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":6111,"timestamp":6741460221299,"id":192,"parentId":190,"tags":{},"startTime":1776348407257,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":33,"timestamp":6741460227416,"id":206,"parentId":190,"tags":{},"startTime":1776348407263,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7243,"timestamp":6741460221119,"id":190,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1776348407257,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1639,"timestamp":6741460228843,"id":215,"parentId":214,"tags":{},"startTime":1776348407264,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1674,"timestamp":6741460228811,"id":214,"parentId":210,"tags":{},"startTime":1776348407264,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2414,"timestamp":6741460228637,"id":210,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1776348407264,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":6530,"timestamp":6741460224602,"id":202,"parentId":197,"tags":{},"startTime":1776348407260,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":37,"timestamp":6741460231138,"id":218,"parentId":197,"tags":{},"startTime":1776348407267,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7710,"timestamp":6741460224422,"id":197,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1776348407260,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":7577,"timestamp":6741460224574,"id":199,"parentId":194,"tags":{},"startTime":1776348407260,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":45,"timestamp":6741460232160,"id":219,"parentId":194,"tags":{},"startTime":1776348407268,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8303,"timestamp":6741460224241,"id":194,"parentId":156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1776348407260,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":7962,"timestamp":6741460224588,"id":200,"parentId":195,"tags":{},"startTime":1776348407260,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":33,"timestamp":6741460232555,"id":220,"parentId":195,"tags":{},"startTime":1776348407268,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9180,"timestamp":6741460224323,"id":195,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1776348407260,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":8964,"timestamp":6741460224607,"id":203,"parentId":198,"tags":{},"startTime":1776348407260,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":67,"timestamp":6741460233576,"id":221,"parentId":198,"tags":{},"startTime":1776348407269,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9927,"timestamp":6741460224468,"id":198,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1776348407260,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":10052,"timestamp":6741460224596,"id":201,"parentId":196,"tags":{},"startTime":1776348407260,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":42,"timestamp":6741460234659,"id":222,"parentId":196,"tags":{},"startTime":1776348407270,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":12637,"timestamp":6741460224376,"id":196,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1776348407260,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":9342,"timestamp":6741460228677,"id":211,"parentId":207,"tags":{},"startTime":1776348407264,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":32,"timestamp":6741460238025,"id":227,"parentId":207,"tags":{},"startTime":1776348407274,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9730,"timestamp":6741460228444,"id":207,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server-edge.js","layer":"rsc"},"startTime":1776348407264,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":9488,"timestamp":6741460228690,"id":213,"parentId":209,"tags":{},"startTime":1776348407264,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":25,"timestamp":6741460238183,"id":228,"parentId":209,"tags":{},"startTime":1776348407274,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10193,"timestamp":6741460228587,"id":209,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1776348407264,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":10100,"timestamp":6741460228685,"id":212,"parentId":208,"tags":{},"startTime":1776348407264,"traceId":"bd498e2bd237b710"}] -[{"name":"next-swc-loader","duration":32,"timestamp":6741460238885,"id":229,"parentId":208,"tags":{},"startTime":1776348407275,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10526,"timestamp":6741460228529,"id":208,"parentId":135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-runtime.js","layer":"rsc"},"startTime":1776348407264,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":10485,"timestamp":6741460229647,"id":217,"parentId":216,"tags":{},"startTime":1776348407265,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":34,"timestamp":6741460240140,"id":230,"parentId":216,"tags":{},"startTime":1776348407276,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10760,"timestamp":6741460229544,"id":216,"parentId":135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react.js","layer":"rsc"},"startTime":1776348407265,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":3702,"timestamp":6741460237571,"id":226,"parentId":224,"tags":{},"startTime":1776348407273,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":34,"timestamp":6741460241281,"id":234,"parentId":224,"tags":{},"startTime":1776348407277,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3950,"timestamp":6741460237473,"id":224,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.js","layer":"rsc"},"startTime":1776348407273,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":3904,"timestamp":6741460237560,"id":225,"parentId":223,"tags":{},"startTime":1776348407273,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1757,"timestamp":6741460240659,"id":233,"parentId":232,"tags":{},"startTime":1776348407276,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1808,"timestamp":6741460240611,"id":232,"parentId":231,"tags":{},"startTime":1776348407276,"traceId":"bd498e2bd237b710"},{"name":"build-module-tsx","duration":2389,"timestamp":6741460240438,"id":231,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1776348407276,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2636,"timestamp":6741460241526,"id":236,"parentId":235,"tags":{},"startTime":1776348407277,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2699,"timestamp":6741460241467,"id":235,"parentId":223,"tags":{},"startTime":1776348407277,"traceId":"bd498e2bd237b710"},{"name":"build-module-mjs","duration":7549,"timestamp":6741460237181,"id":223,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1776348407273,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":3386,"timestamp":6741460242094,"id":238,"parentId":237,"tags":{},"startTime":1776348407278,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":31,"timestamp":6741460245486,"id":239,"parentId":237,"tags":{},"startTime":1776348407281,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4722,"timestamp":6741460241918,"id":237,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1776348407278,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":711,"timestamp":6741460247288,"id":241,"parentId":240,"tags":{},"startTime":1776348407283,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":26,"timestamp":6741460248004,"id":246,"parentId":240,"tags":{},"startTime":1776348407284,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":922,"timestamp":6741460247212,"id":240,"parentId":174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-dom.js","layer":"rsc"},"startTime":1776348407283,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":646,"timestamp":6741460247655,"id":243,"parentId":242,"tags":{},"startTime":1776348407283,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":24,"timestamp":6741460248305,"id":247,"parentId":242,"tags":{},"startTime":1776348407284,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":908,"timestamp":6741460247601,"id":242,"parentId":135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1776348407283,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":629,"timestamp":6741460247957,"id":245,"parentId":244,"tags":{},"startTime":1776348407284,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":39,"timestamp":6741460248589,"id":248,"parentId":244,"tags":{},"startTime":1776348407284,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8460,"timestamp":6741460247902,"id":244,"parentId":196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1776348407284,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":155636,"timestamp":6741460101419,"id":120,"parentId":119,"tags":{"request":"next-app-loader?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776348407137,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":1779,"timestamp":6741460280685,"id":254,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776348407316,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":191,"timestamp":6741460282490,"id":255,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?server=true!","layer":"ssr"},"startTime":1776348407318,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":1091,"timestamp":6741460282694,"id":256,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776348407318,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":2121,"timestamp":6741460283801,"id":257,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776348407319,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":12,"timestamp":6741460294765,"id":283,"parentId":282,"tags":{},"startTime":1776348407330,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5337,"timestamp":6741460289972,"id":260,"parentId":259,"tags":{},"startTime":1776348407326,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5469,"timestamp":6741460289846,"id":259,"parentId":258,"tags":{},"startTime":1776348407325,"traceId":"bd498e2bd237b710"},{"name":"build-module-tsx","duration":10672,"timestamp":6741460288875,"id":258,"parentId":254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"ssr"},"startTime":1776348407324,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6522,"timestamp":6741460293068,"id":269,"parentId":268,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6584,"timestamp":6741460293007,"id":268,"parentId":261,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"build-module-tsx","duration":8198,"timestamp":6741460292257,"id":261,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1776348407328,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7356,"timestamp":6741460293115,"id":273,"parentId":272,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7374,"timestamp":6741460293098,"id":272,"parentId":263,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8064,"timestamp":6741460292852,"id":263,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1776348407328,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7858,"timestamp":6741460293096,"id":271,"parentId":270,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7885,"timestamp":6741460293071,"id":270,"parentId":262,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10039,"timestamp":6741460292415,"id":262,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1776348407328,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9322,"timestamp":6741460293148,"id":279,"parentId":278,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9332,"timestamp":6741460293139,"id":278,"parentId":266,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9910,"timestamp":6741460292958,"id":266,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":17846,"timestamp":6741460293162,"id":281,"parentId":280,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":17863,"timestamp":6741460293149,"id":280,"parentId":267,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":18910,"timestamp":6741460292980,"id":267,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":16879,"timestamp":6741460295072,"id":285,"parentId":284,"tags":{},"startTime":1776348407331,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":17154,"timestamp":6741460294798,"id":284,"parentId":282,"tags":{},"startTime":1776348407330,"traceId":"bd498e2bd237b710"},{"name":"build-module-mjs","duration":20210,"timestamp":6741460293574,"id":282,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":20694,"timestamp":6741460293137,"id":277,"parentId":276,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":20705,"timestamp":6741460293128,"id":276,"parentId":265,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":22912,"timestamp":6741460292932,"id":265,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":22761,"timestamp":6741460293126,"id":275,"parentId":274,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":22772,"timestamp":6741460293116,"id":274,"parentId":264,"tags":{},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":25228,"timestamp":6741460292896,"id":264,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1776348407329,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":69,"timestamp":6741460321926,"id":288,"parentId":286,"tags":{},"startTime":1776348407358,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":33,"timestamp":6741460322003,"id":291,"parentId":286,"tags":{},"startTime":1776348407358,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":464,"timestamp":6741460321788,"id":286,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1776348407357,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5915,"timestamp":6741460321952,"id":290,"parentId":289,"tags":{},"startTime":1776348407358,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5944,"timestamp":6741460321928,"id":289,"parentId":287,"tags":{},"startTime":1776348407358,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6457,"timestamp":6741460321884,"id":287,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1776348407358,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3509,"timestamp":6741460326101,"id":297,"parentId":296,"tags":{},"startTime":1776348407362,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3526,"timestamp":6741460326087,"id":296,"parentId":293,"tags":{},"startTime":1776348407362,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3939,"timestamp":6741460325961,"id":293,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1776348407362,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3862,"timestamp":6741460326085,"id":295,"parentId":294,"tags":{},"startTime":1776348407362,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3892,"timestamp":6741460326056,"id":294,"parentId":292,"tags":{},"startTime":1776348407362,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4689,"timestamp":6741460325891,"id":292,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1776348407362,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3496,"timestamp":6741460328901,"id":313,"parentId":312,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3506,"timestamp":6741460328894,"id":312,"parentId":300,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4016,"timestamp":6741460328671,"id":300,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1776348407364,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3807,"timestamp":6741460328893,"id":311,"parentId":310,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3816,"timestamp":6741460328884,"id":310,"parentId":299,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4295,"timestamp":6741460328644,"id":299,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1776348407364,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4041,"timestamp":6741460328909,"id":315,"parentId":314,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4049,"timestamp":6741460328902,"id":314,"parentId":301,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4390,"timestamp":6741460328692,"id":301,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1776348407364,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4208,"timestamp":6741460328882,"id":309,"parentId":308,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4236,"timestamp":6741460328855,"id":308,"parentId":298,"tags":{},"startTime":1776348407364,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4689,"timestamp":6741460328591,"id":298,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1776348407364,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4344,"timestamp":6741460328943,"id":323,"parentId":322,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4351,"timestamp":6741460328937,"id":322,"parentId":305,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4760,"timestamp":6741460328771,"id":305,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1776348407364,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4609,"timestamp":6741460328936,"id":321,"parentId":320,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4616,"timestamp":6741460328930,"id":320,"parentId":304,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5218,"timestamp":6741460328750,"id":304,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1776348407364,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5075,"timestamp":6741460328922,"id":317,"parentId":316,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5087,"timestamp":6741460328910,"id":316,"parentId":302,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5645,"timestamp":6741460328714,"id":302,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1776348407364,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5444,"timestamp":6741460328929,"id":319,"parentId":318,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5452,"timestamp":6741460328922,"id":318,"parentId":303,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6159,"timestamp":6741460328732,"id":303,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1776348407364,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7518,"timestamp":6741460328950,"id":325,"parentId":324,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7530,"timestamp":6741460328944,"id":324,"parentId":306,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8119,"timestamp":6741460328789,"id":306,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1776348407364,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7964,"timestamp":6741460328957,"id":327,"parentId":326,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7972,"timestamp":6741460328951,"id":326,"parentId":307,"tags":{},"startTime":1776348407365,"traceId":"bd498e2bd237b710"}] -[{"name":"build-module-js","duration":8530,"timestamp":6741460328805,"id":307,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1776348407364,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":443,"timestamp":6741460338355,"id":338,"parentId":328,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":481,"timestamp":6741460338359,"id":339,"parentId":329,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":292,"timestamp":6741460338805,"id":356,"parentId":328,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":258,"timestamp":6741460338843,"id":357,"parentId":329,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1997,"timestamp":6741460337882,"id":328,"parentId":287,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2111,"timestamp":6741460337968,"id":329,"parentId":287,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2358,"timestamp":6741460338633,"id":343,"parentId":342,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2370,"timestamp":6741460338623,"id":342,"parentId":331,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3237,"timestamp":6741460338053,"id":331,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"ssr"},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6563,"timestamp":6741460338652,"id":347,"parentId":346,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6575,"timestamp":6741460338644,"id":346,"parentId":333,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7443,"timestamp":6741460338093,"id":333,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"ssr"},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6909,"timestamp":6741460338643,"id":345,"parentId":344,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6919,"timestamp":6741460338635,"id":344,"parentId":332,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7779,"timestamp":6741460338073,"id":332,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7249,"timestamp":6741460338621,"id":341,"parentId":340,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7276,"timestamp":6741460338595,"id":340,"parentId":330,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8393,"timestamp":6741460338022,"id":330,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7765,"timestamp":6741460338666,"id":349,"parentId":348,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7779,"timestamp":6741460338653,"id":348,"parentId":334,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8650,"timestamp":6741460338116,"id":334,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"ssr"},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10003,"timestamp":6741460338674,"id":351,"parentId":350,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10014,"timestamp":6741460338667,"id":350,"parentId":335,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10788,"timestamp":6741460338134,"id":335,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"ssr"},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10253,"timestamp":6741460338683,"id":353,"parentId":352,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10261,"timestamp":6741460338675,"id":352,"parentId":336,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11017,"timestamp":6741460338154,"id":336,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"ssr"},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10490,"timestamp":6741460338691,"id":355,"parentId":354,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10498,"timestamp":6741460338684,"id":354,"parentId":337,"tags":{},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11303,"timestamp":6741460338172,"id":337,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"ssr"},"startTime":1776348407374,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5798,"timestamp":6741460343701,"id":363,"parentId":362,"tags":{},"startTime":1776348407379,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5809,"timestamp":6741460343691,"id":362,"parentId":359,"tags":{},"startTime":1776348407379,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6123,"timestamp":6741460343574,"id":359,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1776348407379,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6025,"timestamp":6741460343688,"id":361,"parentId":360,"tags":{},"startTime":1776348407379,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6051,"timestamp":6741460343663,"id":360,"parentId":358,"tags":{},"startTime":1776348407379,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6390,"timestamp":6741460343498,"id":358,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1776348407379,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1573,"timestamp":6741460350660,"id":368,"parentId":367,"tags":{},"startTime":1776348407386,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1601,"timestamp":6741460350634,"id":367,"parentId":364,"tags":{},"startTime":1776348407386,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2008,"timestamp":6741460350413,"id":364,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1776348407386,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1758,"timestamp":6741460350672,"id":370,"parentId":369,"tags":{},"startTime":1776348407386,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1769,"timestamp":6741460350662,"id":369,"parentId":365,"tags":{},"startTime":1776348407386,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2379,"timestamp":6741460350479,"id":365,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1776348407386,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":143,"timestamp":6741460353117,"id":380,"parentId":373,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":26,"timestamp":6741460353265,"id":392,"parentId":373,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":905,"timestamp":6741460352887,"id":373,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1839,"timestamp":6741460353164,"id":385,"parentId":384,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1851,"timestamp":6741460353154,"id":384,"parentId":375,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2341,"timestamp":6741460352988,"id":375,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4681,"timestamp":6741460350681,"id":372,"parentId":371,"tags":{},"startTime":1776348407386,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4690,"timestamp":6741460350673,"id":371,"parentId":366,"tags":{},"startTime":1776348407386,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6442,"timestamp":6741460350504,"id":366,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"ssr"},"startTime":1776348407386,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3808,"timestamp":6741460353152,"id":383,"parentId":382,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3831,"timestamp":6741460353129,"id":382,"parentId":374,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4214,"timestamp":6741460352960,"id":374,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4055,"timestamp":6741460353181,"id":389,"parentId":388,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4063,"timestamp":6741460353174,"id":388,"parentId":378,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4377,"timestamp":6741460353075,"id":378,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4595,"timestamp":6741460353173,"id":387,"parentId":386,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4605,"timestamp":6741460353165,"id":386,"parentId":377,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5288,"timestamp":6741460353056,"id":377,"parentId":293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6705,"timestamp":6741460353189,"id":391,"parentId":390,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6714,"timestamp":6741460353182,"id":390,"parentId":379,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8215,"timestamp":6741460353094,"id":379,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2909,"timestamp":6741460362604,"id":402,"parentId":401,"tags":{},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2923,"timestamp":6741460362594,"id":401,"parentId":395,"tags":{},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3696,"timestamp":6741460362050,"id":395,"parentId":299,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3313,"timestamp":6741460362591,"id":400,"parentId":399,"tags":{},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3341,"timestamp":6741460362565,"id":399,"parentId":393,"tags":{},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4496,"timestamp":6741460361940,"id":393,"parentId":298,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3838,"timestamp":6741460362623,"id":406,"parentId":405,"tags":{},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3847,"timestamp":6741460362616,"id":405,"parentId":397,"tags":{},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4858,"timestamp":6741460362115,"id":397,"parentId":303,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5990,"timestamp":6741460362614,"id":404,"parentId":403,"tags":{},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6001,"timestamp":6741460362606,"id":403,"parentId":396,"tags":{},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6752,"timestamp":6741460362071,"id":396,"parentId":298,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":15971,"timestamp":6741460353120,"id":381,"parentId":376,"tags":{},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":32,"timestamp":6741460369098,"id":430,"parentId":376,"tags":{},"startTime":1776348407405,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":16209,"timestamp":6741460353010,"id":376,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react.js","layer":"ssr"},"startTime":1776348407389,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2551,"timestamp":6741460367580,"id":423,"parentId":422,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2560,"timestamp":6741460367572,"id":422,"parentId":411,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3171,"timestamp":6741460367326,"id":411,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2957,"timestamp":6741460367549,"id":417,"parentId":416,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2982,"timestamp":6741460367526,"id":416,"parentId":408,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3485,"timestamp":6741460367252,"id":408,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3185,"timestamp":6741460367562,"id":419,"parentId":418,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3197,"timestamp":6741460367551,"id":418,"parentId":409,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3765,"timestamp":6741460367278,"id":409,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3500,"timestamp":6741460367571,"id":421,"parentId":420,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3509,"timestamp":6741460367563,"id":420,"parentId":410,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4313,"timestamp":6741460367299,"id":410,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"ssr"},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5478,"timestamp":6741460367611,"id":429,"parentId":428,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5494,"timestamp":6741460367598,"id":428,"parentId":414,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6446,"timestamp":6741460367397,"id":414,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"ssr"},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6295,"timestamp":6741460367588,"id":425,"parentId":424,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6304,"timestamp":6741460367581,"id":424,"parentId":412,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7145,"timestamp":6741460367357,"id":412,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6927,"timestamp":6741460367597,"id":427,"parentId":426,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6935,"timestamp":6741460367589,"id":426,"parentId":413,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7781,"timestamp":6741460367380,"id":413,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":13137,"timestamp":6741460362189,"id":398,"parentId":394,"tags":{},"startTime":1776348407398,"traceId":"bd498e2bd237b710"}] -[{"name":"next-swc-loader","duration":29,"timestamp":6741460375402,"id":437,"parentId":394,"tags":{},"startTime":1776348407411,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13597,"timestamp":6741460361992,"id":394,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1776348407398,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":361,"timestamp":6741460377142,"id":442,"parentId":438,"tags":{},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":416,"timestamp":6741460377519,"id":449,"parentId":438,"tags":{},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1106,"timestamp":6741460377007,"id":438,"parentId":376,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":12275,"timestamp":6741460367449,"id":415,"parentId":407,"tags":{},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":27,"timestamp":6741460379730,"id":450,"parentId":407,"tags":{},"startTime":1776348407415,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":12667,"timestamp":6741460367171,"id":407,"parentId":258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-dev-runtime.js","layer":"ssr"},"startTime":1776348407403,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2518,"timestamp":6741460377371,"id":444,"parentId":443,"tags":{},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2541,"timestamp":6741460377349,"id":443,"parentId":439,"tags":{},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3016,"timestamp":6741460377069,"id":439,"parentId":377,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2906,"timestamp":6741460377392,"id":448,"parentId":447,"tags":{},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2916,"timestamp":6741460377383,"id":447,"parentId":441,"tags":{},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3602,"timestamp":6741460377116,"id":441,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3351,"timestamp":6741460377382,"id":446,"parentId":445,"tags":{},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3361,"timestamp":6741460377373,"id":445,"parentId":440,"tags":{},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3939,"timestamp":6741460377096,"id":440,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1776348407413,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":11360,"timestamp":6741460369781,"id":433,"parentId":431,"tags":{},"startTime":1776348407405,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":41,"timestamp":6741460381145,"id":451,"parentId":431,"tags":{},"startTime":1776348407417,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11586,"timestamp":6741460369673,"id":431,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-runtime.js","layer":"ssr"},"startTime":1776348407405,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":11478,"timestamp":6741460369786,"id":434,"parentId":432,"tags":{},"startTime":1776348407405,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":27,"timestamp":6741460381267,"id":452,"parentId":432,"tags":{},"startTime":1776348407417,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11615,"timestamp":6741460369733,"id":432,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-dom.js","layer":"ssr"},"startTime":1776348407405,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":11685,"timestamp":6741460372518,"id":436,"parentId":435,"tags":{},"startTime":1776348407408,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":31,"timestamp":6741460384211,"id":469,"parentId":435,"tags":{},"startTime":1776348407420,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":12305,"timestamp":6741460372443,"id":435,"parentId":337,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1776348407408,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2530,"timestamp":6741460382240,"id":462,"parentId":461,"tags":{},"startTime":1776348407418,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2549,"timestamp":6741460382223,"id":461,"parentId":453,"tags":{},"startTime":1776348407418,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3245,"timestamp":6741460381694,"id":453,"parentId":393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1776348407417,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2825,"timestamp":6741460382251,"id":464,"parentId":463,"tags":{},"startTime":1776348407418,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2835,"timestamp":6741460382242,"id":463,"parentId":454,"tags":{},"startTime":1776348407418,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3465,"timestamp":6741460381735,"id":454,"parentId":393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1776348407417,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3284,"timestamp":6741460382267,"id":468,"parentId":467,"tags":{},"startTime":1776348407418,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3292,"timestamp":6741460382260,"id":467,"parentId":456,"tags":{},"startTime":1776348407418,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3945,"timestamp":6741460381774,"id":456,"parentId":379,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1776348407417,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3470,"timestamp":6741460382259,"id":466,"parentId":465,"tags":{},"startTime":1776348407418,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3478,"timestamp":6741460382252,"id":465,"parentId":455,"tags":{},"startTime":1776348407418,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4199,"timestamp":6741460381756,"id":455,"parentId":397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1776348407417,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1264,"timestamp":6741460386964,"id":485,"parentId":484,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1273,"timestamp":6741460386957,"id":484,"parentId":473,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1859,"timestamp":6741460386527,"id":473,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"ssr"},"startTime":1776348407422,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1617,"timestamp":6741460386947,"id":481,"parentId":480,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1627,"timestamp":6741460386938,"id":480,"parentId":471,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2402,"timestamp":6741460386477,"id":471,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"ssr"},"startTime":1776348407422,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2042,"timestamp":6741460386956,"id":483,"parentId":482,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2051,"timestamp":6741460386948,"id":482,"parentId":472,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2829,"timestamp":6741460386508,"id":472,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"ssr"},"startTime":1776348407422,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2379,"timestamp":6741460386971,"id":487,"parentId":486,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2386,"timestamp":6741460386964,"id":486,"parentId":474,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3256,"timestamp":6741460386545,"id":474,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"ssr"},"startTime":1776348407422,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5473,"timestamp":6741460386936,"id":479,"parentId":478,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5497,"timestamp":6741460386918,"id":478,"parentId":470,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7584,"timestamp":6741460386429,"id":470,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"ssr"},"startTime":1776348407422,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":13030,"timestamp":6741460381897,"id":459,"parentId":457,"tags":{},"startTime":1776348407418,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":44,"timestamp":6741460394935,"id":502,"parentId":457,"tags":{},"startTime":1776348407431,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13371,"timestamp":6741460381791,"id":457,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1776348407417,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":13262,"timestamp":6741460381905,"id":460,"parentId":458,"tags":{},"startTime":1776348407418,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":28,"timestamp":6741460395172,"id":503,"parentId":458,"tags":{},"startTime":1776348407431,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13624,"timestamp":6741460381827,"id":458,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1776348407417,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8533,"timestamp":6741460386979,"id":489,"parentId":488,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8541,"timestamp":6741460386972,"id":488,"parentId":475,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9352,"timestamp":6741460386561,"id":475,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"ssr"},"startTime":1776348407422,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8933,"timestamp":6741460386993,"id":493,"parentId":492,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8941,"timestamp":6741460386987,"id":492,"parentId":477,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9542,"timestamp":6741460386593,"id":477,"parentId":413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1776348407422,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9163,"timestamp":6741460386986,"id":491,"parentId":490,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9171,"timestamp":6741460386979,"id":490,"parentId":476,"tags":{},"startTime":1776348407423,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9851,"timestamp":6741460386577,"id":476,"parentId":414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1776348407422,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":12686,"timestamp":6741460388191,"id":495,"parentId":494,"tags":{},"startTime":1776348407424,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":30,"timestamp":6741460400884,"id":533,"parentId":494,"tags":{},"startTime":1776348407437,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":12911,"timestamp":6741460388119,"id":494,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-server-dom-webpack-client-edge.js","layer":"ssr"},"startTime":1776348407424,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":13210,"timestamp":6741460388553,"id":501,"parentId":498,"tags":{},"startTime":1776348407424,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":29,"timestamp":6741460401768,"id":534,"parentId":498,"tags":{},"startTime":1776348407437,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13368,"timestamp":6741460388503,"id":498,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/server-inserted-html.js","layer":"ssr"},"startTime":1776348407424,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2052,"timestamp":6741460400617,"id":516,"parentId":515,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2079,"timestamp":6741460400592,"id":515,"parentId":506,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2591,"timestamp":6741460400351,"id":506,"parentId":435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2317,"timestamp":6741460400639,"id":520,"parentId":519,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2326,"timestamp":6741460400631,"id":519,"parentId":508,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3048,"timestamp":6741460400409,"id":508,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"ssr"},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2858,"timestamp":6741460400630,"id":518,"parentId":517,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2869,"timestamp":6741460400620,"id":517,"parentId":507,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3442,"timestamp":6741460400386,"id":507,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"ssr"},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7776,"timestamp":6741460400664,"id":524,"parentId":523,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7796,"timestamp":6741460400648,"id":523,"parentId":510,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8369,"timestamp":6741460400447,"id":510,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"ssr"},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8157,"timestamp":6741460400673,"id":526,"parentId":525,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8166,"timestamp":6741460400665,"id":525,"parentId":511,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8685,"timestamp":6741460400465,"id":511,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"ssr"},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8490,"timestamp":6741460400681,"id":528,"parentId":527,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8499,"timestamp":6741460400674,"id":527,"parentId":512,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8952,"timestamp":6741460400482,"id":512,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"ssr"},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":20904,"timestamp":6741460388546,"id":499,"parentId":496,"tags":{},"startTime":1776348407424,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":31,"timestamp":6741460409456,"id":570,"parentId":496,"tags":{},"startTime":1776348407445,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":21154,"timestamp":6741460388410,"id":496,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/app-router-context.js","layer":"ssr"},"startTime":1776348407424,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":21020,"timestamp":6741460388550,"id":500,"parentId":497,"tags":{},"startTime":1776348407424,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":34,"timestamp":6741460409574,"id":571,"parentId":497,"tags":{},"startTime":1776348407445,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":21198,"timestamp":6741460388460,"id":497,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/hooks-client-context.js","layer":"ssr"},"startTime":1776348407424,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9149,"timestamp":6741460400689,"id":530,"parentId":529,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9157,"timestamp":6741460400682,"id":529,"parentId":513,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9573,"timestamp":6741460400500,"id":513,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"ssr"},"startTime":1776348407436,"traceId":"bd498e2bd237b710"}] -[{"name":"next-swc-transform","duration":9537,"timestamp":6741460400647,"id":522,"parentId":521,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9546,"timestamp":6741460400640,"id":521,"parentId":509,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10700,"timestamp":6741460400428,"id":509,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"ssr"},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10447,"timestamp":6741460400717,"id":532,"parentId":531,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10476,"timestamp":6741460400689,"id":531,"parentId":514,"tags":{},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"build-module-ts","duration":11449,"timestamp":6741460400517,"id":514,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776348407436,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9670,"timestamp":6741460402307,"id":551,"parentId":550,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9679,"timestamp":6741460402300,"id":550,"parentId":537,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10268,"timestamp":6741460401992,"id":537,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9975,"timestamp":6741460402296,"id":549,"parentId":548,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9985,"timestamp":6741460402288,"id":548,"parentId":536,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10605,"timestamp":6741460401972,"id":536,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"ssr"},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10275,"timestamp":6741460402315,"id":553,"parentId":552,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10283,"timestamp":6741460402308,"id":552,"parentId":538,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10986,"timestamp":6741460402010,"id":538,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10684,"timestamp":6741460402323,"id":555,"parentId":554,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10692,"timestamp":6741460402316,"id":554,"parentId":539,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11401,"timestamp":6741460402027,"id":539,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/fast-refresh-reducer.js","layer":"ssr"},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":11096,"timestamp":6741460402340,"id":559,"parentId":558,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":11104,"timestamp":6741460402333,"id":558,"parentId":542,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11561,"timestamp":6741460402095,"id":542,"parentId":472,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":11389,"timestamp":6741460402286,"id":547,"parentId":546,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":11405,"timestamp":6741460402271,"id":546,"parentId":535,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":12655,"timestamp":6741460401941,"id":535,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":12281,"timestamp":6741460402332,"id":557,"parentId":556,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":12290,"timestamp":6741460402324,"id":556,"parentId":540,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13205,"timestamp":6741460402043,"id":540,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"ssr"},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":12901,"timestamp":6741460402356,"id":563,"parentId":562,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":12909,"timestamp":6741460402349,"id":562,"parentId":544,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13307,"timestamp":6741460402129,"id":544,"parentId":474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"ssr"},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":13221,"timestamp":6741460402348,"id":561,"parentId":560,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":13229,"timestamp":6741460402341,"id":560,"parentId":543,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13693,"timestamp":6741460402113,"id":543,"parentId":472,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"ssr"},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9769,"timestamp":6741460406046,"id":569,"parentId":568,"tags":{},"startTime":1776348407442,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9814,"timestamp":6741460406003,"id":568,"parentId":565,"tags":{},"startTime":1776348407442,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10321,"timestamp":6741460405832,"id":565,"parentId":476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"ssr"},"startTime":1776348407441,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10183,"timestamp":6741460406001,"id":567,"parentId":566,"tags":{},"startTime":1776348407442,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10205,"timestamp":6741460405981,"id":566,"parentId":564,"tags":{},"startTime":1776348407442,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10889,"timestamp":6741460405754,"id":564,"parentId":477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1776348407441,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":28268,"timestamp":6741460399077,"id":505,"parentId":504,"tags":{},"startTime":1776348407435,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":38,"timestamp":6741460427359,"id":572,"parentId":504,"tags":{},"startTime":1776348407463,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":28764,"timestamp":6741460399007,"id":504,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1776348407435,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":26839,"timestamp":6741460402151,"id":545,"parentId":541,"tags":{},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":27,"timestamp":6741460428997,"id":573,"parentId":541,"tags":{},"startTime":1776348407465,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":27121,"timestamp":6741460402059,"id":541,"parentId":258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1776348407438,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4666,"timestamp":6741460431091,"id":576,"parentId":575,"tags":{},"startTime":1776348407467,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4697,"timestamp":6741460431065,"id":575,"parentId":574,"tags":{},"startTime":1776348407467,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5152,"timestamp":6741460430942,"id":574,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"ssr"},"startTime":1776348407467,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2365,"timestamp":6741460434185,"id":594,"parentId":593,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2374,"timestamp":6741460434177,"id":593,"parentId":581,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2788,"timestamp":6741460433987,"id":581,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"ssr"},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2634,"timestamp":6741460434152,"id":588,"parentId":587,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2660,"timestamp":6741460434126,"id":587,"parentId":578,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3017,"timestamp":6741460433905,"id":578,"parentId":509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2757,"timestamp":6741460434176,"id":592,"parentId":591,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2766,"timestamp":6741460434168,"id":591,"parentId":580,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3301,"timestamp":6741460433968,"id":580,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"ssr"},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3755,"timestamp":6741460434212,"id":598,"parentId":597,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3766,"timestamp":6741460434204,"id":597,"parentId":583,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4238,"timestamp":6741460434025,"id":583,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4083,"timestamp":6741460434193,"id":596,"parentId":595,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4091,"timestamp":6741460434186,"id":595,"parentId":582,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4919,"timestamp":6741460434006,"id":582,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5372,"timestamp":6741460434220,"id":600,"parentId":599,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5381,"timestamp":6741460434213,"id":599,"parentId":584,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5805,"timestamp":6741460434042,"id":584,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"ssr"},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3456,"timestamp":6741460436400,"id":609,"parentId":608,"tags":{},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3480,"timestamp":6741460436377,"id":608,"parentId":603,"tags":{},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3770,"timestamp":6741460436178,"id":603,"parentId":506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3541,"timestamp":6741460436415,"id":611,"parentId":610,"tags":{},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3555,"timestamp":6741460436402,"id":610,"parentId":604,"tags":{},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3881,"timestamp":6741460436239,"id":604,"parentId":565,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"ssr"},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6001,"timestamp":6741460434167,"id":590,"parentId":589,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6015,"timestamp":6741460434154,"id":589,"parentId":579,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7408,"timestamp":6741460433942,"id":579,"parentId":537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7133,"timestamp":6741460434228,"id":602,"parentId":601,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7141,"timestamp":6741460434221,"id":601,"parentId":585,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7584,"timestamp":6741460434059,"id":585,"parentId":509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"ssr"},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6431,"timestamp":6741460436425,"id":613,"parentId":612,"tags":{},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6443,"timestamp":6741460436416,"id":612,"parentId":605,"tags":{},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6865,"timestamp":6741460436280,"id":605,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6729,"timestamp":6741460436434,"id":615,"parentId":614,"tags":{},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6738,"timestamp":6741460436426,"id":614,"parentId":606,"tags":{},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7141,"timestamp":6741460436302,"id":606,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"ssr"},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7011,"timestamp":6741460436442,"id":617,"parentId":616,"tags":{},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7019,"timestamp":6741460436435,"id":616,"parentId":607,"tags":{},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7278,"timestamp":6741460436322,"id":607,"parentId":544,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1776348407472,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5787,"timestamp":6741460437821,"id":625,"parentId":624,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5807,"timestamp":6741460437802,"id":624,"parentId":618,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6328,"timestamp":6741460437433,"id":618,"parentId":512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"ssr"},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5935,"timestamp":6741460437833,"id":627,"parentId":626,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5945,"timestamp":6741460437823,"id":626,"parentId":619,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6505,"timestamp":6741460437508,"id":619,"parentId":512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"ssr"},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6182,"timestamp":6741460437842,"id":629,"parentId":628,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6191,"timestamp":6741460437834,"id":628,"parentId":620,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6647,"timestamp":6741460437563,"id":620,"parentId":512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"ssr"},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7252,"timestamp":6741460437850,"id":631,"parentId":630,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7267,"timestamp":6741460437843,"id":630,"parentId":621,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7818,"timestamp":6741460437585,"id":621,"parentId":512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"ssr"},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7557,"timestamp":6741460437860,"id":633,"parentId":632,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7568,"timestamp":6741460437851,"id":632,"parentId":622,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"}] -[{"name":"build-module-js","duration":8089,"timestamp":6741460437604,"id":622,"parentId":509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"ssr"},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7844,"timestamp":6741460437868,"id":635,"parentId":634,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7852,"timestamp":6741460437861,"id":634,"parentId":623,"tags":{},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8730,"timestamp":6741460437621,"id":623,"parentId":509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"ssr"},"startTime":1776348407473,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":17151,"timestamp":6741460434086,"id":586,"parentId":577,"tags":{},"startTime":1776348407470,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":38,"timestamp":6741460451250,"id":636,"parentId":577,"tags":{},"startTime":1776348407487,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":17811,"timestamp":6741460433821,"id":577,"parentId":542,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1776348407469,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2485,"timestamp":6741460454397,"id":643,"parentId":642,"tags":{},"startTime":1776348407490,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2517,"timestamp":6741460454370,"id":642,"parentId":640,"tags":{},"startTime":1776348407490,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3080,"timestamp":6741460454256,"id":640,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1776348407490,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5376,"timestamp":6741460452169,"id":639,"parentId":638,"tags":{},"startTime":1776348407488,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5411,"timestamp":6741460452135,"id":638,"parentId":637,"tags":{},"startTime":1776348407488,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8031,"timestamp":6741460452033,"id":637,"parentId":541,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1776348407488,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6555,"timestamp":6741460454417,"id":645,"parentId":644,"tags":{},"startTime":1776348407490,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6577,"timestamp":6741460454400,"id":644,"parentId":641,"tags":{},"startTime":1776348407490,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7701,"timestamp":6741460454322,"id":641,"parentId":585,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"ssr"},"startTime":1776348407490,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6757,"timestamp":6741460455328,"id":648,"parentId":647,"tags":{},"startTime":1776348407491,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6776,"timestamp":6741460455311,"id":647,"parentId":646,"tags":{},"startTime":1776348407491,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7115,"timestamp":6741460455252,"id":646,"parentId":623,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"ssr"},"startTime":1776348407491,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9216,"timestamp":6741460456799,"id":652,"parentId":651,"tags":{},"startTime":1776348407492,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9252,"timestamp":6741460456767,"id":651,"parentId":649,"tags":{},"startTime":1776348407492,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9677,"timestamp":6741460456637,"id":649,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"ssr"},"startTime":1776348407492,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9516,"timestamp":6741460456817,"id":654,"parentId":653,"tags":{},"startTime":1776348407492,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9533,"timestamp":6741460456801,"id":653,"parentId":650,"tags":{},"startTime":1776348407492,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9817,"timestamp":6741460456707,"id":650,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"ssr"},"startTime":1776348407492,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3913,"timestamp":6741460463300,"id":659,"parentId":658,"tags":{},"startTime":1776348407499,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3944,"timestamp":6741460463271,"id":658,"parentId":655,"tags":{},"startTime":1776348407499,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4579,"timestamp":6741460462880,"id":655,"parentId":577,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1776348407499,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4143,"timestamp":6741460463327,"id":663,"parentId":662,"tags":{},"startTime":1776348407499,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4155,"timestamp":6741460463316,"id":662,"parentId":657,"tags":{},"startTime":1776348407499,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4724,"timestamp":6741460462981,"id":657,"parentId":509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"ssr"},"startTime":1776348407499,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4408,"timestamp":6741460463315,"id":661,"parentId":660,"tags":{},"startTime":1776348407499,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4421,"timestamp":6741460463302,"id":660,"parentId":656,"tags":{},"startTime":1776348407499,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5595,"timestamp":6741460462944,"id":656,"parentId":512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"ssr"},"startTime":1776348407499,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1930,"timestamp":6741460469506,"id":668,"parentId":667,"tags":{},"startTime":1776348407505,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1960,"timestamp":6741460469478,"id":667,"parentId":664,"tags":{},"startTime":1776348407505,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2761,"timestamp":6741460468920,"id":664,"parentId":474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1776348407505,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2170,"timestamp":6741460469520,"id":670,"parentId":669,"tags":{},"startTime":1776348407505,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2183,"timestamp":6741460469508,"id":669,"parentId":665,"tags":{},"startTime":1776348407505,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3004,"timestamp":6741460468990,"id":665,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"ssr"},"startTime":1776348407505,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2472,"timestamp":6741460469531,"id":672,"parentId":671,"tags":{},"startTime":1776348407505,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2482,"timestamp":6741460469521,"id":671,"parentId":666,"tags":{},"startTime":1776348407505,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3232,"timestamp":6741460469024,"id":666,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"ssr"},"startTime":1776348407505,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2597,"timestamp":6741460482175,"id":678,"parentId":677,"tags":{},"startTime":1776348407518,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2612,"timestamp":6741460482164,"id":677,"parentId":674,"tags":{},"startTime":1776348407518,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3126,"timestamp":6741460482073,"id":674,"parentId":512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"ssr"},"startTime":1776348407518,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3062,"timestamp":6741460482162,"id":676,"parentId":675,"tags":{},"startTime":1776348407518,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3088,"timestamp":6741460482137,"id":675,"parentId":673,"tags":{},"startTime":1776348407518,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3620,"timestamp":6741460482000,"id":673,"parentId":510,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"ssr"},"startTime":1776348407518,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2596,"timestamp":6741460486903,"id":693,"parentId":692,"tags":{},"startTime":1776348407523,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2608,"timestamp":6741460486895,"id":692,"parentId":682,"tags":{},"startTime":1776348407523,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3159,"timestamp":6741460486695,"id":682,"parentId":637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1776348407522,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2987,"timestamp":6741460486878,"id":689,"parentId":688,"tags":{},"startTime":1776348407523,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2998,"timestamp":6741460486868,"id":688,"parentId":680,"tags":{},"startTime":1776348407522,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3419,"timestamp":6741460486642,"id":680,"parentId":637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1776348407522,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3210,"timestamp":6741460486865,"id":687,"parentId":686,"tags":{},"startTime":1776348407522,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3238,"timestamp":6741460486838,"id":686,"parentId":679,"tags":{},"startTime":1776348407522,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3913,"timestamp":6741460486570,"id":679,"parentId":637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1776348407522,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4548,"timestamp":6741460486889,"id":691,"parentId":690,"tags":{},"startTime":1776348407523,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4559,"timestamp":6741460486879,"id":690,"parentId":681,"tags":{},"startTime":1776348407523,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5237,"timestamp":6741460486671,"id":681,"parentId":637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1776348407522,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5354,"timestamp":6741460486919,"id":697,"parentId":696,"tags":{},"startTime":1776348407523,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5363,"timestamp":6741460486912,"id":696,"parentId":684,"tags":{},"startTime":1776348407523,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5659,"timestamp":6741460486746,"id":684,"parentId":637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1776348407522,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5511,"timestamp":6741460486911,"id":695,"parentId":694,"tags":{},"startTime":1776348407523,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5520,"timestamp":6741460486904,"id":694,"parentId":683,"tags":{},"startTime":1776348407523,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6300,"timestamp":6741460486726,"id":683,"parentId":637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1776348407522,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6127,"timestamp":6741460486927,"id":699,"parentId":698,"tags":{},"startTime":1776348407523,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6135,"timestamp":6741460486920,"id":698,"parentId":685,"tags":{},"startTime":1776348407523,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6998,"timestamp":6741460486764,"id":685,"parentId":637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1776348407522,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4402,"timestamp":6741460489374,"id":706,"parentId":705,"tags":{},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4425,"timestamp":6741460489351,"id":705,"parentId":700,"tags":{},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4961,"timestamp":6741460489186,"id":700,"parentId":656,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"ssr"},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4779,"timestamp":6741460489386,"id":708,"parentId":707,"tags":{},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4790,"timestamp":6741460489375,"id":707,"parentId":701,"tags":{},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5153,"timestamp":6741460489238,"id":701,"parentId":649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"ssr"},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7394,"timestamp":6741460489395,"id":710,"parentId":709,"tags":{},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7404,"timestamp":6741460489387,"id":709,"parentId":702,"tags":{},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8050,"timestamp":6741460489264,"id":702,"parentId":650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"ssr"},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7918,"timestamp":6741460489411,"id":714,"parentId":713,"tags":{},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7926,"timestamp":6741460489404,"id":713,"parentId":704,"tags":{},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8333,"timestamp":6741460489306,"id":704,"parentId":656,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"ssr"},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6436,"timestamp":6741460491212,"id":724,"parentId":723,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6455,"timestamp":6741460491195,"id":723,"parentId":716,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6979,"timestamp":6741460490816,"id":716,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"ssr"},"startTime":1776348407526,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8409,"timestamp":6741460489403,"id":712,"parentId":711,"tags":{},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8418,"timestamp":6741460489395,"id":711,"parentId":703,"tags":{},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8960,"timestamp":6741460489286,"id":703,"parentId":657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"ssr"},"startTime":1776348407525,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7022,"timestamp":6741460491232,"id":728,"parentId":727,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7030,"timestamp":6741460491224,"id":727,"parentId":718,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7599,"timestamp":6741460490867,"id":718,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"ssr"},"startTime":1776348407526,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7263,"timestamp":6741460491223,"id":726,"parentId":725,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7274,"timestamp":6741460491213,"id":725,"parentId":717,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7984,"timestamp":6741460490837,"id":717,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"ssr"},"startTime":1776348407526,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7726,"timestamp":6741460491240,"id":730,"parentId":729,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7734,"timestamp":6741460491233,"id":729,"parentId":719,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8288,"timestamp":6741460490884,"id":719,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"ssr"},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8007,"timestamp":6741460491248,"id":732,"parentId":731,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8015,"timestamp":6741460491241,"id":731,"parentId":720,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8507,"timestamp":6741460490902,"id":720,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"ssr"},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8165,"timestamp":6741460491256,"id":734,"parentId":733,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"}] -[{"name":"next-swc-loader","duration":8279,"timestamp":6741460491249,"id":733,"parentId":721,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8735,"timestamp":6741460490920,"id":721,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"ssr"},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6149,"timestamp":6741460501771,"id":737,"parentId":736,"tags":{},"startTime":1776348407537,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6176,"timestamp":6741460501748,"id":736,"parentId":735,"tags":{},"startTime":1776348407537,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7039,"timestamp":6741460501367,"id":735,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"ssr"},"startTime":1776348407537,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":19704,"timestamp":6741460490944,"id":722,"parentId":715,"tags":{},"startTime":1776348407527,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":41,"timestamp":6741460510655,"id":738,"parentId":715,"tags":{},"startTime":1776348407546,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":20599,"timestamp":6741460490761,"id":715,"parentId":471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1776348407526,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1374,"timestamp":6741460513424,"id":749,"parentId":748,"tags":{},"startTime":1776348407549,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1385,"timestamp":6741460513416,"id":748,"parentId":741,"tags":{},"startTime":1776348407549,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1814,"timestamp":6741460513250,"id":741,"parentId":674,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"ssr"},"startTime":1776348407549,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1658,"timestamp":6741460513415,"id":747,"parentId":746,"tags":{},"startTime":1776348407549,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1669,"timestamp":6741460513404,"id":746,"parentId":740,"tags":{},"startTime":1776348407549,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1985,"timestamp":6741460513222,"id":740,"parentId":674,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"ssr"},"startTime":1776348407549,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1816,"timestamp":6741460513401,"id":745,"parentId":744,"tags":{},"startTime":1776348407549,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1847,"timestamp":6741460513371,"id":744,"parentId":739,"tags":{},"startTime":1776348407549,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2348,"timestamp":6741460513143,"id":739,"parentId":673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1776348407549,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2661,"timestamp":6741460514600,"id":763,"parentId":762,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2673,"timestamp":6741460514590,"id":762,"parentId":753,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3219,"timestamp":6741460514440,"id":753,"parentId":681,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3102,"timestamp":6741460514589,"id":761,"parentId":760,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3111,"timestamp":6741460514581,"id":760,"parentId":752,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3621,"timestamp":6741460514417,"id":752,"parentId":679,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3485,"timestamp":6741460514570,"id":757,"parentId":756,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3506,"timestamp":6741460514550,"id":756,"parentId":750,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4052,"timestamp":6741460514346,"id":750,"parentId":679,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4242,"timestamp":6741460514580,"id":759,"parentId":758,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4254,"timestamp":6741460514571,"id":758,"parentId":751,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4618,"timestamp":6741460514391,"id":751,"parentId":679,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4618,"timestamp":6741460514617,"id":767,"parentId":766,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4626,"timestamp":6741460514610,"id":766,"parentId":755,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4953,"timestamp":6741460514507,"id":755,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"ssr"},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3627,"timestamp":6741460515846,"id":776,"parentId":775,"tags":{},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3642,"timestamp":6741460515831,"id":775,"parentId":770,"tags":{},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3987,"timestamp":6741460515712,"id":770,"parentId":702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"ssr"},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3855,"timestamp":6741460515856,"id":778,"parentId":777,"tags":{},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3864,"timestamp":6741460515847,"id":777,"parentId":771,"tags":{},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4175,"timestamp":6741460515732,"id":771,"parentId":704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"ssr"},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4304,"timestamp":6741460515864,"id":780,"parentId":779,"tags":{},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4312,"timestamp":6741460515857,"id":779,"parentId":772,"tags":{},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4735,"timestamp":6741460515749,"id":772,"parentId":704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"ssr"},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":7167,"timestamp":6741460513335,"id":743,"parentId":742,"tags":{},"startTime":1776348407549,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":32,"timestamp":6741460520510,"id":781,"parentId":742,"tags":{},"startTime":1776348407556,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7643,"timestamp":6741460513275,"id":742,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1776348407549,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":6753,"timestamp":6741460515814,"id":774,"parentId":769,"tags":{},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":27,"timestamp":6741460522572,"id":788,"parentId":769,"tags":{},"startTime":1776348407558,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7039,"timestamp":6741460515671,"id":769,"parentId":564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":6918,"timestamp":6741460515806,"id":773,"parentId":768,"tags":{},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":25,"timestamp":6741460522728,"id":789,"parentId":768,"tags":{},"startTime":1776348407558,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7242,"timestamp":6741460515617,"id":768,"parentId":564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1776348407551,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1597,"timestamp":6741460521626,"id":784,"parentId":783,"tags":{},"startTime":1776348407557,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1618,"timestamp":6741460521606,"id":783,"parentId":782,"tags":{},"startTime":1776348407557,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2182,"timestamp":6741460521234,"id":782,"parentId":717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"ssr"},"startTime":1776348407557,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1968,"timestamp":6741460522501,"id":787,"parentId":786,"tags":{},"startTime":1776348407558,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2029,"timestamp":6741460522440,"id":786,"parentId":785,"tags":{},"startTime":1776348407558,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2215,"timestamp":6741460522400,"id":785,"parentId":656,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"ssr"},"startTime":1776348407558,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1020,"timestamp":6741460523849,"id":797,"parentId":796,"tags":{},"startTime":1776348407559,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1029,"timestamp":6741460523840,"id":796,"parentId":793,"tags":{},"startTime":1776348407559,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1283,"timestamp":6741460523751,"id":793,"parentId":752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1776348407559,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":2063,"timestamp":6741460523179,"id":791,"parentId":790,"tags":{},"startTime":1776348407559,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":29,"timestamp":6741460525245,"id":804,"parentId":790,"tags":{},"startTime":1776348407561,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2226,"timestamp":6741460523118,"id":790,"parentId":637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/router-context.js","layer":"ssr"},"startTime":1776348407559,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1969,"timestamp":6741460524719,"id":800,"parentId":799,"tags":{},"startTime":1776348407560,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1985,"timestamp":6741460524706,"id":799,"parentId":798,"tags":{},"startTime":1776348407560,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2432,"timestamp":6741460524673,"id":798,"parentId":770,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"ssr"},"startTime":1776348407560,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3555,"timestamp":6741460523839,"id":795,"parentId":794,"tags":{},"startTime":1776348407559,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3571,"timestamp":6741460523824,"id":794,"parentId":792,"tags":{},"startTime":1776348407559,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4250,"timestamp":6741460523724,"id":792,"parentId":752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1776348407559,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2769,"timestamp":6741460525214,"id":803,"parentId":802,"tags":{},"startTime":1776348407561,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2781,"timestamp":6741460525202,"id":802,"parentId":801,"tags":{},"startTime":1776348407561,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2920,"timestamp":6741460525174,"id":801,"parentId":679,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1776348407561,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":2,"timestamp":6741460529235,"id":809,"parentId":808,"tags":{},"startTime":1776348407565,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":31,"timestamp":6741460529240,"id":810,"parentId":808,"tags":{},"startTime":1776348407565,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":458,"timestamp":6741460529181,"id":808,"parentId":792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1776348407565,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":15854,"timestamp":6741460514609,"id":765,"parentId":764,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":15863,"timestamp":6741460514601,"id":764,"parentId":754,"tags":{},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":21416,"timestamp":6741460514473,"id":754,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"ssr"},"startTime":1776348407550,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8121,"timestamp":6741460529102,"id":807,"parentId":806,"tags":{},"startTime":1776348407565,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8148,"timestamp":6741460529077,"id":806,"parentId":805,"tags":{},"startTime":1776348407565,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8771,"timestamp":6741460529006,"id":805,"parentId":785,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"ssr"},"startTime":1776348407565,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7730,"timestamp":6741460530109,"id":815,"parentId":814,"tags":{},"startTime":1776348407566,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7749,"timestamp":6741460530091,"id":814,"parentId":811,"tags":{},"startTime":1776348407566,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7960,"timestamp":6741460530017,"id":811,"parentId":792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1776348407566,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7858,"timestamp":6741460530128,"id":819,"parentId":818,"tags":{},"startTime":1776348407566,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7866,"timestamp":6741460530120,"id":818,"parentId":813,"tags":{},"startTime":1776348407566,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8013,"timestamp":6741460530071,"id":813,"parentId":801,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1776348407566,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7982,"timestamp":6741460530119,"id":817,"parentId":816,"tags":{},"startTime":1776348407566,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7992,"timestamp":6741460530110,"id":816,"parentId":812,"tags":{},"startTime":1776348407566,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8496,"timestamp":6741460530051,"id":812,"parentId":801,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1776348407566,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":350,"timestamp":6741460541559,"id":821,"parentId":820,"tags":{},"startTime":1776348407577,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":27,"timestamp":6741460541914,"id":822,"parentId":820,"tags":{},"startTime":1776348407578,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1634,"timestamp":6741460541493,"id":820,"parentId":702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1776348407577,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":334,"timestamp":6741460543818,"id":824,"parentId":823,"tags":{},"startTime":1776348407579,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":39,"timestamp":6741460544161,"id":827,"parentId":823,"tags":{},"startTime":1776348407580,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":842,"timestamp":6741460543739,"id":823,"parentId":754,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1776348407579,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":725,"timestamp":6741460543911,"id":826,"parentId":825,"tags":{},"startTime":1776348407580,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":62,"timestamp":6741460544643,"id":828,"parentId":825,"tags":{},"startTime":1776348407580,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3441,"timestamp":6741460543852,"id":825,"parentId":754,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1776348407579,"traceId":"bd498e2bd237b710"},{"name":"make","duration":448449,"timestamp":6741460099262,"id":119,"parentId":118,"tags":{},"startTime":1776348407135,"traceId":"bd498e2bd237b710"},{"name":"chunk-graph","duration":2681,"timestamp":6741460553594,"id":830,"parentId":829,"tags":{},"startTime":1776348407589,"traceId":"bd498e2bd237b710"},{"name":"optimize-modules","duration":4,"timestamp":6741460556305,"id":832,"parentId":829,"tags":{},"startTime":1776348407592,"traceId":"bd498e2bd237b710"}] -[{"name":"optimize-chunks","duration":2279,"timestamp":6741460556409,"id":833,"parentId":829,"tags":{},"startTime":1776348407592,"traceId":"bd498e2bd237b710"},{"name":"optimize-tree","duration":4,"timestamp":6741460558704,"id":834,"parentId":829,"tags":{},"startTime":1776348407594,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6741460558721,"id":835,"parentId":829,"tags":{},"startTime":1776348407594,"traceId":"bd498e2bd237b710"},{"name":"optimize","duration":3001,"timestamp":6741460556299,"id":831,"parentId":829,"tags":{},"startTime":1776348407592,"traceId":"bd498e2bd237b710"},{"name":"module-hash","duration":3759,"timestamp":6741460562607,"id":836,"parentId":829,"tags":{},"startTime":1776348407598,"traceId":"bd498e2bd237b710"},{"name":"code-generation","duration":9324,"timestamp":6741460566374,"id":837,"parentId":829,"tags":{},"startTime":1776348407602,"traceId":"bd498e2bd237b710"},{"name":"hash","duration":2761,"timestamp":6741460577898,"id":838,"parentId":829,"tags":{},"startTime":1776348407614,"traceId":"bd498e2bd237b710"},{"name":"code-generation-jobs","duration":190,"timestamp":6741460580658,"id":839,"parentId":829,"tags":{},"startTime":1776348407616,"traceId":"bd498e2bd237b710"},{"name":"module-assets","duration":120,"timestamp":6741460580789,"id":840,"parentId":829,"tags":{},"startTime":1776348407616,"traceId":"bd498e2bd237b710"},{"name":"create-chunk-assets","duration":38382,"timestamp":6741460580912,"id":841,"parentId":829,"tags":{},"startTime":1776348407617,"traceId":"bd498e2bd237b710"},{"name":"seal","duration":68159,"timestamp":6741460552911,"id":829,"parentId":118,"tags":{},"startTime":1776348407589,"traceId":"bd498e2bd237b710"},{"name":"webpack-compilation","duration":523367,"timestamp":6741460098574,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1776348407134,"traceId":"bd498e2bd237b710"},{"name":"emit","duration":7521,"timestamp":6741460621966,"id":842,"parentId":116,"tags":{},"startTime":1776348407658,"traceId":"bd498e2bd237b710"},{"name":"webpack-invalidated-server","duration":532999,"timestamp":6741460096874,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776348407132,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":849,"timestamp":6741460642423,"id":851,"parentId":847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776348407678,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":59,"timestamp":6741460643304,"id":852,"parentId":848,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?server=false!","layer":"app-pages-browser"},"startTime":1776348407679,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":869,"timestamp":6741460643374,"id":853,"parentId":849,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776348407679,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":2237,"timestamp":6741460644250,"id":854,"parentId":850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776348407680,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":11597,"timestamp":6741460635028,"id":848,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776348407671,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":4,"timestamp":6741460651222,"id":856,"parentId":855,"tags":{},"startTime":1776348407687,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2557,"timestamp":6741460651311,"id":858,"parentId":857,"tags":{},"startTime":1776348407687,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2637,"timestamp":6741460651233,"id":857,"parentId":855,"tags":{},"startTime":1776348407687,"traceId":"bd498e2bd237b710"},{"name":"build-module-mjs","duration":4694,"timestamp":6741460650830,"id":855,"parentId":853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1776348407686,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2500,"timestamp":6741460653502,"id":869,"parentId":868,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2539,"timestamp":6741460653464,"id":868,"parentId":859,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4935,"timestamp":6741460651682,"id":859,"parentId":846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1776348407687,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3096,"timestamp":6741460653543,"id":871,"parentId":870,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3137,"timestamp":6741460653503,"id":870,"parentId":860,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"build-module-tsx","duration":4142,"timestamp":6741460653011,"id":860,"parentId":853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3570,"timestamp":6741460653593,"id":877,"parentId":876,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3579,"timestamp":6741460653585,"id":876,"parentId":863,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4111,"timestamp":6741460653344,"id":863,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8552,"timestamp":6741460653573,"id":873,"parentId":872,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8585,"timestamp":6741460653545,"id":872,"parentId":861,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"build-module-tsx","duration":10823,"timestamp":6741460653252,"id":861,"parentId":851,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"app-pages-browser"},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10536,"timestamp":6741460653584,"id":875,"parentId":874,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10546,"timestamp":6741460653574,"id":874,"parentId":862,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":12535,"timestamp":6741460653300,"id":862,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":12260,"timestamp":6741460653601,"id":879,"parentId":878,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":12268,"timestamp":6741460653594,"id":878,"parentId":864,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13085,"timestamp":6741460653377,"id":864,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":13161,"timestamp":6741460653625,"id":885,"parentId":884,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":13168,"timestamp":6741460653618,"id":884,"parentId":867,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13606,"timestamp":6741460653442,"id":867,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"app-pages-browser"},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":13445,"timestamp":6741460653617,"id":883,"parentId":882,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":13453,"timestamp":6741460653610,"id":882,"parentId":866,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":14054,"timestamp":6741460653422,"id":866,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":13892,"timestamp":6741460653609,"id":881,"parentId":880,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":13900,"timestamp":6741460653602,"id":880,"parentId":865,"tags":{},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":15371,"timestamp":6741460653400,"id":865,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1776348407689,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":665,"timestamp":6741460677318,"id":921,"parentId":919,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":29,"timestamp":6741460677990,"id":980,"parentId":919,"tags":{},"startTime":1776348407714,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":998,"timestamp":6741460677223,"id":919,"parentId":861,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3147,"timestamp":6741460675854,"id":890,"parentId":889,"tags":{},"startTime":1776348407711,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3176,"timestamp":6741460675826,"id":889,"parentId":886,"tags":{},"startTime":1776348407711,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3963,"timestamp":6741460675594,"id":886,"parentId":863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1776348407711,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2180,"timestamp":6741460677392,"id":927,"parentId":926,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2189,"timestamp":6741460677384,"id":926,"parentId":893,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3415,"timestamp":6741460676509,"id":893,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2553,"timestamp":6741460677383,"id":925,"parentId":924,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2564,"timestamp":6741460677373,"id":924,"parentId":892,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3761,"timestamp":6741460676477,"id":892,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2877,"timestamp":6741460677371,"id":923,"parentId":922,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2904,"timestamp":6741460677344,"id":922,"parentId":891,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4103,"timestamp":6741460676403,"id":891,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4952,"timestamp":6741460677405,"id":929,"parentId":928,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4962,"timestamp":6741460677397,"id":928,"parentId":894,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6151,"timestamp":6741460676534,"id":894,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5283,"timestamp":6741460677413,"id":931,"parentId":930,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5290,"timestamp":6741460677406,"id":930,"parentId":895,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6361,"timestamp":6741460676559,"id":895,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5505,"timestamp":6741460677430,"id":935,"parentId":934,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5513,"timestamp":6741460677422,"id":934,"parentId":897,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6721,"timestamp":6741460676622,"id":897,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5937,"timestamp":6741460677421,"id":933,"parentId":932,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5945,"timestamp":6741460677414,"id":932,"parentId":896,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7525,"timestamp":6741460676598,"id":896,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6675,"timestamp":6741460677460,"id":939,"parentId":938,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6685,"timestamp":6741460677451,"id":938,"parentId":899,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7703,"timestamp":6741460676694,"id":899,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6960,"timestamp":6741460677450,"id":937,"parentId":936,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6980,"timestamp":6741460677431,"id":936,"parentId":898,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8166,"timestamp":6741460676647,"id":898,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7344,"timestamp":6741460677478,"id":943,"parentId":942,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7352,"timestamp":6741460677470,"id":942,"parentId":901,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8271,"timestamp":6741460676765,"id":901,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7576,"timestamp":6741460677469,"id":941,"parentId":940,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7584,"timestamp":6741460677461,"id":940,"parentId":900,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8575,"timestamp":6741460676735,"id":900,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7824,"timestamp":6741460677494,"id":947,"parentId":946,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7832,"timestamp":6741460677487,"id":946,"parentId":903,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8742,"timestamp":6741460676807,"id":903,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8041,"timestamp":6741460677515,"id":951,"parentId":950,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8050,"timestamp":6741460677507,"id":950,"parentId":905,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8983,"timestamp":6741460676844,"id":905,"parentId":866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8354,"timestamp":6741460677486,"id":945,"parentId":944,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8362,"timestamp":6741460677479,"id":944,"parentId":902,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9648,"timestamp":6741460676787,"id":902,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8943,"timestamp":6741460677506,"id":949,"parentId":948,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8954,"timestamp":6741460677495,"id":948,"parentId":904,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9927,"timestamp":6741460676826,"id":904,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"}] -[{"name":"next-swc-transform","duration":9459,"timestamp":6741460677527,"id":953,"parentId":952,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9471,"timestamp":6741460677516,"id":952,"parentId":906,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10470,"timestamp":6741460676862,"id":906,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1776348407712,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9805,"timestamp":6741460677536,"id":955,"parentId":954,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9813,"timestamp":6741460677528,"id":954,"parentId":907,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10871,"timestamp":6741460676880,"id":907,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10216,"timestamp":6741460677543,"id":957,"parentId":956,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10224,"timestamp":6741460677537,"id":956,"parentId":908,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11076,"timestamp":6741460676897,"id":908,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":173,"timestamp":6741460691445,"id":993,"parentId":990,"tags":{},"startTime":1776348407727,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":203,"timestamp":6741460691449,"id":994,"parentId":991,"tags":{},"startTime":1776348407727,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1159,"timestamp":6741460691624,"id":997,"parentId":990,"tags":{},"startTime":1776348407727,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1130,"timestamp":6741460691654,"id":998,"parentId":991,"tags":{},"startTime":1776348407727,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1807,"timestamp":6741460691267,"id":990,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1776348407727,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1787,"timestamp":6741460691357,"id":991,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1776348407727,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":15628,"timestamp":6741460677552,"id":959,"parentId":958,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":15636,"timestamp":6741460677545,"id":958,"parentId":909,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":16731,"timestamp":6741460676914,"id":909,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":16123,"timestamp":6741460677560,"id":961,"parentId":960,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":16131,"timestamp":6741460677553,"id":960,"parentId":910,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":17164,"timestamp":6741460676931,"id":910,"parentId":866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":16542,"timestamp":6741460677571,"id":963,"parentId":962,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":16553,"timestamp":6741460677561,"id":962,"parentId":911,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":17761,"timestamp":6741460676951,"id":911,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":17142,"timestamp":6741460677579,"id":965,"parentId":964,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":17150,"timestamp":6741460677572,"id":964,"parentId":912,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":17978,"timestamp":6741460676969,"id":912,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":17368,"timestamp":6741460677587,"id":967,"parentId":966,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":17376,"timestamp":6741460677580,"id":966,"parentId":913,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":18181,"timestamp":6741460676998,"id":913,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":17598,"timestamp":6741460677596,"id":969,"parentId":968,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":17606,"timestamp":6741460677588,"id":968,"parentId":914,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":18448,"timestamp":6741460677017,"id":914,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":17862,"timestamp":6741460677611,"id":973,"parentId":972,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":17871,"timestamp":6741460677604,"id":972,"parentId":916,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":18561,"timestamp":6741460677106,"id":916,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":18058,"timestamp":6741460677620,"id":975,"parentId":974,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":18067,"timestamp":6741460677612,"id":974,"parentId":917,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":18710,"timestamp":6741460677165,"id":917,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":18433,"timestamp":6741460677629,"id":977,"parentId":976,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":18441,"timestamp":6741460677621,"id":976,"parentId":918,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":19121,"timestamp":6741460677197,"id":918,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":14954,"timestamp":6741460681383,"id":987,"parentId":986,"tags":{},"startTime":1776348407717,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":14966,"timestamp":6741460681372,"id":986,"parentId":982,"tags":{},"startTime":1776348407717,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":15496,"timestamp":6741460681192,"id":982,"parentId":859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1776348407717,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":19116,"timestamp":6741460677603,"id":971,"parentId":970,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":19123,"timestamp":6741460677596,"id":970,"parentId":915,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":20829,"timestamp":6741460677044,"id":915,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":20250,"timestamp":6741460677658,"id":979,"parentId":978,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":20279,"timestamp":6741460677630,"id":978,"parentId":920,"tags":{},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"build-module-ts","duration":21328,"timestamp":6741460677270,"id":920,"parentId":860,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776348407713,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":17240,"timestamp":6741460681370,"id":985,"parentId":984,"tags":{},"startTime":1776348407717,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":17266,"timestamp":6741460681345,"id":984,"parentId":981,"tags":{},"startTime":1776348407717,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":17843,"timestamp":6741460681141,"id":981,"parentId":859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1776348407717,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":17626,"timestamp":6741460681392,"id":989,"parentId":988,"tags":{},"startTime":1776348407717,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":17635,"timestamp":6741460681384,"id":988,"parentId":983,"tags":{},"startTime":1776348407717,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":18577,"timestamp":6741460681218,"id":983,"parentId":859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1776348407717,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8261,"timestamp":6741460691578,"id":996,"parentId":995,"tags":{},"startTime":1776348407727,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8290,"timestamp":6741460691550,"id":995,"parentId":992,"tags":{},"startTime":1776348407727,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8744,"timestamp":6741460691403,"id":992,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/dev-root-not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776348407727,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":250,"timestamp":6741460702004,"id":1005,"parentId":1001,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":283,"timestamp":6741460702007,"id":1006,"parentId":1004,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5649,"timestamp":6741460702258,"id":1015,"parentId":1001,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5616,"timestamp":6741460702293,"id":1016,"parentId":1004,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6847,"timestamp":6741460701870,"id":1001,"parentId":886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1776348407737,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6939,"timestamp":6741460701952,"id":1004,"parentId":886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"app-pages-browser"},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":33410,"timestamp":6741460675742,"id":888,"parentId":887,"tags":{},"startTime":1776348407711,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":32,"timestamp":6741460709158,"id":1017,"parentId":887,"tags":{},"startTime":1776348407745,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":33744,"timestamp":6741460675666,"id":887,"parentId":845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","layer":"app-pages-browser"},"startTime":1776348407711,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7252,"timestamp":6741460702187,"id":1012,"parentId":1011,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7261,"timestamp":6741460702179,"id":1011,"parentId":1002,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8541,"timestamp":6741460701911,"id":1002,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"app-pages-browser"},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8399,"timestamp":6741460702178,"id":1010,"parentId":1009,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8411,"timestamp":6741460702168,"id":1009,"parentId":1000,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9218,"timestamp":6741460701843,"id":1000,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776348407737,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8898,"timestamp":6741460702196,"id":1014,"parentId":1013,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8907,"timestamp":6741460702188,"id":1013,"parentId":1003,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9394,"timestamp":6741460701932,"id":1003,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"app-pages-browser"},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9284,"timestamp":6741460702166,"id":1008,"parentId":1007,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9307,"timestamp":6741460702144,"id":1007,"parentId":999,"tags":{},"startTime":1776348407738,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10984,"timestamp":6741460701791,"id":999,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1776348407737,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":279,"timestamp":6741460713866,"id":1024,"parentId":1022,"tags":{},"startTime":1776348407749,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1890,"timestamp":6741460714149,"id":1035,"parentId":1022,"tags":{},"startTime":1776348407750,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2526,"timestamp":6741460713777,"id":1022,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"app-pages-browser"},"startTime":1776348407749,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2659,"timestamp":6741460714063,"id":1032,"parentId":1031,"tags":{},"startTime":1776348407750,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2667,"timestamp":6741460714056,"id":1031,"parentId":1021,"tags":{},"startTime":1776348407750,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3251,"timestamp":6741460713753,"id":1021,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"app-pages-browser"},"startTime":1776348407749,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2968,"timestamp":6741460714046,"id":1028,"parentId":1027,"tags":{},"startTime":1776348407750,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2978,"timestamp":6741460714036,"id":1027,"parentId":1019,"tags":{},"startTime":1776348407750,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3626,"timestamp":6741460713698,"id":1019,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1776348407749,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3330,"timestamp":6741460714055,"id":1030,"parentId":1029,"tags":{},"startTime":1776348407750,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3338,"timestamp":6741460714047,"id":1029,"parentId":1020,"tags":{},"startTime":1776348407750,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3867,"timestamp":6741460713727,"id":1020,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776348407749,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3571,"timestamp":6741460714035,"id":1026,"parentId":1025,"tags":{},"startTime":1776348407750,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3610,"timestamp":6741460713996,"id":1025,"parentId":1018,"tags":{},"startTime":1776348407750,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4375,"timestamp":6741460713638,"id":1018,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1776348407749,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3956,"timestamp":6741460714071,"id":1034,"parentId":1033,"tags":{},"startTime":1776348407750,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3964,"timestamp":6741460714064,"id":1033,"parentId":1023,"tags":{},"startTime":1776348407750,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4613,"timestamp":6741460713827,"id":1023,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1776348407749,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":533,"timestamp":6741460720750,"id":1057,"parentId":1038,"tags":{},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":559,"timestamp":6741460720761,"id":1058,"parentId":1041,"tags":{},"startTime":1776348407756,"traceId":"bd498e2bd237b710"}] -[{"name":"read-resource","duration":654,"timestamp":6741460720763,"id":1059,"parentId":1047,"tags":{},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1591,"timestamp":6741460721290,"id":1096,"parentId":1038,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1492,"timestamp":6741460721391,"id":1097,"parentId":1041,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1465,"timestamp":6741460721419,"id":1098,"parentId":1047,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2863,"timestamp":6741460720252,"id":1038,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2968,"timestamp":6741460720348,"id":1041,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3121,"timestamp":6741460720516,"id":1047,"parentId":918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3341,"timestamp":6741460720961,"id":1063,"parentId":1062,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3353,"timestamp":6741460720951,"id":1062,"parentId":1037,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4549,"timestamp":6741460720221,"id":1037,"parentId":911,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3839,"timestamp":6741460720949,"id":1061,"parentId":1060,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3870,"timestamp":6741460720918,"id":1060,"parentId":1036,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4982,"timestamp":6741460720138,"id":1036,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4160,"timestamp":6741460720971,"id":1065,"parentId":1064,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4169,"timestamp":6741460720963,"id":1064,"parentId":1039,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5096,"timestamp":6741460720302,"id":1039,"parentId":911,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4431,"timestamp":6741460720980,"id":1067,"parentId":1066,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4439,"timestamp":6741460720972,"id":1066,"parentId":1040,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5460,"timestamp":6741460720325,"id":1040,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4803,"timestamp":6741460720996,"id":1071,"parentId":1070,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4811,"timestamp":6741460720989,"id":1070,"parentId":1043,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5775,"timestamp":6741460720425,"id":1043,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5228,"timestamp":6741460720988,"id":1069,"parentId":1068,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5236,"timestamp":6741460720980,"id":1068,"parentId":1042,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6302,"timestamp":6741460720403,"id":1042,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":395,"timestamp":6741460727852,"id":1113,"parentId":1103,"tags":{},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":870,"timestamp":6741460728252,"id":1140,"parentId":1103,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2012,"timestamp":6741460727396,"id":1103,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8425,"timestamp":6741460721012,"id":1075,"parentId":1074,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8433,"timestamp":6741460721005,"id":1074,"parentId":1045,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9448,"timestamp":6741460720465,"id":1045,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8899,"timestamp":6741460721027,"id":1079,"parentId":1078,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8906,"timestamp":6741460721020,"id":1078,"parentId":1048,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9752,"timestamp":6741460720555,"id":1048,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9307,"timestamp":6741460721020,"id":1077,"parentId":1076,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9314,"timestamp":6741460721013,"id":1076,"parentId":1046,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10329,"timestamp":6741460720484,"id":1046,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9788,"timestamp":6741460721035,"id":1081,"parentId":1080,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9796,"timestamp":6741460721028,"id":1080,"parentId":1049,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10515,"timestamp":6741460720575,"id":1049,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10101,"timestamp":6741460721004,"id":1073,"parentId":1072,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10108,"timestamp":6741460720997,"id":1072,"parentId":1044,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11407,"timestamp":6741460720445,"id":1044,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10803,"timestamp":6741460721066,"id":1089,"parentId":1088,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10811,"timestamp":6741460721059,"id":1088,"parentId":1053,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11447,"timestamp":6741460720652,"id":1053,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":11061,"timestamp":6741460721051,"id":1085,"parentId":1084,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":11068,"timestamp":6741460721044,"id":1084,"parentId":1051,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":12020,"timestamp":6741460720616,"id":1051,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":11616,"timestamp":6741460721043,"id":1083,"parentId":1082,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":11624,"timestamp":6741460721036,"id":1082,"parentId":1050,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":12812,"timestamp":6741460720597,"id":1050,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":12340,"timestamp":6741460721081,"id":1093,"parentId":1092,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":12347,"timestamp":6741460721075,"id":1092,"parentId":1055,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13093,"timestamp":6741460720689,"id":1055,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":13143,"timestamp":6741460721058,"id":1087,"parentId":1086,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":13151,"timestamp":6741460721052,"id":1086,"parentId":1052,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":15032,"timestamp":6741460720634,"id":1052,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":14613,"timestamp":6741460721074,"id":1091,"parentId":1090,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":14621,"timestamp":6741460721067,"id":1090,"parentId":1054,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":15581,"timestamp":6741460720670,"id":1054,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":15185,"timestamp":6741460721091,"id":1095,"parentId":1094,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":15195,"timestamp":6741460721082,"id":1094,"parentId":1056,"tags":{},"startTime":1776348407757,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":15874,"timestamp":6741460720707,"id":1056,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1776348407756,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8613,"timestamp":6741460727980,"id":1117,"parentId":1116,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8623,"timestamp":6741460727971,"id":1116,"parentId":1100,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9571,"timestamp":6741460727301,"id":1100,"parentId":999,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8891,"timestamp":6741460727999,"id":1121,"parentId":1120,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8899,"timestamp":6741460727992,"id":1120,"parentId":1102,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9795,"timestamp":6741460727371,"id":1102,"parentId":999,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9214,"timestamp":6741460727969,"id":1115,"parentId":1114,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9242,"timestamp":6741460727943,"id":1114,"parentId":1099,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10354,"timestamp":6741460727232,"id":1099,"parentId":999,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9611,"timestamp":6741460727991,"id":1119,"parentId":1118,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9621,"timestamp":6741460727981,"id":1118,"parentId":1101,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10638,"timestamp":6741460727335,"id":1101,"parentId":999,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9961,"timestamp":6741460728019,"id":1125,"parentId":1124,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9969,"timestamp":6741460728011,"id":1124,"parentId":1105,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10701,"timestamp":6741460727456,"id":1105,"parentId":999,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":16178,"timestamp":6741460728055,"id":1131,"parentId":1130,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":16203,"timestamp":6741460728035,"id":1130,"parentId":1108,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":17042,"timestamp":6741460727516,"id":1108,"parentId":1000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":16546,"timestamp":6741460728026,"id":1127,"parentId":1126,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":16555,"timestamp":6741460728019,"id":1126,"parentId":1106,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":17395,"timestamp":6741460727475,"id":1106,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":16845,"timestamp":6741460728034,"id":1129,"parentId":1128,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":16852,"timestamp":6741460728027,"id":1128,"parentId":1107,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":17658,"timestamp":6741460727498,"id":1107,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":17163,"timestamp":6741460728010,"id":1123,"parentId":1122,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":17174,"timestamp":6741460728000,"id":1122,"parentId":1104,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":18257,"timestamp":6741460727437,"id":1104,"parentId":999,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":17633,"timestamp":6741460728071,"id":1135,"parentId":1134,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":17640,"timestamp":6741460728064,"id":1134,"parentId":1110,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":18356,"timestamp":6741460727567,"id":1110,"parentId":999,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":17868,"timestamp":6741460728063,"id":1133,"parentId":1132,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":17876,"timestamp":6741460728056,"id":1132,"parentId":1109,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":18573,"timestamp":6741460727539,"id":1109,"parentId":1000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":18023,"timestamp":6741460728096,"id":1139,"parentId":1138,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":18041,"timestamp":6741460728078,"id":1138,"parentId":1112,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":18744,"timestamp":6741460727602,"id":1112,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":18279,"timestamp":6741460728078,"id":1137,"parentId":1136,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"}] -[{"name":"next-swc-loader","duration":18381,"timestamp":6741460728071,"id":1136,"parentId":1111,"tags":{},"startTime":1776348407764,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":19235,"timestamp":6741460727585,"id":1111,"parentId":999,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"app-pages-browser"},"startTime":1776348407763,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6994,"timestamp":6741460740223,"id":1154,"parentId":1153,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7004,"timestamp":6741460740214,"id":1153,"parentId":1142,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7510,"timestamp":6741460739914,"id":1142,"parentId":1018,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7202,"timestamp":6741460740232,"id":1156,"parentId":1155,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7210,"timestamp":6741460740224,"id":1155,"parentId":1143,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7705,"timestamp":6741460739942,"id":1143,"parentId":1018,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7441,"timestamp":6741460740212,"id":1152,"parentId":1151,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7465,"timestamp":6741460740189,"id":1151,"parentId":1141,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8078,"timestamp":6741460739855,"id":1141,"parentId":1018,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1776348407775,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7700,"timestamp":6741460740240,"id":1158,"parentId":1157,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7718,"timestamp":6741460740233,"id":1157,"parentId":1144,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8207,"timestamp":6741460739962,"id":1144,"parentId":1021,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"app-pages-browser"},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7931,"timestamp":6741460740247,"id":1160,"parentId":1159,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7938,"timestamp":6741460740240,"id":1159,"parentId":1145,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10014,"timestamp":6741460739981,"id":1145,"parentId":1023,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"app-pages-browser"},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9752,"timestamp":6741460740269,"id":1166,"parentId":1165,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9759,"timestamp":6741460740262,"id":1165,"parentId":1149,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10177,"timestamp":6741460740071,"id":1149,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10003,"timestamp":6741460740254,"id":1162,"parentId":1161,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10010,"timestamp":6741460740248,"id":1161,"parentId":1147,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10656,"timestamp":6741460740035,"id":1147,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10455,"timestamp":6741460740261,"id":1164,"parentId":1163,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10462,"timestamp":6741460740255,"id":1163,"parentId":1148,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11098,"timestamp":6741460740054,"id":1148,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1740,"timestamp":6741460754821,"id":1170,"parentId":1169,"tags":{},"startTime":1776348407790,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1773,"timestamp":6741460754791,"id":1169,"parentId":1167,"tags":{},"startTime":1776348407790,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4765,"timestamp":6741460752195,"id":1167,"parentId":1047,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"app-pages-browser"},"startTime":1776348407788,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":416,"timestamp":6741460758044,"id":1190,"parentId":1188,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":609,"timestamp":6741460758466,"id":1226,"parentId":1188,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1631,"timestamp":6741460757953,"id":1188,"parentId":1051,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"app-pages-browser"},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1689,"timestamp":6741460758177,"id":1197,"parentId":1196,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1699,"timestamp":6741460758168,"id":1196,"parentId":1173,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2661,"timestamp":6741460757512,"id":1173,"parentId":1049,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1998,"timestamp":6741460758185,"id":1199,"parentId":1198,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2006,"timestamp":6741460758178,"id":1198,"parentId":1174,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2910,"timestamp":6741460757538,"id":1174,"parentId":1052,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2303,"timestamp":6741460758153,"id":1193,"parentId":1192,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2329,"timestamp":6741460758128,"id":1192,"parentId":1171,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3309,"timestamp":6741460757418,"id":1171,"parentId":1101,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2571,"timestamp":6741460758167,"id":1195,"parentId":1194,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2583,"timestamp":6741460758155,"id":1194,"parentId":1172,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3577,"timestamp":6741460757482,"id":1172,"parentId":1045,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2865,"timestamp":6741460758202,"id":1203,"parentId":1202,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2872,"timestamp":6741460758195,"id":1202,"parentId":1176,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3724,"timestamp":6741460757583,"id":1176,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4131,"timestamp":6741460758210,"id":1205,"parentId":1204,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4139,"timestamp":6741460758203,"id":1204,"parentId":1177,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5109,"timestamp":6741460757606,"id":1177,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4500,"timestamp":6741460758226,"id":1209,"parentId":1208,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":4508,"timestamp":6741460758219,"id":1208,"parentId":1179,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5481,"timestamp":6741460757685,"id":1179,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":4991,"timestamp":6741460758194,"id":1201,"parentId":1200,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5000,"timestamp":6741460758186,"id":1200,"parentId":1175,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":5955,"timestamp":6741460757563,"id":1175,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5311,"timestamp":6741460758218,"id":1207,"parentId":1206,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5319,"timestamp":6741460758211,"id":1206,"parentId":1178,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6178,"timestamp":6741460757634,"id":1178,"parentId":1044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5590,"timestamp":6741460758234,"id":1211,"parentId":1210,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5598,"timestamp":6741460758227,"id":1210,"parentId":1180,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6447,"timestamp":6741460757723,"id":1180,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":5922,"timestamp":6741460758258,"id":1217,"parentId":1216,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":5929,"timestamp":6741460758251,"id":1216,"parentId":1183,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6688,"timestamp":6741460757786,"id":1183,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6231,"timestamp":6741460758250,"id":1215,"parentId":1214,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6239,"timestamp":6741460758243,"id":1214,"parentId":1182,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6952,"timestamp":6741460757766,"id":1182,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6460,"timestamp":6741460758266,"id":1219,"parentId":1218,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6468,"timestamp":6741460758259,"id":1218,"parentId":1184,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7191,"timestamp":6741460757807,"id":1184,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6725,"timestamp":6741460758281,"id":1223,"parentId":1222,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6733,"timestamp":6741460758274,"id":1222,"parentId":1186,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7285,"timestamp":6741460757905,"id":1186,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":25623,"timestamp":6741460740098,"id":1150,"parentId":1146,"tags":{},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":34,"timestamp":6741460765728,"id":1247,"parentId":1146,"tags":{},"startTime":1776348407801,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":25909,"timestamp":6741460739999,"id":1146,"parentId":981,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1776348407776,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7661,"timestamp":6741460758273,"id":1221,"parentId":1220,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7668,"timestamp":6741460758266,"id":1220,"parentId":1185,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8451,"timestamp":6741460757869,"id":1185,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8043,"timestamp":6741460758288,"id":1225,"parentId":1224,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8051,"timestamp":6741460758281,"id":1224,"parentId":1187,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8628,"timestamp":6741460757930,"id":1187,"parentId":1054,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8370,"timestamp":6741460758242,"id":1213,"parentId":1212,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8378,"timestamp":6741460758235,"id":1212,"parentId":1181,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11120,"timestamp":6741460757745,"id":1181,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"app-pages-browser"},"startTime":1776348407793,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":12417,"timestamp":6741460761986,"id":1240,"parentId":1239,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":12427,"timestamp":6741460761978,"id":1239,"parentId":1229,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13074,"timestamp":6741460761724,"id":1229,"parentId":1145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"app-pages-browser"},"startTime":1776348407797,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":12838,"timestamp":6741460761977,"id":1238,"parentId":1237,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":12848,"timestamp":6741460761967,"id":1237,"parentId":1228,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13482,"timestamp":6741460761700,"id":1228,"parentId":1145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"app-pages-browser"},"startTime":1776348407797,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":13208,"timestamp":6741460761993,"id":1242,"parentId":1241,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":13216,"timestamp":6741460761986,"id":1241,"parentId":1230,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13866,"timestamp":6741460761746,"id":1230,"parentId":1145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"app-pages-browser"},"startTime":1776348407797,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":13621,"timestamp":6741460762001,"id":1244,"parentId":1243,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":13629,"timestamp":6741460761994,"id":1243,"parentId":1231,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":14216,"timestamp":6741460761766,"id":1231,"parentId":1145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/fast-refresh-reducer.js","layer":"app-pages-browser"},"startTime":1776348407797,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":13996,"timestamp":6741460762008,"id":1246,"parentId":1245,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":14004,"timestamp":6741460762002,"id":1245,"parentId":1232,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":14818,"timestamp":6741460761787,"id":1232,"parentId":1145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"app-pages-browser"},"startTime":1776348407797,"traceId":"bd498e2bd237b710"}] -[{"name":"next-swc-transform","duration":14752,"timestamp":6741460761965,"id":1236,"parentId":1235,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":14777,"timestamp":6741460761942,"id":1235,"parentId":1227,"tags":{},"startTime":1776348407798,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":15933,"timestamp":6741460761657,"id":1227,"parentId":1145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"app-pages-browser"},"startTime":1776348407797,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":24202,"timestamp":6741460758047,"id":1191,"parentId":1189,"tags":{},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":35,"timestamp":6741460782256,"id":1248,"parentId":1189,"tags":{},"startTime":1776348407818,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":24609,"timestamp":6741460757995,"id":1189,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1776348407794,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":24180,"timestamp":6741460761857,"id":1234,"parentId":1233,"tags":{},"startTime":1776348407797,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":48,"timestamp":6741460786047,"id":1249,"parentId":1233,"tags":{},"startTime":1776348407822,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":24823,"timestamp":6741460761807,"id":1233,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","layer":"app-pages-browser"},"startTime":1776348407797,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":794,"timestamp":6741460789706,"id":1252,"parentId":1251,"tags":{},"startTime":1776348407825,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":703,"timestamp":6741460802446,"id":1284,"parentId":1253,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":735,"timestamp":6741460802454,"id":1285,"parentId":1272,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":481,"timestamp":6741460803158,"id":1344,"parentId":1253,"tags":{},"startTime":1776348407839,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":449,"timestamp":6741460803191,"id":1345,"parentId":1272,"tags":{},"startTime":1776348407839,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":14230,"timestamp":6741460789718,"id":1253,"parentId":1174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1776348407825,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":13846,"timestamp":6741460790245,"id":1272,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3910,"timestamp":6741460802589,"id":1287,"parentId":1286,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3950,"timestamp":6741460802551,"id":1286,"parentId":1250,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":20099,"timestamp":6741460786918,"id":1250,"parentId":1167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"app-pages-browser"},"startTime":1776348407823,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6404,"timestamp":6741460802608,"id":1289,"parentId":1288,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6421,"timestamp":6741460802593,"id":1288,"parentId":1254,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":19717,"timestamp":6741460789796,"id":1254,"parentId":1172,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"app-pages-browser"},"startTime":1776348407825,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6892,"timestamp":6741460802629,"id":1293,"parentId":1292,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6901,"timestamp":6741460802621,"id":1292,"parentId":1256,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":20040,"timestamp":6741460789857,"id":1256,"parentId":1142,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1776348407825,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7297,"timestamp":6741460802620,"id":1291,"parentId":1290,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7309,"timestamp":6741460802610,"id":1290,"parentId":1255,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":20375,"timestamp":6741460789830,"id":1255,"parentId":1112,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1776348407825,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7579,"timestamp":6741460802642,"id":1295,"parentId":1294,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7587,"timestamp":6741460802635,"id":1294,"parentId":1257,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":20534,"timestamp":6741460789876,"id":1257,"parentId":1141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1776348407825,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7760,"timestamp":6741460802660,"id":1299,"parentId":1298,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7768,"timestamp":6741460802653,"id":1298,"parentId":1259,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":20746,"timestamp":6741460789945,"id":1259,"parentId":1177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8019,"timestamp":6741460802682,"id":1303,"parentId":1302,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8033,"timestamp":6741460802670,"id":1302,"parentId":1261,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":20930,"timestamp":6741460789999,"id":1261,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8291,"timestamp":6741460802652,"id":1297,"parentId":1296,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8300,"timestamp":6741460802643,"id":1296,"parentId":1258,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":21390,"timestamp":6741460789917,"id":1258,"parentId":1178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8622,"timestamp":6741460802691,"id":1305,"parentId":1304,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8630,"timestamp":6741460802684,"id":1304,"parentId":1262,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":21496,"timestamp":6741460790026,"id":1262,"parentId":1183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8829,"timestamp":6741460802700,"id":1307,"parentId":1306,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8838,"timestamp":6741460802693,"id":1306,"parentId":1263,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":21672,"timestamp":6741460790051,"id":1263,"parentId":1183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9020,"timestamp":6741460802710,"id":1309,"parentId":1308,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9028,"timestamp":6741460802701,"id":1308,"parentId":1264,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":21831,"timestamp":6741460790079,"id":1264,"parentId":1183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9193,"timestamp":6741460802721,"id":1311,"parentId":1310,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9204,"timestamp":6741460802711,"id":1310,"parentId":1265,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":22014,"timestamp":6741460790098,"id":1265,"parentId":1183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9457,"timestamp":6741460802669,"id":1301,"parentId":1300,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9465,"timestamp":6741460802661,"id":1300,"parentId":1260,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":22664,"timestamp":6741460789978,"id":1260,"parentId":1177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9918,"timestamp":6741460802731,"id":1313,"parentId":1312,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9927,"timestamp":6741460802723,"id":1312,"parentId":1266,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":22739,"timestamp":6741460790117,"id":1266,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10114,"timestamp":6741460802748,"id":1317,"parentId":1316,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10122,"timestamp":6741460802741,"id":1316,"parentId":1268,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":22872,"timestamp":6741460790158,"id":1268,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10278,"timestamp":6741460802757,"id":1319,"parentId":1318,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10286,"timestamp":6741460802749,"id":1318,"parentId":1269,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":23032,"timestamp":6741460790176,"id":1269,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10474,"timestamp":6741460802740,"id":1315,"parentId":1314,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10482,"timestamp":6741460802732,"id":1314,"parentId":1267,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":23228,"timestamp":6741460790140,"id":1267,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10608,"timestamp":6741460802765,"id":1321,"parentId":1320,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10616,"timestamp":6741460802758,"id":1320,"parentId":1270,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":23347,"timestamp":6741460790197,"id":1270,"parentId":1183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10768,"timestamp":6741460802782,"id":1325,"parentId":1324,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10775,"timestamp":6741460802775,"id":1324,"parentId":1273,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":23412,"timestamp":6741460790288,"id":1273,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10899,"timestamp":6741460802808,"id":1331,"parentId":1330,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10907,"timestamp":6741460802800,"id":1330,"parentId":1276,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":23581,"timestamp":6741460790362,"id":1276,"parentId":1228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":11183,"timestamp":6741460802774,"id":1323,"parentId":1322,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":11191,"timestamp":6741460802767,"id":1322,"parentId":1271,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":24182,"timestamp":6741460790215,"id":1271,"parentId":1183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":11608,"timestamp":6741460802799,"id":1329,"parentId":1328,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":11616,"timestamp":6741460802792,"id":1328,"parentId":1275,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":24403,"timestamp":6741460790341,"id":1275,"parentId":1228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":11914,"timestamp":6741460802837,"id":1337,"parentId":1336,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":11923,"timestamp":6741460802830,"id":1336,"parentId":1279,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":24504,"timestamp":6741460790423,"id":1279,"parentId":1186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":12116,"timestamp":6741460802821,"id":1333,"parentId":1332,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":12128,"timestamp":6741460802809,"id":1332,"parentId":1277,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":24846,"timestamp":6741460790383,"id":1277,"parentId":1228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":12390,"timestamp":6741460802848,"id":1339,"parentId":1338,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":12400,"timestamp":6741460802839,"id":1338,"parentId":1280,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":25015,"timestamp":6741460790440,"id":1280,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":12640,"timestamp":6741460802829,"id":1335,"parentId":1334,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":12648,"timestamp":6741460802822,"id":1334,"parentId":1278,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":25537,"timestamp":6741460790406,"id":1278,"parentId":1186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":24665,"timestamp":6741460802859,"id":1341,"parentId":1340,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":24676,"timestamp":6741460802850,"id":1340,"parentId":1281,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":37389,"timestamp":6741460790461,"id":1281,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":25341,"timestamp":6741460802791,"id":1327,"parentId":1326,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":25349,"timestamp":6741460802784,"id":1326,"parentId":1274,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":38915,"timestamp":6741460790312,"id":1274,"parentId":1229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":20498,"timestamp":6741460808738,"id":1354,"parentId":1353,"tags":{},"startTime":1776348407844,"traceId":"bd498e2bd237b710"}] -[{"name":"next-swc-loader","duration":20589,"timestamp":6741460808727,"id":1353,"parentId":1347,"tags":{},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":21024,"timestamp":6741460808502,"id":1347,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"app-pages-browser"},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":20811,"timestamp":6741460808725,"id":1352,"parentId":1351,"tags":{},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":20838,"timestamp":6741460808698,"id":1351,"parentId":1346,"tags":{},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":21419,"timestamp":6741460808435,"id":1346,"parentId":1185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"app-pages-browser"},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":21116,"timestamp":6741460808747,"id":1356,"parentId":1355,"tags":{},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":21125,"timestamp":6741460808739,"id":1355,"parentId":1348,"tags":{},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":21543,"timestamp":6741460808530,"id":1348,"parentId":1228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"app-pages-browser"},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":27221,"timestamp":6741460802867,"id":1343,"parentId":1342,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":27229,"timestamp":6741460802860,"id":1342,"parentId":1282,"tags":{},"startTime":1776348407838,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":40080,"timestamp":6741460790479,"id":1282,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"app-pages-browser"},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":21803,"timestamp":6741460808763,"id":1360,"parentId":1359,"tags":{},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":21810,"timestamp":6741460808756,"id":1359,"parentId":1350,"tags":{},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":23021,"timestamp":6741460808584,"id":1350,"parentId":1227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"app-pages-browser"},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":22887,"timestamp":6741460808755,"id":1358,"parentId":1357,"tags":{},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":22896,"timestamp":6741460808748,"id":1357,"parentId":1349,"tags":{},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":23488,"timestamp":6741460808554,"id":1349,"parentId":1227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"app-pages-browser"},"startTime":1776348407844,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9624,"timestamp":6741460822446,"id":1367,"parentId":1366,"tags":{},"startTime":1776348407858,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9655,"timestamp":6741460822417,"id":1366,"parentId":1361,"tags":{},"startTime":1776348407858,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10674,"timestamp":6741460821800,"id":1361,"parentId":1227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"app-pages-browser"},"startTime":1776348407857,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2160,"timestamp":6741460834084,"id":1372,"parentId":1371,"tags":{},"startTime":1776348407870,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2195,"timestamp":6741460834052,"id":1371,"parentId":1368,"tags":{},"startTime":1776348407870,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2951,"timestamp":6741460833576,"id":1368,"parentId":1253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1776348407869,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":341,"timestamp":6741460837107,"id":1393,"parentId":1373,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":374,"timestamp":6741460837110,"id":1394,"parentId":1390,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":398,"timestamp":6741460837111,"id":1395,"parentId":1391,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":80,"timestamp":6741460837452,"id":1430,"parentId":1373,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":46,"timestamp":6741460837486,"id":1431,"parentId":1390,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":22,"timestamp":6741460837511,"id":1432,"parentId":1391,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1323,"timestamp":6741460836582,"id":1373,"parentId":1260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1026,"timestamp":6741460837011,"id":1390,"parentId":1258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"app-pages-browser"},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1055,"timestamp":6741460837046,"id":1391,"parentId":1258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"app-pages-browser"},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1071,"timestamp":6741460837153,"id":1397,"parentId":1396,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1096,"timestamp":6741460837129,"id":1396,"parentId":1374,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1782,"timestamp":6741460836655,"id":1374,"parentId":1260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1261,"timestamp":6741460837184,"id":1403,"parentId":1402,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1269,"timestamp":6741460837176,"id":1402,"parentId":1377,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1937,"timestamp":6741460836734,"id":1377,"parentId":1271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1512,"timestamp":6741460837167,"id":1399,"parentId":1398,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1525,"timestamp":6741460837154,"id":1398,"parentId":1375,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2251,"timestamp":6741460836685,"id":1375,"parentId":1254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2118,"timestamp":6741460837199,"id":1407,"parentId":1406,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2126,"timestamp":6741460837192,"id":1406,"parentId":1379,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2806,"timestamp":6741460836772,"id":1379,"parentId":1266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2380,"timestamp":6741460837206,"id":1409,"parentId":1408,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2387,"timestamp":6741460837200,"id":1408,"parentId":1380,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3014,"timestamp":6741460836790,"id":1380,"parentId":1266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2626,"timestamp":6741460837192,"id":1405,"parentId":1404,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2634,"timestamp":6741460837185,"id":1404,"parentId":1378,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3388,"timestamp":6741460836754,"id":1378,"parentId":1266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2934,"timestamp":6741460837214,"id":1411,"parentId":1410,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2941,"timestamp":6741460837207,"id":1410,"parentId":1381,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3551,"timestamp":6741460836808,"id":1381,"parentId":1266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3148,"timestamp":6741460837221,"id":1413,"parentId":1412,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3155,"timestamp":6741460837214,"id":1412,"parentId":1382,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3957,"timestamp":6741460836826,"id":1382,"parentId":1266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3623,"timestamp":6741460837176,"id":1401,"parentId":1400,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3632,"timestamp":6741460837167,"id":1400,"parentId":1376,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4738,"timestamp":6741460836710,"id":1376,"parentId":1280,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6873,"timestamp":6741460837235,"id":1417,"parentId":1416,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6889,"timestamp":6741460837229,"id":1416,"parentId":1384,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7707,"timestamp":6741460836861,"id":1384,"parentId":1269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":7341,"timestamp":6741460837249,"id":1421,"parentId":1420,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":7347,"timestamp":6741460837243,"id":1420,"parentId":1386,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":8604,"timestamp":6741460836927,"id":1386,"parentId":1267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"app-pages-browser"},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8321,"timestamp":6741460837228,"id":1415,"parentId":1414,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8329,"timestamp":6741460837222,"id":1414,"parentId":1383,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9260,"timestamp":6741460836843,"id":1383,"parentId":1268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"app-pages-browser"},"startTime":1776348407872,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8876,"timestamp":6741460837242,"id":1419,"parentId":1418,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8883,"timestamp":6741460837236,"id":1418,"parentId":1385,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9594,"timestamp":6741460836909,"id":1385,"parentId":1269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"app-pages-browser"},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9249,"timestamp":6741460837262,"id":1425,"parentId":1424,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9256,"timestamp":6741460837256,"id":1424,"parentId":1388,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9784,"timestamp":6741460836971,"id":1388,"parentId":1270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"app-pages-browser"},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":25312,"timestamp":6741460822163,"id":1363,"parentId":1362,"tags":{},"startTime":1776348407858,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":25732,"timestamp":6741460821880,"id":1362,"parentId":860,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1776348407858,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":25425,"timestamp":6741460822196,"id":1365,"parentId":1364,"tags":{},"startTime":1776348407858,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":25499,"timestamp":6741460822184,"id":1364,"parentId":863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1776348407858,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10442,"timestamp":6741460837256,"id":1423,"parentId":1422,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10449,"timestamp":6741460837249,"id":1422,"parentId":1387,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10998,"timestamp":6741460836954,"id":1387,"parentId":1270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"app-pages-browser"},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":10685,"timestamp":6741460837276,"id":1429,"parentId":1428,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":10692,"timestamp":6741460837270,"id":1428,"parentId":1392,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11054,"timestamp":6741460837080,"id":1392,"parentId":1271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"app-pages-browser"},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":8888,"timestamp":6741460839254,"id":1439,"parentId":1438,"tags":{},"startTime":1776348407875,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":8899,"timestamp":6741460839244,"id":1438,"parentId":1434,"tags":{},"startTime":1776348407875,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9185,"timestamp":6741460839166,"id":1434,"parentId":1282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"app-pages-browser"},"startTime":1776348407875,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":11090,"timestamp":6741460837269,"id":1427,"parentId":1426,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":11097,"timestamp":6741460837263,"id":1426,"parentId":1389,"tags":{},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":11652,"timestamp":6741460836994,"id":1389,"parentId":1271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"app-pages-browser"},"startTime":1776348407873,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9413,"timestamp":6741460839242,"id":1437,"parentId":1436,"tags":{},"startTime":1776348407875,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9435,"timestamp":6741460839221,"id":1436,"parentId":1433,"tags":{},"startTime":1776348407875,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":9836,"timestamp":6741460839120,"id":1433,"parentId":1346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1776348407875,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9706,"timestamp":6741460839264,"id":1441,"parentId":1440,"tags":{},"startTime":1776348407875,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9716,"timestamp":6741460839255,"id":1440,"parentId":1435,"tags":{},"startTime":1776348407875,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10199,"timestamp":6741460839191,"id":1435,"parentId":1347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"app-pages-browser"},"startTime":1776348407875,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":269360,"timestamp":6741460833664,"id":1370,"parentId":1369,"tags":{},"startTime":1776348407869,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":269730,"timestamp":6741460833649,"id":1369,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1776348407869,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":207,"timestamp":6741461105157,"id":1459,"parentId":1456,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":41,"timestamp":6741461105373,"id":1472,"parentId":1456,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1752,"timestamp":6741461105059,"id":1456,"parentId":1383,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1776348408141,"traceId":"bd498e2bd237b710"}] -[{"name":"next-swc-transform","duration":3094,"timestamp":6741461103960,"id":1449,"parentId":1448,"tags":{},"startTime":1776348408140,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3127,"timestamp":6741461103928,"id":1448,"parentId":1443,"tags":{},"startTime":1776348408140,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3769,"timestamp":6741461103702,"id":1443,"parentId":1378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"app-pages-browser"},"startTime":1776348408139,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2260,"timestamp":6741461105227,"id":1465,"parentId":1464,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2267,"timestamp":6741461105220,"id":1464,"parentId":1452,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2864,"timestamp":6741461104965,"id":1452,"parentId":1386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"app-pages-browser"},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":2608,"timestamp":6741461105235,"id":1467,"parentId":1466,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":2615,"timestamp":6741461105228,"id":1466,"parentId":1453,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3245,"timestamp":6741461104994,"id":1453,"parentId":1383,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"app-pages-browser"},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":3046,"timestamp":6741461105207,"id":1461,"parentId":1460,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":3072,"timestamp":6741461105182,"id":1460,"parentId":1450,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":4689,"timestamp":6741461104858,"id":1450,"parentId":1389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"app-pages-browser"},"startTime":1776348408140,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6099,"timestamp":6741461105252,"id":1471,"parentId":1470,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6112,"timestamp":6741461105242,"id":1470,"parentId":1455,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":6954,"timestamp":6741461105038,"id":1455,"parentId":1389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"app-pages-browser"},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":6770,"timestamp":6741461105242,"id":1469,"parentId":1468,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":6777,"timestamp":6741461105236,"id":1468,"parentId":1454,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":7593,"timestamp":6741461105016,"id":1454,"parentId":1392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"app-pages-browser"},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":46699,"timestamp":6741461103810,"id":1445,"parentId":1444,"tags":{},"startTime":1776348408139,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":47108,"timestamp":6741461103795,"id":1444,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1776348408139,"traceId":"bd498e2bd237b710"},{"name":"postcss-process","duration":236836,"timestamp":6741461022449,"id":1442,"parentId":1283,"tags":{},"startTime":1776348408058,"traceId":"bd498e2bd237b710"},{"name":"postcss-loader","duration":469982,"timestamp":6741460790577,"id":1283,"parentId":1251,"tags":{},"startTime":1776348407826,"traceId":"bd498e2bd237b710"},{"name":"css-loader","duration":29494,"timestamp":6741461260687,"id":1475,"parentId":1251,"tags":{"astUsed":"true"},"startTime":1776348408296,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":187542,"timestamp":6741461103831,"id":1447,"parentId":1446,"tags":{},"startTime":1776348408139,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":187990,"timestamp":6741461103823,"id":1446,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1776348408139,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":188429,"timestamp":6741461105219,"id":1463,"parentId":1462,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":188442,"timestamp":6741461105209,"id":1462,"parentId":1451,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":195656,"timestamp":6741461104932,"id":1451,"parentId":1386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"app-pages-browser"},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":195505,"timestamp":6741461105119,"id":1458,"parentId":1457,"tags":{},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":195645,"timestamp":6741461105109,"id":1457,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/client.js","layer":"app-pages-browser"},"startTime":1776348408141,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":9800,"timestamp":6741461292564,"id":1484,"parentId":1483,"tags":{},"startTime":1776348408328,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":9860,"timestamp":6741461292507,"id":1483,"parentId":1476,"tags":{},"startTime":1776348408328,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":10453,"timestamp":6741461292318,"id":1476,"parentId":1453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"app-pages-browser"},"startTime":1776348408328,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":192435,"timestamp":6741461110360,"id":1474,"parentId":1473,"tags":{},"startTime":1776348408146,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":31,"timestamp":6741461302801,"id":1485,"parentId":1473,"tags":{},"startTime":1776348408338,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":192643,"timestamp":6741461110268,"id":1473,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1776348408146,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":4,"timestamp":6741461303942,"id":1488,"parentId":1486,"tags":{},"startTime":1776348408340,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":63,"timestamp":6741461303946,"id":1489,"parentId":1487,"tags":{},"startTime":1776348408340,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":82,"timestamp":6741461303952,"id":1490,"parentId":1486,"tags":{},"startTime":1776348408340,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":23,"timestamp":6741461304011,"id":1491,"parentId":1487,"tags":{},"startTime":1776348408340,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2940,"timestamp":6741461303799,"id":1486,"parentId":1451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1776348408339,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":3152,"timestamp":6741461303887,"id":1487,"parentId":1451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1776348408340,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":15018,"timestamp":6741461292413,"id":1478,"parentId":1477,"tags":{},"startTime":1776348408328,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":17030,"timestamp":6741461292397,"id":1477,"parentId":1362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-dev-runtime.development.js","layer":"app-pages-browser"},"startTime":1776348408328,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":16983,"timestamp":6741461292452,"id":1482,"parentId":1481,"tags":{},"startTime":1776348408328,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":22065,"timestamp":6741461292445,"id":1481,"parentId":1369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1776348408328,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":22086,"timestamp":6741461292438,"id":1480,"parentId":1479,"tags":{},"startTime":1776348408328,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":23632,"timestamp":6741461292429,"id":1479,"parentId":1364,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.development.js","layer":"app-pages-browser"},"startTime":1776348408328,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":681819,"timestamp":6741460634936,"id":847,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776348407671,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":908,"timestamp":6741461317045,"id":1495,"parentId":1494,"tags":{},"startTime":1776348408353,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1034,"timestamp":6741461317027,"id":1494,"parentId":1457,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js","layer":"app-pages-browser"},"startTime":1776348408353,"traceId":"bd498e2bd237b710"},{"name":"build-module-css","duration":531352,"timestamp":6741460786997,"id":1251,"parentId":1168,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776348407823,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":665,"timestamp":6741461317860,"id":1497,"parentId":1496,"tags":{},"startTime":1776348408353,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":52,"timestamp":6741461318536,"id":1498,"parentId":1496,"tags":{},"startTime":1776348408354,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1936,"timestamp":6741461317773,"id":1496,"parentId":1473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js","layer":"app-pages-browser"},"startTime":1776348408353,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":685043,"timestamp":6741460634849,"id":845,"parentId":844,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776348407670,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":3221,"timestamp":6741461317012,"id":1493,"parentId":1492,"tags":{},"startTime":1776348408353,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":76204,"timestamp":6741461316969,"id":1492,"parentId":1444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","layer":"app-pages-browser"},"startTime":1776348408353,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":940,"timestamp":6741461394178,"id":1502,"parentId":1501,"tags":{},"startTime":1776348408430,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1710,"timestamp":6741461393850,"id":1501,"parentId":1251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js","layer":null},"startTime":1776348408429,"traceId":"bd498e2bd237b710"},{"name":"build-module-css","duration":648602,"timestamp":6741460752256,"id":1168,"parentId":853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776348407788,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":81113,"timestamp":6741461319972,"id":1500,"parentId":1499,"tags":{},"startTime":1776348408356,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":83640,"timestamp":6741461319950,"id":1499,"parentId":1494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js","layer":"app-pages-browser"},"startTime":1776348408356,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":57,"timestamp":6741461404520,"id":1503,"parentId":1168,"tags":{},"startTime":1776348408440,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":769576,"timestamp":6741460635041,"id":849,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776348407671,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":256,"timestamp":6741461405599,"id":1505,"parentId":1504,"tags":{},"startTime":1776348408441,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":32,"timestamp":6741461405864,"id":1506,"parentId":1504,"tags":{},"startTime":1776348408441,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":575,"timestamp":6741461405495,"id":1504,"parentId":1492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1776348408441,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":220,"timestamp":6741461406484,"id":1508,"parentId":1507,"tags":{},"startTime":1776348408442,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":50,"timestamp":6741461406711,"id":1509,"parentId":1507,"tags":{},"startTime":1776348408442,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":1221,"timestamp":6741461406421,"id":1507,"parentId":1504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1776348408442,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":772781,"timestamp":6741460634918,"id":846,"parentId":844,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776348407671,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":772650,"timestamp":6741460635053,"id":850,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776348407671,"traceId":"bd498e2bd237b710"},{"name":"make","duration":776376,"timestamp":6741460631338,"id":844,"parentId":843,"tags":{},"startTime":1776348407667,"traceId":"bd498e2bd237b710"},{"name":"chunk-graph","duration":1864,"timestamp":6741461410806,"id":1511,"parentId":1510,"tags":{},"startTime":1776348408446,"traceId":"bd498e2bd237b710"},{"name":"optimize-modules","duration":3,"timestamp":6741461412688,"id":1513,"parentId":1510,"tags":{},"startTime":1776348408448,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunks","duration":44,"timestamp":6741461412702,"id":1514,"parentId":1510,"tags":{},"startTime":1776348408448,"traceId":"bd498e2bd237b710"},{"name":"optimize-tree","duration":4,"timestamp":6741461412758,"id":1515,"parentId":1510,"tags":{},"startTime":1776348408448,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6741461412770,"id":1516,"parentId":1510,"tags":{},"startTime":1776348408448,"traceId":"bd498e2bd237b710"},{"name":"optimize","duration":748,"timestamp":6741461412681,"id":1512,"parentId":1510,"tags":{},"startTime":1776348408448,"traceId":"bd498e2bd237b710"},{"name":"module-hash","duration":4208,"timestamp":6741461414704,"id":1517,"parentId":1510,"tags":{},"startTime":1776348408450,"traceId":"bd498e2bd237b710"},{"name":"code-generation","duration":5741,"timestamp":6741461418922,"id":1518,"parentId":1510,"tags":{},"startTime":1776348408455,"traceId":"bd498e2bd237b710"},{"name":"hash","duration":7688,"timestamp":6741461426985,"id":1519,"parentId":1510,"tags":{},"startTime":1776348408463,"traceId":"bd498e2bd237b710"},{"name":"code-generation-jobs","duration":353,"timestamp":6741461434673,"id":1520,"parentId":1510,"tags":{},"startTime":1776348408470,"traceId":"bd498e2bd237b710"},{"name":"module-assets","duration":62,"timestamp":6741461435004,"id":1521,"parentId":1510,"tags":{},"startTime":1776348408471,"traceId":"bd498e2bd237b710"},{"name":"create-chunk-assets","duration":71092,"timestamp":6741461435070,"id":1522,"parentId":1510,"tags":{},"startTime":1776348408471,"traceId":"bd498e2bd237b710"},{"name":"NextJsBuildManifest-generateClientManifest","duration":69,"timestamp":6741461506852,"id":1524,"parentId":843,"tags":{},"startTime":1776348408542,"traceId":"bd498e2bd237b710"},{"name":"NextJsBuildManifest-createassets","duration":290,"timestamp":6741461506635,"id":1523,"parentId":843,"tags":{},"startTime":1776348408542,"traceId":"bd498e2bd237b710"},{"name":"seal","duration":98592,"timestamp":6741461410141,"id":1510,"parentId":843,"tags":{},"startTime":1776348408446,"traceId":"bd498e2bd237b710"},{"name":"webpack-compilation","duration":877681,"timestamp":6741460631099,"id":843,"parentId":253,"tags":{"name":"client"},"startTime":1776348407667,"traceId":"bd498e2bd237b710"},{"name":"emit","duration":16287,"timestamp":6741461508796,"id":1525,"parentId":253,"tags":{},"startTime":1776348408544,"traceId":"bd498e2bd237b710"},{"name":"compile-path","duration":1428834,"timestamp":6741460096900,"id":117,"tags":{"trigger":"/","isTurbopack":false},"startTime":1776348407133,"traceId":"bd498e2bd237b710"},{"name":"webpack-invalidated-client","duration":1252165,"timestamp":6741460273820,"id":253,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776348407309,"traceId":"bd498e2bd237b710"}] -[{"name":"handle-request","duration":1528293,"timestamp":6741460086848,"id":115,"tags":{"url":"/","isTurbopack":false},"startTime":1776348407122,"traceId":"bd498e2bd237b710"},{"name":"memory-usage","duration":0,"timestamp":6741461615173,"id":1526,"parentId":115,"tags":{"url":"/","memory.rss":"561643520","memory.heapUsed":"289496744","memory.heapTotal":"316162048"},"startTime":1776348408651,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":12353,"timestamp":6741461729706,"id":1536,"parentId":1532,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776348408765,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":14985,"timestamp":6741461729247,"id":1533,"parentId":1532,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776348408765,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":17393,"timestamp":6741461729837,"id":1538,"parentId":1532,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776348408765,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":17809,"timestamp":6741461729637,"id":1535,"parentId":1532,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776348408765,"traceId":"bd498e2bd237b710"},{"name":"read-resource","duration":1867,"timestamp":6741461745590,"id":1542,"parentId":1541,"tags":{},"startTime":1776348408781,"traceId":"bd498e2bd237b710"},{"name":"postcss-process","duration":43491,"timestamp":6741461747494,"id":1544,"parentId":1543,"tags":{},"startTime":1776348408783,"traceId":"bd498e2bd237b710"},{"name":"postcss-loader","duration":43869,"timestamp":6741461747477,"id":1543,"parentId":1541,"tags":{},"startTime":1776348408783,"traceId":"bd498e2bd237b710"},{"name":"css-loader","duration":9978,"timestamp":6741461791368,"id":1545,"parentId":1541,"tags":{"astUsed":"true"},"startTime":1776348408827,"traceId":"bd498e2bd237b710"},{"name":"build-module-css","duration":56851,"timestamp":6741461745527,"id":1541,"parentId":1540,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776348408781,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":74982,"timestamp":6741461729582,"id":1534,"parentId":1532,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776348408765,"traceId":"bd498e2bd237b710"},{"name":"build-module-css","duration":65116,"timestamp":6741461742796,"id":1540,"parentId":1531,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776348408778,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":27,"timestamp":6741461808626,"id":1546,"parentId":1540,"tags":{},"startTime":1776348408844,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":79136,"timestamp":6741461729729,"id":1537,"parentId":1532,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776348408765,"traceId":"bd498e2bd237b710"},{"name":"next-client-pages-loader","duration":80,"timestamp":6741461810841,"id":1548,"parentId":1547,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js"},"startTime":1776348408846,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":1551,"timestamp":6741461809602,"id":1547,"parentId":1539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1776348408845,"traceId":"bd498e2bd237b710"},{"name":"next-swc-transform","duration":1295,"timestamp":6741461814532,"id":1551,"parentId":1550,"tags":{},"startTime":1776348408850,"traceId":"bd498e2bd237b710"},{"name":"next-swc-loader","duration":1328,"timestamp":6741461814502,"id":1550,"parentId":1549,"tags":{},"startTime":1776348408850,"traceId":"bd498e2bd237b710"},{"name":"build-module-js","duration":2073,"timestamp":6741461814420,"id":1549,"parentId":1547,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"app-pages-browser"},"startTime":1776348408850,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":88208,"timestamp":6741461729850,"id":1539,"parentId":1532,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776348408765,"traceId":"bd498e2bd237b710"},{"name":"make","duration":115337,"timestamp":6741461702737,"id":1532,"parentId":1531,"tags":{},"startTime":1776348408738,"traceId":"bd498e2bd237b710"},{"name":"chunk-graph","duration":1050,"timestamp":6741461819711,"id":1553,"parentId":1552,"tags":{},"startTime":1776348408855,"traceId":"bd498e2bd237b710"},{"name":"optimize-modules","duration":3,"timestamp":6741461820775,"id":1555,"parentId":1552,"tags":{},"startTime":1776348408856,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunks","duration":33,"timestamp":6741461820787,"id":1556,"parentId":1552,"tags":{},"startTime":1776348408856,"traceId":"bd498e2bd237b710"},{"name":"optimize-tree","duration":3,"timestamp":6741461820828,"id":1557,"parentId":1552,"tags":{},"startTime":1776348408856,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6741461820839,"id":1558,"parentId":1552,"tags":{},"startTime":1776348408856,"traceId":"bd498e2bd237b710"},{"name":"optimize","duration":505,"timestamp":6741461820769,"id":1554,"parentId":1552,"tags":{},"startTime":1776348408856,"traceId":"bd498e2bd237b710"},{"name":"module-hash","duration":240,"timestamp":6741461822054,"id":1559,"parentId":1552,"tags":{},"startTime":1776348408858,"traceId":"bd498e2bd237b710"},{"name":"code-generation","duration":956,"timestamp":6741461822300,"id":1560,"parentId":1552,"tags":{},"startTime":1776348408858,"traceId":"bd498e2bd237b710"},{"name":"hash","duration":2048,"timestamp":6741461824025,"id":1561,"parentId":1552,"tags":{},"startTime":1776348408860,"traceId":"bd498e2bd237b710"},{"name":"code-generation-jobs","duration":110,"timestamp":6741461826072,"id":1562,"parentId":1552,"tags":{},"startTime":1776348408862,"traceId":"bd498e2bd237b710"},{"name":"module-assets","duration":38,"timestamp":6741461826174,"id":1563,"parentId":1552,"tags":{},"startTime":1776348408862,"traceId":"bd498e2bd237b710"},{"name":"create-chunk-assets","duration":1600,"timestamp":6741461826215,"id":1564,"parentId":1552,"tags":{},"startTime":1776348408862,"traceId":"bd498e2bd237b710"},{"name":"NextJsBuildManifest-generateClientManifest","duration":45,"timestamp":6741461828922,"id":1566,"parentId":1531,"tags":{},"startTime":1776348408865,"traceId":"bd498e2bd237b710"},{"name":"NextJsBuildManifest-createassets","duration":94,"timestamp":6741461828877,"id":1565,"parentId":1531,"tags":{},"startTime":1776348408865,"traceId":"bd498e2bd237b710"},{"name":"seal","duration":11117,"timestamp":6741461819135,"id":1552,"parentId":1531,"tags":{},"startTime":1776348408855,"traceId":"bd498e2bd237b710"},{"name":"webpack-compilation","duration":129328,"timestamp":6741461701031,"id":1531,"parentId":1528,"tags":{"name":"client"},"startTime":1776348408737,"traceId":"bd498e2bd237b710"},{"name":"emit","duration":5934,"timestamp":6741461830379,"id":1567,"parentId":1528,"tags":{},"startTime":1776348408866,"traceId":"bd498e2bd237b710"},{"name":"webpack-invalidated-client","duration":141095,"timestamp":6741461695552,"id":1528,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776348408731,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":5520,"timestamp":6741461842827,"id":1571,"parentId":1569,"tags":{"request":"next-app-loader?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776348408878,"traceId":"bd498e2bd237b710"},{"name":"build-module","duration":6950,"timestamp":6741462428047,"id":1572,"parentId":1570,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776348409464,"traceId":"bd498e2bd237b710"},{"name":"add-entry","duration":593199,"timestamp":6741461842802,"id":1570,"parentId":1569,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776348408878,"traceId":"bd498e2bd237b710"},{"name":"make","duration":608757,"timestamp":6741461838759,"id":1569,"parentId":1568,"tags":{},"startTime":1776348408874,"traceId":"bd498e2bd237b710"},{"name":"chunk-graph","duration":750,"timestamp":6741462448892,"id":1580,"parentId":1579,"tags":{},"startTime":1776348409485,"traceId":"bd498e2bd237b710"},{"name":"optimize-modules","duration":3,"timestamp":6741462449654,"id":1582,"parentId":1579,"tags":{},"startTime":1776348409485,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunks","duration":1166,"timestamp":6741462449667,"id":1583,"parentId":1579,"tags":{},"startTime":1776348409485,"traceId":"bd498e2bd237b710"},{"name":"optimize-tree","duration":5,"timestamp":6741462450848,"id":1584,"parentId":1579,"tags":{},"startTime":1776348409486,"traceId":"bd498e2bd237b710"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6741462450882,"id":1585,"parentId":1579,"tags":{},"startTime":1776348409487,"traceId":"bd498e2bd237b710"},{"name":"optimize","duration":1635,"timestamp":6741462449650,"id":1581,"parentId":1579,"tags":{},"startTime":1776348409485,"traceId":"bd498e2bd237b710"},{"name":"module-hash","duration":296,"timestamp":6741462452159,"id":1586,"parentId":1579,"tags":{},"startTime":1776348409488,"traceId":"bd498e2bd237b710"},{"name":"code-generation","duration":762,"timestamp":6741462452465,"id":1587,"parentId":1579,"tags":{},"startTime":1776348409488,"traceId":"bd498e2bd237b710"},{"name":"hash","duration":621,"timestamp":6741462453875,"id":1588,"parentId":1579,"tags":{},"startTime":1776348409489,"traceId":"bd498e2bd237b710"},{"name":"code-generation-jobs","duration":81,"timestamp":6741462454496,"id":1589,"parentId":1579,"tags":{},"startTime":1776348409490,"traceId":"bd498e2bd237b710"},{"name":"module-assets","duration":39,"timestamp":6741462454566,"id":1590,"parentId":1579,"tags":{},"startTime":1776348409490,"traceId":"bd498e2bd237b710"},{"name":"create-chunk-assets","duration":742,"timestamp":6741462454609,"id":1591,"parentId":1579,"tags":{},"startTime":1776348409490,"traceId":"bd498e2bd237b710"},{"name":"seal","duration":7753,"timestamp":6741462448415,"id":1579,"parentId":1568,"tags":{},"startTime":1776348409484,"traceId":"bd498e2bd237b710"},{"name":"webpack-compilation","duration":618719,"timestamp":6741461838419,"id":1568,"parentId":1530,"tags":{"name":"server"},"startTime":1776348408874,"traceId":"bd498e2bd237b710"},{"name":"emit","duration":5545,"timestamp":6741462457158,"id":1592,"parentId":1530,"tags":{},"startTime":1776348409493,"traceId":"bd498e2bd237b710"},{"name":"compile-path","duration":767559,"timestamp":6741461695650,"id":1529,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776348408731,"traceId":"bd498e2bd237b710"},{"name":"webpack-invalidated-server","duration":767604,"timestamp":6741461695687,"id":1530,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776348408731,"traceId":"bd498e2bd237b710"}] +[{"name":"hot-reloader","duration":24,"timestamp":6745206916060,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776352153954,"traceId":"6bd4a9ad2b08f48f"},{"name":"start","duration":1,"timestamp":6745206916583,"id":4,"parentId":3,"tags":{},"startTime":1776352153955,"traceId":"6bd4a9ad2b08f48f"},{"name":"get-version-info","duration":494401,"timestamp":6745206916726,"id":5,"parentId":4,"tags":{},"startTime":1776352153955,"traceId":"6bd4a9ad2b08f48f"},{"name":"clean","duration":163611,"timestamp":6745207411156,"id":6,"parentId":4,"tags":{},"startTime":1776352154450,"traceId":"6bd4a9ad2b08f48f"},{"name":"create-pages-mapping","duration":107,"timestamp":6745207575561,"id":8,"parentId":7,"tags":{},"startTime":1776352154614,"traceId":"6bd4a9ad2b08f48f"},{"name":"create-entrypoints","duration":312381,"timestamp":6745207575685,"id":9,"parentId":7,"tags":{},"startTime":1776352154614,"traceId":"6bd4a9ad2b08f48f"},{"name":"generate-webpack-config","duration":67906,"timestamp":6745207888105,"id":10,"parentId":7,"tags":{},"startTime":1776352154926,"traceId":"6bd4a9ad2b08f48f"},{"name":"get-webpack-config","duration":380517,"timestamp":6745207575512,"id":7,"parentId":4,"tags":{},"startTime":1776352154614,"traceId":"6bd4a9ad2b08f48f"},{"name":"make","duration":517,"timestamp":6745207994535,"id":12,"parentId":11,"tags":{},"startTime":1776352155033,"traceId":"6bd4a9ad2b08f48f"},{"name":"chunk-graph","duration":323,"timestamp":6745207996119,"id":14,"parentId":13,"tags":{},"startTime":1776352155035,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-modules","duration":11,"timestamp":6745207996488,"id":16,"parentId":13,"tags":{},"startTime":1776352155035,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunks","duration":66,"timestamp":6745207996584,"id":17,"parentId":13,"tags":{},"startTime":1776352155035,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-tree","duration":9,"timestamp":6745207996675,"id":18,"parentId":13,"tags":{},"startTime":1776352155035,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunk-modules","duration":11,"timestamp":6745207996759,"id":19,"parentId":13,"tags":{},"startTime":1776352155035,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize","duration":340,"timestamp":6745207996470,"id":15,"parentId":13,"tags":{},"startTime":1776352155035,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-hash","duration":39,"timestamp":6745207997086,"id":20,"parentId":13,"tags":{},"startTime":1776352155035,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation","duration":71,"timestamp":6745207997134,"id":21,"parentId":13,"tags":{},"startTime":1776352155036,"traceId":"6bd4a9ad2b08f48f"},{"name":"hash","duration":205,"timestamp":6745207997321,"id":22,"parentId":13,"tags":{},"startTime":1776352155036,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation-jobs","duration":27,"timestamp":6745207997525,"id":23,"parentId":13,"tags":{},"startTime":1776352155036,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-assets","duration":33,"timestamp":6745207997541,"id":24,"parentId":13,"tags":{},"startTime":1776352155036,"traceId":"6bd4a9ad2b08f48f"},{"name":"create-chunk-assets","duration":110,"timestamp":6745207997578,"id":25,"parentId":13,"tags":{},"startTime":1776352155036,"traceId":"6bd4a9ad2b08f48f"},{"name":"NextJsBuildManifest-generateClientManifest","duration":912,"timestamp":6745208026636,"id":27,"parentId":11,"tags":{},"startTime":1776352155065,"traceId":"6bd4a9ad2b08f48f"},{"name":"NextJsBuildManifest-createassets","duration":1189,"timestamp":6745208026372,"id":26,"parentId":11,"tags":{},"startTime":1776352155065,"traceId":"6bd4a9ad2b08f48f"},{"name":"seal","duration":32222,"timestamp":6745207996038,"id":13,"parentId":11,"tags":{},"startTime":1776352155034,"traceId":"6bd4a9ad2b08f48f"},{"name":"webpack-compilation","duration":35474,"timestamp":6745207992921,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776352155031,"traceId":"6bd4a9ad2b08f48f"},{"name":"emit","duration":2825,"timestamp":6745208028595,"id":28,"parentId":3,"tags":{},"startTime":1776352155067,"traceId":"6bd4a9ad2b08f48f"},{"name":"make","duration":697,"timestamp":6745208035729,"id":30,"parentId":29,"tags":{},"startTime":1776352155074,"traceId":"6bd4a9ad2b08f48f"},{"name":"chunk-graph","duration":14,"timestamp":6745208036632,"id":32,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-modules","duration":2,"timestamp":6745208036656,"id":34,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunks","duration":29,"timestamp":6745208036687,"id":35,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-tree","duration":4,"timestamp":6745208036733,"id":36,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6745208036777,"id":37,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize","duration":152,"timestamp":6745208036653,"id":33,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-hash","duration":4,"timestamp":6745208036863,"id":38,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation","duration":4,"timestamp":6745208036872,"id":39,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"hash","duration":28,"timestamp":6745208036916,"id":40,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation-jobs","duration":18,"timestamp":6745208036945,"id":41,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-assets","duration":6,"timestamp":6745208036960,"id":42,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"create-chunk-assets","duration":6,"timestamp":6745208036969,"id":43,"parentId":31,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"seal","duration":790,"timestamp":6745208036582,"id":31,"parentId":29,"tags":{},"startTime":1776352155075,"traceId":"6bd4a9ad2b08f48f"},{"name":"webpack-compilation","duration":2318,"timestamp":6745208035116,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776352155074,"traceId":"6bd4a9ad2b08f48f"},{"name":"emit","duration":3146,"timestamp":6745208037463,"id":44,"parentId":3,"tags":{},"startTime":1776352155076,"traceId":"6bd4a9ad2b08f48f"},{"name":"make","duration":80,"timestamp":6745208042851,"id":46,"parentId":45,"tags":{},"startTime":1776352155081,"traceId":"6bd4a9ad2b08f48f"},{"name":"chunk-graph","duration":12,"timestamp":6745208043174,"id":48,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-modules","duration":2,"timestamp":6745208043194,"id":50,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunks","duration":4,"timestamp":6745208043221,"id":51,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-tree","duration":3,"timestamp":6745208043231,"id":52,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6745208043245,"id":53,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize","duration":64,"timestamp":6745208043191,"id":49,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-hash","duration":4,"timestamp":6745208043299,"id":54,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation","duration":3,"timestamp":6745208043307,"id":55,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"hash","duration":118,"timestamp":6745208043332,"id":56,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation-jobs","duration":19,"timestamp":6745208043449,"id":57,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-assets","duration":6,"timestamp":6745208043464,"id":58,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"create-chunk-assets","duration":9,"timestamp":6745208043473,"id":59,"parentId":47,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"seal","duration":701,"timestamp":6745208043159,"id":47,"parentId":45,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"},{"name":"webpack-compilation","duration":1809,"timestamp":6745208042084,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776352155080,"traceId":"6bd4a9ad2b08f48f"},{"name":"emit","duration":703,"timestamp":6745208043922,"id":60,"parentId":3,"tags":{},"startTime":1776352155082,"traceId":"6bd4a9ad2b08f48f"}] +[{"name":"make","duration":162,"timestamp":6745208261256,"id":65,"parentId":64,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"chunk-graph","duration":13,"timestamp":6745208261506,"id":67,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-modules","duration":2,"timestamp":6745208261527,"id":69,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunks","duration":4,"timestamp":6745208261536,"id":70,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-tree","duration":3,"timestamp":6745208261546,"id":71,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6745208261556,"id":72,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize","duration":47,"timestamp":6745208261524,"id":68,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-hash","duration":4,"timestamp":6745208261618,"id":73,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation","duration":3,"timestamp":6745208261626,"id":74,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"hash","duration":25,"timestamp":6745208261644,"id":75,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation-jobs","duration":8,"timestamp":6745208261669,"id":76,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-assets","duration":3,"timestamp":6745208261674,"id":77,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"create-chunk-assets","duration":6,"timestamp":6745208261680,"id":78,"parentId":66,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"NextJsBuildManifest-generateClientManifest","duration":188,"timestamp":6745208261879,"id":80,"parentId":64,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"NextJsBuildManifest-createassets","duration":213,"timestamp":6745208261856,"id":79,"parentId":64,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"seal","duration":654,"timestamp":6745208261490,"id":66,"parentId":64,"tags":{},"startTime":1776352155300,"traceId":"6bd4a9ad2b08f48f"},{"name":"webpack-compilation","duration":1290,"timestamp":6745208260869,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776352155299,"traceId":"6bd4a9ad2b08f48f"},{"name":"setup-dev-bundler","duration":1481688,"timestamp":6745206807230,"id":2,"parentId":1,"tags":{},"startTime":1776352153846,"traceId":"6bd4a9ad2b08f48f"},{"name":"emit","duration":27200,"timestamp":6745208262172,"id":81,"parentId":61,"tags":{},"startTime":1776352155301,"traceId":"6bd4a9ad2b08f48f"},{"name":"webpack-invalidated-client","duration":32079,"timestamp":6745208257897,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776352155296,"traceId":"6bd4a9ad2b08f48f"},{"name":"make","duration":186,"timestamp":6745208291049,"id":83,"parentId":82,"tags":{},"startTime":1776352155329,"traceId":"6bd4a9ad2b08f48f"},{"name":"chunk-graph","duration":17,"timestamp":6745208291331,"id":85,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-modules","duration":2,"timestamp":6745208291358,"id":87,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunks","duration":91,"timestamp":6745208291392,"id":88,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-tree","duration":4,"timestamp":6745208291489,"id":89,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6745208291503,"id":90,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize","duration":163,"timestamp":6745208291354,"id":86,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-hash","duration":5,"timestamp":6745208291636,"id":91,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation","duration":3,"timestamp":6745208291646,"id":92,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"hash","duration":33,"timestamp":6745208291666,"id":93,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation-jobs","duration":8,"timestamp":6745208291698,"id":94,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-assets","duration":3,"timestamp":6745208291705,"id":95,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"create-chunk-assets","duration":9,"timestamp":6745208291711,"id":96,"parentId":84,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"seal","duration":701,"timestamp":6745208291315,"id":84,"parentId":82,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"webpack-compilation","duration":1342,"timestamp":6745208290697,"id":82,"parentId":62,"tags":{"name":"server"},"startTime":1776352155329,"traceId":"6bd4a9ad2b08f48f"},{"name":"run-instrumentation-hook","duration":38,"timestamp":6745208310746,"id":98,"parentId":1,"tags":{},"startTime":1776352155349,"traceId":"6bd4a9ad2b08f48f"},{"name":"emit","duration":31611,"timestamp":6745208292057,"id":97,"parentId":62,"tags":{},"startTime":1776352155330,"traceId":"6bd4a9ad2b08f48f"},{"name":"webpack-invalidated-server","duration":66006,"timestamp":6745208258006,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776352155296,"traceId":"6bd4a9ad2b08f48f"},{"name":"make","duration":132,"timestamp":6745208325403,"id":100,"parentId":99,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"chunk-graph","duration":13,"timestamp":6745208325712,"id":102,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-modules","duration":46,"timestamp":6745208325736,"id":104,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunks","duration":6,"timestamp":6745208325792,"id":105,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-tree","duration":3,"timestamp":6745208325804,"id":106,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6745208325815,"id":107,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"optimize","duration":97,"timestamp":6745208325732,"id":103,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-hash","duration":6,"timestamp":6745208325879,"id":108,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation","duration":3,"timestamp":6745208325889,"id":109,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"hash","duration":25,"timestamp":6745208325909,"id":110,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"code-generation-jobs","duration":11,"timestamp":6745208325934,"id":111,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"module-assets","duration":4,"timestamp":6745208325943,"id":112,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"create-chunk-assets","duration":7,"timestamp":6745208325949,"id":113,"parentId":101,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"seal","duration":452,"timestamp":6745208325694,"id":101,"parentId":99,"tags":{},"startTime":1776352155364,"traceId":"6bd4a9ad2b08f48f"},{"name":"webpack-compilation","duration":1178,"timestamp":6745208324984,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776352155363,"traceId":"6bd4a9ad2b08f48f"},{"name":"start-dev-server","duration":1759703,"timestamp":6745206570109,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"328204288","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"234635264","memory.heapTotal":"105693184","memory.heapUsed":"73745568"},"startTime":1776352153608,"traceId":"6bd4a9ad2b08f48f"},{"name":"emit","duration":8560,"timestamp":6745208326172,"id":114,"parentId":63,"tags":{},"startTime":1776352155365,"traceId":"6bd4a9ad2b08f48f"},{"name":"webpack-invalidated-edge-server","duration":77229,"timestamp":6745208258081,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776352155296,"traceId":"6bd4a9ad2b08f48f"}]