diff --git a/backend/.env b/backend/.env index dac3bc55..700b805b 100644 --- a/backend/.env +++ b/backend/.env @@ -3,8 +3,10 @@ ASTOCK_DEBUG=true ASTOCK_DEEPSEEK_API_KEY=sk-ee8eee63d5cf41eba14a328de49055ac ASTOCK_ALERT_ENABLED=true -ASTOCK_FEISHU_WEBHOOK_URL=https://open.feishu.cn/open-apis/bot/v2/hook/6307668f-10aa-4fc1-8c1e-bad1b6b78d4d +ASTOCK_FEISHU_WEBHOOK_URL=https://open.feishu.cn/open-apis/bot/v2/hook/408ab727-0dcd-4c7a-bde7-4aad38cbf807 ASTOCK_ALERT_ENVIRONMENT=local +ASTOCK_RECOMMENDATION_PUSH_ENABLED=true +ASTOCK_RECOMMENDATION_PUSH_WEBHOOK_URL=https://open.feishu.cn/open-apis/bot/v2/hook/408ab727-0dcd-4c7a-bde7-4aad38cbf807 ASTOCK_ADMIN_USERNAME=75981230@qq.com ASTOCK_ADMIN_EMAIL=75981230@qq.com ASTOCK_ADMIN_PASSWORD=880803 diff --git a/backend/.env.example b/backend/.env.example index 1fe01c42..d46b7ff9 100644 --- a/backend/.env.example +++ b/backend/.env.example @@ -9,3 +9,8 @@ ASTOCK_SMTP_PORT=465 ASTOCK_SMTP_USERNAME=noreply@example.com ASTOCK_SMTP_PASSWORD=your_smtp_password ASTOCK_SMTP_SENDER=noreply@example.com +ASTOCK_ALERT_ENABLED=false +ASTOCK_FEISHU_WEBHOOK_URL= +ASTOCK_RECOMMENDATION_PUSH_ENABLED=false +ASTOCK_RECOMMENDATION_PUSH_WEBHOOK_URL= +ASTOCK_RECOMMENDATION_PUSH_MAX_ITEMS=8 diff --git a/backend/app/__pycache__/config.cpython-313.pyc b/backend/app/__pycache__/config.cpython-313.pyc index 46d4202c..b7ec2557 100644 Binary files a/backend/app/__pycache__/config.cpython-313.pyc and b/backend/app/__pycache__/config.cpython-313.pyc differ diff --git a/backend/app/__pycache__/main.cpython-313.pyc b/backend/app/__pycache__/main.cpython-313.pyc index 2b3959a4..a79f47c4 100644 Binary files a/backend/app/__pycache__/main.cpython-313.pyc and b/backend/app/__pycache__/main.cpython-313.pyc differ diff --git a/backend/app/analysis/__pycache__/signals.cpython-313.pyc b/backend/app/analysis/__pycache__/signals.cpython-313.pyc index a77336c8..9f2894e9 100644 Binary files a/backend/app/analysis/__pycache__/signals.cpython-313.pyc and b/backend/app/analysis/__pycache__/signals.cpython-313.pyc differ diff --git a/backend/app/api/__pycache__/market.cpython-313.pyc b/backend/app/api/__pycache__/market.cpython-313.pyc index e810f9d1..3ed195d9 100644 Binary files a/backend/app/api/__pycache__/market.cpython-313.pyc and b/backend/app/api/__pycache__/market.cpython-313.pyc differ diff --git a/backend/app/api/__pycache__/recommendations.cpython-313.pyc b/backend/app/api/__pycache__/recommendations.cpython-313.pyc index f1736f0e..1ba1430e 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/api/__pycache__/sectors.cpython-313.pyc b/backend/app/api/__pycache__/sectors.cpython-313.pyc index aceebf30..e590bf38 100644 Binary files a/backend/app/api/__pycache__/sectors.cpython-313.pyc and b/backend/app/api/__pycache__/sectors.cpython-313.pyc differ diff --git a/backend/app/api/__pycache__/stocks.cpython-313.pyc b/backend/app/api/__pycache__/stocks.cpython-313.pyc index e55885e9..606e1fd1 100644 Binary files a/backend/app/api/__pycache__/stocks.cpython-313.pyc and b/backend/app/api/__pycache__/stocks.cpython-313.pyc differ diff --git a/backend/app/api/auth.py b/backend/app/api/auth.py index 6e9cf0c3..eeca0e38 100644 --- a/backend/app/api/auth.py +++ b/backend/app/api/auth.py @@ -429,6 +429,12 @@ async def get_data_stats(admin: dict = Depends(get_current_admin)): track_count = (await db.execute(text("SELECT COUNT(*) FROM recommendation_tracking"))).scalar() or 0 sector_count = (await db.execute(text("SELECT COUNT(*) FROM sector_heat"))).scalar() or 0 temp_count = (await db.execute(text("SELECT COUNT(*) FROM market_temperature"))).scalar() or 0 + diagnosis_count = (await db.execute(text("SELECT COUNT(*) FROM stock_diagnoses"))).scalar() or 0 + watchlist_analysis_count = (await db.execute(text("SELECT COUNT(*) FROM watchlist_analyses"))).scalar() or 0 + user_count = (await db.execute(text("SELECT COUNT(*) FROM users"))).scalar() or 0 + invite_count = (await db.execute(text("SELECT COUNT(*) FROM invite_codes"))).scalar() or 0 + error_log_count = (await db.execute(text("SELECT COUNT(*) FROM error_logs"))).scalar() or 0 + scan_log_count = (await db.execute(text("SELECT COUNT(*) FROM scan_process_logs"))).scalar() or 0 low_score = (await db.execute(text("SELECT COUNT(*) FROM recommendations WHERE score < 60"))).scalar() or 0 latest_rec = (await db.execute(text("SELECT MAX(date(created_at)) FROM recommendations"))).scalar() or "" earliest_rec = (await db.execute(text("SELECT MIN(date(created_at)) FROM recommendations"))).scalar() or "" @@ -437,6 +443,12 @@ async def get_data_stats(admin: dict = Depends(get_current_admin)): "tracking": track_count, "sector_heat": sector_count, "market_temperature": temp_count, + "stock_diagnoses": diagnosis_count, + "watchlist_analyses": watchlist_analysis_count, + "users": user_count, + "invite_codes": invite_count, + "error_logs": error_log_count, + "scan_logs": scan_log_count, "low_score_count": low_score, "latest_date": str(latest_rec), "earliest_date": str(earliest_rec), @@ -448,13 +460,25 @@ async def data_reset(req: DataResetRequest, admin: dict = Depends(get_current_ad deleted: dict[str, int] = {} async with get_db() as db: if req.mode == "all": - for table in ["recommendation_tracking", "recommendations", "sector_heat", "market_temperature", "stock_diagnoses"]: + for table in ["recommendation_tracking", "recommendations", "sector_heat", "market_temperature", "stock_diagnoses", "watchlist_analyses"]: result = await db.execute(text(f"DELETE FROM {table}")) deleted[table] = result.rowcount or 0 elif req.mode == "recommendations": for table in ["recommendation_tracking", "recommendations"]: result = await db.execute(text(f"DELETE FROM {table}")) deleted[table] = result.rowcount or 0 + elif req.mode == "market_cache": + for table in ["sector_heat", "market_temperature"]: + result = await db.execute(text(f"DELETE FROM {table}")) + deleted[table] = result.rowcount or 0 + elif req.mode == "diagnostics": + for table in ["stock_diagnoses", "watchlist_analyses"]: + result = await db.execute(text(f"DELETE FROM {table}")) + deleted[table] = result.rowcount or 0 + elif req.mode == "logs": + for table in ["error_logs", "scan_process_logs", "research_observations"]: + result = await db.execute(text(f"DELETE FROM {table}")) + deleted[table] = result.rowcount or 0 elif req.mode == "date_range": if not req.before_date: raise HTTPException(status_code=400, detail="date_range 模式需要 before_date 参数") @@ -466,6 +490,10 @@ async def data_reset(req: DataResetRequest, admin: dict = Depends(get_current_ad deleted["sector_heat"] = result.rowcount or 0 result = await db.execute(text("DELETE FROM market_temperature WHERE trade_date < :bd"), {"bd": req.before_date}) deleted["market_temperature"] = result.rowcount or 0 + result = await db.execute(text("DELETE FROM stock_diagnoses WHERE date(created_at) < :bd"), {"bd": req.before_date}) + deleted["stock_diagnoses"] = result.rowcount or 0 + result = await db.execute(text("DELETE FROM watchlist_analyses WHERE date(created_at) < :bd"), {"bd": req.before_date}) + deleted["watchlist_analyses"] = result.rowcount or 0 elif req.mode == "low_score": threshold = req.min_score or 60 result = await db.execute( diff --git a/backend/app/api/debug.py b/backend/app/api/debug.py index 0717c981..06438180 100644 --- a/backend/app/api/debug.py +++ b/backend/app/api/debug.py @@ -18,6 +18,7 @@ async def get_errors( limit: int = 50, source: str = None, level: str = None, + q: str = None, days: int = 7, _admin: dict = Depends(get_current_admin), ): @@ -33,6 +34,9 @@ async def get_errors( if level: conditions.append("level = :level") params["level"] = level + if q: + conditions.append("(message LIKE :q OR detail LIKE :q OR source LIKE :q)") + params["q"] = f"%{q.strip()}%" where = " AND ".join(conditions) @@ -76,11 +80,25 @@ async def get_errors( ) levels = [r[0] for r in levels_result.fetchall()] + source_counts_result = await db.execute( + text(f"SELECT source, COUNT(*) FROM error_logs WHERE {where} GROUP BY source ORDER BY COUNT(*) DESC"), + {key: value for key, value in params.items() if key != "limit"}, + ) + source_counts = {r[0]: r[1] for r in source_counts_result.fetchall()} + + level_counts_result = await db.execute( + text(f"SELECT level, COUNT(*) FROM error_logs WHERE {where} GROUP BY level ORDER BY COUNT(*) DESC"), + {key: value for key, value in params.items() if key != "limit"}, + ) + level_counts = {r[0]: r[1] for r in level_counts_result.fetchall()} + return { "total": total, "errors": errors, "sources": sources, "levels": levels, + "source_counts": source_counts, + "level_counts": level_counts, } diff --git a/backend/app/config.py b/backend/app/config.py index 42e83988..fd8ce8a7 100644 --- a/backend/app/config.py +++ b/backend/app/config.py @@ -83,6 +83,12 @@ class Settings(BaseSettings): alert_app_name: str = "AStock Agent" alert_environment: str = "local" + # 飞书推荐推送 + recommendation_push_enabled: bool = False + recommendation_push_webhook_url: str = "" + recommendation_push_max_items: int = 8 + recommendation_push_dedup_ttl_seconds: int = 600 + # 前端 frontend_url: str = "http://localhost:3002" diff --git a/backend/app/data/__pycache__/models.cpython-313.pyc b/backend/app/data/__pycache__/models.cpython-313.pyc index 1fd4183f..6d787128 100644 Binary files a/backend/app/data/__pycache__/models.cpython-313.pyc and b/backend/app/data/__pycache__/models.cpython-313.pyc differ diff --git a/backend/app/data/__pycache__/tencent_client.cpython-313.pyc b/backend/app/data/__pycache__/tencent_client.cpython-313.pyc index 49b53eef..b5e8d5d7 100644 Binary files a/backend/app/data/__pycache__/tencent_client.cpython-313.pyc and b/backend/app/data/__pycache__/tencent_client.cpython-313.pyc differ diff --git a/backend/app/db/__pycache__/database.cpython-313.pyc b/backend/app/db/__pycache__/database.cpython-313.pyc index 5a4f4d2a..52fdbfbc 100644 Binary files a/backend/app/db/__pycache__/database.cpython-313.pyc and b/backend/app/db/__pycache__/database.cpython-313.pyc differ diff --git a/backend/app/db/__pycache__/tables.cpython-313.pyc b/backend/app/db/__pycache__/tables.cpython-313.pyc index 126a9b0f..ed0c214e 100644 Binary files a/backend/app/db/__pycache__/tables.cpython-313.pyc and b/backend/app/db/__pycache__/tables.cpython-313.pyc differ diff --git a/backend/app/db/error_logger.py b/backend/app/db/error_logger.py index cfabf8b1..90d83d7e 100644 --- a/backend/app/db/error_logger.py +++ b/backend/app/db/error_logger.py @@ -1,6 +1,7 @@ """错误日志持久化""" import asyncio +import logging import traceback from datetime import datetime from app.db.database import get_db @@ -67,3 +68,29 @@ def log_error_background( ) except RuntimeError: pass + + +class PersistentErrorLogHandler(logging.Handler): + """Persist application ERROR/CRITICAL log records into error_logs.""" + + def emit(self, record: logging.LogRecord) -> None: + if record.levelno < logging.ERROR: + return + if getattr(record, "skip_error_persist", False): + return + if record.name.startswith("app.db.error_logger"): + return + + try: + detail = "" + if record.exc_info: + detail = "".join(traceback.format_exception(*record.exc_info)) + log_error_background( + source=record.name, + message=record.getMessage(), + detail=detail, + level=record.levelname.lower(), + notify=False, + ) + except Exception: + pass diff --git a/backend/app/engine/__pycache__/recommender.cpython-313.pyc b/backend/app/engine/__pycache__/recommender.cpython-313.pyc index 1b517b56..eb40fcb2 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 ee98e749..0ba5ce6c 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 a989c8d7..6675a90a 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 50e6979c..1cf9d73d 100644 --- a/backend/app/engine/recommender.py +++ b/backend/app/engine/recommender.py @@ -108,6 +108,9 @@ async def refresh_recommendations(trade_date: str = None, scan_session: str = "m # 持久化到数据库(这是 async 操作,需要在主线程中执行) await _save_to_db(result) + # 推送本轮可操作/重点关注推荐,失败不影响扫描结果。 + await _push_recommendation_notifications(result, scan_session) + # 更新历史推荐跟踪(检查之前推荐的后续表现) await _update_tracking() @@ -116,6 +119,22 @@ async def refresh_recommendations(trade_date: str = None, scan_session: str = "m _scan_running = False +async def _push_recommendation_notifications(result: dict, scan_session: str) -> None: + try: + from app.notifications.feishu import send_recommendation_push + + sent = await send_recommendation_push( + recommendations=result.get("recommendations", []), + market_temp=result.get("market_temp"), + scan_session=scan_session, + strategy_profile=result.get("strategy_profile"), + ) + if sent: + logger.info("已发送飞书推荐推送: scan_session=%s", scan_session) + except Exception as e: + logger.warning("飞书推荐推送失败: %s", e) + + async def _update_tracking(): """更新历史推荐的跟踪数据""" try: @@ -421,7 +440,7 @@ async def get_performance_stats() -> dict: avg_max_return = round(float(avg_extremes[0]), 2) if avg_extremes and avg_extremes[0] is not None else 0 avg_max_drawdown = round(float(avg_extremes[1]), 2) if avg_extremes and avg_extremes[1] is not None else 0 - # 最近跟踪的推荐详情 + # 全量跟踪样本用于复盘统计,页面详情只取最近一批展示。 result = await db.execute( text( "SELECT r.ts_code, r.name, r.signal, r.entry_price, " @@ -436,13 +455,13 @@ async def get_performance_stats() -> dict: " SELECT recommendation_id, MAX(id) as max_id " " FROM recommendation_tracking GROUP BY recommendation_id" ") latest ON t.id = latest.max_id " - "ORDER BY r.created_at DESC LIMIT 20" + "ORDER BY r.created_at DESC" ) ) - details = [] + all_details = [] for row in result.fetchall(): r = row._mapping - details.append({ + all_details.append({ "ts_code": r["ts_code"], "name": r["name"], "signal": r["signal"], @@ -470,6 +489,7 @@ async def get_performance_stats() -> dict: winning = min(winning, tracked) win_rate = round(winning / tracked * 100, 1) if tracked > 0 else 0 + details = all_details[:20] return { "total_recommendations": total, @@ -482,8 +502,8 @@ async def get_performance_stats() -> dict: "hit_target_count": hit_target_count, "hit_stop_count": hit_stop_count, "lifecycle_counts": lifecycle_counts, - "route_breakdown": _build_route_breakdown(details), - "prefilter_breakdown": _build_prefilter_breakdown(details), + "route_breakdown": _build_route_breakdown(all_details), + "prefilter_breakdown": _build_prefilter_breakdown(all_details), "details": details, } except Exception as e: diff --git a/backend/app/llm/__pycache__/chat_agent.cpython-313.pyc b/backend/app/llm/__pycache__/chat_agent.cpython-313.pyc index f3a2494a..04f80984 100644 Binary files a/backend/app/llm/__pycache__/chat_agent.cpython-313.pyc and b/backend/app/llm/__pycache__/chat_agent.cpython-313.pyc differ diff --git a/backend/app/llm/__pycache__/prompts.cpython-313.pyc b/backend/app/llm/__pycache__/prompts.cpython-313.pyc index 913e5a56..0e53d350 100644 Binary files a/backend/app/llm/__pycache__/prompts.cpython-313.pyc and b/backend/app/llm/__pycache__/prompts.cpython-313.pyc differ diff --git a/backend/app/llm/__pycache__/tool_executor.cpython-313.pyc b/backend/app/llm/__pycache__/tool_executor.cpython-313.pyc index 354fff11..e572912c 100644 Binary files a/backend/app/llm/__pycache__/tool_executor.cpython-313.pyc and b/backend/app/llm/__pycache__/tool_executor.cpython-313.pyc differ diff --git a/backend/app/llm/__pycache__/tools.cpython-313.pyc b/backend/app/llm/__pycache__/tools.cpython-313.pyc index a233ab8c..2b081bae 100644 Binary files a/backend/app/llm/__pycache__/tools.cpython-313.pyc and b/backend/app/llm/__pycache__/tools.cpython-313.pyc differ diff --git a/backend/app/main.py b/backend/app/main.py index 325d77f9..f1e690d3 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -8,7 +8,7 @@ from fastapi.responses import JSONResponse from fastapi.middleware.cors import CORSMiddleware from app.config import settings -from app.db.error_logger import log_error +from app.db.error_logger import PersistentErrorLogHandler, log_error from app.db.database import init_db from app.engine.scheduler import start_scheduler, stop_scheduler from app.api import market, sectors, recommendations, stocks, watchlists, websocket, chat, auth, debug, catalysts @@ -33,6 +33,10 @@ def configure_logging() -> None: for name, level in noisy_loggers.items(): logging.getLogger(name).setLevel(level) + app_logger = logging.getLogger("app") + if not any(isinstance(handler, PersistentErrorLogHandler) for handler in app_logger.handlers): + app_logger.addHandler(PersistentErrorLogHandler(level=logging.ERROR)) + configure_logging() logger = logging.getLogger(__name__) @@ -106,7 +110,7 @@ async def lifespan(app: FastAPI): logger.info("调度器已启动") yield except Exception as e: - logger.exception("应用生命周期异常") + logger.exception("应用生命周期异常", extra={"skip_error_persist": True}) await log_error( "lifespan", f"应用生命周期异常: {e}", @@ -152,7 +156,7 @@ app.websocket("/ws")(websocket.ws_endpoint) @app.exception_handler(Exception) async def unhandled_exception_handler(request: Request, exc: Exception): - logger.exception("未处理的接口异常: %s %s", request.method, request.url.path) + logger.exception("未处理的接口异常: %s %s", request.method, request.url.path, extra={"skip_error_persist": True}) query = str(request.url.query or "") await log_error( "asgi", diff --git a/backend/app/notifications/feishu.py b/backend/app/notifications/feishu.py index 71bc00a4..08d0fe93 100644 --- a/backend/app/notifications/feishu.py +++ b/backend/app/notifications/feishu.py @@ -5,6 +5,7 @@ from __future__ import annotations import hashlib import logging from datetime import datetime +from typing import Any from zoneinfo import ZoneInfo import httpx @@ -91,3 +92,209 @@ async def send_feishu_alert( except Exception as e: logger.warning("Feishu 告警发送失败: %s", e) return False + + +def _recommendation_signature( + recommendations: list[Any], + scan_session: str, +) -> str: + parts = [scan_session] + for rec in recommendations: + parts.append( + "|".join([ + str(getattr(rec, "ts_code", "")), + str(getattr(rec, "action_plan", "")), + str(getattr(rec, "score", "")), + str(getattr(rec, "entry_price", "")), + str(getattr(rec, "target_price", "")), + str(getattr(rec, "stop_loss", "")), + ]) + ) + return hashlib.sha1("\n".join(parts).encode("utf-8")).hexdigest() + + +def _format_price(value: Any) -> str: + if value is None: + return "-" + try: + return f"{float(value):.2f}" + except Exception: + return str(value) + + +def _format_percent(value: Any) -> str: + if value is None: + return "-" + try: + return f"{float(value):g}%" + except Exception: + return str(value) + + +def _format_signal_label(value: str) -> str: + labels = { + "breakout": "突破", + "breakout_confirm": "突破确认", + "pullback": "回踩", + "launch": "启动", + "reversal": "反转", + "flow_momentum": "资金动量", + "none": "观察", + "BUY": "买入", + "HOLD": "持有", + } + return labels.get(value, value or "-") + + +def _card_text(content: str, tag: str = "lark_md") -> dict: + return {"tag": tag, "content": content} + + +def _recommendation_card_block(index: int, rec: Any) -> list[dict]: + action_plan = getattr(rec, "action_plan", "") or "观察" + name = getattr(rec, "name", "") or "-" + code = getattr(rec, "ts_code", "") or "-" + sector = getattr(rec, "sector", "") or "未归类" + score = float(getattr(rec, "score", 0) or 0) + position = _format_percent(getattr(rec, "suggested_position_pct", 0) or 0) + signal = getattr(rec, "entry_signal_type", "") or getattr(rec, "signal", "") or "-" + entry = _format_price(getattr(rec, "entry_price", None)) + target = _format_price(getattr(rec, "target_price", None)) + stop = _format_price(getattr(rec, "stop_loss", None)) + review_days = getattr(rec, "review_after_days", None) + trigger = _truncate(getattr(rec, "trigger_condition", "") or "等待触发条件确认", 120) + invalidation = _truncate(getattr(rec, "invalidation_condition", "") or "按止损/失效条件处理", 120) + risk_note = _truncate(getattr(rec, "risk_note", "") or "", 100) + signal_label = _format_signal_label(signal) + + title = ( + f"**{index}. {name}** `{code}`\n" + f"{action_plan} | {sector} | {score:.0f}分 | {signal_label}" + ) + price_line = ( + f"**仓位** {position} " + f"**入场** {entry} " + f"**目标** {target} " + f"**止损** {stop}" + ) + condition_line = f"**触发**: {trigger}\n**失效**: {invalidation}" + if risk_note: + condition_line = f"{condition_line}\n**风险**: {risk_note}" + if review_days: + condition_line = f"{condition_line}\n**复盘**: {review_days} 个交易日" + + return [ + {"tag": "div", "text": _card_text(title)}, + {"tag": "div", "text": _card_text(price_line)}, + {"tag": "div", "text": _card_text(condition_line)}, + ] + + +def _build_recommendation_card( + selected: list[Any], + market_temp: Any, + scan_session: str, + strategy_profile: dict | None, + now: str, +) -> dict: + actionable_count = sum(1 for rec in selected if getattr(rec, "action_plan", "") == "可操作") + watch_count = sum(1 for rec in selected if getattr(rec, "action_plan", "") == "重点关注") + temp = getattr(market_temp, "temperature", None) + trade_date = getattr(market_temp, "trade_date", "") if market_temp else "" + strategy_name = (strategy_profile or {}).get("name") or (strategy_profile or {}).get("strategy_id") or "-" + stance = (strategy_profile or {}).get("market_stance") or "-" + header_template = "red" if actionable_count else "orange" + + summary = "\n".join([ + f"**扫描**: {scan_session or 'manual'}", + f"**时间**: {now}", + f"**市场**: {trade_date or '-'} / 温度 {temp if temp is not None else '-'}", + f"**策略**: {strategy_name} / {stance}", + f"**推送**: 可操作 {actionable_count} 只,重点关注 {watch_count} 只", + ]) + + elements: list[dict] = [ + {"tag": "div", "text": _card_text(summary)}, + {"tag": "hr"}, + ] + for index, rec in enumerate(selected, start=1): + if index > 1: + elements.append({"tag": "hr"}) + elements.extend(_recommendation_card_block(index, rec)) + + elements.extend([ + {"tag": "hr"}, + { + "tag": "note", + "elements": [ + _card_text("只推送可操作/重点关注;观察池不推送。请按触发条件确认后再执行。", tag="plain_text") + ], + }, + ]) + + return { + "config": {"wide_screen_mode": True}, + "header": { + "template": header_template, + "title": _card_text(f"{settings.alert_app_name} 股票推荐", tag="plain_text"), + }, + "elements": elements, + } + + +async def send_recommendation_push( + recommendations: list[Any], + market_temp: Any = None, + scan_session: str = "", + strategy_profile: dict | None = None, +) -> bool: + """推送股票推荐到飞书,失败不影响扫描主流程。""" + webhook_url = settings.recommendation_push_webhook_url or settings.feishu_webhook_url + if not settings.recommendation_push_enabled or not webhook_url: + return False + + priority = {"可操作": 0, "重点关注": 1} + selected = [ + rec for rec in recommendations + if getattr(rec, "action_plan", "") in priority + ] + selected.sort( + key=lambda rec: ( + priority.get(getattr(rec, "action_plan", ""), 9), + -float(getattr(rec, "score", 0) or 0), + ) + ) + selected = selected[: max(settings.recommendation_push_max_items, 1)] + if not selected: + return False + + signature = _recommendation_signature(selected, scan_session) + dedup_key = f"feishu_recommendation_push:{signature}" + if cache.get(dedup_key): + return False + cache.set(dedup_key, True, settings.recommendation_push_dedup_ttl_seconds) + + now = datetime.now(ZoneInfo("Asia/Shanghai")).strftime("%Y-%m-%d %H:%M:%S") + payload = { + "msg_type": "interactive", + "card": _build_recommendation_card( + selected=selected, + market_temp=market_temp, + scan_session=scan_session, + strategy_profile=strategy_profile, + now=now, + ), + } + + try: + async with httpx.AsyncClient(timeout=8, follow_redirects=True) as client: + resp = await client.post(webhook_url, json=payload) + resp.raise_for_status() + body = resp.json() + if body.get("code", 0) != 0: + logger.warning("Feishu 推荐卡片推送失败: %s", body) + return False + return True + except Exception as e: + logger.warning("Feishu 推荐推送失败: %s", e) + return False diff --git a/backend/astock.db b/backend/astock.db index 789aa797..cc46e3af 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 a2f64643..8d8d3ec8 100644 --- a/frontend/.next/app-build-manifest.json +++ b/frontend/.next/app-build-manifest.json @@ -1,45 +1,30 @@ { "pages": { - "/layout": [ + "/(auth)/dashboard/page": [ "static/chunks/webpack.js", "static/chunks/main-app.js", - "static/css/app/layout.css", - "static/chunks/app/layout.js" + "static/chunks/app/(auth)/dashboard/page.js" ], "/(auth)/layout": [ "static/chunks/webpack.js", "static/chunks/main-app.js", "static/chunks/app/(auth)/layout.js" ], - "/(public)/layout": [ + "/layout": [ "static/chunks/webpack.js", "static/chunks/main-app.js", - "static/chunks/app/(public)/layout.js" + "static/css/app/layout.css", + "static/chunks/app/layout.js" ], - "/(auth)/diagnose/page": [ + "/(auth)/recommendations/page": [ "static/chunks/webpack.js", "static/chunks/main-app.js", - "static/chunks/app/(auth)/diagnose/page.js" + "static/chunks/app/(auth)/recommendations/page.js" ], - "/(auth)/stock/[code]/page": [ + "/(auth)/strategy/page": [ "static/chunks/webpack.js", "static/chunks/main-app.js", - "static/chunks/app/(auth)/stock/[code]/page.js" - ], - "/(auth)/watchlists/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/(auth)/watchlists/page.js" - ], - "/(auth)/chat/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/(auth)/chat/page.js" - ], - "/(public)/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/(public)/page.js" + "static/chunks/app/(auth)/strategy/page.js" ] } } \ No newline at end of file diff --git a/frontend/.next/build-manifest.json b/frontend/.next/build-manifest.json index b4e9156a..018cb67f 100644 --- a/frontend/.next/build-manifest.json +++ b/frontend/.next/build-manifest.json @@ -2,9 +2,7 @@ "polyfillFiles": [ "static/chunks/polyfills.js" ], - "devFiles": [ - "static/chunks/react-refresh.js" - ], + "devFiles": [], "ampDevFiles": [], "lowPriorityFiles": [ "static/development/_buildManifest.js", @@ -15,16 +13,7 @@ "static/chunks/main-app.js" ], "pages": { - "/_app": [ - "static/chunks/webpack.js", - "static/chunks/main.js", - "static/chunks/pages/_app.js" - ], - "/_error": [ - "static/chunks/webpack.js", - "static/chunks/main.js", - "static/chunks/pages/_error.js" - ] + "/_app": [] }, "ampFirstPages": [] } \ No newline at end of file diff --git a/frontend/.next/cache/.tsbuildinfo b/frontend/.next/cache/.tsbuildinfo deleted file mode 100644 index c53d02e2..00000000 --- a/frontend/.next/cache/.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/next/dist/styled-jsx/types/css.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/next/dist/styled-jsx/types/index.d.ts","../../node_modules/next/dist/styled-jsx/types/macro.d.ts","../../node_modules/next/dist/styled-jsx/types/style.d.ts","../../node_modules/next/dist/styled-jsx/types/global.d.ts","../../node_modules/next/dist/shared/lib/amp.d.ts","../../node_modules/next/amp.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.generated.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/next/dist/server/get-page-files.d.ts","../../node_modules/@types/react/canary.d.ts","../../node_modules/@types/react/experimental.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/canary.d.ts","../../node_modules/@types/react-dom/experimental.d.ts","../../node_modules/next/dist/compiled/webpack/webpack.d.ts","../../node_modules/next/dist/server/config.d.ts","../../node_modules/next/dist/lib/load-custom-routes.d.ts","../../node_modules/next/dist/shared/lib/image-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","../../node_modules/next/dist/server/body-streams.d.ts","../../node_modules/next/dist/server/future/route-kind.d.ts","../../node_modules/next/dist/server/future/route-definitions/route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/route-match.d.ts","../../node_modules/next/dist/client/components/app-router-headers.d.ts","../../node_modules/next/dist/server/request-meta.d.ts","../../node_modules/next/dist/server/lib/revalidate.d.ts","../../node_modules/next/dist/server/config-shared.d.ts","../../node_modules/next/dist/server/base-http/index.d.ts","../../node_modules/next/dist/server/api-utils/index.d.ts","../../node_modules/next/dist/server/node-environment.d.ts","../../node_modules/next/dist/server/require-hook.d.ts","../../node_modules/next/dist/server/node-polyfill-crypto.d.ts","../../node_modules/next/dist/lib/page-types.d.ts","../../node_modules/next/dist/build/analysis/get-page-static-info.d.ts","../../node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","../../node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","../../node_modules/next/dist/server/render-result.d.ts","../../node_modules/next/dist/server/future/helpers/i18n-provider.d.ts","../../node_modules/next/dist/server/web/next-url.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","../../node_modules/next/dist/server/web/spec-extension/cookies.d.ts","../../node_modules/next/dist/server/web/spec-extension/request.d.ts","../../node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","../../node_modules/next/dist/server/web/spec-extension/response.d.ts","../../node_modules/next/dist/server/web/types.d.ts","../../node_modules/next/dist/lib/setup-exception-listeners.d.ts","../../node_modules/next/dist/lib/constants.d.ts","../../node_modules/next/dist/build/index.d.ts","../../node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","../../node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","../../node_modules/next/dist/server/base-http/node.d.ts","../../node_modules/next/dist/server/font-utils.d.ts","../../node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-modules/route-module.d.ts","../../node_modules/next/dist/shared/lib/deep-readonly.d.ts","../../node_modules/next/dist/server/load-components.d.ts","../../node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","../../node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-definitions/locale-route-definition.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-route-definition.d.ts","../../node_modules/next/dist/shared/lib/mitt.d.ts","../../node_modules/next/dist/client/with-router.d.ts","../../node_modules/next/dist/client/router.d.ts","../../node_modules/next/dist/client/route-loader.d.ts","../../node_modules/next/dist/client/page-loader.d.ts","../../node_modules/next/dist/shared/lib/bloom-filter.d.ts","../../node_modules/next/dist/shared/lib/router/router.d.ts","../../node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-definitions/app-page-route-definition.d.ts","../../node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","../../node_modules/next/dist/shared/lib/constants.d.ts","../../node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","../../node_modules/next/dist/build/page-extensions-type.d.ts","../../node_modules/next/dist/build/webpack/loaders/next-app-loader.d.ts","../../node_modules/next/dist/server/lib/app-dir-module.d.ts","../../node_modules/next/dist/server/response-cache/types.d.ts","../../node_modules/next/dist/server/response-cache/index.d.ts","../../node_modules/next/dist/server/lib/incremental-cache/index.d.ts","../../node_modules/next/dist/client/components/hooks-server-context.d.ts","../../node_modules/next/dist/server/app-render/dynamic-rendering.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage.external.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","../../node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","../../node_modules/next/dist/client/components/request-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/request-async-storage.external.d.ts","../../node_modules/next/dist/server/app-render/create-error-handler.d.ts","../../node_modules/next/dist/server/app-render/app-render.d.ts","../../node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/amp-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.compiled.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/next/dist/client/components/error-boundary.d.ts","../../node_modules/next/dist/client/components/router-reducer/create-initial-router-state.d.ts","../../node_modules/next/dist/client/components/app-router.d.ts","../../node_modules/next/dist/client/components/layout-router.d.ts","../../node_modules/next/dist/client/components/render-from-template-context.d.ts","../../node_modules/next/dist/client/components/action-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/action-async-storage.external.d.ts","../../node_modules/next/dist/client/components/client-page.d.ts","../../node_modules/next/dist/client/components/search-params.d.ts","../../node_modules/next/dist/client/components/not-found-boundary.d.ts","../../node_modules/next/dist/server/app-render/rsc/preloads.d.ts","../../node_modules/next/dist/server/app-render/rsc/postpone.d.ts","../../node_modules/next/dist/server/app-render/rsc/taint.d.ts","../../node_modules/next/dist/server/app-render/entry-base.d.ts","../../node_modules/next/dist/build/templates/app-page.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.d.ts","../../node_modules/next/dist/server/lib/builtin-request-context.d.ts","../../node_modules/next/dist/server/app-render/types.d.ts","../../node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","../../node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","../../node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.compiled.d.ts","../../node_modules/next/dist/build/templates/pages.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.d.ts","../../node_modules/next/dist/server/render.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-api-route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/pages-api-route-match.d.ts","../../node_modules/next/dist/server/future/route-matchers/route-matcher.d.ts","../../node_modules/next/dist/server/future/route-matcher-providers/route-matcher-provider.d.ts","../../node_modules/next/dist/server/future/route-matcher-managers/route-matcher-manager.d.ts","../../node_modules/next/dist/server/future/normalizers/normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/locale-route-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/pathname-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/suffix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/postponed.d.ts","../../node_modules/next/dist/server/future/normalizers/request/action.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefetch-rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/next-data.d.ts","../../node_modules/next/dist/server/base-server.d.ts","../../node_modules/next/dist/server/image-optimizer.d.ts","../../node_modules/next/dist/server/next-server.d.ts","../../node_modules/next/dist/lib/coalesced-function.d.ts","../../node_modules/next/dist/server/lib/router-utils/types.d.ts","../../node_modules/next/dist/trace/types.d.ts","../../node_modules/next/dist/trace/trace.d.ts","../../node_modules/next/dist/trace/shared.d.ts","../../node_modules/next/dist/trace/index.d.ts","../../node_modules/next/dist/build/load-jsconfig.d.ts","../../node_modules/next/dist/build/webpack-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/define-env-plugin.d.ts","../../node_modules/next/dist/build/swc/index.d.ts","../../node_modules/next/dist/server/dev/parse-version-info.d.ts","../../node_modules/next/dist/server/dev/hot-reloader-types.d.ts","../../node_modules/next/dist/telemetry/storage.d.ts","../../node_modules/next/dist/server/lib/types.d.ts","../../node_modules/next/dist/server/lib/render-server.d.ts","../../node_modules/next/dist/server/lib/router-server.d.ts","../../node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","../../node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","../../node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","../../node_modules/next/dist/server/lib/dev-bundler-service.d.ts","../../node_modules/next/dist/server/dev/static-paths-worker.d.ts","../../node_modules/next/dist/server/dev/next-dev-server.d.ts","../../node_modules/next/dist/server/next.d.ts","../../node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","../../node_modules/next/dist/lib/metadata/types/extra-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","../../node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","../../node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","../../node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","../../node_modules/next/types/index.d.ts","../../node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","../../node_modules/@next/env/dist/index.d.ts","../../node_modules/next/dist/shared/lib/utils.d.ts","../../node_modules/next/dist/pages/_app.d.ts","../../node_modules/next/app.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","../../node_modules/next/dist/server/web/spec-extension/revalidate.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-no-store.d.ts","../../node_modules/next/cache.d.ts","../../node_modules/next/dist/shared/lib/runtime-config.external.d.ts","../../node_modules/next/config.d.ts","../../node_modules/next/dist/pages/_document.d.ts","../../node_modules/next/document.d.ts","../../node_modules/next/dist/shared/lib/dynamic.d.ts","../../node_modules/next/dynamic.d.ts","../../node_modules/next/dist/pages/_error.d.ts","../../node_modules/next/error.d.ts","../../node_modules/next/dist/shared/lib/head.d.ts","../../node_modules/next/head.d.ts","../../node_modules/next/dist/client/components/draft-mode.d.ts","../../node_modules/next/dist/client/components/headers.d.ts","../../node_modules/next/headers.d.ts","../../node_modules/next/dist/shared/lib/get-img-props.d.ts","../../node_modules/next/dist/client/image-component.d.ts","../../node_modules/next/dist/shared/lib/image-external.d.ts","../../node_modules/next/image.d.ts","../../node_modules/next/dist/client/link.d.ts","../../node_modules/next/link.d.ts","../../node_modules/next/dist/client/components/redirect-status-code.d.ts","../../node_modules/next/dist/client/components/redirect.d.ts","../../node_modules/next/dist/client/components/not-found.d.ts","../../node_modules/next/dist/client/components/navigation.react-server.d.ts","../../node_modules/next/dist/client/components/navigation.d.ts","../../node_modules/next/navigation.d.ts","../../node_modules/next/router.d.ts","../../node_modules/next/dist/client/script.d.ts","../../node_modules/next/script.d.ts","../../node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","../../node_modules/next/dist/server/web/spec-extension/image-response.d.ts","../../node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/emoji/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/types.d.ts","../../node_modules/next/server.d.ts","../../node_modules/next/types/global.d.ts","../../node_modules/next/types/compiled.d.ts","../../node_modules/next/index.d.ts","../../node_modules/next/image-types/global.d.ts","../../next-env.d.ts","../../tailwind.config.ts","../../src/app/(auth)/api/chat/stream/route.ts","../../src/hooks/use-websocket.ts","../../src/lib/api.ts","../../src/lib/markdown.ts","../../src/lib/utils.ts","../../src/hooks/use-auth.tsx","../../node_modules/next-themes/dist/index.d.ts","../../src/app/layout.tsx","../../src/components/auth-guard.tsx","../../src/components/change-password-dialog.tsx","../../src/components/theme-toggle.tsx","../../src/components/user-menu.tsx","../../src/components/nav.tsx","../../src/app/(auth)/layout.tsx","../../src/app/(auth)/chat/page.tsx","../../src/components/market-temp.tsx","../../src/components/stock-card.tsx","../../src/components/sector-heatmap.tsx","../../src/app/(auth)/dashboard/page.tsx","../../src/components/error-boundary.tsx","../../src/app/(auth)/diagnose/page.tsx","../../src/app/(auth)/recommendations/page.tsx","../../node_modules/echarts/types/dist/echarts.d.ts","../../node_modules/echarts/index.d.ts","../../src/app/(auth)/sectors/page.tsx","../../src/app/(auth)/settings/page.tsx","../../src/components/kline-chart.tsx","../../src/components/capital-flow.tsx","../../src/app/(auth)/stock/[code]/page.tsx","../../src/app/(public)/layout.tsx","../../src/app/(public)/page.tsx","../../src/app/(public)/login/page.tsx","../../src/components/score-radar.tsx","../types/app/layout.ts","../types/app/(auth)/api/chat/stream/route.ts","../types/app/(auth)/chat/page.ts","../types/app/(auth)/dashboard/page.ts","../types/app/(auth)/diagnose/page.ts","../types/app/(auth)/recommendations/page.ts","../types/app/(auth)/sectors/page.ts","../types/app/(auth)/settings/page.ts","../types/app/(auth)/stock/[code]/page.ts","../types/app/(public)/layout.ts","../types/app/(public)/page.ts","../types/app/(public)/login/page.ts","../../node_modules/@types/json5/index.d.ts","../types/app/(auth)/users/page.ts","../types/app/api/chat/stream/route.ts","../types/app/chat/page.ts","../types/app/diagnose/page.ts","../types/app/login/page.ts","../types/app/monitor/page.ts","../types/app/page.ts","../types/app/recommendations/page.ts","../types/app/sectors/page.ts","../types/app/stock/[code]/page.ts","../types/app/users/page.ts","../../src/app/(auth)/users/page.tsx","../../src/app/api/chat/stream/route.ts","../../src/app/chat/page.tsx","../../src/app/diagnose/page.tsx","../../src/app/login/page.tsx","../../src/app/monitor/page.tsx","../../src/app/page.tsx","../../src/app/recommendations/page.tsx","../../src/app/sectors/page.tsx","../../src/app/stock/[code]/page.tsx","../../src/app/users/page.tsx"],"fileIdsList":[[99,145,405,412],[99,145,360,426],[99,145,360,430],[99,145,360,432],[99,145,360,433],[99,145,360,436],[99,145,360,437],[99,145,360,440],[99,145,360,441],[99,145,360,443],[99,145,360,442],[99,145,360,419],[99,145,408,409],[99,145],[99,142,145],[99,144,145],[145],[99,145,150,178],[99,145,146,151,156,164,175,186],[99,145,146,147,156,164],[94,95,96,99,145],[99,145,148,187],[99,145,149,150,157,165],[99,145,150,175,183],[99,145,151,153,156,164],[99,144,145,152],[99,145,153,154],[99,145,155,156],[99,144,145,156],[99,145,156,157,158,175,186],[99,145,156,157,158,171,175,178],[99,145,153,156,159,164,175,186],[99,145,156,157,159,160,164,175,183,186],[99,145,159,161,175,183,186],[97,98,99,100,101,102,103,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,156,162],[99,145,163,186,191],[99,145,153,156,164,175],[99,145,165],[99,145,166],[99,144,145,167],[99,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,169],[99,145,170],[99,145,156,171,172],[99,145,171,173,187,189],[99,145,156,175,176,178],[99,145,177,178],[99,145,175,176],[99,145,178],[99,145,179],[99,142,145,175,180],[99,145,156,181,182],[99,145,181,182],[99,145,150,164,175,183],[99,145,184],[99,145,164,185],[99,145,159,170,186],[99,145,150,187],[99,145,175,188],[99,145,163,189],[99,145,190],[99,140,145],[99,140,145,156,158,167,175,178,186,189,191],[99,145,175,192],[87,99,145,197,198,199],[87,99,145,197,198],[87,99,145],[87,91,99,145,196,361,404],[87,91,99,145,195,361,404],[84,85,86,99,145],[99,145,434],[92,99,145],[99,145,365],[99,145,367,368,369],[99,145,371],[99,145,202,212,218,220,361],[99,145,202,209,211,214,232],[99,145,212],[99,145,212,214,339],[99,145,267,285,300,407],[99,145,309],[99,145,202,212,219,253,263,336,337,407],[99,145,219,407],[99,145,212,263,264,265,407],[99,145,212,219,253,407],[99,145,407],[99,145,202,219,220,407],[99,145,293],[99,144,145,193,292],[87,99,145,286,287,288,306,307],[87,99,145,286],[99,145,276],[99,145,275,277,381],[87,99,145,286,287,304],[99,145,282,307,393],[99,145,391,392],[99,145,226,390],[99,145,279],[99,144,145,193,226,242,275,276,277,278],[87,99,145,304,306,307],[99,145,304,306],[99,145,304,305,307],[99,145,170,193],[99,145,274],[99,144,145,193,211,213,270,271,272,273],[87,99,145,203,384],[87,99,145,186,193],[87,99,145,219,251],[87,99,145,219],[99,145,249,254],[87,99,145,250,364],[87,91,99,145,159,193,195,196,361,402,403],[99,145,361],[99,145,201],[99,145,354,355,356,357,358,359],[99,145,356],[87,99,145,250,286,364],[87,99,145,286,362,364],[87,99,145,286,364],[99,145,159,193,213,364],[99,145,159,193,210,211,222,240,242,274,279,280,302,304],[99,145,271,274,279,287,289,290,291,293,294,295,296,297,298,299,407],[99,145,272],[87,99,145,170,193,211,212,240,242,243,245,270,302,303,307,361,407],[99,145,159,193,213,214,226,227,275],[99,145,159,193,212,214],[99,145,159,175,193,210,213,214],[99,145,159,170,186,193,210,211,212,213,214,219,222,223,233,234,236,239,240,242,243,244,245,269,270,303,304,312,314,317,319,322,324,325,326,327],[99,145,159,175,193],[99,145,202,203,204,210,211,361,364,407],[99,145,159,175,186,193,207,338,340,341,407],[99,145,170,186,193,207,210,213,230,234,236,237,238,243,270,317,328,330,336,350,351],[99,145,212,216,270],[99,145,210,212],[99,145,223,318],[99,145,320,321],[99,145,320],[99,145,318],[99,145,320,323],[99,145,206,207],[99,145,206,246],[99,145,206],[99,145,208,223,316],[99,145,315],[99,145,207,208],[99,145,208,313],[99,145,207],[99,145,302],[99,145,159,193,210,222,241,261,267,281,284,301,304],[99,145,255,256,257,258,259,260,282,283,307,362],[99,145,311],[99,145,159,193,210,222,241,247,308,310,312,361,364],[99,145,159,186,193,203,210,212,269],[99,145,266],[99,145,159,193,344,349],[99,145,233,242,269,364],[99,145,332,336,350,353],[99,145,159,216,336,344,345,353],[99,145,202,212,233,244,347],[99,145,159,193,212,219,244,331,332,342,343,346,348],[99,145,194,240,241,242,361,364],[99,145,159,170,186,193,208,210,211,213,216,221,222,230,233,234,236,237,238,239,243,245,269,270,314,328,329,364],[99,145,159,193,210,212,216,330,352],[99,145,159,193,211,213],[87,99,145,159,170,193,201,203,210,211,214,222,239,240,242,243,245,311,361,364],[99,145,159,170,186,193,205,208,209,213],[99,145,206,268],[99,145,159,193,206,211,222],[99,145,159,193,212,223],[99,145,159,193],[99,145,226],[99,145,225],[99,145,227],[99,145,212,224,226,230],[99,145,212,224,226],[99,145,159,193,205,212,213,219,227,228,229],[87,99,145,304,305,306],[99,145,262],[87,99,145,203],[87,99,145,236],[87,99,145,194,239,242,245,361,364],[99,145,203,384,385],[87,99,145,254],[87,99,145,170,186,193,201,248,250,252,253,364],[99,145,213,219,236],[99,145,235],[87,99,145,157,159,170,193,201,254,263,361,362,363],[83,87,88,89,90,99,145,195,196,361,404],[99,145,150],[99,145,333,334,335],[99,145,333],[99,145,373],[99,145,375],[99,145,377],[99,145,379],[99,145,382],[99,145,386],[91,93,99,145,361,366,370,372,374,376,378,380,383,387,389,395,396,398,405,406,407],[99,145,388],[99,145,394],[99,145,250],[99,145,397],[99,144,145,227,228,229,230,399,400,401,404],[99,145,193],[87,91,99,145,159,161,170,193,195,196,197,199,201,214,353,360,364,404],[99,112,116,145,186],[99,112,145,175,186],[99,107,145],[99,109,112,145,183,186],[99,145,164,183],[99,107,145,193],[99,109,112,145,164,186],[99,104,105,108,111,145,156,175,186],[99,112,119,145],[99,104,110,145],[99,112,133,134,145],[99,108,112,145,178,186,193],[99,133,145,193],[99,106,107,145,193],[99,112,145],[99,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,145],[99,112,127,145],[99,112,119,120,145],[99,110,112,120,121,145],[99,111,145],[99,104,107,112,145],[99,112,116,120,121,145],[99,116,145],[99,110,112,115,145,186],[99,104,109,112,119,145],[99,145,175],[99,107,112,133,145,191,193],[99,145,405],[87,99,145,414,415,418],[87,99,145,413,414,415,417,422,427,428,429],[87,99,145,395,414,415,418,431],[99,145,420,423,424],[87,99,145,414,428],[87,99,145,413,414,416,431,435],[87,99,145,414,417],[87,99,145,395,414,416,431,438,439],[87,99,145,395,417],[87,99,145,389],[99,145,408,417,418],[87,99,145,418,435],[87,99,145,414],[99,145,414,416],[99,145,389,395,417,422],[87,99,145,414,416],[87,99,145,418],[87,99,145,417,421,422]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","signature":false,"impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","signature":false,"impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","signature":false,"impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","signature":false,"impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","signature":false,"impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","signature":false,"impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","signature":false,"impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","signature":false,"impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","signature":false,"impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","signature":false,"impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","signature":false,"impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0990a7576222f248f0a3b888adcb7389f957928ce2afb1cd5128169086ff4d29","signature":false,"impliedFormat":1},{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","signature":false,"impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","signature":false,"impliedFormat":1},{"version":"035312d4945d13efa134ae482f6dc56a1a9346f7ac3be7ccbad5741058ce87f3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"cc69795d9954ee4ad57545b10c7bf1a7260d990231b1685c147ea71a6faa265c","signature":false,"impliedFormat":1},{"version":"8bc6c94ff4f2af1f4023b7bb2379b08d3d7dd80c698c9f0b07431ea16101f05f","signature":false,"impliedFormat":1},{"version":"1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","signature":false,"impliedFormat":1},{"version":"57194e1f007f3f2cbef26fa299d4c6b21f4623a2eddc63dfeef79e38e187a36e","signature":false,"impliedFormat":1},{"version":"0f6666b58e9276ac3a38fdc80993d19208442d6027ab885580d93aec76b4ef00","signature":false,"impliedFormat":1},{"version":"05fd364b8ef02fb1e174fbac8b825bdb1e5a36a016997c8e421f5fab0a6da0a0","signature":false,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","signature":false,"impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","signature":false,"impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","signature":false,"impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","signature":false,"impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","signature":false,"impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","signature":false,"impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","signature":false,"impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","signature":false,"impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","signature":false,"impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","signature":false,"impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","signature":false,"impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","signature":false,"impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","signature":false,"impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","signature":false,"impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","signature":false,"impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","signature":false,"impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","signature":false,"impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","signature":false,"impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","signature":false,"impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","signature":false,"impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","signature":false,"impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","signature":false,"impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","signature":false,"impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","signature":false,"impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","signature":false,"impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","signature":false,"impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","signature":false,"impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","signature":false,"impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","signature":false,"impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","signature":false,"impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","signature":false,"impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","signature":false,"impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","signature":false,"impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","signature":false,"impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","signature":false,"impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","signature":false,"impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","signature":false,"impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","signature":false,"impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","signature":false,"impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","signature":false,"impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","signature":false,"impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","signature":false,"impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","signature":false,"impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","signature":false,"impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","signature":false,"impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","signature":false,"impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","signature":false,"impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","signature":false,"impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","signature":false,"impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","signature":false,"impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","signature":false,"impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","signature":false,"impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","signature":false,"impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","signature":false,"impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","signature":false,"impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","signature":false,"impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","signature":false,"impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","signature":false,"impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","signature":false,"impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","signature":false,"impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","signature":false,"impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","signature":false,"impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","signature":false,"impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","signature":false,"impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","signature":false,"impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","signature":false,"impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","signature":false,"impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","signature":false,"impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","signature":false,"impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","signature":false,"impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","signature":false,"impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","signature":false,"impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","signature":false,"impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","signature":false,"impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","signature":false,"impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","signature":false,"impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","signature":false,"impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","signature":false,"impliedFormat":1},{"version":"8caa5c86be1b793cd5f599e27ecb34252c41e011980f7d61ae4989a149ff6ccc","signature":false,"impliedFormat":1},{"version":"f9fd93190acb1ffe0bc0fb395df979452f8d625071e9ffc8636e4dfb86ab2508","signature":false,"impliedFormat":1},{"version":"5f41fd8732a89e940c58ce22206e3df85745feb8983e2b4c6257fb8cbb118493","signature":false,"impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","signature":false,"impliedFormat":1},{"version":"1cfa8647d7d71cb03847d616bd79320abfc01ddea082a49569fda71ac5ece66b","signature":false,"impliedFormat":1},{"version":"bb7a61dd55dc4b9422d13da3a6bb9cc5e89be888ef23bbcf6558aa9726b89a1c","signature":false,"impliedFormat":1},{"version":"db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","signature":false,"impliedFormat":1},{"version":"cfe4ef4710c3786b6e23dae7c086c70b4f4835a2e4d77b75d39f9046106e83d3","signature":false,"impliedFormat":1},{"version":"cbea99888785d49bb630dcbb1613c73727f2b5a2cf02e1abcaab7bcf8d6bf3c5","signature":false,"impliedFormat":1},{"version":"3a8bddb66b659f6bd2ff641fc71df8a8165bafe0f4b799cc298be5cd3755bb20","signature":false,"impliedFormat":1},{"version":"a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","signature":false,"impliedFormat":1},{"version":"2dad084c67e649f0f354739ec7df7c7df0779a28a4f55c97c6b6883ae850d1ce","signature":false,"impliedFormat":1},{"version":"fa5bbc7ab4130dd8cdc55ea294ec39f76f2bc507a0f75f4f873e38631a836ca7","signature":false,"impliedFormat":1},{"version":"df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","signature":false,"impliedFormat":1},{"version":"cf86de1054b843e484a3c9300d62fbc8c97e77f168bbffb131d560ca0474d4a8","signature":false,"impliedFormat":1},{"version":"196c960b12253fde69b204aa4fbf69470b26daf7a430855d7f94107a16495ab0","signature":false,"impliedFormat":1},{"version":"ee15ea5dd7a9fc9f5013832e5843031817a880bf0f24f37a29fd8337981aae07","signature":false,"impliedFormat":1},{"version":"bf24f6d35f7318e246010ffe9924395893c4e96d34324cde77151a73f078b9ad","signature":false,"impliedFormat":1},{"version":"ea53732769832d0f127ae16620bd5345991d26bf0b74e85e41b61b27d74ea90f","signature":false,"impliedFormat":1},{"version":"10595c7ff5094dd5b6a959ccb1c00e6a06441b4e10a87bc09c15f23755d34439","signature":false,"impliedFormat":1},{"version":"9620c1ff645afb4a9ab4044c85c26676f0a93e8c0e4b593aea03a89ccb47b6d0","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"a9af0e608929aaf9ce96bd7a7b99c9360636c31d73670e4af09a09950df97841","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"c86fe861cf1b4c46a0fb7d74dffe596cf679a2e5e8b1456881313170f092e3fa","signature":false,"impliedFormat":1},{"version":"08ed0b3f0166787f84a6606f80aa3b1388c7518d78912571b203817406e471da","signature":false,"impliedFormat":1},{"version":"47e5af2a841356a961f815e7c55d72554db0c11b4cba4d0caab91f8717846a94","signature":false,"impliedFormat":1},{"version":"65f43099ded6073336e697512d9b80f2d4fec3182b7b2316abf712e84104db00","signature":false,"impliedFormat":1},{"version":"f5f541902bf7ae0512a177295de9b6bcd6809ea38307a2c0a18bfca72212f368","signature":false,"impliedFormat":1},{"version":"b0decf4b6da3ebc52ea0c96095bdfaa8503acc4ac8e9081c5f2b0824835dd3bd","signature":false,"impliedFormat":1},{"version":"ca1b882a105a1972f82cc58e3be491e7d750a1eb074ffd13b198269f57ed9e1b","signature":false,"impliedFormat":1},{"version":"fc3e1c87b39e5ba1142f27ec089d1966da168c04a859a4f6aab64dceae162c2b","signature":false,"impliedFormat":1},{"version":"3b414b99a73171e1c4b7b7714e26b87d6c5cb03d200352da5342ab4088a54c85","signature":false,"impliedFormat":1},{"version":"61888522cec948102eba94d831c873200aa97d00d8989fdfd2a3e0ee75ec65a2","signature":false,"impliedFormat":1},{"version":"4e10622f89fea7b05dd9b52fb65e1e2b5cbd96d4cca3d9e1a60bb7f8a9cb86a1","signature":false,"impliedFormat":1},{"version":"74b2a5e5197bd0f2e0077a1ea7c07455bbea67b87b0869d9786d55104006784f","signature":false,"impliedFormat":1},{"version":"59bf32919de37809e101acffc120596a9e45fdbab1a99de5087f31fdc36e2f11","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"faa03dffb64286e8304a2ca96dd1317a77db6bfc7b3fb385163648f67e535d77","signature":false,"impliedFormat":1},{"version":"c40c848daad198266370c1c72a7a8c3d18d2f50727c7859fcfefd3ff69a7f288","signature":false,"impliedFormat":1},{"version":"ac60bbee0d4235643cc52b57768b22de8c257c12bd8c2039860540cab1fa1d82","signature":false,"impliedFormat":1},{"version":"6428e6edd944ce6789afdf43f9376c1f2e4957eea34166177625aaff4c0da1a0","signature":false,"impliedFormat":1},{"version":"ada39cbb2748ab2873b7835c90c8d4620723aedf323550e8489f08220e477c7f","signature":false,"impliedFormat":1},{"version":"6e5f5cee603d67ee1ba6120815497909b73399842254fc1e77a0d5cdc51d8c9c","signature":false,"impliedFormat":1},{"version":"8dba67056cbb27628e9b9a1cba8e57036d359dceded0725c72a3abe4b6c79cd4","signature":false,"impliedFormat":1},{"version":"70f3814c457f54a7efe2d9ce9d2686de9250bb42eb7f4c539bd2280a42e52d33","signature":false,"impliedFormat":1},{"version":"154dd2e22e1e94d5bc4ff7726706bc0483760bae40506bdce780734f11f7ec47","signature":false,"impliedFormat":1},{"version":"ef61792acbfa8c27c9bd113f02731e66229f7d3a169e3c1993b508134f1a58e0","signature":false,"impliedFormat":1},{"version":"9c82171d836c47486074e4ca8e059735bf97b205e70b196535b5efd40cbe1bc5","signature":false,"impliedFormat":1},{"version":"0131e203d8560edb39678abe10db42564a068f98c4ebd1ed9ffe7279c78b3c81","signature":false,"impliedFormat":1},{"version":"f6404e7837b96da3ea4d38c4f1a3812c96c9dcdf264e93d5bdb199f983a3ef4b","signature":false,"impliedFormat":1},{"version":"c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","signature":false,"impliedFormat":1},{"version":"65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","signature":false,"impliedFormat":1},{"version":"9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","signature":false,"impliedFormat":1},{"version":"de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","signature":false,"impliedFormat":1},{"version":"c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","signature":false,"impliedFormat":1},{"version":"1ee45496b5f8bdee6f7abc233355898e5bf9bd51255db65f5ff7ede617ca0027","signature":false,"impliedFormat":1},{"version":"8b8f00491431fe82f060dfe8c7f2180a9fb239f3d851527db909b83230e75882","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"db01d18853469bcb5601b9fc9826931cc84cc1a1944b33cad76fd6f1e3d8c544","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dba114fb6a32b355a9cfc26ca2276834d72fe0e94cd2c3494005547025015369","signature":false,"impliedFormat":1},{"version":"903e299a28282fa7b714586e28409ed73c3b63f5365519776bf78e8cf173db36","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","signature":false,"impliedFormat":1},{"version":"f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b","signature":false,"impliedFormat":1},{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","signature":false,"impliedFormat":1},{"version":"dd3900b24a6a8745efeb7ad27629c0f8a626470ac229c1d73f1fe29d67e44dca","signature":false,"impliedFormat":1},{"version":"ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","signature":false,"impliedFormat":1},{"version":"106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","signature":false,"impliedFormat":1},{"version":"ec29be0737d39268696edcec4f5e97ce26f449fa9b7afc2f0f99a86def34a418","signature":false,"impliedFormat":1},{"version":"aeab39e8e0b1a3b250434c3b2bb8f4d17bbec2a9dbce5f77e8a83569d3d2cbc2","signature":false,"impliedFormat":1},{"version":"ec6cba1c02c675e4dd173251b156792e8d3b0c816af6d6ad93f1a55d674591aa","signature":false,"impliedFormat":1},{"version":"b620391fe8060cf9bedc176a4d01366e6574d7a71e0ac0ab344a4e76576fcbb8","signature":false,"impliedFormat":1},{"version":"d729408dfde75b451530bcae944cf89ee8277e2a9df04d1f62f2abfd8b03c1e1","signature":false,"impliedFormat":1},{"version":"e15d3c84d5077bb4a3adee4c791022967b764dc41cb8fa3cfa44d4379b2c95f5","signature":false,"impliedFormat":1},{"version":"5f58e28cd22e8fc1ac1b3bc6b431869f1e7d0b39e2c21fbf79b9fa5195a85980","signature":false,"impliedFormat":1},{"version":"e1fc1a1045db5aa09366be2b330e4ce391550041fc3e925f60998ca0b647aa97","signature":false,"impliedFormat":1},{"version":"63533978dcda286422670f6e184ac516805a365fb37a086eeff4309e812f1402","signature":false,"impliedFormat":1},{"version":"43ba4f2fa8c698f5c304d21a3ef596741e8e85a810b7c1f9b692653791d8d97a","signature":false,"impliedFormat":1},{"version":"31fb49ef3aa3d76f0beb644984e01eab0ea222372ea9b49bb6533be5722d756c","signature":false,"impliedFormat":1},{"version":"33cd131e1461157e3e06b06916b5176e7a8ec3fce15a5cfe145e56de744e07d2","signature":false,"impliedFormat":1},{"version":"889ef863f90f4917221703781d9723278db4122d75596b01c429f7c363562b86","signature":false,"impliedFormat":1},{"version":"3556cfbab7b43da96d15a442ddbb970e1f2fc97876d055b6555d86d7ac57dae5","signature":false,"impliedFormat":1},{"version":"437751e0352c6e924ddf30e90849f1d9eb00ca78c94d58d6a37202ec84eb8393","signature":false,"impliedFormat":1},{"version":"48e8af7fdb2677a44522fd185d8c87deff4d36ee701ea003c6c780b1407a1397","signature":false,"impliedFormat":1},{"version":"d11308de5a36c7015bb73adb5ad1c1bdaac2baede4cc831a05cf85efa3cc7f2f","signature":false,"impliedFormat":1},{"version":"38e4684c22ed9319beda6765bab332c724103d3a966c2e5e1c5a49cf7007845f","signature":false,"impliedFormat":1},{"version":"f9812cfc220ecf7557183379531fa409acd249b9e5b9a145d0d52b76c20862de","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e650298721abc4f6ae851e60ae93ee8199791ceec4b544c3379862f81f43178c","signature":false,"impliedFormat":1},{"version":"2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","signature":false,"impliedFormat":1},{"version":"13283350547389802aa35d9f2188effaeac805499169a06ef5cd77ce2a0bd63f","signature":false,"impliedFormat":1},{"version":"680793958f6a70a44c8d9ae7d46b7a385361c69ac29dcab3ed761edce1c14ab8","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","signature":false,"impliedFormat":1},{"version":"913ddbba170240070bd5921b8f33ea780021bdf42fbdfcd4fcb2691b1884ddde","signature":false,"impliedFormat":1},{"version":"b4e6d416466999ff40d3fe5ceb95f7a8bfb7ac2262580287ac1a8391e5362431","signature":false,"impliedFormat":1},{"version":"5fe23bd829e6be57d41929ac374ee9551ccc3c44cee893167b7b5b77be708014","signature":false,"impliedFormat":1},{"version":"0a626484617019fcfbfc3c1bc1f9e84e2913f1adb73692aa9075817404fb41a1","signature":false,"impliedFormat":1},{"version":"438c7513b1df91dcef49b13cd7a1c4720f91a36e88c1df731661608b7c055f10","signature":false,"impliedFormat":1},{"version":"cf185cc4a9a6d397f416dd28cca95c227b29f0f27b160060a95c0e5e36cda865","signature":false,"impliedFormat":1},{"version":"0086f3e4ad898fd7ca56bb223098acfacf3fa065595182aaf0f6c4a6a95e6fbd","signature":false,"impliedFormat":1},{"version":"efaa078e392f9abda3ee8ade3f3762ab77f9c50b184e6883063a911742a4c96a","signature":false,"impliedFormat":1},{"version":"54a8bb487e1dc04591a280e7a673cdfb272c83f61e28d8a64cf1ac2e63c35c51","signature":false,"impliedFormat":1},{"version":"021a9498000497497fd693dd315325484c58a71b5929e2bbb91f419b04b24cea","signature":false,"impliedFormat":1},{"version":"9385cdc09850950bc9b59cca445a3ceb6fcca32b54e7b626e746912e489e535e","signature":false,"impliedFormat":1},{"version":"2894c56cad581928bb37607810af011764a2f511f575d28c9f4af0f2ef02d1ab","signature":false,"impliedFormat":1},{"version":"0a72186f94215d020cb386f7dca81d7495ab6c17066eb07d0f44a5bf33c1b21a","signature":false,"impliedFormat":1},{"version":"84124384abae2f6f66b7fbfc03862d0c2c0b71b826f7dbf42c8085d31f1d3f95","signature":false,"impliedFormat":1},{"version":"63a8e96f65a22604eae82737e409d1536e69a467bb738bec505f4f97cce9d878","signature":false,"impliedFormat":1},{"version":"3fd78152a7031315478f159c6a5872c712ece6f01212c78ea82aef21cb0726e2","signature":false,"impliedFormat":1},{"version":"b01bd582a6e41457bc56e6f0f9de4cb17f33f5f3843a7cf8210ac9c18472fb0f","signature":false,"impliedFormat":1},{"version":"58b49e5c1def740360b5ae22ae2405cfac295fee74abd88d74ac4ea42502dc03","signature":false,"impliedFormat":1},{"version":"512fc15cca3a35b8dbbf6e23fe9d07e6f87ad03c895acffd3087ce09f352aad0","signature":false,"impliedFormat":1},{"version":"9a0946d15a005832e432ea0cd4da71b57797efb25b755cc07f32274296d62355","signature":false,"impliedFormat":1},{"version":"a52ff6c0a149e9f370372fc3c715d7f2beee1f3bab7980e271a7ab7d313ec677","signature":false,"impliedFormat":1},{"version":"fd933f824347f9edd919618a76cdb6a0c0085c538115d9a287fa0c7f59957ab3","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"6a1aa3e55bdc50503956c5cd09ae4cd72e3072692d742816f65c66ca14f4dfdd","signature":false,"impliedFormat":1},{"version":"ab75cfd9c4f93ffd601f7ca1753d6a9d953bbedfbd7a5b3f0436ac8a1de60dfa","signature":false,"impliedFormat":1},{"version":"f95180f03d827525ca4f990f49e17ec67198c316dd000afbe564655141f725cd","signature":false,"impliedFormat":1},{"version":"b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","signature":false,"impliedFormat":1},{"version":"bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","signature":false,"impliedFormat":1},{"version":"1364f64d2fb03bbb514edc42224abd576c064f89be6a990136774ecdd881a1da","signature":false,"impliedFormat":1},{"version":"c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","signature":false,"impliedFormat":1},{"version":"950fb67a59be4c2dbe69a5786292e60a5cb0e8612e0e223537784c731af55db1","signature":false,"impliedFormat":1},{"version":"e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","signature":false,"impliedFormat":1},{"version":"07ca44e8d8288e69afdec7a31fa408ce6ab90d4f3d620006701d5544646da6aa","signature":false,"impliedFormat":1},{"version":"70246ad95ad8a22bdfe806cb5d383a26c0c6e58e7207ab9c431f1cb175aca657","signature":false,"impliedFormat":1},{"version":"f00f3aa5d64ff46e600648b55a79dcd1333458f7a10da2ed594d9f0a44b76d0b","signature":false,"impliedFormat":1},{"version":"772d8d5eb158b6c92412c03228bd9902ccb1457d7a705b8129814a5d1a6308fc","signature":false,"impliedFormat":1},{"version":"4e4475fba4ed93a72f167b061cd94a2e171b82695c56de9899275e880e06ba41","signature":false,"impliedFormat":1},{"version":"97c5f5d580ab2e4decd0a3135204050f9b97cd7908c5a8fbc041eadede79b2fa","signature":false,"impliedFormat":1},{"version":"c99a3a5f2215d5b9d735aa04cec6e61ed079d8c0263248e298ffe4604d4d0624","signature":false,"impliedFormat":1},{"version":"49b2375c586882c3ac7f57eba86680ff9742a8d8cb2fe25fe54d1b9673690d41","signature":false,"impliedFormat":1},{"version":"802e797bcab5663b2c9f63f51bdf67eff7c41bc64c0fd65e6da3e7941359e2f7","signature":false,"impliedFormat":1},{"version":"847e160d709c74cc714fbe1f99c41d3425b74cd47b1be133df1623cd87014089","signature":false,"impliedFormat":1},{"version":"9fee04f1e1afa50524862289b9f0b0fdc3735b80e2a0d684cec3b9ff3d94cecc","signature":false,"impliedFormat":1},{"version":"5cdc27fbc5c166fc5c763a30ac21cbac9859dc5ba795d3230db6d4e52a1965bb","signature":false,"impliedFormat":1},{"version":"6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","signature":false,"impliedFormat":1},{"version":"f416c9c3eee9d47ff49132c34f96b9180e50485d435d5748f0e8b72521d28d2e","signature":false,"impliedFormat":1},{"version":"05c97cddbaf99978f83d96de2d8af86aded9332592f08ce4a284d72d0952c391","signature":false,"impliedFormat":1},{"version":"14e5cdec6f8ae82dfd0694e64903a0a54abdfe37e1d966de3d4128362acbf35f","signature":false,"impliedFormat":1},{"version":"bbc183d2d69f4b59fd4dd8799ffdf4eb91173d1c4ad71cce91a3811c021bf80c","signature":false,"impliedFormat":1},{"version":"7b6ff760c8a240b40dab6e4419b989f06a5b782f4710d2967e67c695ef3e93c4","signature":false,"impliedFormat":1},{"version":"8dbc4134a4b3623fc476be5f36de35c40f2768e2e3d9ed437e0d5f1c4cd850f6","signature":false,"impliedFormat":1},{"version":"4e06330a84dec7287f7ebdd64978f41a9f70a668d3b5edc69d5d4a50b9b376bb","signature":false,"impliedFormat":1},{"version":"65bfa72967fbe9fc33353e1ac03f0480aa2e2ea346d61ff3ea997dfd850f641a","signature":false,"impliedFormat":1},{"version":"c06f0bb92d1a1a5a6c6e4b5389a5664d96d09c31673296cb7da5fe945d54d786","signature":false,"impliedFormat":1},{"version":"f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","signature":false,"impliedFormat":1},{"version":"872caaa31423f4345983d643e4649fb30f548e9883a334d6d1c5fff68ede22d4","signature":false,"impliedFormat":1},{"version":"94404c4a878fe291e7578a2a80264c6f18e9f1933fbb57e48f0eb368672e389c","signature":false,"impliedFormat":1},{"version":"5c1b7f03aa88be854bc15810bfd5bd5a1943c5a7620e1c53eddd2a013996343e","signature":false,"impliedFormat":1},{"version":"09dfc64fcd6a2785867f2368419859a6cc5a8d4e73cbe2538f205b1642eb0f51","signature":false,"impliedFormat":1},{"version":"bcf6f0a323653e72199105a9316d91463ad4744c546d1271310818b8cef7c608","signature":false,"impliedFormat":1},{"version":"01aa917531e116485beca44a14970834687b857757159769c16b228eb1e49c5f","signature":false,"impliedFormat":1},{"version":"351475f9c874c62f9b45b1f0dc7e2704e80dfd5f1af83a3a9f841f9dfe5b2912","signature":false,"impliedFormat":1},{"version":"ac457ad39e531b7649e7b40ee5847606eac64e236efd76c5d12db95bf4eacd17","signature":false,"impliedFormat":1},{"version":"187a6fdbdecb972510b7555f3caacb44b58415da8d5825d03a583c4b73fde4cf","signature":false,"impliedFormat":1},{"version":"d4c3250105a612202289b3a266bb7e323db144f6b9414f9dea85c531c098b811","signature":false,"impliedFormat":1},{"version":"95b444b8c311f2084f0fb51c616163f950fb2e35f4eaa07878f313a2d36c98a4","signature":false,"impliedFormat":1},{"version":"741067675daa6d4334a2dc80a4452ca3850e89d5852e330db7cb2b5f867173b1","signature":false,"impliedFormat":1},{"version":"f8acecec1114f11690956e007d920044799aefeb3cece9e7f4b1f8a1d542b2c9","signature":false,"impliedFormat":1},{"version":"178071ccd043967a58c5d1a032db0ddf9bd139e7920766b537d9783e88eb615e","signature":false,"impliedFormat":1},{"version":"3a17f09634c50cce884721f54fd9e7b98e03ac505889c560876291fcf8a09e90","signature":false,"impliedFormat":1},{"version":"32531dfbb0cdc4525296648f53b2b5c39b64282791e2a8c765712e49e6461046","signature":false,"impliedFormat":1},{"version":"0ce1b2237c1c3df49748d61568160d780d7b26693bd9feb3acb0744a152cd86d","signature":false,"impliedFormat":1},{"version":"e489985388e2c71d3542612685b4a7db326922b57ac880f299da7026a4e8a117","signature":false,"impliedFormat":1},{"version":"5cad4158616d7793296dd41e22e1257440910ea8d01c7b75045d4dfb20c5a41a","signature":false,"impliedFormat":1},{"version":"04d3aad777b6af5bd000bfc409907a159fe77e190b9d368da4ba649cdc28d39e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74efc1d6523bd57eb159c18d805db4ead810626bc5bc7002a2c7f483044b2e0f","signature":false,"impliedFormat":1},{"version":"19252079538942a69be1645e153f7dbbc1ef56b4f983c633bf31fe26aeac32cd","signature":false,"impliedFormat":1},{"version":"bc11f3ac00ac060462597add171220aed628c393f2782ac75dd29ff1e0db871c","signature":false,"impliedFormat":1},{"version":"616775f16134fa9d01fc677ad3f76e68c051a056c22ab552c64cc281a9686790","signature":false,"impliedFormat":1},{"version":"65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","signature":false,"impliedFormat":1},{"version":"f9fe6af238339a0e5f7563acee3178f51db37f32a2e7c09f85273098cee7ec49","signature":false,"impliedFormat":1},{"version":"3b0b1d352b8d2e47f1c4df4fb0678702aee071155b12ef0185fce9eb4fa4af1e","signature":false,"impliedFormat":1},{"version":"77e71242e71ebf8528c5802993697878f0533db8f2299b4d36aa015bae08a79c","signature":false,"impliedFormat":1},{"version":"a344403e7a7384e0e7093942533d309194ad0a53eca2a3100c0b0ab4d3932773","signature":false,"impliedFormat":1},{"version":"b7fff2d004c5879cae335db8f954eb1d61242d9f2d28515e67902032723caeab","signature":false,"impliedFormat":1},{"version":"5f3dc10ae646f375776b4e028d2bed039a93eebbba105694d8b910feebbe8b9c","signature":false,"impliedFormat":1},{"version":"bb18bf4a61a17b4a6199eb3938ecfa4a59eb7c40843ad4a82b975ab6f7e3d925","signature":false,"impliedFormat":1},{"version":"4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","signature":false,"impliedFormat":1},{"version":"e9b6fc05f536dfddcdc65dbcf04e09391b1c968ab967382e48924f5cb90d88e1","signature":false,"impliedFormat":1},{"version":"a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","signature":false,"impliedFormat":1},{"version":"2b664c3cc544d0e35276e1fb2d4989f7d4b4027ffc64da34ec83a6ccf2e5c528","signature":false,"impliedFormat":1},{"version":"a3f41ed1b4f2fc3049394b945a68ae4fdefd49fa1739c32f149d32c0545d67f5","signature":false,"impliedFormat":1},{"version":"3cd8f0464e0939b47bfccbb9bb474a6d87d57210e304029cd8eb59c63a81935d","signature":false,"impliedFormat":1},{"version":"47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","signature":false,"impliedFormat":1},{"version":"3026abd48e5e312f2328629ede6e0f770d21c3cd32cee705c450e589d015ee09","signature":false,"impliedFormat":1},{"version":"8b140b398a6afbd17cc97c38aea5274b2f7f39b1ae5b62952cfe65bf493e3e75","signature":false,"impliedFormat":1},{"version":"7663d2c19ce5ef8288c790edba3d45af54e58c84f1b37b1249f6d49d962f3d91","signature":false,"impliedFormat":1},{"version":"5cce3b975cdb72b57ae7de745b3c5de5790781ee88bcb41ba142f07c0fa02e97","signature":false,"impliedFormat":1},{"version":"00bd6ebe607246b45296aa2b805bd6a58c859acecda154bfa91f5334d7c175c6","signature":false,"impliedFormat":1},{"version":"ad036a85efcd9e5b4f7dd5c1a7362c8478f9a3b6c3554654ca24a29aa850a9c5","signature":false,"impliedFormat":1},{"version":"fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","signature":false,"impliedFormat":1},{"version":"0d28b974a7605c4eda20c943b3fa9ae16cb452c1666fc9b8c341b879992c7612","signature":false,"impliedFormat":1},{"version":"cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","signature":false,"impliedFormat":1},{"version":"db036c56f79186da50af66511d37d9fe77fa6793381927292d17f81f787bb195","signature":false,"impliedFormat":1},{"version":"87ac2fb61e629e777f4d161dff534c2023ee15afd9cb3b1589b9b1f014e75c58","signature":false,"impliedFormat":1},{"version":"13c8b4348db91e2f7d694adc17e7438e6776bc506d5c8f5de9ad9989707fa3fe","signature":false,"impliedFormat":1},{"version":"3c1051617aa50b38e9efaabce25e10a5dd9b1f42e372ef0e8a674076a68742ed","signature":false,"impliedFormat":1},{"version":"07a3e20cdcb0f1182f452c0410606711fbea922ca76929a41aacb01104bc0d27","signature":false,"impliedFormat":1},{"version":"1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","signature":false,"impliedFormat":1},{"version":"1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","signature":false,"impliedFormat":1},{"version":"4cd4b6b1279e9d744a3825cbd7757bbefe7f0708f3f1069179ad535f19e8ed2c","signature":false,"impliedFormat":1},{"version":"5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","signature":false,"impliedFormat":1},{"version":"c0eeaaa67c85c3bb6c52b629ebbfd3b2292dc67e8c0ffda2fc6cd2f78dc471e6","signature":false,"impliedFormat":1},{"version":"4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","signature":false,"impliedFormat":1},{"version":"27be6622e2922a1b412eb057faa854831b95db9db5035c3f6d4b677b902ab3b7","signature":false,"impliedFormat":1},{"version":"b95a6f019095dd1d48fd04965b50dfd63e5743a6e75478343c46d2582a5132bf","signature":false,"impliedFormat":99},{"version":"c2008605e78208cfa9cd70bd29856b72dda7ad89df5dc895920f8e10bcb9cd0a","signature":false,"impliedFormat":99},{"version":"b97cb5616d2ab82a98ec9ada7b9e9cabb1f5da880ec50ea2b8dc5baa4cbf3c16","signature":false,"impliedFormat":99},{"version":"d23df9ff06ae8bf1dcb7cc933e97ae7da418ac77749fecee758bb43a8d69f840","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"040c71dde2c406f869ad2f41e8d4ce579cc60c8dbe5aa0dd8962ac943b846572","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3586f5ea3cc27083a17bd5c9059ede9421d587286d5a47f4341a4c2d00e4fa91","signature":false,"impliedFormat":1},{"version":"a6df929821e62f4719551f7955b9f42c0cd53c1370aec2dd322e24196a7dfe33","signature":false,"impliedFormat":1},{"version":"b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","signature":false,"impliedFormat":1},{"version":"9dd9d642cdb87d4d5b3173217e0c45429b3e47a6f5cf5fb0ead6c644ec5fed01","signature":false},{"version":"e482174f15675678363b9a4ed12113ca45d18eee41e8e678deb0e824be29d3e7","signature":false,"affectsGlobalScope":true},{"version":"ce99ae8ab80cdc65e63c946ec05e7b7c0f847b8153555139add78d25f76dc83a","signature":false},{"version":"d8ced93a8044dc86b5922971249910c45f93b588eb9d621aa8d7d854f9cdc819","signature":false},{"version":"2423a4acb4ca061113dd63657b913301db2b67a31a8a55a0b071367b5df46f19","signature":false},{"version":"3ee18c7abaf5a829f0430ce4f7a0769e9953cbe19cdac28b43272d7b829fa255","signature":false},{"version":"5b0db3eecb54b662a0df219dbfce655675980715bd48a0010ea3b019d22d2f3b","signature":false},{"version":"117179c3e83bcb6135ab23f4c7f23c2873c111e2fd4fea91df6c4cce620ec977","signature":false},{"version":"6c05d0fcee91437571513c404e62396ee798ff37a2d8bef2104accdc79deb9c0","signature":false,"impliedFormat":1},{"version":"189d17f90d8877a26e1051a2c9cefd4a98efcdfffcfb5ffff2fcf1388fd3121a","signature":false},{"version":"3a66aaef71fbbd8b1128bda06914ba3d3c321b8cb398cf180978c9bd1946f294","signature":false},{"version":"e5fab9363dd130c193e1877d1f152809254adf1303e41175d83f49a46260b180","signature":false},{"version":"cb5eaa5ad51d596beda5a76732641b7dcf9e26acae7b20919a811d7b38d7c03a","signature":false},{"version":"868089c4835bcfc56985ec7b898e93b409f4c985a73d70589b7b0e2d7d6c5352","signature":false},{"version":"3b9068c5bd2dafbbd804edee690c48f0c672082ce7f5fc82f21c8307b511c11a","signature":false},{"version":"bb46f4650ab9721af2d97ef329e29a6aa22f5a3068a2249f55caf1b60b6dd674","signature":false},{"version":"f7886bcfa6587f307aa8045d6f9861f319808bbc59f6c89f1ba40a19be648ec5","signature":false},{"version":"543f32bf89f7aee10af7e597b17bdcf9c76b83b9f4e495243cbf1b2ad4cd84cb","signature":false},{"version":"e14aa6e21dff7cbaf54884d0973e89758e571f7546899fa02b6e87a10c660d20","signature":false},{"version":"721b736b78ca190e99a4e1b125b3d14b4e72a94c9c54ceaf77524e11a4094dc8","signature":false},{"version":"a748c9e97d615d8f52df61ad4a9284130b390c2c734e980f4bbcaf41260bbcf9","signature":false},{"version":"288e514b408582dbbe0ebedfe7620f92b65eefacd03c66aba34a0504cf400ccb","signature":false},{"version":"dd500fb85312298d9c50675e8005734324eb7eef4dc49703f5312c185152e7ca","signature":false},{"version":"4f1ed70844217a252337688726bfaa1acaf344f68a672bb75dde55803e6a908f","signature":false},{"version":"6392353adcff7db02a3f5dcacb5637b791dbbcb76125aac3075da2519af9785a","signature":false,"impliedFormat":99},{"version":"1f3952b74b8c766a2e602a0ba2db19d3d872d00bab4e01746c6b7229c585086c","signature":false,"impliedFormat":99},{"version":"c178232b05137d4deee6102b14819ba55258e39076cf041563eff199ef82fe2c","signature":false},{"version":"3476d8e3f985a1dd42dc6d0e5e558efdb7c6fa8e30f4939ec84fdd48414edaad","signature":false},{"version":"9fa4f9fde67afe4bef8157c58de7690809173f98c72463526cd48964b165080e","signature":false},{"version":"30f1120a0f581ce98aab37f1899e5a7981202dc38e8a671ea04222748acb8249","signature":false},{"version":"e9d654ec9a79d49238e0a996c78508a4eaf889d6b16a744cf4e22126b0dc2e3a","signature":false},{"version":"2f572de582210bedde622267951d503dd06c8ecfa521d4455f902f069cf630ba","signature":false},{"version":"60c190574f4427e55b2d1049ca6400254b1e3823029dee144233b430fffd3d6f","signature":false},{"version":"4dff26636102d07bfd4c5ed5078fdb6b4e375e3e97d8aa7a845afa1668191cb2","signature":false},{"version":"9c9a70bfe4ddc2e08724ac0e7c19d5d17fb10817bd8ccd880eea7be456f4dd9a","signature":false},{"version":"6b7a42255647e71d24d71ec708e351c10c9a92e2618de13c7ace1c014af83ef1","signature":false},{"version":"d0ff3ba59fb691e7e2d5063fdcef9e29056489a9e8835f4f0885bed1905e0251","signature":false},{"version":"077f33da7b5796f86c827023a1018962b1afefecf358ce7bb3028753c899b039","signature":false},{"version":"8238de4598aa86ed1dc6c6e79f6b80dc2f703f5f07ad5adb4c5c507ef64de00b","signature":false},{"version":"55b886c431db6b7f603e81d178adcf6dc802277551d6ea9cbd08f2fb9caed960","signature":false},{"version":"4791f424676c0551ae7f4192bf9bb2ce6adb73000da231a2a4e4a679ccb8ecdd","signature":false},{"version":"641e4003dc535260b780e1f7b2c6e0bae7d8c14453d10f21b70aa614ed798111","signature":false},{"version":"a1f98070b500647722c578b5899cd0710925448a7a5be688cf9f1e47bc1f2b0b","signature":false},{"version":"8706fe2c443340456ec4aaed47912246be75d766d10f2fbbd7b85749b7346242","signature":false},{"version":"c78d8589f4d0f95c7fed56cfed7db9dc438e93658cffc8c84744bda06dd9ef7a","signature":false},{"version":"27ddfd5ffcb6617328caaee1f504ebd4da296acf56245ff1d75a8c81183d1eed","signature":false},{"version":"80c8c10fa4215a85243803b204dbe1cd54fe473f63f8cae769ae388e3a54923c","signature":false},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","signature":false,"impliedFormat":1}],"root":[[410,417],[419,433],[436,456]],"options":{"allowJs":true,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":1,"module":99,"skipLibCheck":true,"strict":true,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[446,1],[447,2],[448,3],[449,4],[450,5],[451,6],[452,7],[453,8],[454,9],[456,10],[455,11],[445,12],[410,13],[363,14],[457,14],[142,15],[143,15],[144,16],[99,17],[145,18],[146,19],[147,20],[94,14],[97,21],[95,14],[96,14],[148,22],[149,23],[150,24],[151,25],[152,26],[153,27],[154,27],[155,28],[156,29],[157,30],[158,31],[100,14],[98,14],[159,32],[160,33],[161,34],[193,35],[162,36],[163,37],[164,38],[165,39],[166,40],[167,41],[168,42],[169,43],[170,44],[171,45],[172,45],[173,46],[174,14],[175,47],[177,48],[176,49],[178,50],[179,51],[180,52],[181,53],[182,54],[183,55],[184,56],[185,57],[186,58],[187,59],[188,60],[189,61],[190,62],[101,14],[102,14],[103,14],[141,63],[191,64],[192,65],[86,14],[198,66],[199,67],[197,68],[195,69],[196,70],[84,14],[87,71],[286,68],[85,14],[435,72],[434,14],[418,68],[93,73],[366,74],[370,75],[372,76],[219,77],[233,78],[337,79],[265,14],[340,80],[301,81],[310,82],[338,83],[220,84],[264,14],[266,85],[339,86],[240,87],[221,88],[245,87],[234,87],[204,87],[292,89],[293,90],[209,14],[289,91],[294,92],[381,93],[287,92],[382,94],[271,14],[290,95],[394,96],[393,97],[296,92],[392,14],[390,14],[391,98],[291,68],[278,99],[279,100],[288,101],[305,102],[306,103],[295,104],[273,105],[274,106],[385,107],[388,108],[252,109],[251,110],[250,111],[397,68],[249,112],[225,14],[400,14],[403,14],[402,68],[404,113],[200,14],[331,14],[232,114],[202,115],[354,14],[355,14],[357,14],[360,116],[356,14],[358,117],[359,117],[218,14],[231,14],[365,118],[373,119],[377,120],[214,121],[281,122],[280,14],[272,105],[300,123],[298,124],[297,14],[299,14],[304,125],[276,126],[213,127],[238,128],[328,129],[205,130],[212,131],[201,79],[342,132],[352,133],[341,14],[351,134],[239,14],[223,135],[319,136],[318,14],[325,137],[327,138],[320,139],[324,140],[326,137],[323,139],[322,137],[321,139],[261,141],[246,141],[313,142],[247,142],[207,143],[206,14],[317,144],[316,145],[315,146],[314,147],[208,148],[285,149],[302,150],[284,151],[309,152],[311,153],[308,151],[241,148],[194,14],[329,154],[267,155],[303,14],[350,156],[270,157],[345,158],[211,14],[346,159],[348,160],[349,161],[332,14],[344,130],[243,162],[330,163],[353,164],[215,14],[217,14],[222,165],[312,166],[210,167],[216,14],[269,168],[268,169],[224,170],[277,171],[275,172],[226,173],[228,174],[401,14],[227,175],[229,176],[368,14],[367,14],[369,14],[399,14],[230,177],[283,68],[92,14],[307,178],[253,14],[263,179],[242,14],[375,68],[384,180],[260,68],[379,92],[259,181],[362,182],[258,180],[203,14],[386,183],[256,68],[257,68],[248,14],[262,14],[255,184],[254,185],[244,186],[237,104],[347,14],[236,187],[235,14],[371,14],[282,68],[364,188],[83,14],[91,189],[88,68],[89,14],[90,14],[343,190],[336,191],[335,14],[334,192],[333,14],[374,193],[376,194],[378,195],[380,196],[383,197],[409,198],[387,198],[408,199],[389,200],[395,201],[396,202],[398,203],[405,204],[407,14],[406,205],[361,206],[81,14],[82,14],[13,14],[14,14],[16,14],[15,14],[2,14],[17,14],[18,14],[19,14],[20,14],[21,14],[22,14],[23,14],[24,14],[3,14],[25,14],[26,14],[4,14],[27,14],[31,14],[28,14],[29,14],[30,14],[32,14],[33,14],[34,14],[5,14],[35,14],[36,14],[37,14],[38,14],[6,14],[42,14],[39,14],[40,14],[41,14],[43,14],[7,14],[44,14],[49,14],[50,14],[45,14],[46,14],[47,14],[48,14],[8,14],[54,14],[51,14],[52,14],[53,14],[55,14],[9,14],[56,14],[57,14],[58,14],[60,14],[59,14],[61,14],[62,14],[10,14],[63,14],[64,14],[65,14],[11,14],[66,14],[67,14],[68,14],[69,14],[70,14],[1,14],[71,14],[72,14],[12,14],[76,14],[74,14],[79,14],[78,14],[73,14],[77,14],[75,14],[80,14],[119,207],[129,208],[118,207],[139,209],[110,210],[109,211],[138,205],[132,212],[137,213],[112,214],[126,215],[111,216],[135,217],[107,218],[106,205],[136,219],[108,220],[113,221],[114,14],[117,221],[104,14],[140,222],[130,223],[121,224],[122,225],[124,226],[120,227],[123,228],[133,205],[115,229],[116,230],[125,231],[105,232],[128,223],[127,221],[131,14],[134,233],[412,234],[426,235],[430,236],[432,237],[425,238],[433,239],[436,240],[437,241],[440,242],[441,14],[443,243],[442,244],[419,245],[420,243],[439,246],[421,247],[431,68],[438,246],[427,248],[424,249],[444,246],[429,248],[428,250],[422,251],[423,252],[417,247],[413,68],[414,14],[415,14],[416,14],[411,14]],"changeFileSet":[446,447,448,449,450,451,452,453,458,454,456,455,459,460,461,445,462,463,464,465,466,467,468,410,363,457,142,143,144,99,145,146,147,94,97,95,96,148,149,150,151,152,153,154,155,156,157,158,100,98,159,160,161,193,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,176,178,179,180,181,182,183,184,185,186,187,188,189,190,101,102,103,141,191,192,86,198,199,197,195,196,84,87,286,85,435,434,418,93,366,370,372,219,233,337,265,340,301,310,338,220,264,266,339,240,221,245,234,204,292,293,209,289,294,381,287,382,271,290,394,393,296,392,390,391,291,278,279,288,305,306,295,273,274,385,388,252,251,250,397,249,225,400,403,402,404,200,331,232,202,354,355,357,360,356,358,359,218,231,365,373,377,214,281,280,272,300,298,297,299,304,276,213,238,328,205,212,201,342,352,341,351,239,223,319,318,325,327,320,324,326,323,322,321,261,246,313,247,207,206,317,316,315,314,208,285,302,284,309,311,308,241,194,329,267,303,350,270,345,211,346,348,349,332,344,243,330,353,215,217,222,312,210,216,269,268,224,277,275,226,228,401,227,229,368,367,369,399,230,283,92,307,253,263,242,375,384,260,379,259,362,258,203,386,256,257,248,262,255,254,244,237,347,236,235,371,282,364,83,91,88,89,90,343,336,335,334,333,374,376,378,380,383,409,387,408,389,395,396,398,405,407,406,361,81,82,13,14,16,15,2,17,18,19,20,21,22,23,24,3,25,26,4,27,31,28,29,30,32,33,34,5,35,36,37,38,6,42,39,40,41,43,7,44,49,50,45,46,47,48,8,54,51,52,53,55,9,56,57,58,60,59,61,62,10,63,64,65,11,66,67,68,69,70,1,71,72,12,76,74,79,78,73,77,75,80,119,129,118,139,110,109,138,132,137,112,126,111,135,107,106,136,108,113,114,117,104,140,130,121,122,124,120,123,133,115,116,125,105,128,127,131,134,412,426,430,432,425,433,436,437,440,469,441,443,442,470,471,472,419,473,474,475,476,477,478,479,420,439,421,431,438,427,424,444,429,428,422,423,417,413,414,415,416,411],"version":"5.9.3"} \ No newline at end of file diff --git a/frontend/.next/cache/webpack/edge-server-production/0.pack b/frontend/.next/cache/webpack/edge-server-production/0.pack deleted file mode 100644 index 2a73bc84..00000000 Binary files a/frontend/.next/cache/webpack/edge-server-production/0.pack and /dev/null differ diff --git a/frontend/.next/cache/webpack/edge-server-production/index.pack b/frontend/.next/cache/webpack/edge-server-production/index.pack deleted file mode 100644 index 146b5b44..00000000 Binary files a/frontend/.next/cache/webpack/edge-server-production/index.pack and /dev/null differ diff --git a/frontend/.next/react-loadable-manifest.json b/frontend/.next/react-loadable-manifest.json index fa5efebf..9e26dfee 100644 --- a/frontend/.next/react-loadable-manifest.json +++ b/frontend/.next/react-loadable-manifest.json @@ -1,14 +1 @@ -{ - "components/capital-flow.tsx -> echarts": { - "id": "components/capital-flow.tsx -> echarts", - "files": [ - "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js" - ] - }, - "components/kline-chart.tsx -> echarts": { - "id": "components/kline-chart.tsx -> echarts", - "files": [ - "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js" - ] - } -} \ No newline at end of file +{} \ No newline at end of file diff --git a/frontend/.next/server/app-paths-manifest.json b/frontend/.next/server/app-paths-manifest.json index 1f6f5ce8..4cf375f6 100644 --- a/frontend/.next/server/app-paths-manifest.json +++ b/frontend/.next/server/app-paths-manifest.json @@ -1,5 +1,5 @@ { - "/(auth)/chat/page": "app/(auth)/chat/page.js", - "/(auth)/stock/[code]/page": "app/(auth)/stock/[code]/page.js", - "/(public)/page": "app/(public)/page.js" + "/(auth)/dashboard/page": "app/(auth)/dashboard/page.js", + "/(auth)/recommendations/page": "app/(auth)/recommendations/page.js", + "/(auth)/strategy/page": "app/(auth)/strategy/page.js" } \ 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 424a1a19..36489d8c 100644 --- a/frontend/.next/server/middleware-build-manifest.js +++ b/frontend/.next/server/middleware-build-manifest.js @@ -2,9 +2,7 @@ self.__BUILD_MANIFEST = { "polyfillFiles": [ "static/chunks/polyfills.js" ], - "devFiles": [ - "static/chunks/react-refresh.js" - ], + "devFiles": [], "ampDevFiles": [], "lowPriorityFiles": [], "rootMainFiles": [ @@ -12,16 +10,7 @@ self.__BUILD_MANIFEST = { "static/chunks/main-app.js" ], "pages": { - "/_app": [ - "static/chunks/webpack.js", - "static/chunks/main.js", - "static/chunks/pages/_app.js" - ], - "/_error": [ - "static/chunks/webpack.js", - "static/chunks/main.js", - "static/chunks/pages/_error.js" - ] + "/_app": [] }, "ampFirstPages": [] }; diff --git a/frontend/.next/server/middleware-react-loadable-manifest.js b/frontend/.next/server/middleware-react-loadable-manifest.js index 057a79fc..ca34f09f 100644 --- a/frontend/.next/server/middleware-react-loadable-manifest.js +++ b/frontend/.next/server/middleware-react-loadable-manifest.js @@ -1 +1 @@ -self.__REACT_LOADABLE_MANIFEST="{\"components/capital-flow.tsx -> echarts\":{\"id\":\"components/capital-flow.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]},\"components/kline-chart.tsx -> echarts\":{\"id\":\"components/kline-chart.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]}}" \ No newline at end of file +self.__REACT_LOADABLE_MANIFEST="{}" \ No newline at end of file diff --git a/frontend/.next/server/pages-manifest.json b/frontend/.next/server/pages-manifest.json index a679766a..9e26dfee 100644 --- a/frontend/.next/server/pages-manifest.json +++ b/frontend/.next/server/pages-manifest.json @@ -1,5 +1 @@ -{ - "/_app": "pages/_app.js", - "/_error": "pages/_error.js", - "/_document": "pages/_document.js" -} \ No newline at end of file +{} \ No newline at end of file diff --git a/frontend/.next/server/server-reference-manifest.json b/frontend/.next/server/server-reference-manifest.json index c5c83141..12c660b1 100644 --- a/frontend/.next/server/server-reference-manifest.json +++ b/frontend/.next/server/server-reference-manifest.json @@ -1,5 +1,5 @@ { "node": {}, "edge": {}, - "encryptionKey": "5a77t1jXySke+j0Es8vduY/7S7yObSbYfKeh0OReITs=" + "encryptionKey": "s0qcbsgwKrVRZ+Vvkywm9IM+ti0wNq5+7QtEBPqabTc=" } \ No newline at end of file diff --git a/frontend/.next/trace b/frontend/.next/trace index ebb03fc3..9af59f32 100644 --- a/frontend/.next/trace +++ b/frontend/.next/trace @@ -1,70 +1,19 @@ -[{"name":"hot-reloader","duration":29,"timestamp":7385098102305,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776992044290,"traceId":"27fab7e1c891f919"},{"name":"start","duration":1,"timestamp":7385098102875,"id":4,"parentId":3,"tags":{},"startTime":1776992044291,"traceId":"27fab7e1c891f919"},{"name":"get-version-info","duration":622870,"timestamp":7385098102977,"id":5,"parentId":4,"tags":{},"startTime":1776992044291,"traceId":"27fab7e1c891f919"},{"name":"clean","duration":3968,"timestamp":7385098725894,"id":6,"parentId":4,"tags":{},"startTime":1776992044914,"traceId":"27fab7e1c891f919"},{"name":"create-pages-mapping","duration":160,"timestamp":7385098730728,"id":8,"parentId":7,"tags":{},"startTime":1776992044919,"traceId":"27fab7e1c891f919"},{"name":"create-entrypoints","duration":284498,"timestamp":7385098730899,"id":9,"parentId":7,"tags":{},"startTime":1776992044919,"traceId":"27fab7e1c891f919"},{"name":"generate-webpack-config","duration":83874,"timestamp":7385099015433,"id":10,"parentId":7,"tags":{},"startTime":1776992045203,"traceId":"27fab7e1c891f919"},{"name":"get-webpack-config","duration":368661,"timestamp":7385098730662,"id":7,"parentId":4,"tags":{},"startTime":1776992044919,"traceId":"27fab7e1c891f919"},{"name":"make","duration":783,"timestamp":7385099143966,"id":12,"parentId":11,"tags":{},"startTime":1776992045332,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":362,"timestamp":7385099145927,"id":14,"parentId":13,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":11,"timestamp":7385099146341,"id":16,"parentId":13,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":60,"timestamp":7385099146433,"id":17,"parentId":13,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":10,"timestamp":7385099146521,"id":18,"parentId":13,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":10,"timestamp":7385099146607,"id":19,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":343,"timestamp":7385099146321,"id":15,"parentId":13,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":41,"timestamp":7385099146948,"id":20,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":81,"timestamp":7385099146999,"id":21,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":258,"timestamp":7385099147199,"id":22,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":30,"timestamp":7385099147456,"id":23,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":59,"timestamp":7385099147473,"id":24,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":147,"timestamp":7385099147541,"id":25,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":715,"timestamp":7385099223980,"id":27,"parentId":11,"tags":{},"startTime":1776992045412,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":1897,"timestamp":7385099222810,"id":26,"parentId":11,"tags":{},"startTime":1776992045411,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":79632,"timestamp":7385099145833,"id":13,"parentId":11,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":83498,"timestamp":7385099142109,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776992045330,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":4075,"timestamp":7385099225810,"id":28,"parentId":3,"tags":{},"startTime":1776992045414,"traceId":"27fab7e1c891f919"},{"name":"make","duration":1079,"timestamp":7385099234635,"id":30,"parentId":29,"tags":{},"startTime":1776992045423,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":13,"timestamp":7385099235946,"id":32,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7385099235970,"id":34,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":280,"timestamp":7385099236002,"id":35,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":7,"timestamp":7385099236312,"id":36,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":21,"timestamp":7385099236424,"id":37,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":603,"timestamp":7385099235967,"id":33,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":5,"timestamp":7385099236646,"id":38,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":4,"timestamp":7385099236656,"id":39,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":33,"timestamp":7385099236681,"id":40,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":79,"timestamp":7385099236714,"id":41,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":66,"timestamp":7385099236730,"id":42,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":8,"timestamp":7385099236801,"id":43,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":1316,"timestamp":7385099235924,"id":31,"parentId":29,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":3300,"timestamp":7385099234011,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776992045422,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":1268,"timestamp":7385099237346,"id":44,"parentId":3,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"make","duration":87,"timestamp":7385099241202,"id":46,"parentId":45,"tags":{},"startTime":1776992045429,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":12,"timestamp":7385099241561,"id":48,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":2,"timestamp":7385099241583,"id":50,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":5,"timestamp":7385099241612,"id":51,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":3,"timestamp":7385099241624,"id":52,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385099241634,"id":53,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":64,"timestamp":7385099241580,"id":49,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":4,"timestamp":7385099241692,"id":54,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":3,"timestamp":7385099241700,"id":55,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":34,"timestamp":7385099241726,"id":56,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":9,"timestamp":7385099241760,"id":57,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":4,"timestamp":7385099241766,"id":58,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":7,"timestamp":7385099241772,"id":59,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":508,"timestamp":7385099241545,"id":47,"parentId":45,"tags":{},"startTime":1776992045429,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1669,"timestamp":7385099240402,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776992045428,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":1085,"timestamp":7385099242089,"id":60,"parentId":3,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"}] -[{"name":"make","duration":171,"timestamp":7385099471572,"id":65,"parentId":64,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":13,"timestamp":7385099471832,"id":67,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":2,"timestamp":7385099471853,"id":69,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":4,"timestamp":7385099471864,"id":70,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":3,"timestamp":7385099471874,"id":71,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385099471885,"id":72,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":52,"timestamp":7385099471851,"id":68,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":4,"timestamp":7385099471950,"id":73,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":3,"timestamp":7385099471957,"id":74,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":25,"timestamp":7385099471976,"id":75,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":8,"timestamp":7385099472001,"id":76,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":3,"timestamp":7385099472007,"id":77,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":7,"timestamp":7385099472012,"id":78,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":193,"timestamp":7385099472223,"id":80,"parentId":64,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":228,"timestamp":7385099472191,"id":79,"parentId":64,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":676,"timestamp":7385099471815,"id":66,"parentId":64,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1289,"timestamp":7385099471216,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776992045659,"traceId":"27fab7e1c891f919"},{"name":"setup-dev-bundler","duration":1525312,"timestamp":7385097972674,"id":2,"parentId":1,"tags":{},"startTime":1776992044161,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":27429,"timestamp":7385099472518,"id":81,"parentId":61,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":32256,"timestamp":7385099468220,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992045656,"traceId":"27fab7e1c891f919"},{"name":"make","duration":188,"timestamp":7385099501716,"id":83,"parentId":82,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":14,"timestamp":7385099501979,"id":85,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":2,"timestamp":7385099502000,"id":87,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":68,"timestamp":7385099502032,"id":88,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":3,"timestamp":7385099502107,"id":89,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385099502118,"id":90,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":133,"timestamp":7385099501998,"id":86,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":4,"timestamp":7385099502255,"id":91,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":3,"timestamp":7385099502263,"id":92,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":31,"timestamp":7385099502280,"id":93,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":8,"timestamp":7385099502311,"id":94,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":3,"timestamp":7385099502317,"id":95,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":7,"timestamp":7385099502323,"id":96,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":532,"timestamp":7385099501965,"id":84,"parentId":82,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1376,"timestamp":7385099501140,"id":82,"parentId":62,"tags":{"name":"server"},"startTime":1776992045689,"traceId":"27fab7e1c891f919"},{"name":"run-instrumentation-hook","duration":22,"timestamp":7385099530424,"id":98,"parentId":1,"tags":{},"startTime":1776992045718,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":37882,"timestamp":7385099502525,"id":97,"parentId":62,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":72608,"timestamp":7385099468318,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992045656,"traceId":"27fab7e1c891f919"},{"name":"make","duration":125,"timestamp":7385099547136,"id":100,"parentId":99,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":16,"timestamp":7385099547468,"id":102,"parentId":101,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":11,"timestamp":7385099547496,"id":104,"parentId":101,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":6,"timestamp":7385099547516,"id":105,"parentId":101,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":58,"timestamp":7385099547529,"id":106,"parentId":101,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385099547597,"id":107,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":121,"timestamp":7385099547490,"id":103,"parentId":101,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":4,"timestamp":7385099547661,"id":108,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":4,"timestamp":7385099547669,"id":109,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":32,"timestamp":7385099547690,"id":110,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":9,"timestamp":7385099547722,"id":111,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":4,"timestamp":7385099547728,"id":112,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":8,"timestamp":7385099547734,"id":113,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":505,"timestamp":7385099547439,"id":101,"parentId":99,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1304,"timestamp":7385099546657,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"start-dev-server","duration":2054591,"timestamp":7385097496098,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"112017408","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"211599360","memory.heapTotal":"105168896","memory.heapUsed":"78185096"},"startTime":1776992043684,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":31542,"timestamp":7385099547970,"id":114,"parentId":63,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-edge-server","duration":111882,"timestamp":7385099468336,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992045656,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module","duration":76233,"timestamp":7385099624299,"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":1776992045812,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":94118,"timestamp":7385099724533,"id":126,"parentId":125,"tags":{},"startTime":1776992045912,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":94606,"timestamp":7385099724061,"id":125,"parentId":122,"tags":{},"startTime":1776992045912,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":117237,"timestamp":7385099720916,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1776992045909,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":108343,"timestamp":7385099729896,"id":140,"parentId":139,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":108421,"timestamp":7385099729821,"id":139,"parentId":134,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":115393,"timestamp":7385099728769,"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":1776992045917,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":119350,"timestamp":7385099724873,"id":130,"parentId":129,"tags":{},"startTime":1776992045913,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":119563,"timestamp":7385099724664,"id":129,"parentId":124,"tags":{},"startTime":1776992045913,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":122160,"timestamp":7385099723648,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/layout.tsx","layer":"rsc"},"startTime":1776992045912,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":121532,"timestamp":7385099724662,"id":128,"parentId":127,"tags":{},"startTime":1776992045913,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":121637,"timestamp":7385099724560,"id":127,"parentId":123,"tags":{},"startTime":1776992045913,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":123465,"timestamp":7385099723422,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"rsc"},"startTime":1776992045911,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":119010,"timestamp":7385099729940,"id":142,"parentId":141,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":119054,"timestamp":7385099729900,"id":141,"parentId":135,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":122175,"timestamp":7385099728936,"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":1776992045917,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":122649,"timestamp":7385099729745,"id":136,"parentId":131,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":95,"timestamp":7385099852426,"id":143,"parentId":131,"tags":{},"startTime":1776992046040,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":127577,"timestamp":7385099726094,"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":1776992045914,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":123919,"timestamp":7385099729816,"id":138,"parentId":133,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":71,"timestamp":7385099853746,"id":144,"parentId":133,"tags":{},"startTime":1776992046042,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":126512,"timestamp":7385099728565,"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":1776992045917,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":125301,"timestamp":7385099729808,"id":137,"parentId":132,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385099855118,"id":145,"parentId":132,"tags":{},"startTime":1776992046043,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":129969,"timestamp":7385099728212,"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":1776992045916,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":266,"timestamp":7385099863251,"id":146,"parentId":133,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1776992046051,"traceId":"27fab7e1c891f919"},{"name":"build-module-external","duration":12,"timestamp":7385099867627,"id":150,"parentId":132,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-external","duration":4,"timestamp":7385099867647,"id":151,"parentId":132,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-external","duration":3,"timestamp":7385099867654,"id":152,"parentId":132,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2193,"timestamp":7385099868001,"id":162,"parentId":161,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2229,"timestamp":7385099867969,"id":161,"parentId":153,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2976,"timestamp":7385099867660,"id":153,"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":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2414,"timestamp":7385099868239,"id":166,"parentId":165,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2561,"timestamp":7385099868093,"id":165,"parentId":155,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3251,"timestamp":7385099867733,"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":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3402,"timestamp":7385099868033,"id":164,"parentId":163,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3434,"timestamp":7385099868003,"id":163,"parentId":154,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3967,"timestamp":7385099867700,"id":154,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3830,"timestamp":7385099867903,"id":160,"parentId":159,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3893,"timestamp":7385099867842,"id":159,"parentId":149,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4405,"timestamp":7385099867553,"id":149,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5516,"timestamp":7385099868311,"id":170,"parentId":169,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5541,"timestamp":7385099868290,"id":169,"parentId":157,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7350,"timestamp":7385099867788,"id":157,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6889,"timestamp":7385099868286,"id":168,"parentId":167,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6934,"timestamp":7385099868242,"id":167,"parentId":156,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8444,"timestamp":7385099867762,"id":156,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7893,"timestamp":7385099868325,"id":172,"parentId":171,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7905,"timestamp":7385099868314,"id":171,"parentId":158,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8559,"timestamp":7385099867817,"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":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11355,"timestamp":7385099866993,"id":148,"parentId":147,"tags":{},"startTime":1776992046055,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":12409,"timestamp":7385099866291,"id":147,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1776992046054,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":8516,"timestamp":7385099871399,"id":177,"parentId":173,"tags":{},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385099879934,"id":181,"parentId":173,"tags":{},"startTime":1776992046068,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9673,"timestamp":7385099871083,"id":173,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":9358,"timestamp":7385099871413,"id":178,"parentId":174,"tags":{},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385099880779,"id":182,"parentId":174,"tags":{},"startTime":1776992046069,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9850,"timestamp":7385099871184,"id":174,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":9622,"timestamp":7385099871420,"id":180,"parentId":176,"tags":{},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385099881050,"id":183,"parentId":176,"tags":{},"startTime":1776992046069,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20672,"timestamp":7385099871299,"id":176,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20652,"timestamp":7385099871417,"id":179,"parentId":175,"tags":{},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385099892078,"id":184,"parentId":175,"tags":{},"startTime":1776992046080,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21765,"timestamp":7385099871246,"id":175,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4151,"timestamp":7385099897276,"id":186,"parentId":185,"tags":{},"startTime":1776992046085,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":106,"timestamp":7385099901437,"id":193,"parentId":185,"tags":{},"startTime":1776992046089,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6381,"timestamp":7385099896960,"id":185,"parentId":157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1776992046085,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":5985,"timestamp":7385099899462,"id":188,"parentId":187,"tags":{},"startTime":1776992046087,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385099905455,"id":202,"parentId":187,"tags":{},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6395,"timestamp":7385099899354,"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":1776992046087,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6997,"timestamp":7385099900555,"id":191,"parentId":189,"tags":{},"startTime":1776992046089,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385099907560,"id":209,"parentId":189,"tags":{},"startTime":1776992046096,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8097,"timestamp":7385099900425,"id":189,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1776992046088,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":7964,"timestamp":7385099900566,"id":192,"parentId":190,"tags":{},"startTime":1776992046089,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385099908536,"id":210,"parentId":190,"tags":{},"startTime":1776992046096,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8287,"timestamp":7385099900499,"id":190,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1776992046088,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6545,"timestamp":7385099904790,"id":198,"parentId":194,"tags":{},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385099911343,"id":218,"parentId":194,"tags":{},"startTime":1776992046099,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8177,"timestamp":7385099904557,"id":194,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":7960,"timestamp":7385099904802,"id":199,"parentId":195,"tags":{},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":71,"timestamp":7385099912774,"id":219,"parentId":195,"tags":{},"startTime":1776992046101,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9301,"timestamp":7385099904640,"id":195,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":9153,"timestamp":7385099904808,"id":200,"parentId":196,"tags":{},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385099913971,"id":220,"parentId":196,"tags":{},"startTime":1776992046102,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11570,"timestamp":7385099904693,"id":196,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11455,"timestamp":7385099904817,"id":201,"parentId":197,"tags":{},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":74,"timestamp":7385099916278,"id":221,"parentId":197,"tags":{},"startTime":1776992046104,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12324,"timestamp":7385099904738,"id":197,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7659,"timestamp":7385099909590,"id":215,"parentId":214,"tags":{},"startTime":1776992046098,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7691,"timestamp":7385099909560,"id":214,"parentId":212,"tags":{},"startTime":1776992046098,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8272,"timestamp":7385099909417,"id":212,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1776992046097,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11780,"timestamp":7385099905918,"id":204,"parentId":203,"tags":{},"startTime":1776992046094,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385099917704,"id":222,"parentId":203,"tags":{},"startTime":1776992046106,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12329,"timestamp":7385099905854,"id":203,"parentId":157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1776992046094,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14699,"timestamp":7385099907293,"id":207,"parentId":205,"tags":{},"startTime":1776992046095,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385099922004,"id":230,"parentId":205,"tags":{},"startTime":1776992046110,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15137,"timestamp":7385099907162,"id":205,"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":1776992046095,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15142,"timestamp":7385099907301,"id":208,"parentId":206,"tags":{},"startTime":1776992046095,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385099922450,"id":231,"parentId":206,"tags":{},"startTime":1776992046110,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15415,"timestamp":7385099907235,"id":206,"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":1776992046095,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":13213,"timestamp":7385099909458,"id":213,"parentId":211,"tags":{},"startTime":1776992046097,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":28,"timestamp":7385099922769,"id":232,"parentId":211,"tags":{},"startTime":1776992046111,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14335,"timestamp":7385099909350,"id":211,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1776992046097,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3065,"timestamp":7385099921940,"id":229,"parentId":228,"tags":{},"startTime":1776992046110,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3124,"timestamp":7385099921884,"id":228,"parentId":227,"tags":{},"startTime":1776992046110,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":3670,"timestamp":7385099921760,"id":227,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1776992046110,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14232,"timestamp":7385099911206,"id":217,"parentId":216,"tags":{},"startTime":1776992046099,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385099925443,"id":233,"parentId":216,"tags":{},"startTime":1776992046113,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14450,"timestamp":7385099911123,"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":1776992046099,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":5872,"timestamp":7385099920646,"id":226,"parentId":224,"tags":{},"startTime":1776992046109,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385099926525,"id":234,"parentId":224,"tags":{},"startTime":1776992046114,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6135,"timestamp":7385099920531,"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":1776992046108,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6058,"timestamp":7385099920633,"id":225,"parentId":223,"tags":{},"startTime":1776992046109,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1693,"timestamp":7385099926982,"id":238,"parentId":237,"tags":{},"startTime":1776992046115,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":83,"timestamp":7385099928693,"id":239,"parentId":237,"tags":{},"startTime":1776992046117,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3119,"timestamp":7385099926870,"id":237,"parentId":197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1776992046115,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3602,"timestamp":7385099926747,"id":236,"parentId":235,"tags":{},"startTime":1776992046115,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3655,"timestamp":7385099926696,"id":235,"parentId":223,"tags":{},"startTime":1776992046115,"traceId":"27fab7e1c891f919"},{"name":"build-module-mjs","duration":10725,"timestamp":7385099920130,"id":223,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1776992046108,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3758,"timestamp":7385099943540,"id":241,"parentId":240,"tags":{},"startTime":1776992046131,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385099947315,"id":244,"parentId":240,"tags":{},"startTime":1776992046135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4215,"timestamp":7385099943394,"id":240,"parentId":173,"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":1776992046131,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2763,"timestamp":7385099946337,"id":243,"parentId":242,"tags":{},"startTime":1776992046134,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385099949115,"id":247,"parentId":242,"tags":{},"startTime":1776992046137,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3359,"timestamp":7385099946205,"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":1776992046134,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1891,"timestamp":7385099948096,"id":246,"parentId":245,"tags":{},"startTime":1776992046136,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":54,"timestamp":7385099949994,"id":248,"parentId":245,"tags":{},"startTime":1776992046138,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15275,"timestamp":7385099947879,"id":245,"parentId":196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1776992046136,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":366107,"timestamp":7385099599003,"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":1776992045787,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":1716,"timestamp":7385099982757,"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":1776992046171,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":104,"timestamp":7385099984496,"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":1776992046172,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":895,"timestamp":7385099984607,"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":1776992046173,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":3224,"timestamp":7385099985516,"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":1776992046173,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2457,"timestamp":7385099995228,"id":260,"parentId":259,"tags":{},"startTime":1776992046183,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2596,"timestamp":7385099995096,"id":259,"parentId":258,"tags":{},"startTime":1776992046183,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":5255,"timestamp":7385099993399,"id":258,"parentId":254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"ssr"},"startTime":1776992046181,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7895,"timestamp":7385099997365,"id":273,"parentId":272,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7923,"timestamp":7385099997357,"id":272,"parentId":264,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9158,"timestamp":7385099997213,"id":264,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9090,"timestamp":7385099997322,"id":267,"parentId":266,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9143,"timestamp":7385099997271,"id":266,"parentId":261,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":10875,"timestamp":7385099996882,"id":261,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10589,"timestamp":7385099997345,"id":269,"parentId":268,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10612,"timestamp":7385099997324,"id":268,"parentId":262,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12181,"timestamp":7385099996964,"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":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11831,"timestamp":7385099997356,"id":271,"parentId":270,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11841,"timestamp":7385099997347,"id":270,"parentId":263,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15902,"timestamp":7385099997172,"id":263,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12815,"timestamp":7385100000330,"id":279,"parentId":278,"tags":{},"startTime":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12861,"timestamp":7385100000286,"id":278,"parentId":276,"tags":{},"startTime":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14202,"timestamp":7385099999753,"id":276,"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":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16603,"timestamp":7385099997373,"id":275,"parentId":274,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16611,"timestamp":7385099997366,"id":274,"parentId":265,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18008,"timestamp":7385099997235,"id":265,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19499,"timestamp":7385100000349,"id":281,"parentId":280,"tags":{},"startTime":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19517,"timestamp":7385100000337,"id":280,"parentId":277,"tags":{},"startTime":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23294,"timestamp":7385099999804,"id":277,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":207,"timestamp":7385100028488,"id":283,"parentId":282,"tags":{},"startTime":1776992046216,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":72,"timestamp":7385100030687,"id":288,"parentId":286,"tags":{},"startTime":1776992046219,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385100030770,"id":291,"parentId":286,"tags":{},"startTime":1776992046219,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":701,"timestamp":7385100030509,"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":1776992046218,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4628,"timestamp":7385100028772,"id":285,"parentId":284,"tags":{},"startTime":1776992046217,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4695,"timestamp":7385100028710,"id":284,"parentId":282,"tags":{},"startTime":1776992046217,"traceId":"27fab7e1c891f919"},{"name":"build-module-mjs","duration":10902,"timestamp":7385100028077,"id":282,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1776992046216,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8573,"timestamp":7385100030721,"id":290,"parentId":289,"tags":{},"startTime":1776992046219,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8606,"timestamp":7385100030690,"id":289,"parentId":287,"tags":{},"startTime":1776992046219,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9150,"timestamp":7385100030640,"id":287,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1776992046219,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9065,"timestamp":7385100042392,"id":303,"parentId":302,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9080,"timestamp":7385100042384,"id":302,"parentId":294,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10181,"timestamp":7385100042166,"id":294,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9991,"timestamp":7385100042383,"id":301,"parentId":300,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10003,"timestamp":7385100042372,"id":300,"parentId":293,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10877,"timestamp":7385100042138,"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":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11404,"timestamp":7385100042401,"id":305,"parentId":304,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11423,"timestamp":7385100042393,"id":304,"parentId":295,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13481,"timestamp":7385100042192,"id":295,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14096,"timestamp":7385100042369,"id":299,"parentId":298,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14158,"timestamp":7385100042337,"id":298,"parentId":292,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16115,"timestamp":7385100042060,"id":292,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15798,"timestamp":7385100042409,"id":307,"parentId":306,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15807,"timestamp":7385100042402,"id":306,"parentId":296,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16493,"timestamp":7385100042212,"id":296,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16327,"timestamp":7385100042417,"id":309,"parentId":308,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16336,"timestamp":7385100042410,"id":308,"parentId":297,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17608,"timestamp":7385100042232,"id":297,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1649,"timestamp":7385100065658,"id":338,"parentId":328,"tags":{},"startTime":1776992046254,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1692,"timestamp":7385100065677,"id":339,"parentId":329,"tags":{},"startTime":1776992046254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":230,"timestamp":7385100067324,"id":356,"parentId":328,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":183,"timestamp":7385100067374,"id":357,"parentId":329,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4758,"timestamp":7385100063869,"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":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4838,"timestamp":7385100064022,"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":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17589,"timestamp":7385100051314,"id":323,"parentId":322,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17599,"timestamp":7385100051306,"id":322,"parentId":313,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19954,"timestamp":7385100050409,"id":313,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19082,"timestamp":7385100051304,"id":321,"parentId":320,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19093,"timestamp":7385100051295,"id":320,"parentId":312,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20437,"timestamp":7385100050300,"id":312,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19482,"timestamp":7385100051269,"id":317,"parentId":316,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19569,"timestamp":7385100051184,"id":316,"parentId":310,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21073,"timestamp":7385100049949,"id":310,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19740,"timestamp":7385100051293,"id":319,"parentId":318,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19757,"timestamp":7385100051277,"id":318,"parentId":311,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":21168,"timestamp":7385100050208,"id":311,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21323,"timestamp":7385100051333,"id":327,"parentId":326,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21334,"timestamp":7385100051325,"id":326,"parentId":315,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22568,"timestamp":7385100050534,"id":315,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21821,"timestamp":7385100051323,"id":325,"parentId":324,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21830,"timestamp":7385100051316,"id":324,"parentId":314,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23205,"timestamp":7385100050499,"id":314,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9307,"timestamp":7385100066595,"id":343,"parentId":342,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9321,"timestamp":7385100066583,"id":342,"parentId":331,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12008,"timestamp":7385100064111,"id":331,"parentId":263,"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":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9557,"timestamp":7385100066579,"id":341,"parentId":340,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9599,"timestamp":7385100066538,"id":340,"parentId":330,"tags":{},"startTime":1776992046254,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13021,"timestamp":7385100064080,"id":330,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10520,"timestamp":7385100066616,"id":347,"parentId":346,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10531,"timestamp":7385100066608,"id":346,"parentId":333,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13131,"timestamp":7385100064215,"id":333,"parentId":277,"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":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10752,"timestamp":7385100066606,"id":345,"parentId":344,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10761,"timestamp":7385100066597,"id":344,"parentId":332,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13527,"timestamp":7385100064134,"id":332,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11026,"timestamp":7385100066645,"id":353,"parentId":352,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11035,"timestamp":7385100066637,"id":352,"parentId":336,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13558,"timestamp":7385100064276,"id":336,"parentId":263,"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":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12102,"timestamp":7385100066655,"id":355,"parentId":354,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12112,"timestamp":7385100066647,"id":354,"parentId":337,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14609,"timestamp":7385100064397,"id":337,"parentId":277,"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":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12601,"timestamp":7385100066635,"id":351,"parentId":350,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12611,"timestamp":7385100066627,"id":350,"parentId":335,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15194,"timestamp":7385100064257,"id":335,"parentId":263,"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":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12885,"timestamp":7385100066626,"id":349,"parentId":348,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12894,"timestamp":7385100066618,"id":348,"parentId":334,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15623,"timestamp":7385100064237,"id":334,"parentId":277,"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":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2133,"timestamp":7385100080964,"id":367,"parentId":366,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2143,"timestamp":7385100080956,"id":366,"parentId":360,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2471,"timestamp":7385100080805,"id":360,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2366,"timestamp":7385100080943,"id":363,"parentId":362,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2394,"timestamp":7385100080916,"id":362,"parentId":358,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2742,"timestamp":7385100080708,"id":358,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2528,"timestamp":7385100080972,"id":369,"parentId":368,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2536,"timestamp":7385100080965,"id":368,"parentId":361,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3130,"timestamp":7385100080832,"id":361,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3092,"timestamp":7385100080955,"id":365,"parentId":364,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3103,"timestamp":7385100080945,"id":364,"parentId":359,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3408,"timestamp":7385100080777,"id":359,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":680,"timestamp":7385100086827,"id":374,"parentId":370,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":92,"timestamp":7385100087553,"id":381,"parentId":370,"tags":{},"startTime":1776992046276,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2556,"timestamp":7385100086473,"id":370,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1776992046274,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14727,"timestamp":7385100086873,"id":378,"parentId":377,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14747,"timestamp":7385100086863,"id":377,"parentId":372,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16262,"timestamp":7385100086770,"id":372,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16264,"timestamp":7385100086860,"id":376,"parentId":375,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16297,"timestamp":7385100086831,"id":375,"parentId":371,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16865,"timestamp":7385100086724,"id":371,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17592,"timestamp":7385100086883,"id":380,"parentId":379,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17603,"timestamp":7385100086874,"id":379,"parentId":373,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22075,"timestamp":7385100086796,"id":373,"parentId":277,"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":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4390,"timestamp":7385100113877,"id":394,"parentId":393,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4442,"timestamp":7385100113833,"id":393,"parentId":383,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5591,"timestamp":7385100113263,"id":383,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4976,"timestamp":7385100113902,"id":398,"parentId":397,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4986,"timestamp":7385100113893,"id":397,"parentId":385,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5800,"timestamp":7385100113380,"id":385,"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":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5312,"timestamp":7385100113892,"id":396,"parentId":395,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5324,"timestamp":7385100113880,"id":395,"parentId":384,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7089,"timestamp":7385100113315,"id":384,"parentId":293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6509,"timestamp":7385100113912,"id":400,"parentId":399,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6518,"timestamp":7385100113903,"id":399,"parentId":387,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7106,"timestamp":7385100113461,"id":387,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6812,"timestamp":7385100113923,"id":402,"parentId":401,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6824,"timestamp":7385100113914,"id":401,"parentId":388,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7399,"timestamp":7385100113483,"id":388,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10960,"timestamp":7385100113943,"id":406,"parentId":405,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10972,"timestamp":7385100113935,"id":405,"parentId":390,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12390,"timestamp":7385100113526,"id":390,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12081,"timestamp":7385100113934,"id":404,"parentId":403,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12095,"timestamp":7385100113924,"id":403,"parentId":389,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14027,"timestamp":7385100113504,"id":389,"parentId":314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8848,"timestamp":7385100122929,"id":419,"parentId":418,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8867,"timestamp":7385100122918,"id":418,"parentId":409,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9872,"timestamp":7385100122510,"id":409,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1776992046310,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9475,"timestamp":7385100122939,"id":421,"parentId":420,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9485,"timestamp":7385100122930,"id":420,"parentId":410,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10569,"timestamp":7385100122534,"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":1776992046310,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10202,"timestamp":7385100122915,"id":417,"parentId":416,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10238,"timestamp":7385100122880,"id":416,"parentId":408,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10883,"timestamp":7385100122477,"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":1776992046310,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10429,"timestamp":7385100122948,"id":423,"parentId":422,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10438,"timestamp":7385100122940,"id":422,"parentId":411,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11364,"timestamp":7385100122564,"id":411,"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":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11380,"timestamp":7385100122973,"id":429,"parentId":428,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11389,"timestamp":7385100122966,"id":428,"parentId":414,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12033,"timestamp":7385100122627,"id":414,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11719,"timestamp":7385100122965,"id":427,"parentId":426,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11728,"timestamp":7385100122958,"id":426,"parentId":413,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12483,"timestamp":7385100122604,"id":413,"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":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12185,"timestamp":7385100122956,"id":425,"parentId":424,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12194,"timestamp":7385100122949,"id":424,"parentId":412,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13827,"timestamp":7385100122584,"id":412,"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":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27780,"timestamp":7385100113646,"id":392,"parentId":386,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385100141437,"id":436,"parentId":386,"tags":{},"startTime":1776992046329,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29519,"timestamp":7385100113409,"id":386,"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":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29322,"timestamp":7385100113620,"id":391,"parentId":382,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":134,"timestamp":7385100143220,"id":437,"parentId":382,"tags":{},"startTime":1776992046331,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32575,"timestamp":7385100113106,"id":382,"parentId":295,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33283,"timestamp":7385100122673,"id":415,"parentId":407,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385100155984,"id":444,"parentId":407,"tags":{},"startTime":1776992046344,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34138,"timestamp":7385100122365,"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":1776992046310,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11602,"timestamp":7385100147258,"id":441,"parentId":440,"tags":{},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11642,"timestamp":7385100147224,"id":440,"parentId":438,"tags":{},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12905,"timestamp":7385100146769,"id":438,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12450,"timestamp":7385100147271,"id":443,"parentId":442,"tags":{},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12462,"timestamp":7385100147261,"id":442,"parentId":439,"tags":{},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13436,"timestamp":7385100147013,"id":439,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":478,"timestamp":7385100162885,"id":452,"parentId":445,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":468,"timestamp":7385100163372,"id":463,"parentId":445,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1754,"timestamp":7385100162520,"id":445,"parentId":386,"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":1776992046350,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28613,"timestamp":7385100137952,"id":435,"parentId":432,"tags":{},"startTime":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385100166575,"id":464,"parentId":432,"tags":{},"startTime":1776992046355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29480,"timestamp":7385100137857,"id":432,"parentId":335,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29427,"timestamp":7385100137923,"id":433,"parentId":430,"tags":{},"startTime":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385100167357,"id":465,"parentId":430,"tags":{},"startTime":1776992046355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29826,"timestamp":7385100137681,"id":430,"parentId":264,"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":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29603,"timestamp":7385100137943,"id":434,"parentId":431,"tags":{},"startTime":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385100167551,"id":466,"parentId":431,"tags":{},"startTime":1776992046356,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29844,"timestamp":7385100137804,"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-dom.js","layer":"ssr"},"startTime":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5654,"timestamp":7385100163256,"id":458,"parentId":457,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5668,"timestamp":7385100163245,"id":457,"parentId":447,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6487,"timestamp":7385100162673,"id":447,"parentId":390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5909,"timestamp":7385100163266,"id":460,"parentId":459,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5919,"timestamp":7385100163258,"id":459,"parentId":450,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7356,"timestamp":7385100162792,"id":450,"parentId":389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7925,"timestamp":7385100163278,"id":462,"parentId":461,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7938,"timestamp":7385100163268,"id":461,"parentId":451,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8703,"timestamp":7385100162813,"id":451,"parentId":390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8681,"timestamp":7385100163242,"id":456,"parentId":455,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8717,"timestamp":7385100163208,"id":455,"parentId":446,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9487,"timestamp":7385100162635,"id":446,"parentId":384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5792,"timestamp":7385100168767,"id":472,"parentId":471,"tags":{},"startTime":1776992046357,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5818,"timestamp":7385100168756,"id":471,"parentId":468,"tags":{},"startTime":1776992046357,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8139,"timestamp":7385100167997,"id":468,"parentId":412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1776992046356,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8242,"timestamp":7385100168752,"id":470,"parentId":469,"tags":{},"startTime":1776992046357,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8274,"timestamp":7385100168724,"id":469,"parentId":467,"tags":{},"startTime":1776992046357,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10365,"timestamp":7385100167936,"id":467,"parentId":413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1776992046356,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6563,"timestamp":7385100172969,"id":485,"parentId":484,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6576,"timestamp":7385100172960,"id":484,"parentId":475,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8638,"timestamp":7385100172582,"id":475,"parentId":373,"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":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8287,"timestamp":7385100172959,"id":483,"parentId":482,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8298,"timestamp":7385100172949,"id":482,"parentId":474,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9823,"timestamp":7385100172550,"id":474,"parentId":373,"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":1776992046360,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9445,"timestamp":7385100172947,"id":481,"parentId":480,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9471,"timestamp":7385100172922,"id":480,"parentId":473,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10137,"timestamp":7385100172475,"id":473,"parentId":385,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1776992046360,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9632,"timestamp":7385100172990,"id":489,"parentId":488,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9640,"timestamp":7385100172982,"id":488,"parentId":477,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10135,"timestamp":7385100172645,"id":477,"parentId":373,"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":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10790,"timestamp":7385100172981,"id":487,"parentId":486,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10803,"timestamp":7385100172970,"id":486,"parentId":476,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11586,"timestamp":7385100172624,"id":476,"parentId":373,"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":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11243,"timestamp":7385100173006,"id":493,"parentId":492,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11251,"timestamp":7385100172999,"id":492,"parentId":479,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11866,"timestamp":7385100172682,"id":479,"parentId":373,"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":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":21888,"timestamp":7385100162888,"id":453,"parentId":448,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385100184783,"id":496,"parentId":448,"tags":{},"startTime":1776992046373,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22244,"timestamp":7385100162698,"id":448,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22044,"timestamp":7385100162904,"id":454,"parentId":449,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385100184952,"id":497,"parentId":449,"tags":{},"startTime":1776992046373,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22762,"timestamp":7385100162746,"id":449,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12524,"timestamp":7385100172998,"id":491,"parentId":490,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12533,"timestamp":7385100172991,"id":490,"parentId":478,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15229,"timestamp":7385100172664,"id":478,"parentId":373,"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":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":25457,"timestamp":7385100178783,"id":495,"parentId":494,"tags":{},"startTime":1776992046367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385100204255,"id":512,"parentId":494,"tags":{},"startTime":1776992046392,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25842,"timestamp":7385100178664,"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":1776992046367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2894,"timestamp":7385100203085,"id":509,"parentId":508,"tags":{},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2934,"timestamp":7385100203047,"id":508,"parentId":504,"tags":{},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4487,"timestamp":7385100202503,"id":504,"parentId":432,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1776992046390,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5422,"timestamp":7385100203122,"id":511,"parentId":510,"tags":{},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5473,"timestamp":7385100203088,"id":510,"parentId":506,"tags":{},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":9830,"timestamp":7385100202628,"id":506,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7096,"timestamp":7385100205435,"id":535,"parentId":534,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7110,"timestamp":7385100205428,"id":534,"parentId":515,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8086,"timestamp":7385100204919,"id":515,"parentId":450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7596,"timestamp":7385100205427,"id":533,"parentId":532,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7607,"timestamp":7385100205417,"id":532,"parentId":514,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8520,"timestamp":7385100204886,"id":514,"parentId":450,"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":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10452,"timestamp":7385100205444,"id":537,"parentId":536,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10464,"timestamp":7385100205436,"id":536,"parentId":516,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11726,"timestamp":7385100204951,"id":516,"parentId":450,"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":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11249,"timestamp":7385100205452,"id":539,"parentId":538,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11257,"timestamp":7385100205445,"id":538,"parentId":517,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12498,"timestamp":7385100204971,"id":517,"parentId":450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12089,"timestamp":7385100205415,"id":531,"parentId":530,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12113,"timestamp":7385100205391,"id":530,"parentId":513,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13993,"timestamp":7385100204839,"id":513,"parentId":450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13397,"timestamp":7385100205460,"id":541,"parentId":540,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13406,"timestamp":7385100205453,"id":540,"parentId":518,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15898,"timestamp":7385100204994,"id":518,"parentId":450,"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":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15448,"timestamp":7385100205469,"id":543,"parentId":542,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15457,"timestamp":7385100205461,"id":542,"parentId":519,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16292,"timestamp":7385100205018,"id":519,"parentId":439,"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":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15824,"timestamp":7385100205501,"id":551,"parentId":550,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15832,"timestamp":7385100205494,"id":550,"parentId":523,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18151,"timestamp":7385100205090,"id":523,"parentId":439,"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":1776992046393,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-transform","duration":17890,"timestamp":7385100205485,"id":547,"parentId":546,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17899,"timestamp":7385100205478,"id":546,"parentId":521,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18975,"timestamp":7385100205054,"id":521,"parentId":439,"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":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18552,"timestamp":7385100205493,"id":549,"parentId":548,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18561,"timestamp":7385100205486,"id":548,"parentId":522,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19258,"timestamp":7385100205073,"id":522,"parentId":439,"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":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18894,"timestamp":7385100205477,"id":545,"parentId":544,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18902,"timestamp":7385100205470,"id":544,"parentId":520,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20794,"timestamp":7385100205036,"id":520,"parentId":439,"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":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":20330,"timestamp":7385100205518,"id":555,"parentId":554,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20340,"timestamp":7385100205510,"id":554,"parentId":525,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21069,"timestamp":7385100205124,"id":525,"parentId":439,"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":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":20709,"timestamp":7385100205509,"id":553,"parentId":552,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20717,"timestamp":7385100205502,"id":552,"parentId":524,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21363,"timestamp":7385100205107,"id":524,"parentId":439,"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":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":32018,"timestamp":7385100205586,"id":559,"parentId":558,"tags":{},"startTime":1776992046394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32045,"timestamp":7385100205566,"id":558,"parentId":528,"tags":{},"startTime":1776992046394,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32997,"timestamp":7385100205257,"id":528,"parentId":468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":32711,"timestamp":7385100205565,"id":557,"parentId":556,"tags":{},"startTime":1776992046394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32759,"timestamp":7385100205519,"id":556,"parentId":527,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":51687,"timestamp":7385100205208,"id":527,"parentId":467,"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":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":51194,"timestamp":7385100207395,"id":564,"parentId":563,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":51222,"timestamp":7385100207373,"id":563,"parentId":560,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":53920,"timestamp":7385100207250,"id":560,"parentId":479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":53793,"timestamp":7385100207407,"id":566,"parentId":565,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":54053,"timestamp":7385100207396,"id":565,"parentId":561,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":55564,"timestamp":7385100207301,"id":561,"parentId":476,"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":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":55856,"timestamp":7385100207416,"id":568,"parentId":567,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":55868,"timestamp":7385100207407,"id":567,"parentId":562,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":56995,"timestamp":7385100207331,"id":562,"parentId":479,"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":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":67342,"timestamp":7385100198798,"id":502,"parentId":499,"tags":{},"startTime":1776992046387,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":121,"timestamp":7385100266192,"id":569,"parentId":499,"tags":{},"startTime":1776992046454,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":74379,"timestamp":7385100198531,"id":499,"parentId":263,"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":1776992046386,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":74140,"timestamp":7385100198806,"id":503,"parentId":500,"tags":{},"startTime":1776992046387,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385100272960,"id":570,"parentId":500,"tags":{},"startTime":1776992046461,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":83976,"timestamp":7385100198630,"id":500,"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":1776992046387,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":90143,"timestamp":7385100198771,"id":501,"parentId":498,"tags":{},"startTime":1776992046387,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":104,"timestamp":7385100288962,"id":571,"parentId":498,"tags":{},"startTime":1776992046477,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":97313,"timestamp":7385100198392,"id":498,"parentId":277,"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":1776992046386,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":93235,"timestamp":7385100202854,"id":507,"parentId":505,"tags":{},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44,"timestamp":7385100296106,"id":572,"parentId":505,"tags":{},"startTime":1776992046484,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":94068,"timestamp":7385100202575,"id":505,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":100546,"timestamp":7385100205282,"id":529,"parentId":526,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385100305844,"id":573,"parentId":526,"tags":{},"startTime":1776992046494,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":101009,"timestamp":7385100205142,"id":526,"parentId":258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2711,"timestamp":7385100324020,"id":588,"parentId":587,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2727,"timestamp":7385100324011,"id":587,"parentId":576,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3524,"timestamp":7385100323768,"id":576,"parentId":514,"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":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3291,"timestamp":7385100324030,"id":590,"parentId":589,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3300,"timestamp":7385100324021,"id":589,"parentId":577,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4687,"timestamp":7385100323793,"id":577,"parentId":514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4515,"timestamp":7385100324010,"id":586,"parentId":585,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4528,"timestamp":7385100323999,"id":585,"parentId":575,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5360,"timestamp":7385100323735,"id":575,"parentId":514,"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":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5081,"timestamp":7385100324038,"id":592,"parentId":591,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5089,"timestamp":7385100324031,"id":591,"parentId":578,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5531,"timestamp":7385100323814,"id":578,"parentId":514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8076,"timestamp":7385100324047,"id":594,"parentId":593,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8087,"timestamp":7385100324039,"id":593,"parentId":579,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8673,"timestamp":7385100323835,"id":579,"parentId":513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8496,"timestamp":7385100324063,"id":598,"parentId":597,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8505,"timestamp":7385100324056,"id":597,"parentId":581,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9008,"timestamp":7385100323877,"id":581,"parentId":513,"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":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9730,"timestamp":7385100324055,"id":596,"parentId":595,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9741,"timestamp":7385100324048,"id":595,"parentId":580,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10196,"timestamp":7385100323856,"id":580,"parentId":513,"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":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10109,"timestamp":7385100323996,"id":584,"parentId":583,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10150,"timestamp":7385100323956,"id":583,"parentId":574,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11742,"timestamp":7385100323641,"id":574,"parentId":515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8796,"timestamp":7385100326604,"id":608,"parentId":607,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8823,"timestamp":7385100326579,"id":607,"parentId":602,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9157,"timestamp":7385100326418,"id":602,"parentId":527,"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":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8969,"timestamp":7385100326616,"id":610,"parentId":609,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8980,"timestamp":7385100326606,"id":609,"parentId":603,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9319,"timestamp":7385100326450,"id":603,"parentId":520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9153,"timestamp":7385100326625,"id":612,"parentId":611,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9162,"timestamp":7385100326617,"id":611,"parentId":604,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9556,"timestamp":7385100326483,"id":604,"parentId":561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11979,"timestamp":7385100324071,"id":600,"parentId":599,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11987,"timestamp":7385100324064,"id":599,"parentId":582,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12318,"timestamp":7385100323896,"id":582,"parentId":519,"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":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9591,"timestamp":7385100326634,"id":614,"parentId":613,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9600,"timestamp":7385100326626,"id":613,"parentId":605,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10306,"timestamp":7385100326504,"id":605,"parentId":520,"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":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6123,"timestamp":7385100331918,"id":622,"parentId":621,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6150,"timestamp":7385100331892,"id":621,"parentId":615,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6913,"timestamp":7385100331257,"id":615,"parentId":504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1776992046519,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6249,"timestamp":7385100331931,"id":624,"parentId":623,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6260,"timestamp":7385100331920,"id":623,"parentId":616,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6989,"timestamp":7385100331355,"id":616,"parentId":523,"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":1776992046519,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6411,"timestamp":7385100331941,"id":626,"parentId":625,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6420,"timestamp":7385100331933,"id":625,"parentId":617,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7064,"timestamp":7385100331430,"id":617,"parentId":523,"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":1776992046519,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6782,"timestamp":7385100331950,"id":628,"parentId":627,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6791,"timestamp":7385100331942,"id":627,"parentId":618,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7416,"timestamp":7385100331484,"id":618,"parentId":523,"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":1776992046519,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8055,"timestamp":7385100331958,"id":630,"parentId":629,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8220,"timestamp":7385100331951,"id":629,"parentId":619,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8962,"timestamp":7385100331567,"id":619,"parentId":523,"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":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8635,"timestamp":7385100331966,"id":632,"parentId":631,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8643,"timestamp":7385100331959,"id":631,"parentId":620,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":10687,"timestamp":7385100331588,"id":620,"parentId":526,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4784,"timestamp":7385100343293,"id":638,"parentId":637,"tags":{},"startTime":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4798,"timestamp":7385100343283,"id":637,"parentId":634,"tags":{},"startTime":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5378,"timestamp":7385100343056,"id":634,"parentId":520,"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":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5190,"timestamp":7385100343280,"id":636,"parentId":635,"tags":{},"startTime":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5224,"timestamp":7385100343247,"id":635,"parentId":633,"tags":{},"startTime":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6232,"timestamp":7385100342966,"id":633,"parentId":520,"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":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27332,"timestamp":7385100326530,"id":606,"parentId":601,"tags":{},"startTime":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385100353876,"id":639,"parentId":601,"tags":{},"startTime":1776992046542,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27944,"timestamp":7385100326324,"id":601,"parentId":560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2421,"timestamp":7385100354768,"id":642,"parentId":641,"tags":{},"startTime":1776992046543,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2454,"timestamp":7385100354738,"id":641,"parentId":640,"tags":{},"startTime":1776992046543,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2937,"timestamp":7385100354642,"id":640,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1776992046543,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2527,"timestamp":7385100356701,"id":645,"parentId":644,"tags":{},"startTime":1776992046545,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2557,"timestamp":7385100356673,"id":644,"parentId":643,"tags":{},"startTime":1776992046545,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3876,"timestamp":7385100356550,"id":643,"parentId":605,"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":1776992046544,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2616,"timestamp":7385100358036,"id":656,"parentId":655,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2626,"timestamp":7385100358027,"id":655,"parentId":647,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3125,"timestamp":7385100357875,"id":647,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2994,"timestamp":7385100358026,"id":654,"parentId":653,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3014,"timestamp":7385100358007,"id":653,"parentId":646,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4215,"timestamp":7385100357830,"id":646,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4132,"timestamp":7385100358056,"id":660,"parentId":659,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4223,"timestamp":7385100358048,"id":659,"parentId":649,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4808,"timestamp":7385100357924,"id":649,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5690,"timestamp":7385100358080,"id":666,"parentId":665,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5700,"timestamp":7385100358074,"id":665,"parentId":652,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6227,"timestamp":7385100357980,"id":652,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6434,"timestamp":7385100358073,"id":664,"parentId":663,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6442,"timestamp":7385100358066,"id":663,"parentId":651,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6671,"timestamp":7385100357962,"id":651,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6704,"timestamp":7385100358047,"id":658,"parentId":657,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6715,"timestamp":7385100358037,"id":657,"parentId":648,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7217,"timestamp":7385100357900,"id":648,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7474,"timestamp":7385100358065,"id":662,"parentId":661,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7483,"timestamp":7385100358057,"id":661,"parentId":650,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8104,"timestamp":7385100357943,"id":650,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5464,"timestamp":7385100360593,"id":676,"parentId":675,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5475,"timestamp":7385100360583,"id":675,"parentId":671,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5686,"timestamp":7385100360517,"id":671,"parentId":519,"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":1776992046548,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7033,"timestamp":7385100359181,"id":669,"parentId":668,"tags":{},"startTime":1776992046547,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7052,"timestamp":7385100359162,"id":668,"parentId":667,"tags":{},"startTime":1776992046547,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7315,"timestamp":7385100359101,"id":667,"parentId":633,"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":1776992046547,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5842,"timestamp":7385100360582,"id":674,"parentId":673,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5861,"timestamp":7385100360563,"id":673,"parentId":670,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6069,"timestamp":7385100360472,"id":670,"parentId":519,"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":1776992046548,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5960,"timestamp":7385100360602,"id":678,"parentId":677,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5969,"timestamp":7385100360594,"id":677,"parentId":672,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6407,"timestamp":7385100360540,"id":672,"parentId":523,"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":1776992046548,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3457,"timestamp":7385100372754,"id":683,"parentId":682,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3494,"timestamp":7385100372723,"id":682,"parentId":679,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4029,"timestamp":7385100372558,"id":679,"parentId":601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2929,"timestamp":7385100373673,"id":695,"parentId":694,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2939,"timestamp":7385100373664,"id":694,"parentId":689,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3248,"timestamp":7385100373574,"id":689,"parentId":519,"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":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3169,"timestamp":7385100373663,"id":693,"parentId":692,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3186,"timestamp":7385100373647,"id":692,"parentId":688,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3464,"timestamp":7385100373540,"id":688,"parentId":519,"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":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4235,"timestamp":7385100372777,"id":687,"parentId":686,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4244,"timestamp":7385100372768,"id":686,"parentId":681,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4480,"timestamp":7385100372662,"id":681,"parentId":520,"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":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4674,"timestamp":7385100372767,"id":685,"parentId":684,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4686,"timestamp":7385100372757,"id":684,"parentId":680,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4926,"timestamp":7385100372634,"id":680,"parentId":476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5238,"timestamp":7385100373682,"id":697,"parentId":696,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5248,"timestamp":7385100373674,"id":696,"parentId":690,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5586,"timestamp":7385100373596,"id":690,"parentId":523,"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":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3417,"timestamp":7385100376090,"id":703,"parentId":702,"tags":{},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3460,"timestamp":7385100376048,"id":702,"parentId":700,"tags":{},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3905,"timestamp":7385100375731,"id":700,"parentId":646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5961,"timestamp":7385100373690,"id":699,"parentId":698,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5969,"timestamp":7385100373683,"id":698,"parentId":691,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6856,"timestamp":7385100373615,"id":691,"parentId":521,"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":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4382,"timestamp":7385100376106,"id":705,"parentId":704,"tags":{},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4395,"timestamp":7385100376094,"id":704,"parentId":701,"tags":{},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5241,"timestamp":7385100375918,"id":701,"parentId":646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4390,"timestamp":7385100378235,"id":713,"parentId":712,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4417,"timestamp":7385100378210,"id":712,"parentId":706,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5124,"timestamp":7385100377831,"id":706,"parentId":646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4717,"timestamp":7385100378249,"id":715,"parentId":714,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4730,"timestamp":7385100378237,"id":714,"parentId":707,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5191,"timestamp":7385100377997,"id":707,"parentId":648,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4940,"timestamp":7385100378260,"id":717,"parentId":716,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4950,"timestamp":7385100378251,"id":716,"parentId":708,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5285,"timestamp":7385100378061,"id":708,"parentId":672,"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":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5332,"timestamp":7385100378269,"id":719,"parentId":718,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5341,"timestamp":7385100378261,"id":718,"parentId":709,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5915,"timestamp":7385100378102,"id":709,"parentId":671,"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":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5958,"timestamp":7385100378277,"id":721,"parentId":720,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5966,"timestamp":7385100378270,"id":720,"parentId":710,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6329,"timestamp":7385100378126,"id":710,"parentId":672,"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":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6183,"timestamp":7385100378286,"id":723,"parentId":722,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6191,"timestamp":7385100378278,"id":722,"parentId":711,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6537,"timestamp":7385100378147,"id":711,"parentId":670,"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":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11386,"timestamp":7385100388066,"id":725,"parentId":724,"tags":{},"startTime":1776992046576,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385100399471,"id":761,"parentId":724,"tags":{},"startTime":1776992046587,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12467,"timestamp":7385100387830,"id":724,"parentId":474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1776992046576,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3102,"timestamp":7385100397758,"id":740,"parentId":739,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3144,"timestamp":7385100397718,"id":739,"parentId":726,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4675,"timestamp":7385100397196,"id":726,"parentId":689,"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":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4174,"timestamp":7385100397786,"id":744,"parentId":743,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":4417,"timestamp":7385100397777,"id":743,"parentId":728,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6961,"timestamp":7385100397345,"id":728,"parentId":688,"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":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15128,"timestamp":7385100397775,"id":742,"parentId":741,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15148,"timestamp":7385100397763,"id":741,"parentId":727,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16307,"timestamp":7385100397311,"id":727,"parentId":689,"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":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15848,"timestamp":7385100397796,"id":746,"parentId":745,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15857,"timestamp":7385100397787,"id":745,"parentId":729,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16491,"timestamp":7385100397370,"id":729,"parentId":688,"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":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16067,"timestamp":7385100397806,"id":748,"parentId":747,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16076,"timestamp":7385100397797,"id":747,"parentId":730,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16642,"timestamp":7385100397393,"id":730,"parentId":688,"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":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16231,"timestamp":7385100397814,"id":750,"parentId":749,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16240,"timestamp":7385100397807,"id":749,"parentId":731,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16759,"timestamp":7385100397420,"id":731,"parentId":688,"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":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16362,"timestamp":7385100397825,"id":752,"parentId":751,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16372,"timestamp":7385100397816,"id":751,"parentId":732,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16895,"timestamp":7385100397440,"id":732,"parentId":688,"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":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16495,"timestamp":7385100397857,"id":756,"parentId":755,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16505,"timestamp":7385100397850,"id":755,"parentId":735,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17144,"timestamp":7385100397545,"id":735,"parentId":691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17058,"timestamp":7385100397866,"id":758,"parentId":757,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17067,"timestamp":7385100397858,"id":757,"parentId":736,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17522,"timestamp":7385100397566,"id":736,"parentId":690,"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":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17584,"timestamp":7385100397848,"id":754,"parentId":753,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17607,"timestamp":7385100397827,"id":753,"parentId":733,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19795,"timestamp":7385100397460,"id":733,"parentId":681,"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":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19427,"timestamp":7385100397875,"id":760,"parentId":759,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19437,"timestamp":7385100397867,"id":759,"parentId":737,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20089,"timestamp":7385100397584,"id":737,"parentId":690,"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":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16940,"timestamp":7385100400754,"id":769,"parentId":768,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16966,"timestamp":7385100400729,"id":768,"parentId":763,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17444,"timestamp":7385100400471,"id":763,"parentId":706,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1776992046588,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17192,"timestamp":7385100400776,"id":773,"parentId":772,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17201,"timestamp":7385100400767,"id":772,"parentId":765,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17761,"timestamp":7385100400549,"id":765,"parentId":710,"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":1776992046588,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17578,"timestamp":7385100400765,"id":771,"parentId":770,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17589,"timestamp":7385100400756,"id":770,"parentId":764,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18513,"timestamp":7385100400505,"id":764,"parentId":706,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1776992046588,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18252,"timestamp":7385100400784,"id":775,"parentId":774,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18261,"timestamp":7385100400777,"id":774,"parentId":766,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20462,"timestamp":7385100400636,"id":766,"parentId":709,"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":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24143,"timestamp":7385100407176,"id":788,"parentId":787,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24162,"timestamp":7385100407165,"id":787,"parentId":778,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26676,"timestamp":7385100405653,"id":778,"parentId":710,"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":1776992046594,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25258,"timestamp":7385100407120,"id":784,"parentId":783,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25344,"timestamp":7385100407036,"id":783,"parentId":776,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27822,"timestamp":7385100404979,"id":776,"parentId":711,"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":1776992046593,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":27592,"timestamp":7385100407163,"id":786,"parentId":785,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27633,"timestamp":7385100407126,"id":785,"parentId":777,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40439,"timestamp":7385100405141,"id":777,"parentId":711,"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":1776992046593,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":48220,"timestamp":7385100397614,"id":738,"parentId":734,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385100445844,"id":792,"parentId":734,"tags":{},"startTime":1776992046634,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":48560,"timestamp":7385100397485,"id":734,"parentId":620,"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":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":204,"timestamp":7385100446821,"id":795,"parentId":793,"tags":{},"startTime":1776992046635,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":163,"timestamp":7385100447031,"id":798,"parentId":793,"tags":{},"startTime":1776992046635,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1411,"timestamp":7385100446467,"id":793,"parentId":764,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1776992046634,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13990,"timestamp":7385100433940,"id":791,"parentId":790,"tags":{},"startTime":1776992046622,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14024,"timestamp":7385100433907,"id":790,"parentId":789,"tags":{},"startTime":1776992046622,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14692,"timestamp":7385100433712,"id":789,"parentId":646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1776992046622,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":48452,"timestamp":7385100400695,"id":767,"parentId":762,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385100449157,"id":799,"parentId":762,"tags":{},"startTime":1776992046637,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":48993,"timestamp":7385100400377,"id":762,"parentId":519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1776992046588,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42631,"timestamp":7385100406754,"id":781,"parentId":779,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385100449390,"id":800,"parentId":779,"tags":{},"startTime":1776992046637,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43512,"timestamp":7385100406003,"id":779,"parentId":528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1776992046594,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42742,"timestamp":7385100406779,"id":782,"parentId":780,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25,"timestamp":7385100449525,"id":801,"parentId":780,"tags":{},"startTime":1776992046637,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43599,"timestamp":7385100406088,"id":780,"parentId":528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1776992046594,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3261,"timestamp":7385100446963,"id":797,"parentId":796,"tags":{},"startTime":1776992046635,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3295,"timestamp":7385100446931,"id":796,"parentId":794,"tags":{},"startTime":1776992046635,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3848,"timestamp":7385100446570,"id":794,"parentId":672,"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":1776992046635,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1799,"timestamp":7385100450817,"id":805,"parentId":804,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1829,"timestamp":7385100450794,"id":804,"parentId":802,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2251,"timestamp":7385100450699,"id":802,"parentId":764,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2488,"timestamp":7385100450829,"id":807,"parentId":806,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2499,"timestamp":7385100450819,"id":806,"parentId":803,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2875,"timestamp":7385100450754,"id":803,"parentId":766,"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":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2283,"timestamp":7385100451362,"id":810,"parentId":809,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2302,"timestamp":7385100451343,"id":809,"parentId":808,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2684,"timestamp":7385100451284,"id":808,"parentId":728,"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":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2100,"timestamp":7385100453204,"id":816,"parentId":815,"tags":{},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2115,"timestamp":7385100453194,"id":815,"parentId":812,"tags":{},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2568,"timestamp":7385100453135,"id":812,"parentId":789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3617,"timestamp":7385100453192,"id":814,"parentId":813,"tags":{},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3641,"timestamp":7385100453171,"id":813,"parentId":811,"tags":{},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5852,"timestamp":7385100453085,"id":811,"parentId":789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8249,"timestamp":7385100454377,"id":819,"parentId":818,"tags":{},"startTime":1776992046642,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8270,"timestamp":7385100454358,"id":818,"parentId":817,"tags":{},"startTime":1776992046642,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11719,"timestamp":7385100454180,"id":817,"parentId":794,"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":1776992046642,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1103,"timestamp":7385100475509,"id":821,"parentId":820,"tags":{},"startTime":1776992046663,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385100476629,"id":822,"parentId":820,"tags":{},"startTime":1776992046665,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3365,"timestamp":7385100475397,"id":820,"parentId":709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1776992046663,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17731,"timestamp":7385100479042,"id":824,"parentId":823,"tags":{},"startTime":1776992046667,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":73,"timestamp":7385100496793,"id":827,"parentId":823,"tags":{},"startTime":1776992046685,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21078,"timestamp":7385100478911,"id":823,"parentId":777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1776992046667,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20960,"timestamp":7385100479448,"id":826,"parentId":825,"tags":{},"startTime":1776992046667,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385100500417,"id":828,"parentId":825,"tags":{},"startTime":1776992046688,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21442,"timestamp":7385100479382,"id":825,"parentId":777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1776992046667,"traceId":"27fab7e1c891f919"},{"name":"make","duration":911151,"timestamp":7385099590185,"id":119,"parentId":118,"tags":{},"startTime":1776992045778,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":3059,"timestamp":7385100507851,"id":830,"parentId":829,"tags":{},"startTime":1776992046696,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7385100510932,"id":832,"parentId":829,"tags":{},"startTime":1776992046699,"traceId":"27fab7e1c891f919"}] -[{"name":"optimize-chunks","duration":2594,"timestamp":7385100511058,"id":833,"parentId":829,"tags":{},"startTime":1776992046699,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":4,"timestamp":7385100513675,"id":834,"parentId":829,"tags":{},"startTime":1776992046702,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385100513692,"id":835,"parentId":829,"tags":{},"startTime":1776992046702,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":3452,"timestamp":7385100510924,"id":831,"parentId":829,"tags":{},"startTime":1776992046699,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":9334,"timestamp":7385100524070,"id":836,"parentId":829,"tags":{},"startTime":1776992046712,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":12398,"timestamp":7385100533431,"id":837,"parentId":829,"tags":{},"startTime":1776992046721,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":3537,"timestamp":7385100547982,"id":838,"parentId":829,"tags":{},"startTime":1776992046736,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":345,"timestamp":7385100551519,"id":839,"parentId":829,"tags":{},"startTime":1776992046739,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":98,"timestamp":7385100551854,"id":840,"parentId":829,"tags":{},"startTime":1776992046740,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":46229,"timestamp":7385100551956,"id":841,"parentId":829,"tags":{},"startTime":1776992046740,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":93573,"timestamp":7385100506959,"id":829,"parentId":118,"tags":{},"startTime":1776992046695,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1011699,"timestamp":7385099589858,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1776992045778,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":46677,"timestamp":7385100601655,"id":842,"parentId":116,"tags":{},"startTime":1776992046790,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":1068949,"timestamp":7385099589068,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992045777,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":7759,"timestamp":7385100695069,"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":1776992046883,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":110,"timestamp":7385100702904,"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":1776992046891,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":11402,"timestamp":7385100703023,"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":1776992046891,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":55319,"timestamp":7385100714471,"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":1776992046902,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":98655,"timestamp":7385100672543,"id":848,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992046860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":8,"timestamp":7385100851480,"id":856,"parentId":855,"tags":{},"startTime":1776992047039,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19688,"timestamp":7385100856944,"id":871,"parentId":870,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19741,"timestamp":7385100856904,"id":870,"parentId":860,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":25409,"timestamp":7385100856073,"id":860,"parentId":853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1776992047044,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24661,"timestamp":7385100856902,"id":869,"parentId":868,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24711,"timestamp":7385100856854,"id":868,"parentId":859,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28887,"timestamp":7385100853840,"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":1776992047042,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25802,"timestamp":7385100856977,"id":873,"parentId":872,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25835,"timestamp":7385100856946,"id":872,"parentId":861,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":27296,"timestamp":7385100856591,"id":861,"parentId":851,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"app-pages-browser"},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":36579,"timestamp":7385100851662,"id":858,"parentId":857,"tags":{},"startTime":1776992047040,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36741,"timestamp":7385100851506,"id":857,"parentId":855,"tags":{},"startTime":1776992047039,"traceId":"27fab7e1c891f919"},{"name":"build-module-mjs","duration":38720,"timestamp":7385100850815,"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":1776992047039,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":32569,"timestamp":7385100856998,"id":877,"parentId":876,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32579,"timestamp":7385100856989,"id":876,"parentId":863,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33423,"timestamp":7385100856719,"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":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":33171,"timestamp":7385100857006,"id":879,"parentId":878,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33180,"timestamp":7385100856999,"id":878,"parentId":864,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34266,"timestamp":7385100856752,"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":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":34016,"timestamp":7385100857022,"id":883,"parentId":882,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34024,"timestamp":7385100857015,"id":882,"parentId":866,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35063,"timestamp":7385100856801,"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":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":35334,"timestamp":7385100857030,"id":885,"parentId":884,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35343,"timestamp":7385100857023,"id":884,"parentId":867,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35918,"timestamp":7385100856823,"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":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":35761,"timestamp":7385100857014,"id":881,"parentId":880,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35769,"timestamp":7385100857007,"id":880,"parentId":865,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37447,"timestamp":7385100856777,"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":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37473,"timestamp":7385100856988,"id":875,"parentId":874,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37496,"timestamp":7385100856978,"id":874,"parentId":862,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40804,"timestamp":7385100856664,"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":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":123,"timestamp":7385100909511,"id":888,"parentId":886,"tags":{},"startTime":1776992047097,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385100909646,"id":890,"parentId":886,"tags":{},"startTime":1776992047098,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":816,"timestamp":7385100909270,"id":886,"parentId":861,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1776992047097,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18477,"timestamp":7385100912291,"id":926,"parentId":925,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18490,"timestamp":7385100912283,"id":925,"parentId":893,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19914,"timestamp":7385100911521,"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":1776992047099,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19171,"timestamp":7385100912282,"id":924,"parentId":923,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19182,"timestamp":7385100912272,"id":923,"parentId":892,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20743,"timestamp":7385100911492,"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":1776992047099,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19989,"timestamp":7385100912269,"id":922,"parentId":921,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20027,"timestamp":7385100912232,"id":921,"parentId":891,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21936,"timestamp":7385100911421,"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":1776992047099,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":28410,"timestamp":7385100912299,"id":928,"parentId":927,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28429,"timestamp":7385100912292,"id":927,"parentId":894,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31867,"timestamp":7385100911552,"id":894,"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":1776992047099,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31286,"timestamp":7385100912315,"id":932,"parentId":931,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31297,"timestamp":7385100912308,"id":931,"parentId":896,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32531,"timestamp":7385100911599,"id":896,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31826,"timestamp":7385100912326,"id":934,"parentId":933,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31838,"timestamp":7385100912316,"id":933,"parentId":897,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33079,"timestamp":7385100911634,"id":897,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":32504,"timestamp":7385100912349,"id":936,"parentId":935,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32535,"timestamp":7385100912327,"id":935,"parentId":898,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33992,"timestamp":7385100911660,"id":898,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":33320,"timestamp":7385100912365,"id":940,"parentId":939,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33329,"timestamp":7385100912358,"id":939,"parentId":900,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34351,"timestamp":7385100911711,"id":900,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":33783,"timestamp":7385100912307,"id":930,"parentId":929,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33791,"timestamp":7385100912300,"id":929,"parentId":895,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35156,"timestamp":7385100911574,"id":895,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":34373,"timestamp":7385100912373,"id":942,"parentId":941,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34381,"timestamp":7385100912366,"id":941,"parentId":901,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35317,"timestamp":7385100911742,"id":901,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":34713,"timestamp":7385100912358,"id":938,"parentId":937,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34721,"timestamp":7385100912351,"id":937,"parentId":899,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35630,"timestamp":7385100911690,"id":899,"parentId":866,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":34942,"timestamp":7385100912395,"id":948,"parentId":947,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34949,"timestamp":7385100912388,"id":947,"parentId":904,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36069,"timestamp":7385100911800,"id":904,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":35503,"timestamp":7385100912380,"id":944,"parentId":943,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35511,"timestamp":7385100912373,"id":943,"parentId":902,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36547,"timestamp":7385100911761,"id":902,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":35930,"timestamp":7385100912388,"id":946,"parentId":945,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35938,"timestamp":7385100912381,"id":945,"parentId":903,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36765,"timestamp":7385100911780,"id":903,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":36144,"timestamp":7385100912409,"id":952,"parentId":951,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36152,"timestamp":7385100912403,"id":951,"parentId":906,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36945,"timestamp":7385100911861,"id":906,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":36391,"timestamp":7385100912423,"id":954,"parentId":953,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36405,"timestamp":7385100912410,"id":953,"parentId":907,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37130,"timestamp":7385100911880,"id":907,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-transform","duration":36732,"timestamp":7385100912402,"id":950,"parentId":949,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36740,"timestamp":7385100912395,"id":949,"parentId":905,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37776,"timestamp":7385100911839,"id":905,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37193,"timestamp":7385100912431,"id":956,"parentId":955,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37202,"timestamp":7385100912424,"id":955,"parentId":908,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37940,"timestamp":7385100911905,"id":908,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37408,"timestamp":7385100912447,"id":960,"parentId":959,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37416,"timestamp":7385100912440,"id":959,"parentId":910,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38151,"timestamp":7385100911943,"id":910,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37641,"timestamp":7385100912461,"id":964,"parentId":963,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37648,"timestamp":7385100912455,"id":963,"parentId":912,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38356,"timestamp":7385100911979,"id":912,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37912,"timestamp":7385100912440,"id":958,"parentId":957,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37920,"timestamp":7385100912433,"id":957,"parentId":909,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":46917,"timestamp":7385100911925,"id":909,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":46467,"timestamp":7385100912454,"id":962,"parentId":961,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46478,"timestamp":7385100912448,"id":961,"parentId":911,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":48425,"timestamp":7385100911962,"id":911,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":48010,"timestamp":7385100912476,"id":968,"parentId":967,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":48021,"timestamp":7385100912469,"id":967,"parentId":914,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":49878,"timestamp":7385100912015,"id":914,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":49486,"timestamp":7385100912469,"id":966,"parentId":965,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":49494,"timestamp":7385100912462,"id":965,"parentId":913,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":50626,"timestamp":7385100911997,"id":913,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":50162,"timestamp":7385100912484,"id":970,"parentId":969,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50171,"timestamp":7385100912477,"id":969,"parentId":915,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":50892,"timestamp":7385100912033,"id":915,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":50446,"timestamp":7385100912492,"id":972,"parentId":971,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50454,"timestamp":7385100912485,"id":971,"parentId":916,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":51211,"timestamp":7385100912051,"id":916,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":50777,"timestamp":7385100912499,"id":974,"parentId":973,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50785,"timestamp":7385100912493,"id":973,"parentId":917,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":51481,"timestamp":7385100912068,"id":917,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":51698,"timestamp":7385100912513,"id":976,"parentId":975,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":51713,"timestamp":7385100912500,"id":975,"parentId":918,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":52693,"timestamp":7385100912086,"id":918,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":52320,"timestamp":7385100912549,"id":980,"parentId":979,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52348,"timestamp":7385100912522,"id":979,"parentId":920,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":54207,"timestamp":7385100912128,"id":920,"parentId":860,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":53871,"timestamp":7385100912521,"id":978,"parentId":977,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":53880,"timestamp":7385100912514,"id":977,"parentId":919,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":56150,"timestamp":7385100912106,"id":919,"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":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":326,"timestamp":7385100971340,"id":994,"parentId":991,"tags":{},"startTime":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":362,"timestamp":7385100971345,"id":995,"parentId":992,"tags":{},"startTime":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5612,"timestamp":7385100971677,"id":1000,"parentId":991,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5585,"timestamp":7385100971710,"id":1001,"parentId":992,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6487,"timestamp":7385100971175,"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":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6791,"timestamp":7385100971235,"id":992,"parentId":866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":39197,"timestamp":7385100938879,"id":985,"parentId":984,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39232,"timestamp":7385100938846,"id":984,"parentId":981,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39997,"timestamp":7385100938545,"id":981,"parentId":859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1776992047126,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":39666,"timestamp":7385100938892,"id":987,"parentId":986,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39677,"timestamp":7385100938882,"id":986,"parentId":982,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40265,"timestamp":7385100938707,"id":982,"parentId":859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":40099,"timestamp":7385100938901,"id":989,"parentId":988,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40108,"timestamp":7385100938893,"id":988,"parentId":983,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42214,"timestamp":7385100938745,"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":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":71890,"timestamp":7385100909514,"id":889,"parentId":887,"tags":{},"startTime":1776992047097,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385100981412,"id":1002,"parentId":887,"tags":{},"startTime":1776992047169,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":72198,"timestamp":7385100909444,"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":1776992047097,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10091,"timestamp":7385100971611,"id":999,"parentId":998,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10106,"timestamp":7385100971597,"id":998,"parentId":993,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10733,"timestamp":7385100971285,"id":993,"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":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10509,"timestamp":7385100971593,"id":997,"parentId":996,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10546,"timestamp":7385100971557,"id":996,"parentId":990,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12648,"timestamp":7385100971049,"id":990,"parentId":886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21415,"timestamp":7385100986160,"id":1011,"parentId":1010,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21432,"timestamp":7385100986148,"id":1010,"parentId":1005,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22403,"timestamp":7385100985665,"id":1005,"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":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21942,"timestamp":7385100986146,"id":1009,"parentId":1008,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21958,"timestamp":7385100986131,"id":1008,"parentId":1004,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22668,"timestamp":7385100985628,"id":1004,"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":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":22223,"timestamp":7385100986122,"id":1007,"parentId":1006,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":22289,"timestamp":7385100986057,"id":1006,"parentId":1003,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23278,"timestamp":7385100985471,"id":1003,"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":1776992047173,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1007,"timestamp":7385101009847,"id":1039,"parentId":1014,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1059,"timestamp":7385101009851,"id":1040,"parentId":1019,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1089,"timestamp":7385101009853,"id":1041,"parentId":1022,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1114,"timestamp":7385101009854,"id":1042,"parentId":1023,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1137,"timestamp":7385101009860,"id":1043,"parentId":1028,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1162,"timestamp":7385101009862,"id":1044,"parentId":1029,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":617,"timestamp":7385101010867,"id":1087,"parentId":1014,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":572,"timestamp":7385101010914,"id":1088,"parentId":1019,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":542,"timestamp":7385101010945,"id":1089,"parentId":1022,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":516,"timestamp":7385101010971,"id":1090,"parentId":1023,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":489,"timestamp":7385101010999,"id":1091,"parentId":1028,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":462,"timestamp":7385101011026,"id":1092,"parentId":1029,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3042,"timestamp":7385101009129,"id":1014,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3081,"timestamp":7385101009258,"id":1019,"parentId":901,"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":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3322,"timestamp":7385101009338,"id":1022,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3582,"timestamp":7385101009384,"id":1023,"parentId":919,"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":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3784,"timestamp":7385101009516,"id":1028,"parentId":894,"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":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8241,"timestamp":7385101009570,"id":1029,"parentId":916,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11718,"timestamp":7385101009977,"id":1046,"parentId":1045,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11752,"timestamp":7385101009947,"id":1045,"parentId":1012,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16503,"timestamp":7385101009018,"id":1012,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15605,"timestamp":7385101010006,"id":1052,"parentId":1051,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15628,"timestamp":7385101009999,"id":1051,"parentId":1016,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19659,"timestamp":7385101009198,"id":1016,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18966,"timestamp":7385101009989,"id":1048,"parentId":1047,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18980,"timestamp":7385101009980,"id":1047,"parentId":1013,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":22762,"timestamp":7385101009100,"id":1013,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21952,"timestamp":7385101009998,"id":1050,"parentId":1049,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21964,"timestamp":7385101009990,"id":1049,"parentId":1015,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25280,"timestamp":7385101009175,"id":1015,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24462,"timestamp":7385101010023,"id":1056,"parentId":1055,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24470,"timestamp":7385101010016,"id":1055,"parentId":1018,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25564,"timestamp":7385101009239,"id":1018,"parentId":895,"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":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24800,"timestamp":7385101010015,"id":1054,"parentId":1053,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24807,"timestamp":7385101010008,"id":1053,"parentId":1017,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25859,"timestamp":7385101009219,"id":1017,"parentId":895,"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":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25058,"timestamp":7385101010032,"id":1058,"parentId":1057,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25067,"timestamp":7385101010024,"id":1057,"parentId":1020,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26091,"timestamp":7385101009296,"id":1020,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25350,"timestamp":7385101010058,"id":1062,"parentId":1061,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25360,"timestamp":7385101010049,"id":1061,"parentId":1024,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31044,"timestamp":7385101009440,"id":1024,"parentId":913,"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":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":30458,"timestamp":7385101010066,"id":1064,"parentId":1063,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30467,"timestamp":7385101010059,"id":1063,"parentId":1025,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31650,"timestamp":7385101009460,"id":1025,"parentId":913,"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":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31086,"timestamp":7385101010047,"id":1060,"parentId":1059,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31102,"timestamp":7385101010033,"id":1059,"parentId":1021,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32316,"timestamp":7385101009315,"id":1021,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31566,"timestamp":7385101010082,"id":1068,"parentId":1067,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31574,"timestamp":7385101010075,"id":1067,"parentId":1027,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32549,"timestamp":7385101009497,"id":1027,"parentId":913,"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":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31971,"timestamp":7385101010090,"id":1070,"parentId":1069,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31979,"timestamp":7385101010083,"id":1069,"parentId":1030,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32966,"timestamp":7385101009612,"id":1030,"parentId":919,"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":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":39521,"timestamp":7385101010099,"id":1072,"parentId":1071,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39536,"timestamp":7385101010091,"id":1071,"parentId":1031,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41632,"timestamp":7385101009642,"id":1031,"parentId":919,"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":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":41231,"timestamp":7385101010074,"id":1066,"parentId":1065,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41239,"timestamp":7385101010067,"id":1065,"parentId":1026,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42612,"timestamp":7385101009479,"id":1026,"parentId":913,"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":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":41992,"timestamp":7385101010116,"id":1076,"parentId":1075,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42000,"timestamp":7385101010108,"id":1075,"parentId":1033,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43032,"timestamp":7385101009680,"id":1033,"parentId":919,"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":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":42632,"timestamp":7385101010107,"id":1074,"parentId":1073,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42640,"timestamp":7385101010100,"id":1073,"parentId":1032,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44302,"timestamp":7385101009662,"id":1032,"parentId":919,"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":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":43859,"timestamp":7385101010123,"id":1078,"parentId":1077,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43868,"timestamp":7385101010116,"id":1077,"parentId":1034,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44700,"timestamp":7385101009697,"id":1034,"parentId":919,"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":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":44275,"timestamp":7385101010132,"id":1080,"parentId":1079,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44320,"timestamp":7385101010124,"id":1079,"parentId":1035,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45425,"timestamp":7385101009714,"id":1035,"parentId":919,"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":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":46047,"timestamp":7385101010170,"id":1086,"parentId":1085,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46070,"timestamp":7385101010148,"id":1085,"parentId":1038,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":46862,"timestamp":7385101009816,"id":1038,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":46561,"timestamp":7385101010140,"id":1082,"parentId":1081,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46569,"timestamp":7385101010133,"id":1081,"parentId":1036,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":47880,"timestamp":7385101009732,"id":1036,"parentId":919,"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":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":47480,"timestamp":7385101010147,"id":1084,"parentId":1083,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":47488,"timestamp":7385101010140,"id":1083,"parentId":1037,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":48304,"timestamp":7385101009750,"id":1037,"parentId":919,"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":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13230,"timestamp":7385101044837,"id":1110,"parentId":1109,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13239,"timestamp":7385101044828,"id":1109,"parentId":1096,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14004,"timestamp":7385101044447,"id":1096,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13648,"timestamp":7385101044815,"id":1106,"parentId":1105,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13660,"timestamp":7385101044804,"id":1105,"parentId":1094,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14466,"timestamp":7385101044378,"id":1094,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14035,"timestamp":7385101044827,"id":1108,"parentId":1107,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14047,"timestamp":7385101044816,"id":1107,"parentId":1095,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15028,"timestamp":7385101044411,"id":1095,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17955,"timestamp":7385101044802,"id":1104,"parentId":1103,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17993,"timestamp":7385101044768,"id":1103,"parentId":1093,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19564,"timestamp":7385101044283,"id":1093,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":26104,"timestamp":7385101044870,"id":1118,"parentId":1117,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26116,"timestamp":7385101044863,"id":1117,"parentId":1100,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27149,"timestamp":7385101044534,"id":1100,"parentId":990,"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":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":26865,"timestamp":7385101044845,"id":1112,"parentId":1111,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26874,"timestamp":7385101044838,"id":1111,"parentId":1097,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27913,"timestamp":7385101044470,"id":1097,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":27542,"timestamp":7385101044854,"id":1114,"parentId":1113,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27550,"timestamp":7385101044846,"id":1113,"parentId":1098,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28120,"timestamp":7385101044492,"id":1098,"parentId":990,"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":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":27759,"timestamp":7385101044862,"id":1116,"parentId":1115,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27767,"timestamp":7385101044854,"id":1115,"parentId":1099,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28476,"timestamp":7385101044513,"id":1099,"parentId":990,"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":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":28114,"timestamp":7385101044887,"id":1122,"parentId":1121,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28122,"timestamp":7385101044879,"id":1121,"parentId":1102,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28763,"timestamp":7385101044574,"id":1102,"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":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":28471,"timestamp":7385101044878,"id":1120,"parentId":1119,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28480,"timestamp":7385101044871,"id":1119,"parentId":1101,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29295,"timestamp":7385101044554,"id":1101,"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":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7720,"timestamp":7385101066493,"id":1127,"parentId":1126,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7771,"timestamp":7385101066444,"id":1126,"parentId":1123,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8781,"timestamp":7385101065802,"id":1123,"parentId":1003,"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":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8060,"timestamp":7385101066532,"id":1131,"parentId":1130,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8084,"timestamp":7385101066509,"id":1130,"parentId":1125,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8967,"timestamp":7385101065943,"id":1125,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8454,"timestamp":7385101066508,"id":1129,"parentId":1128,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8466,"timestamp":7385101066496,"id":1128,"parentId":1124,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9599,"timestamp":7385101065907,"id":1124,"parentId":1003,"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":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":648,"timestamp":7385101079810,"id":1147,"parentId":1132,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2993,"timestamp":7385101080468,"id":1173,"parentId":1132,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7705,"timestamp":7385101076801,"id":1132,"parentId":1014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5639,"timestamp":7385101080044,"id":1152,"parentId":1151,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5652,"timestamp":7385101080034,"id":1151,"parentId":1134,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9817,"timestamp":7385101076974,"id":1134,"parentId":1014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6747,"timestamp":7385101080063,"id":1156,"parentId":1155,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":6860,"timestamp":7385101080055,"id":1155,"parentId":1136,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10146,"timestamp":7385101077080,"id":1136,"parentId":1015,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7208,"timestamp":7385101080030,"id":1150,"parentId":1149,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7242,"timestamp":7385101079997,"id":1149,"parentId":1133,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10650,"timestamp":7385101076903,"id":1133,"parentId":1014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":485,"timestamp":7385101090366,"id":1190,"parentId":1189,"tags":{},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":597,"timestamp":7385101090856,"id":1221,"parentId":1189,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3084,"timestamp":7385101090304,"id":1189,"parentId":1033,"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":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13623,"timestamp":7385101080054,"id":1154,"parentId":1153,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13638,"timestamp":7385101080045,"id":1153,"parentId":1135,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18802,"timestamp":7385101077007,"id":1135,"parentId":1015,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15763,"timestamp":7385101080080,"id":1160,"parentId":1159,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15771,"timestamp":7385101080073,"id":1159,"parentId":1138,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19063,"timestamp":7385101077129,"id":1138,"parentId":1018,"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":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16147,"timestamp":7385101080072,"id":1158,"parentId":1157,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16156,"timestamp":7385101080064,"id":1157,"parentId":1137,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19396,"timestamp":7385101077105,"id":1137,"parentId":1015,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16419,"timestamp":7385101080098,"id":1164,"parentId":1163,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16428,"timestamp":7385101080090,"id":1163,"parentId":1140,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19729,"timestamp":7385101077171,"id":1140,"parentId":1027,"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":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16806,"timestamp":7385101080106,"id":1166,"parentId":1165,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16814,"timestamp":7385101080099,"id":1165,"parentId":1141,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19997,"timestamp":7385101077190,"id":1141,"parentId":1029,"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":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17083,"timestamp":7385101080114,"id":1168,"parentId":1167,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17091,"timestamp":7385101080107,"id":1167,"parentId":1144,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17729,"timestamp":7385101079721,"id":1144,"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":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18143,"timestamp":7385101080089,"id":1162,"parentId":1161,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18152,"timestamp":7385101080081,"id":1161,"parentId":1139,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21436,"timestamp":7385101077151,"id":1139,"parentId":1021,"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":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18467,"timestamp":7385101080129,"id":1172,"parentId":1171,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18475,"timestamp":7385101080122,"id":1171,"parentId":1146,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19058,"timestamp":7385101079771,"id":1146,"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":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18724,"timestamp":7385101080121,"id":1170,"parentId":1169,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18731,"timestamp":7385101080115,"id":1169,"parentId":1145,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19440,"timestamp":7385101079750,"id":1145,"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":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8657,"timestamp":7385101090541,"id":1192,"parentId":1191,"tags":{},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8690,"timestamp":7385101090510,"id":1191,"parentId":1174,"tags":{},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9545,"timestamp":7385101089918,"id":1174,"parentId":1095,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8915,"timestamp":7385101090555,"id":1194,"parentId":1193,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8927,"timestamp":7385101090544,"id":1193,"parentId":1175,"tags":{},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9695,"timestamp":7385101090003,"id":1175,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9145,"timestamp":7385101090564,"id":1196,"parentId":1195,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9154,"timestamp":7385101090556,"id":1195,"parentId":1176,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9962,"timestamp":7385101090033,"id":1176,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9432,"timestamp":7385101090572,"id":1198,"parentId":1197,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9440,"timestamp":7385101090565,"id":1197,"parentId":1177,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10113,"timestamp":7385101090057,"id":1177,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9606,"timestamp":7385101090581,"id":1200,"parentId":1199,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9614,"timestamp":7385101090573,"id":1199,"parentId":1178,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10376,"timestamp":7385101090079,"id":1178,"parentId":1093,"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":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13912,"timestamp":7385101090589,"id":1202,"parentId":1201,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13922,"timestamp":7385101090582,"id":1201,"parentId":1179,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14818,"timestamp":7385101090102,"id":1179,"parentId":1026,"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":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14335,"timestamp":7385101090605,"id":1206,"parentId":1205,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14342,"timestamp":7385101090598,"id":1205,"parentId":1181,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15506,"timestamp":7385101090153,"id":1181,"parentId":1031,"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":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15080,"timestamp":7385101090597,"id":1204,"parentId":1203,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15088,"timestamp":7385101090590,"id":1203,"parentId":1180,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15873,"timestamp":7385101090133,"id":1180,"parentId":1031,"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":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15395,"timestamp":7385101090621,"id":1210,"parentId":1209,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15402,"timestamp":7385101090614,"id":1209,"parentId":1183,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16098,"timestamp":7385101090192,"id":1183,"parentId":1031,"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":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15673,"timestamp":7385101090628,"id":1212,"parentId":1211,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15680,"timestamp":7385101090622,"id":1211,"parentId":1184,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16385,"timestamp":7385101090212,"id":1184,"parentId":1031,"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":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15965,"timestamp":7385101090643,"id":1216,"parentId":1215,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15973,"timestamp":7385101090636,"id":1215,"parentId":1186,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16693,"timestamp":7385101090250,"id":1186,"parentId":1031,"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":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16299,"timestamp":7385101090651,"id":1218,"parentId":1217,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16306,"timestamp":7385101090644,"id":1217,"parentId":1187,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16865,"timestamp":7385101090268,"id":1187,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16506,"timestamp":7385101090636,"id":1214,"parentId":1213,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16514,"timestamp":7385101090629,"id":1213,"parentId":1185,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17192,"timestamp":7385101090230,"id":1185,"parentId":1031,"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":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16830,"timestamp":7385101090658,"id":1220,"parentId":1219,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16838,"timestamp":7385101090652,"id":1219,"parentId":1188,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17405,"timestamp":7385101090286,"id":1188,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17106,"timestamp":7385101090612,"id":1208,"parentId":1207,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17113,"timestamp":7385101090606,"id":1207,"parentId":1182,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18699,"timestamp":7385101090172,"id":1182,"parentId":1031,"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":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7193,"timestamp":7385101102331,"id":1228,"parentId":1227,"tags":{},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7250,"timestamp":7385101102280,"id":1227,"parentId":1222,"tags":{},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8147,"timestamp":7385101101820,"id":1222,"parentId":1102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41774,"timestamp":7385101079814,"id":1148,"parentId":1143,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385101121606,"id":1229,"parentId":1143,"tags":{},"startTime":1776992047310,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42443,"timestamp":7385101079657,"id":1143,"parentId":982,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":337,"timestamp":7385101131121,"id":1231,"parentId":1230,"tags":{},"startTime":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":548,"timestamp":7385101152129,"id":1241,"parentId":1232,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2225,"timestamp":7385101152698,"id":1256,"parentId":1232,"tags":{},"startTime":1776992047341,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24293,"timestamp":7385101131147,"id":1232,"parentId":1175,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3681,"timestamp":7385101152450,"id":1245,"parentId":1244,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3697,"timestamp":7385101152435,"id":1244,"parentId":1234,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25132,"timestamp":7385101131304,"id":1234,"parentId":1141,"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":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3983,"timestamp":7385101152478,"id":1249,"parentId":1248,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3992,"timestamp":7385101152469,"id":1248,"parentId":1236,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25529,"timestamp":7385101131363,"id":1236,"parentId":1139,"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":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4419,"timestamp":7385101152486,"id":1251,"parentId":1250,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4427,"timestamp":7385101152479,"id":1250,"parentId":1237,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25822,"timestamp":7385101131388,"id":1237,"parentId":1139,"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":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4793,"timestamp":7385101152429,"id":1243,"parentId":1242,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4838,"timestamp":7385101152385,"id":1242,"parentId":1233,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":27848,"timestamp":7385101131257,"id":1233,"parentId":1140,"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":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6626,"timestamp":7385101152505,"id":1255,"parentId":1254,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6634,"timestamp":7385101152497,"id":1254,"parentId":1239,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28137,"timestamp":7385101131431,"id":1239,"parentId":1139,"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":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7084,"timestamp":7385101152495,"id":1253,"parentId":1252,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7092,"timestamp":7385101152488,"id":1252,"parentId":1238,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28752,"timestamp":7385101131410,"id":1238,"parentId":1139,"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":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":61247,"timestamp":7385101102012,"id":1225,"parentId":1223,"tags":{},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385101163271,"id":1257,"parentId":1223,"tags":{},"startTime":1776992047351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":61916,"timestamp":7385101101901,"id":1223,"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":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":61797,"timestamp":7385101102031,"id":1226,"parentId":1224,"tags":{},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385101163835,"id":1258,"parentId":1224,"tags":{},"startTime":1776992047352,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":62318,"timestamp":7385101101954,"id":1224,"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":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11882,"timestamp":7385101152467,"id":1247,"parentId":1246,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11893,"timestamp":7385101152457,"id":1246,"parentId":1235,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33915,"timestamp":7385101131336,"id":1235,"parentId":1139,"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":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":500,"timestamp":7385101167102,"id":1282,"parentId":1274,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1451,"timestamp":7385101167607,"id":1327,"parentId":1274,"tags":{},"startTime":1776992047356,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3312,"timestamp":7385101166880,"id":1274,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5655,"timestamp":7385101167228,"id":1286,"parentId":1285,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5667,"timestamp":7385101167218,"id":1285,"parentId":1260,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6796,"timestamp":7385101166537,"id":1260,"parentId":1178,"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":1776992047354,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6106,"timestamp":7385101167246,"id":1290,"parentId":1289,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6114,"timestamp":7385101167238,"id":1289,"parentId":1262,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7244,"timestamp":7385101166603,"id":1262,"parentId":1179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6629,"timestamp":7385101167237,"id":1288,"parentId":1287,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6638,"timestamp":7385101167229,"id":1287,"parentId":1261,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7893,"timestamp":7385101166565,"id":1261,"parentId":1178,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7206,"timestamp":7385101167262,"id":1294,"parentId":1293,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7213,"timestamp":7385101167255,"id":1293,"parentId":1264,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8083,"timestamp":7385101166648,"id":1264,"parentId":1184,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7544,"timestamp":7385101167216,"id":1284,"parentId":1283,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7575,"timestamp":7385101167186,"id":1283,"parentId":1259,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10502,"timestamp":7385101166462,"id":1259,"parentId":1139,"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":1776992047354,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9754,"timestamp":7385101167254,"id":1292,"parentId":1291,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9762,"timestamp":7385101167247,"id":1291,"parentId":1263,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10869,"timestamp":7385101166626,"id":1263,"parentId":1181,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15291,"timestamp":7385101167278,"id":1298,"parentId":1297,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15302,"timestamp":7385101167271,"id":1297,"parentId":1266,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16307,"timestamp":7385101166688,"id":1266,"parentId":1184,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15738,"timestamp":7385101167270,"id":1296,"parentId":1295,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15746,"timestamp":7385101167263,"id":1295,"parentId":1265,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16603,"timestamp":7385101166668,"id":1265,"parentId":1184,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15995,"timestamp":7385101167286,"id":1300,"parentId":1299,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16004,"timestamp":7385101167279,"id":1299,"parentId":1267,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16798,"timestamp":7385101166708,"id":1267,"parentId":1184,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16214,"timestamp":7385101167301,"id":1304,"parentId":1303,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16222,"timestamp":7385101167294,"id":1303,"parentId":1269,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16982,"timestamp":7385101166747,"id":1269,"parentId":1181,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16462,"timestamp":7385101167293,"id":1302,"parentId":1301,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16470,"timestamp":7385101167287,"id":1301,"parentId":1268,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17285,"timestamp":7385101166728,"id":1268,"parentId":1181,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16706,"timestamp":7385101167315,"id":1308,"parentId":1307,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16714,"timestamp":7385101167309,"id":1307,"parentId":1271,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17415,"timestamp":7385101166810,"id":1271,"parentId":1181,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16927,"timestamp":7385101167308,"id":1306,"parentId":1305,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16934,"timestamp":7385101167302,"id":1305,"parentId":1270,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17630,"timestamp":7385101166789,"id":1270,"parentId":1181,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17103,"timestamp":7385101167323,"id":1310,"parentId":1309,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17110,"timestamp":7385101167316,"id":1309,"parentId":1272,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17792,"timestamp":7385101166841,"id":1272,"parentId":1184,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17296,"timestamp":7385101167346,"id":1316,"parentId":1315,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17303,"timestamp":7385101167339,"id":1315,"parentId":1276,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17860,"timestamp":7385101166955,"id":1276,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17462,"timestamp":7385101167360,"id":1320,"parentId":1319,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17469,"timestamp":7385101167354,"id":1319,"parentId":1278,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18020,"timestamp":7385101166999,"id":1278,"parentId":1187,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17708,"timestamp":7385101167330,"id":1312,"parentId":1311,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17716,"timestamp":7385101167323,"id":1311,"parentId":1273,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18686,"timestamp":7385101166861,"id":1273,"parentId":1184,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18219,"timestamp":7385101167338,"id":1314,"parentId":1313,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18227,"timestamp":7385101167331,"id":1313,"parentId":1275,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18908,"timestamp":7385101166924,"id":1275,"parentId":1125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18496,"timestamp":7385101167353,"id":1318,"parentId":1317,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18504,"timestamp":7385101167347,"id":1317,"parentId":1277,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19397,"timestamp":7385101166975,"id":1277,"parentId":1187,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":22352,"timestamp":7385101167375,"id":1324,"parentId":1323,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":22361,"timestamp":7385101167368,"id":1323,"parentId":1280,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24407,"timestamp":7385101167046,"id":1280,"parentId":1182,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24334,"timestamp":7385101167367,"id":1322,"parentId":1321,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24343,"timestamp":7385101167361,"id":1321,"parentId":1279,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25151,"timestamp":7385101167027,"id":1279,"parentId":1182,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24829,"timestamp":7385101167382,"id":1326,"parentId":1325,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24836,"timestamp":7385101167375,"id":1325,"parentId":1281,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25841,"timestamp":7385101167070,"id":1281,"parentId":1182,"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":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13442,"timestamp":7385101179485,"id":1346,"parentId":1345,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13450,"timestamp":7385101179478,"id":1345,"parentId":1331,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14093,"timestamp":7385101179099,"id":1331,"parentId":1135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13735,"timestamp":7385101179468,"id":1342,"parentId":1341,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13746,"timestamp":7385101179458,"id":1341,"parentId":1329,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14473,"timestamp":7385101179046,"id":1329,"parentId":1182,"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":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14084,"timestamp":7385101179455,"id":1340,"parentId":1339,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14117,"timestamp":7385101179423,"id":1339,"parentId":1328,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15036,"timestamp":7385101178952,"id":1328,"parentId":1186,"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":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14523,"timestamp":7385101179477,"id":1344,"parentId":1343,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14533,"timestamp":7385101179469,"id":1343,"parentId":1330,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15126,"timestamp":7385101179078,"id":1330,"parentId":1136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14720,"timestamp":7385101179493,"id":1348,"parentId":1347,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14728,"timestamp":7385101179486,"id":1347,"parentId":1332,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15280,"timestamp":7385101179126,"id":1332,"parentId":1232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14895,"timestamp":7385101179519,"id":1354,"parentId":1353,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":14990,"timestamp":7385101179513,"id":1353,"parentId":1335,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15557,"timestamp":7385101179197,"id":1335,"parentId":1236,"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":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15255,"timestamp":7385101179512,"id":1352,"parentId":1351,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15263,"timestamp":7385101179505,"id":1351,"parentId":1334,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15936,"timestamp":7385101179176,"id":1334,"parentId":1236,"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":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25179,"timestamp":7385101179527,"id":1356,"parentId":1355,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25190,"timestamp":7385101179520,"id":1355,"parentId":1336,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26017,"timestamp":7385101179216,"id":1336,"parentId":1236,"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":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25744,"timestamp":7385101179504,"id":1350,"parentId":1349,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26539,"timestamp":7385101179494,"id":1349,"parentId":1333,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27325,"timestamp":7385101179151,"id":1333,"parentId":1233,"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":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":26988,"timestamp":7385101179534,"id":1358,"parentId":1357,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27003,"timestamp":7385101179528,"id":1357,"parentId":1337,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27806,"timestamp":7385101179235,"id":1337,"parentId":1236,"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":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":27563,"timestamp":7385101179541,"id":1360,"parentId":1359,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27570,"timestamp":7385101179535,"id":1359,"parentId":1338,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29174,"timestamp":7385101179263,"id":1338,"parentId":1237,"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":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11209,"timestamp":7385101197770,"id":1369,"parentId":1368,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11239,"timestamp":7385101197742,"id":1368,"parentId":1361,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12565,"timestamp":7385101196746,"id":1361,"parentId":1235,"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":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11539,"timestamp":7385101197782,"id":1371,"parentId":1370,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11549,"timestamp":7385101197773,"id":1370,"parentId":1362,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12733,"timestamp":7385101196818,"id":1362,"parentId":1235,"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":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11770,"timestamp":7385101197790,"id":1373,"parentId":1372,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11778,"timestamp":7385101197783,"id":1372,"parentId":1363,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13054,"timestamp":7385101196845,"id":1363,"parentId":1235,"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":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":232,"timestamp":7385101210927,"id":1380,"parentId":1374,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":271,"timestamp":7385101210930,"id":1381,"parentId":1376,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":295,"timestamp":7385101210931,"id":1382,"parentId":1377,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":85,"timestamp":7385101211165,"id":1385,"parentId":1374,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":48,"timestamp":7385101211202,"id":1386,"parentId":1376,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":23,"timestamp":7385101211228,"id":1387,"parentId":1377,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1071,"timestamp":7385101210636,"id":1374,"parentId":1261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1163,"timestamp":7385101210777,"id":1376,"parentId":1262,"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":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1209,"timestamp":7385101210821,"id":1377,"parentId":1262,"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":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":297732,"timestamp":7385101211126,"id":1384,"parentId":1383,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":297769,"timestamp":7385101211096,"id":1383,"parentId":1375,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":298753,"timestamp":7385101210723,"id":1375,"parentId":1261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1368,"timestamp":7385101511044,"id":1412,"parentId":1411,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1382,"timestamp":7385101511035,"id":1411,"parentId":1391,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2673,"timestamp":7385101510565,"id":1391,"parentId":1273,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2232,"timestamp":7385101511052,"id":1414,"parentId":1413,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2241,"timestamp":7385101511044,"id":1413,"parentId":1392,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3461,"timestamp":7385101510594,"id":1392,"parentId":1281,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3395,"timestamp":7385101511022,"id":1408,"parentId":1407,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3428,"timestamp":7385101510991,"id":1407,"parentId":1389,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4816,"timestamp":7385101510324,"id":1389,"parentId":1328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1776992047698,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4105,"timestamp":7385101511059,"id":1416,"parentId":1415,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4113,"timestamp":7385101511052,"id":1415,"parentId":1393,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5102,"timestamp":7385101510616,"id":1393,"parentId":1269,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4721,"timestamp":7385101511035,"id":1410,"parentId":1409,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4732,"timestamp":7385101511025,"id":1409,"parentId":1390,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6193,"timestamp":7385101510495,"id":1390,"parentId":1279,"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":1776992047698,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5632,"timestamp":7385101511075,"id":1420,"parentId":1419,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5640,"timestamp":7385101511068,"id":1419,"parentId":1395,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6370,"timestamp":7385101510658,"id":1395,"parentId":1268,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5978,"timestamp":7385101511068,"id":1418,"parentId":1417,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5986,"timestamp":7385101511060,"id":1417,"parentId":1394,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6835,"timestamp":7385101510637,"id":1394,"parentId":1268,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6398,"timestamp":7385101511083,"id":1422,"parentId":1421,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6405,"timestamp":7385101511076,"id":1421,"parentId":1396,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7066,"timestamp":7385101510699,"id":1396,"parentId":1268,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6675,"timestamp":7385101511099,"id":1426,"parentId":1425,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6682,"timestamp":7385101511092,"id":1425,"parentId":1398,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7421,"timestamp":7385101510776,"id":1398,"parentId":1268,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7116,"timestamp":7385101511091,"id":1424,"parentId":1423,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7124,"timestamp":7385101511084,"id":1423,"parentId":1397,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8824,"timestamp":7385101510721,"id":1397,"parentId":1268,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":23753,"timestamp":7385101511130,"id":1430,"parentId":1429,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":23767,"timestamp":7385101511121,"id":1429,"parentId":1400,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24910,"timestamp":7385101510833,"id":1400,"parentId":1271,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24655,"timestamp":7385101511106,"id":1428,"parentId":1427,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24663,"timestamp":7385101511100,"id":1427,"parentId":1399,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25378,"timestamp":7385101510810,"id":1399,"parentId":1271,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25060,"timestamp":7385101511145,"id":1434,"parentId":1433,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25068,"timestamp":7385101511139,"id":1433,"parentId":1402,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25641,"timestamp":7385101510873,"id":1402,"parentId":1272,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25402,"timestamp":7385101511138,"id":1432,"parentId":1431,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25410,"timestamp":7385101511131,"id":1431,"parentId":1401,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26363,"timestamp":7385101510854,"id":1401,"parentId":1270,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":26079,"timestamp":7385101511153,"id":1436,"parentId":1435,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26087,"timestamp":7385101511146,"id":1435,"parentId":1403,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26659,"timestamp":7385101510893,"id":1403,"parentId":1272,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":42283,"timestamp":7385101511161,"id":1438,"parentId":1437,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42296,"timestamp":7385101511154,"id":1437,"parentId":1404,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43229,"timestamp":7385101510915,"id":1404,"parentId":1273,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":358207,"timestamp":7385101197139,"id":1365,"parentId":1364,"tags":{},"startTime":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":358674,"timestamp":7385101196870,"id":1364,"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":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":358388,"timestamp":7385101197167,"id":1367,"parentId":1366,"tags":{},"startTime":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":358460,"timestamp":7385101197159,"id":1366,"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":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":44459,"timestamp":7385101511175,"id":1442,"parentId":1441,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44467,"timestamp":7385101511169,"id":1441,"parentId":1406,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45000,"timestamp":7385101510954,"id":1406,"parentId":1273,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":44818,"timestamp":7385101511168,"id":1440,"parentId":1439,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44826,"timestamp":7385101511161,"id":1439,"parentId":1405,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45679,"timestamp":7385101510935,"id":1405,"parentId":1329,"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":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":355843,"timestamp":7385101210884,"id":1379,"parentId":1378,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":355980,"timestamp":7385101210871,"id":1378,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"postcss-process","duration":308682,"timestamp":7385101424712,"id":1388,"parentId":1240,"tags":{},"startTime":1776992047613,"traceId":"27fab7e1c891f919"},{"name":"postcss-loader","duration":603030,"timestamp":7385101131564,"id":1240,"parentId":1230,"tags":{},"startTime":1776992047320,"traceId":"27fab7e1c891f919"},{"name":"css-loader","duration":29742,"timestamp":7385101734729,"id":1458,"parentId":1230,"tags":{"astUsed":"true"},"startTime":1776992047923,"traceId":"27fab7e1c891f919"}] -[{"name":"read-resource","duration":183,"timestamp":7385101766349,"id":1465,"parentId":1463,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385101766544,"id":1475,"parentId":1463,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2392,"timestamp":7385101766242,"id":1463,"parentId":1401,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":201994,"timestamp":7385101567354,"id":1453,"parentId":1452,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":202026,"timestamp":7385101567326,"id":1452,"parentId":1443,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":202746,"timestamp":7385101567088,"id":1443,"parentId":1394,"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":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":202479,"timestamp":7385101567373,"id":1457,"parentId":1456,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":202487,"timestamp":7385101567366,"id":1456,"parentId":1445,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":202975,"timestamp":7385101567204,"id":1445,"parentId":1393,"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":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":203082,"timestamp":7385101567365,"id":1455,"parentId":1454,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":203092,"timestamp":7385101567356,"id":1454,"parentId":1444,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":210952,"timestamp":7385101567177,"id":1444,"parentId":1393,"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":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11839,"timestamp":7385101766423,"id":1470,"parentId":1469,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11851,"timestamp":7385101766413,"id":1469,"parentId":1460,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12847,"timestamp":7385101766154,"id":1460,"parentId":1401,"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":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12646,"timestamp":7385101766411,"id":1468,"parentId":1467,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12688,"timestamp":7385101766369,"id":1467,"parentId":1459,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13541,"timestamp":7385101766035,"id":1459,"parentId":1404,"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":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13172,"timestamp":7385101766440,"id":1474,"parentId":1473,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13180,"timestamp":7385101766433,"id":1473,"parentId":1462,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15146,"timestamp":7385101766217,"id":1462,"parentId":1406,"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":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14985,"timestamp":7385101766431,"id":1472,"parentId":1471,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14994,"timestamp":7385101766424,"id":1471,"parentId":1461,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15692,"timestamp":7385101766191,"id":1461,"parentId":1404,"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":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":221871,"timestamp":7385101567271,"id":1451,"parentId":1450,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":221994,"timestamp":7385101567264,"id":1450,"parentId":909,"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":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":222006,"timestamp":7385101567258,"id":1449,"parentId":1448,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":222165,"timestamp":7385101567250,"id":1448,"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":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":222181,"timestamp":7385101567237,"id":1447,"parentId":1446,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":222306,"timestamp":7385101567227,"id":1446,"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":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":97,"timestamp":7385101790211,"id":1485,"parentId":1477,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":156,"timestamp":7385101790213,"id":1486,"parentId":1478,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":677,"timestamp":7385101790312,"id":1489,"parentId":1477,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":620,"timestamp":7385101790371,"id":1490,"parentId":1478,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4245,"timestamp":7385101790053,"id":1477,"parentId":1444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4590,"timestamp":7385101790101,"id":1478,"parentId":1444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28855,"timestamp":7385101766354,"id":1466,"parentId":1464,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44,"timestamp":7385101795227,"id":1491,"parentId":1464,"tags":{},"startTime":1776992047983,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29184,"timestamp":7385101766296,"id":1464,"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":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5364,"timestamp":7385101790274,"id":1488,"parentId":1487,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5395,"timestamp":7385101790244,"id":1487,"parentId":1476,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6172,"timestamp":7385101789969,"id":1476,"parentId":1460,"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":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":9587,"timestamp":7385101790182,"id":1482,"parentId":1481,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11608,"timestamp":7385101790170,"id":1481,"parentId":1366,"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":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11633,"timestamp":7385101790156,"id":1480,"parentId":1479,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13407,"timestamp":7385101790145,"id":1479,"parentId":1364,"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":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":13504,"timestamp":7385101790201,"id":1484,"parentId":1483,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16979,"timestamp":7385101790193,"id":1483,"parentId":1378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":1136988,"timestamp":7385100672347,"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":1776992046860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":10797,"timestamp":7385101799739,"id":1493,"parentId":1492,"tags":{},"startTime":1776992047988,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11080,"timestamp":7385101799706,"id":1492,"parentId":1450,"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":1776992047988,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":687489,"timestamp":7385101123556,"id":1230,"parentId":1142,"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":1776992047312,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22687,"timestamp":7385101810141,"id":1497,"parentId":1496,"tags":{},"startTime":1776992047998,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":55,"timestamp":7385101832843,"id":1498,"parentId":1496,"tags":{},"startTime":1776992048021,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24042,"timestamp":7385101810013,"id":1496,"parentId":1464,"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":1776992047998,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":1161926,"timestamp":7385100672233,"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":1776992046860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26091,"timestamp":7385101808556,"id":1495,"parentId":1494,"tags":{},"startTime":1776992047997,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":144046,"timestamp":7385101808507,"id":1494,"parentId":1446,"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":1776992047996,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":547,"timestamp":7385101954648,"id":1502,"parentId":1501,"tags":{},"startTime":1776992048143,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1264,"timestamp":7385101954332,"id":1501,"parentId":1230,"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":1776992048142,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2242,"timestamp":7385101953366,"id":1500,"parentId":1499,"tags":{},"startTime":1776992048141,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5366,"timestamp":7385101953309,"id":1499,"parentId":1492,"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":1776992048141,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":888163,"timestamp":7385101077209,"id":1142,"parentId":853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":86,"timestamp":7385101982533,"id":1503,"parentId":1142,"tags":{},"startTime":1776992048170,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":1310153,"timestamp":7385100672572,"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":1776992046861,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":626,"timestamp":7385101985627,"id":1505,"parentId":1504,"tags":{},"startTime":1776992048174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385101986268,"id":1506,"parentId":1504,"tags":{},"startTime":1776992048174,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1064,"timestamp":7385101985507,"id":1504,"parentId":1494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1776992048173,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":965,"timestamp":7385101988777,"id":1508,"parentId":1507,"tags":{},"startTime":1776992048177,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44,"timestamp":7385101989751,"id":1509,"parentId":1507,"tags":{},"startTime":1776992048178,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2113,"timestamp":7385101988681,"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":1776992048177,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":1318512,"timestamp":7385100672586,"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":1776992046861,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":1318774,"timestamp":7385100672328,"id":846,"parentId":844,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992046860,"traceId":"27fab7e1c891f919"},{"name":"make","duration":1328090,"timestamp":7385100663026,"id":844,"parentId":843,"tags":{},"startTime":1776992046851,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1633,"timestamp":7385101994448,"id":1511,"parentId":1510,"tags":{},"startTime":1776992048182,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":17,"timestamp":7385101996096,"id":1513,"parentId":1510,"tags":{},"startTime":1776992048184,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":39,"timestamp":7385101996124,"id":1514,"parentId":1510,"tags":{},"startTime":1776992048184,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":5,"timestamp":7385101996172,"id":1515,"parentId":1510,"tags":{},"startTime":1776992048184,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385101996184,"id":1516,"parentId":1510,"tags":{},"startTime":1776992048184,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":669,"timestamp":7385101996090,"id":1512,"parentId":1510,"tags":{},"startTime":1776992048184,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":2960,"timestamp":7385102000200,"id":1517,"parentId":1510,"tags":{},"startTime":1776992048188,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":8843,"timestamp":7385102003175,"id":1518,"parentId":1510,"tags":{},"startTime":1776992048191,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":8994,"timestamp":7385102013482,"id":1519,"parentId":1510,"tags":{},"startTime":1776992048201,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":497,"timestamp":7385102022475,"id":1520,"parentId":1510,"tags":{},"startTime":1776992048210,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":88,"timestamp":7385102022945,"id":1521,"parentId":1510,"tags":{},"startTime":1776992048211,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":83201,"timestamp":7385102023037,"id":1522,"parentId":1510,"tags":{},"startTime":1776992048211,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":61,"timestamp":7385102106857,"id":1524,"parentId":843,"tags":{},"startTime":1776992048295,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":255,"timestamp":7385102106669,"id":1523,"parentId":843,"tags":{},"startTime":1776992048295,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":114826,"timestamp":7385101993758,"id":1510,"parentId":843,"tags":{},"startTime":1776992048182,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1446014,"timestamp":7385100662616,"id":843,"parentId":253,"tags":{"name":"client"},"startTime":1776992046851,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":20562,"timestamp":7385102108647,"id":1525,"parentId":253,"tags":{},"startTime":1776992048297,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":2540750,"timestamp":7385099589089,"id":117,"tags":{"trigger":"/","isTurbopack":false},"startTime":1776992045777,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":2154828,"timestamp":7385099975254,"id":253,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992046163,"traceId":"27fab7e1c891f919"}] -[{"name":"handle-request","duration":2679562,"timestamp":7385099554775,"id":115,"tags":{"url":"/","isTurbopack":false},"startTime":1776992045743,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385102234372,"id":1526,"parentId":115,"tags":{"url":"/","memory.rss":"541704192","memory.heapUsed":"317853032","memory.heapTotal":"351911936"},"startTime":1776992048422,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":33,"timestamp":7385103845847,"id":1527,"parentId":3,"tags":{},"startTime":1776992050034,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":45249,"timestamp":7385104934255,"id":1528,"tags":{"url":"/","isTurbopack":false},"startTime":1776992051122,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385104979571,"id":1529,"parentId":1528,"tags":{"url":"/","memory.rss":"277135360","memory.heapUsed":"332335120","memory.heapTotal":"357679104"},"startTime":1776992051168,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":8,"timestamp":7385106264998,"id":1530,"parentId":3,"tags":{},"startTime":1776992052453,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":3,"timestamp":7385106265774,"id":1531,"parentId":3,"tags":{},"startTime":1776992052454,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":7927,"timestamp":7385107137782,"id":1537,"parentId":1536,"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":1776992053326,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":20081,"timestamp":7385107142522,"id":1539,"parentId":1538,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%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":1776992053330,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3490,"timestamp":7385107165745,"id":1542,"parentId":1541,"tags":{},"startTime":1776992053354,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3616,"timestamp":7385107165626,"id":1541,"parentId":1540,"tags":{},"startTime":1776992053354,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":4259,"timestamp":7385107165407,"id":1540,"parentId":1539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"rsc"},"startTime":1776992053353,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":33140,"timestamp":7385107137831,"id":1538,"parentId":1536,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%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":1776992053326,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":615,"timestamp":7385107181628,"id":1552,"parentId":1535,"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)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992053370,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3485,"timestamp":7385107184561,"id":1555,"parentId":1554,"tags":{},"startTime":1776992053372,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3581,"timestamp":7385107184470,"id":1554,"parentId":1553,"tags":{},"startTime":1776992053372,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":5723,"timestamp":7385107184220,"id":1553,"parentId":1552,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"ssr"},"startTime":1776992053372,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":892,"timestamp":7385107194781,"id":1557,"parentId":1556,"tags":{},"startTime":1776992053383,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385107195692,"id":1558,"parentId":1556,"tags":{},"startTime":1776992053384,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1306,"timestamp":7385107194662,"id":1556,"parentId":1553,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1776992053383,"traceId":"27fab7e1c891f919"},{"name":"make","duration":60225,"timestamp":7385107136589,"id":1536,"parentId":1535,"tags":{},"startTime":1776992053325,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1493,"timestamp":7385107199049,"id":1560,"parentId":1559,"tags":{},"startTime":1776992053387,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7385107200564,"id":1562,"parentId":1559,"tags":{},"startTime":1776992053389,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":1398,"timestamp":7385107200590,"id":1563,"parentId":1559,"tags":{},"startTime":1776992053389,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":12,"timestamp":7385107202004,"id":1564,"parentId":1559,"tags":{},"startTime":1776992053390,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385107202032,"id":1565,"parentId":1559,"tags":{},"startTime":1776992053390,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":2029,"timestamp":7385107200557,"id":1561,"parentId":1559,"tags":{},"startTime":1776992053388,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":357,"timestamp":7385107203573,"id":1566,"parentId":1559,"tags":{},"startTime":1776992053392,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":1805,"timestamp":7385107203936,"id":1567,"parentId":1559,"tags":{},"startTime":1776992053392,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":767,"timestamp":7385107206820,"id":1568,"parentId":1559,"tags":{},"startTime":1776992053395,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":80,"timestamp":7385107207587,"id":1569,"parentId":1559,"tags":{},"startTime":1776992053396,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":33,"timestamp":7385107207661,"id":1570,"parentId":1559,"tags":{},"startTime":1776992053396,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":4847,"timestamp":7385107207697,"id":1571,"parentId":1559,"tags":{},"startTime":1776992053396,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":15464,"timestamp":7385107198342,"id":1559,"parentId":1535,"tags":{},"startTime":1776992053386,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":79697,"timestamp":7385107134999,"id":1535,"parentId":1533,"tags":{"name":"server"},"startTime":1776992053323,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":13100,"timestamp":7385107214714,"id":1572,"parentId":1533,"tags":{},"startTime":1776992053403,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":95787,"timestamp":7385107132385,"id":1533,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992053320,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":2084,"timestamp":7385107233542,"id":1578,"parentId":1574,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":6864,"timestamp":7385107233494,"id":1575,"parentId":1574,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":16366,"timestamp":7385107233548,"id":1580,"parentId":1574,"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":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17476,"timestamp":7385107233528,"id":1576,"parentId":1574,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17472,"timestamp":7385107233537,"id":1577,"parentId":1574,"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":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":8793,"timestamp":7385107242252,"id":1584,"parentId":1583,"tags":{},"startTime":1776992053430,"traceId":"27fab7e1c891f919"},{"name":"postcss-process","duration":58389,"timestamp":7385107251095,"id":1586,"parentId":1585,"tags":{},"startTime":1776992053439,"traceId":"27fab7e1c891f919"},{"name":"postcss-loader","duration":59014,"timestamp":7385107251067,"id":1585,"parentId":1583,"tags":{},"startTime":1776992053439,"traceId":"27fab7e1c891f919"},{"name":"css-loader","duration":18551,"timestamp":7385107310110,"id":1587,"parentId":1583,"tags":{"astUsed":"true"},"startTime":1776992053498,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":87753,"timestamp":7385107242169,"id":1583,"parentId":1582,"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":1776992053430,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":99155,"timestamp":7385107236285,"id":1582,"parentId":1573,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776992053424,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":28,"timestamp":7385107336001,"id":1588,"parentId":1582,"tags":{},"startTime":1776992053524,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":103427,"timestamp":7385107233545,"id":1579,"parentId":1574,"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":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":910,"timestamp":7385107355356,"id":1589,"parentId":1581,"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)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992053543,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4380,"timestamp":7385107358953,"id":1592,"parentId":1591,"tags":{},"startTime":1776992053547,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4495,"timestamp":7385107358847,"id":1591,"parentId":1590,"tags":{},"startTime":1776992053547,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":8011,"timestamp":7385107358504,"id":1590,"parentId":1589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"app-pages-browser"},"startTime":1776992053546,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3,"timestamp":7385107368956,"id":1594,"parentId":1593,"tags":{},"startTime":1776992053557,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385107368965,"id":1595,"parentId":1593,"tags":{},"startTime":1776992053557,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":413,"timestamp":7385107368848,"id":1593,"parentId":1590,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1776992053557,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":138060,"timestamp":7385107233549,"id":1581,"parentId":1574,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"make","duration":141522,"timestamp":7385107230109,"id":1574,"parentId":1573,"tags":{},"startTime":1776992053418,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1535,"timestamp":7385107373379,"id":1597,"parentId":1596,"tags":{},"startTime":1776992053561,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":4,"timestamp":7385107374938,"id":1599,"parentId":1596,"tags":{},"startTime":1776992053563,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":41,"timestamp":7385107374952,"id":1600,"parentId":1596,"tags":{},"startTime":1776992053563,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":7,"timestamp":7385107375010,"id":1601,"parentId":1596,"tags":{},"startTime":1776992053563,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":6,"timestamp":7385107375118,"id":1602,"parentId":1596,"tags":{},"startTime":1776992053563,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":1077,"timestamp":7385107374931,"id":1598,"parentId":1596,"tags":{},"startTime":1776992053563,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":668,"timestamp":7385107376649,"id":1603,"parentId":1596,"tags":{},"startTime":1776992053565,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":1299,"timestamp":7385107377332,"id":1604,"parentId":1596,"tags":{},"startTime":1776992053565,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":2035,"timestamp":7385107379371,"id":1605,"parentId":1596,"tags":{},"startTime":1776992053567,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":81,"timestamp":7385107381406,"id":1606,"parentId":1596,"tags":{},"startTime":1776992053569,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":39,"timestamp":7385107381479,"id":1607,"parentId":1596,"tags":{},"startTime":1776992053569,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":4676,"timestamp":7385107381521,"id":1608,"parentId":1596,"tags":{},"startTime":1776992053569,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":60,"timestamp":7385107387563,"id":1610,"parentId":1573,"tags":{},"startTime":1776992053575,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":161,"timestamp":7385107387465,"id":1609,"parentId":1573,"tags":{},"startTime":1776992053575,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":16082,"timestamp":7385107372768,"id":1596,"parentId":1573,"tags":{},"startTime":1776992053561,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":159191,"timestamp":7385107229722,"id":1573,"parentId":1551,"tags":{"name":"client"},"startTime":1776992053418,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":4860,"timestamp":7385107388950,"id":1611,"parentId":1551,"tags":{},"startTime":1776992053577,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":263186,"timestamp":7385107132413,"id":1534,"tags":{"trigger":"/login","isTurbopack":false},"startTime":1776992053320,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":224261,"timestamp":7385107172473,"id":1551,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992053360,"traceId":"27fab7e1c891f919"}] -[{"name":"client-success","duration":4,"timestamp":7385107401507,"id":1612,"parentId":3,"tags":{},"startTime":1776992053589,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":1,"timestamp":7385107401681,"id":1613,"parentId":3,"tags":{},"startTime":1776992053590,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":252000,"timestamp":7385107172873,"id":1615,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/","isPageHidden":false},"startTime":1776992053616,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":256000,"timestamp":7385107172756,"id":1616,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/","isPageHidden":false},"startTime":1776992053624,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":333309,"timestamp":7385107129819,"id":1532,"tags":{"url":"/login?_rsc=gdhdt","isTurbopack":false},"startTime":1776992053318,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385107463174,"id":1617,"parentId":1532,"tags":{"url":"/login?_rsc=gdhdt","memory.rss":"379355136","memory.heapUsed":"200592368","memory.heapTotal":"250134528"},"startTime":1776992053651,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":70462,"timestamp":7385107402439,"id":1614,"tags":{"url":"/?_rsc=qt7ii","isTurbopack":false},"startTime":1776992053590,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385107472927,"id":1619,"parentId":1614,"tags":{"url":"/?_rsc=qt7ii","memory.rss":"379863040","memory.heapUsed":"202523360","memory.heapTotal":"250380288"},"startTime":1776992053661,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":20303,"timestamp":7385107464621,"id":1618,"tags":{"url":"/login?_rsc=1f2yp","isTurbopack":false},"startTime":1776992053653,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":186,"timestamp":7385107485653,"id":1620,"parentId":1618,"tags":{"url":"/login?_rsc=1f2yp","memory.rss":"379879424","memory.heapUsed":"203614640","memory.heapTotal":"250380288"},"startTime":1776992053674,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":24805,"timestamp":7385279779633,"id":1628,"parentId":1625,"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":1776992225967,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":31739,"timestamp":7385279779626,"id":1627,"parentId":1625,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%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":1776992225967,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":43375,"timestamp":7385279796115,"id":1629,"parentId":1626,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776992225984,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":139600,"timestamp":7385279853330,"id":1635,"parentId":1634,"tags":{},"startTime":1776992226041,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":139820,"timestamp":7385279853127,"id":1634,"parentId":1633,"tags":{},"startTime":1776992226041,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":141400,"timestamp":7385279852466,"id":1633,"parentId":1629,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"rsc"},"startTime":1776992226040,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":148070,"timestamp":7385279845930,"id":1632,"parentId":1631,"tags":{},"startTime":1776992226034,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":148213,"timestamp":7385279845791,"id":1631,"parentId":1630,"tags":{},"startTime":1776992226033,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":150448,"timestamp":7385279845511,"id":1630,"parentId":1629,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/layout.tsx","layer":"rsc"},"startTime":1776992226033,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1311,"timestamp":7385280003084,"id":1640,"parentId":1639,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1373,"timestamp":7385280003029,"id":1639,"parentId":1636,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":2040,"timestamp":7385280002771,"id":1636,"parentId":1630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1776992226190,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2037,"timestamp":7385280003149,"id":1644,"parentId":1643,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2068,"timestamp":7385280003121,"id":1643,"parentId":1638,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":2434,"timestamp":7385280002977,"id":1638,"parentId":1630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2437,"timestamp":7385280003118,"id":1642,"parentId":1641,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2469,"timestamp":7385280003088,"id":1641,"parentId":1637,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":2931,"timestamp":7385280002912,"id":1637,"parentId":1630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":226867,"timestamp":7385279779373,"id":1626,"parentId":1625,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776992225967,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":772,"timestamp":7385280022412,"id":1658,"parentId":1624,"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(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992226210,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":1392,"timestamp":7385280023201,"id":1659,"parentId":1624,"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%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776992226211,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2375,"timestamp":7385280032143,"id":1668,"parentId":1667,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2416,"timestamp":7385280032109,"id":1667,"parentId":1664,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":5631,"timestamp":7385280031958,"id":1664,"parentId":1659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4989,"timestamp":7385280032673,"id":1671,"parentId":1670,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5104,"timestamp":7385280032559,"id":1670,"parentId":1669,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":6274,"timestamp":7385280032331,"id":1669,"parentId":1659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7713,"timestamp":7385280032105,"id":1666,"parentId":1665,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7767,"timestamp":7385280032054,"id":1665,"parentId":1663,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":13043,"timestamp":7385280031866,"id":1663,"parentId":1659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15498,"timestamp":7385280029727,"id":1662,"parentId":1661,"tags":{},"startTime":1776992226217,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15585,"timestamp":7385280029642,"id":1661,"parentId":1660,"tags":{},"startTime":1776992226217,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":32144,"timestamp":7385280029400,"id":1660,"parentId":1658,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"ssr"},"startTime":1776992226217,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10061,"timestamp":7385280079703,"id":1675,"parentId":1674,"tags":{},"startTime":1776992226267,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10317,"timestamp":7385280079454,"id":1674,"parentId":1672,"tags":{},"startTime":1776992226267,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":11963,"timestamp":7385280079238,"id":1672,"parentId":1669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1776992226267,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11271,"timestamp":7385280079982,"id":1677,"parentId":1676,"tags":{},"startTime":1776992226268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11501,"timestamp":7385280079754,"id":1676,"parentId":1673,"tags":{},"startTime":1776992226267,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":12890,"timestamp":7385280079374,"id":1673,"parentId":1669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1776992226267,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6124,"timestamp":7385280089131,"id":1681,"parentId":1680,"tags":{},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6182,"timestamp":7385280089076,"id":1680,"parentId":1678,"tags":{},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":7787,"timestamp":7385280088878,"id":1678,"parentId":1660,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7671,"timestamp":7385280089170,"id":1683,"parentId":1682,"tags":{},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7708,"timestamp":7385280089135,"id":1682,"parentId":1679,"tags":{},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":9617,"timestamp":7385280089013,"id":1679,"parentId":1660,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3506,"timestamp":7385280099397,"id":1686,"parentId":1685,"tags":{},"startTime":1776992226287,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3569,"timestamp":7385280099347,"id":1685,"parentId":1684,"tags":{},"startTime":1776992226287,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":4562,"timestamp":7385280099246,"id":1684,"parentId":1660,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1776992226287,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1294,"timestamp":7385280106393,"id":1689,"parentId":1688,"tags":{},"startTime":1776992226294,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1348,"timestamp":7385280106342,"id":1688,"parentId":1687,"tags":{},"startTime":1776992226294,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":1928,"timestamp":7385280106210,"id":1687,"parentId":1678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1776992226294,"traceId":"27fab7e1c891f919"},{"name":"make","duration":333130,"timestamp":7385279775364,"id":1625,"parentId":1624,"tags":{},"startTime":1776992225963,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1615,"timestamp":7385280112335,"id":1691,"parentId":1690,"tags":{},"startTime":1776992226300,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":4,"timestamp":7385280113995,"id":1693,"parentId":1690,"tags":{},"startTime":1776992226302,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":1951,"timestamp":7385280114017,"id":1694,"parentId":1690,"tags":{},"startTime":1776992226302,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":6,"timestamp":7385280115984,"id":1695,"parentId":1690,"tags":{},"startTime":1776992226304,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385280116000,"id":1696,"parentId":1690,"tags":{},"startTime":1776992226304,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":2936,"timestamp":7385280113986,"id":1692,"parentId":1690,"tags":{},"startTime":1776992226302,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":1086,"timestamp":7385280117908,"id":1697,"parentId":1690,"tags":{},"startTime":1776992226306,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":6327,"timestamp":7385280119009,"id":1698,"parentId":1690,"tags":{},"startTime":1776992226307,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":1887,"timestamp":7385280126672,"id":1699,"parentId":1690,"tags":{},"startTime":1776992226314,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":88,"timestamp":7385280128558,"id":1700,"parentId":1690,"tags":{},"startTime":1776992226316,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":50,"timestamp":7385280128638,"id":1701,"parentId":1690,"tags":{},"startTime":1776992226316,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":13674,"timestamp":7385280128692,"id":1702,"parentId":1690,"tags":{},"startTime":1776992226316,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":42447,"timestamp":7385280111281,"id":1690,"parentId":1624,"tags":{},"startTime":1776992226299,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":382949,"timestamp":7385279774175,"id":1624,"parentId":1622,"tags":{"name":"server"},"startTime":1776992225962,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":13213,"timestamp":7385280157164,"id":1703,"parentId":1622,"tags":{},"startTime":1776992226345,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":424198,"timestamp":7385279747109,"id":1622,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992225935,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":5669,"timestamp":7385280190011,"id":1709,"parentId":1705,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":19026,"timestamp":7385280189938,"id":1706,"parentId":1705,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":21123,"timestamp":7385280190022,"id":1712,"parentId":1705,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":22398,"timestamp":7385280190014,"id":1710,"parentId":1705,"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":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26187,"timestamp":7385280190019,"id":1711,"parentId":1705,"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":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26329,"timestamp":7385280189991,"id":1707,"parentId":1705,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26319,"timestamp":7385280190008,"id":1708,"parentId":1705,"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":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":7543,"timestamp":7385280237654,"id":1715,"parentId":1713,"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(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992226425,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":2188,"timestamp":7385280245236,"id":1716,"parentId":1714,"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%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992226433,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":20209,"timestamp":7385280250512,"id":1722,"parentId":1721,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20307,"timestamp":7385280250428,"id":1721,"parentId":1717,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":28380,"timestamp":7385280250121,"id":1717,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31887,"timestamp":7385280250755,"id":1726,"parentId":1725,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31970,"timestamp":7385280250676,"id":1725,"parentId":1719,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":33622,"timestamp":7385280250311,"id":1719,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":33347,"timestamp":7385280250669,"id":1724,"parentId":1723,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33470,"timestamp":7385280250550,"id":1723,"parentId":1718,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":37223,"timestamp":7385280250251,"id":1718,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37859,"timestamp":7385280251774,"id":1728,"parentId":1727,"tags":{},"startTime":1776992226439,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38827,"timestamp":7385280250809,"id":1727,"parentId":1720,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":49053,"timestamp":7385280250364,"id":1720,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"app-pages-browser"},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1815,"timestamp":7385280304144,"id":1734,"parentId":1733,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1860,"timestamp":7385280304114,"id":1733,"parentId":1730,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-tsx","duration":3451,"timestamp":7385280303993,"id":1730,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3927,"timestamp":7385280304111,"id":1732,"parentId":1731,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3981,"timestamp":7385280304059,"id":1731,"parentId":1729,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":5029,"timestamp":7385280303873,"id":1729,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4281,"timestamp":7385280304691,"id":1740,"parentId":1739,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4312,"timestamp":7385280304662,"id":1739,"parentId":1736,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":7820,"timestamp":7385280304564,"id":1736,"parentId":1720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7832,"timestamp":7385280304659,"id":1738,"parentId":1737,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7867,"timestamp":7385280304626,"id":1737,"parentId":1735,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":9544,"timestamp":7385280304507,"id":1735,"parentId":1720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9243,"timestamp":7385280304858,"id":1743,"parentId":1742,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9273,"timestamp":7385280304829,"id":1742,"parentId":1741,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":10205,"timestamp":7385280304780,"id":1741,"parentId":1720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2431,"timestamp":7385280318434,"id":1746,"parentId":1745,"tags":{},"startTime":1776992226506,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2507,"timestamp":7385280318363,"id":1745,"parentId":1744,"tags":{},"startTime":1776992226506,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":3783,"timestamp":7385280318111,"id":1744,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1776992226506,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":132547,"timestamp":7385280190027,"id":1714,"parentId":1705,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":132574,"timestamp":7385280190024,"id":1713,"parentId":1705,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"make","duration":149040,"timestamp":7385280173590,"id":1705,"parentId":1704,"tags":{},"startTime":1776992226361,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":838,"timestamp":7385280324436,"id":1748,"parentId":1747,"tags":{},"startTime":1776992226512,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":5,"timestamp":7385280325285,"id":1750,"parentId":1747,"tags":{},"startTime":1776992226513,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":28,"timestamp":7385280325299,"id":1751,"parentId":1747,"tags":{},"startTime":1776992226513,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":5,"timestamp":7385280325339,"id":1752,"parentId":1747,"tags":{},"startTime":1776992226513,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385280325352,"id":1753,"parentId":1747,"tags":{},"startTime":1776992226513,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":828,"timestamp":7385280325281,"id":1749,"parentId":1747,"tags":{},"startTime":1776992226513,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":473,"timestamp":7385280327069,"id":1754,"parentId":1747,"tags":{},"startTime":1776992226515,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":5825,"timestamp":7385280327551,"id":1755,"parentId":1747,"tags":{},"startTime":1776992226515,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":3501,"timestamp":7385280337289,"id":1756,"parentId":1747,"tags":{},"startTime":1776992226525,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":99,"timestamp":7385280340789,"id":1757,"parentId":1747,"tags":{},"startTime":1776992226528,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":48,"timestamp":7385280340879,"id":1758,"parentId":1747,"tags":{},"startTime":1776992226529,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":10901,"timestamp":7385280340930,"id":1759,"parentId":1747,"tags":{},"startTime":1776992226529,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":80,"timestamp":7385280352791,"id":1761,"parentId":1704,"tags":{},"startTime":1776992226540,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":143,"timestamp":7385280352734,"id":1760,"parentId":1704,"tags":{},"startTime":1776992226540,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":30444,"timestamp":7385280323780,"id":1747,"parentId":1704,"tags":{},"startTime":1776992226511,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":181162,"timestamp":7385280173085,"id":1704,"parentId":1657,"tags":{"name":"client"},"startTime":1776992226361,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":5555,"timestamp":7385280354266,"id":1762,"parentId":1657,"tags":{},"startTime":1776992226542,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":613019,"timestamp":7385279747241,"id":1623,"tags":{"trigger":"/dashboard","isTurbopack":false},"startTime":1776992225935,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":353042,"timestamp":7385280007600,"id":1657,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992226195,"traceId":"27fab7e1c891f919"}] -[{"name":"client-success","duration":5,"timestamp":7385280367880,"id":1763,"parentId":3,"tags":{},"startTime":1776992226556,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":0,"timestamp":7385280367955,"id":1764,"parentId":3,"tags":{},"startTime":1776992226556,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":677312,"timestamp":7385279723297,"id":1621,"tags":{"url":"/dashboard?_rsc=12xdt","isTurbopack":false},"startTime":1776992225911,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":2,"timestamp":7385280400855,"id":1765,"parentId":1621,"tags":{"url":"/dashboard?_rsc=12xdt","memory.rss":"283131904","memory.heapUsed":"199706464","memory.heapTotal":"237813760"},"startTime":1776992226588,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":388000,"timestamp":7385280008987,"id":1766,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1776992226589,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":392000,"timestamp":7385280015813,"id":1768,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1776992226597,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":16788,"timestamp":7385280403700,"id":1767,"tags":{"url":"/dashboard?_rsc=1i74o","isTurbopack":false},"startTime":1776992226591,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":23,"timestamp":7385280420535,"id":1769,"parentId":1767,"tags":{"url":"/dashboard?_rsc=1i74o","memory.rss":"283312128","memory.heapUsed":"201312464","memory.heapTotal":"237813760"},"startTime":1776992226608,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":9102,"timestamp":7385298332329,"id":1777,"parentId":1774,"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":1776992244520,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":9114,"timestamp":7385298332331,"id":1778,"parentId":1774,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%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":1776992244520,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12004,"timestamp":7385298332325,"id":1776,"parentId":1774,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776992244520,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":16550,"timestamp":7385298340685,"id":1779,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%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":1776992244528,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5949,"timestamp":7385298362742,"id":1782,"parentId":1781,"tags":{},"startTime":1776992244550,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6086,"timestamp":7385298362617,"id":1781,"parentId":1780,"tags":{},"startTime":1776992244550,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":7029,"timestamp":7385298362409,"id":1780,"parentId":1779,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"rsc"},"startTime":1776992244550,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":38954,"timestamp":7385298332272,"id":1775,"parentId":1774,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%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":1776992244520,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":2588,"timestamp":7385298388180,"id":1800,"parentId":1773,"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(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992244576,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10001,"timestamp":7385298394695,"id":1803,"parentId":1802,"tags":{},"startTime":1776992244582,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10103,"timestamp":7385298394607,"id":1802,"parentId":1801,"tags":{},"startTime":1776992244582,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":33750,"timestamp":7385298394265,"id":1801,"parentId":1800,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"ssr"},"startTime":1776992244582,"traceId":"27fab7e1c891f919"},{"name":"make","duration":109730,"timestamp":7385298328641,"id":1774,"parentId":1773,"tags":{},"startTime":1776992244516,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1794,"timestamp":7385298440495,"id":1805,"parentId":1804,"tags":{},"startTime":1776992244628,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":5,"timestamp":7385298442318,"id":1807,"parentId":1804,"tags":{},"startTime":1776992244630,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":1784,"timestamp":7385298442340,"id":1808,"parentId":1804,"tags":{},"startTime":1776992244630,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":8,"timestamp":7385298444144,"id":1809,"parentId":1804,"tags":{},"startTime":1776992244632,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385298444163,"id":1810,"parentId":1804,"tags":{},"startTime":1776992244632,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":2428,"timestamp":7385298442307,"id":1806,"parentId":1804,"tags":{},"startTime":1776992244630,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":1249,"timestamp":7385298446117,"id":1811,"parentId":1804,"tags":{},"startTime":1776992244634,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":2491,"timestamp":7385298447575,"id":1812,"parentId":1804,"tags":{},"startTime":1776992244635,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":1510,"timestamp":7385298451380,"id":1813,"parentId":1804,"tags":{},"startTime":1776992244639,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":94,"timestamp":7385298452889,"id":1814,"parentId":1804,"tags":{},"startTime":1776992244640,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":74,"timestamp":7385298452972,"id":1815,"parentId":1804,"tags":{},"startTime":1776992244641,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":5506,"timestamp":7385298453049,"id":1816,"parentId":1804,"tags":{},"startTime":1776992244641,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":20117,"timestamp":7385298439829,"id":1804,"parentId":1773,"tags":{},"startTime":1776992244627,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":133388,"timestamp":7385298328343,"id":1773,"parentId":1771,"tags":{"name":"server"},"startTime":1776992244516,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":5192,"timestamp":7385298461757,"id":1817,"parentId":1771,"tags":{},"startTime":1776992244649,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":141321,"timestamp":7385298326067,"id":1771,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992244514,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":5928,"timestamp":7385298475910,"id":1823,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":1182,"timestamp":7385298482475,"id":1830,"parentId":1829,"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(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992244670,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10463,"timestamp":7385298475862,"id":1820,"parentId":1819,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992244663,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10994,"timestamp":7385298475917,"id":1826,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":11059,"timestamp":7385298475923,"id":1828,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":16741,"timestamp":7385298475921,"id":1827,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":16765,"timestamp":7385298475912,"id":1824,"parentId":1819,"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":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":18617,"timestamp":7385298475915,"id":1825,"parentId":1819,"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":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":18665,"timestamp":7385298475902,"id":1821,"parentId":1819,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":18662,"timestamp":7385298475908,"id":1822,"parentId":1819,"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":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14180,"timestamp":7385298493880,"id":1833,"parentId":1832,"tags":{},"startTime":1776992244681,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14284,"timestamp":7385298493787,"id":1832,"parentId":1831,"tags":{},"startTime":1776992244681,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":47355,"timestamp":7385298493504,"id":1831,"parentId":1830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"app-pages-browser"},"startTime":1776992244681,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":101408,"timestamp":7385298475925,"id":1829,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"make","duration":108488,"timestamp":7385298468906,"id":1819,"parentId":1818,"tags":{},"startTime":1776992244657,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":3994,"timestamp":7385298579079,"id":1835,"parentId":1834,"tags":{},"startTime":1776992244767,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":2,"timestamp":7385298583097,"id":1837,"parentId":1834,"tags":{},"startTime":1776992244771,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":33,"timestamp":7385298583110,"id":1838,"parentId":1834,"tags":{},"startTime":1776992244771,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":6,"timestamp":7385298583160,"id":1839,"parentId":1834,"tags":{},"startTime":1776992244771,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385298583180,"id":1840,"parentId":1834,"tags":{},"startTime":1776992244771,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":1293,"timestamp":7385298583090,"id":1836,"parentId":1834,"tags":{},"startTime":1776992244771,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":658,"timestamp":7385298585483,"id":1841,"parentId":1834,"tags":{},"startTime":1776992244773,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":2546,"timestamp":7385298586160,"id":1842,"parentId":1834,"tags":{},"startTime":1776992244774,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":8358,"timestamp":7385298591481,"id":1843,"parentId":1834,"tags":{},"startTime":1776992244779,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":140,"timestamp":7385298599837,"id":1844,"parentId":1834,"tags":{},"startTime":1776992244787,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":49,"timestamp":7385298599968,"id":1845,"parentId":1834,"tags":{},"startTime":1776992244788,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":7569,"timestamp":7385298600019,"id":1846,"parentId":1834,"tags":{},"startTime":1776992244788,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":106,"timestamp":7385298608704,"id":1848,"parentId":1818,"tags":{},"startTime":1776992244796,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":375,"timestamp":7385298608447,"id":1847,"parentId":1818,"tags":{},"startTime":1776992244796,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":31930,"timestamp":7385298578363,"id":1834,"parentId":1818,"tags":{},"startTime":1776992244766,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":141692,"timestamp":7385298468655,"id":1818,"parentId":1799,"tags":{"name":"client"},"startTime":1776992244656,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":6948,"timestamp":7385298610371,"id":1849,"parentId":1799,"tags":{},"startTime":1776992244798,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":292102,"timestamp":7385298326096,"id":1772,"tags":{"trigger":"/settings","isTurbopack":false},"startTime":1776992244514,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":243388,"timestamp":7385298375200,"id":1799,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992244563,"traceId":"27fab7e1c891f919"}] -[{"name":"client-success","duration":3,"timestamp":7385298621354,"id":1850,"parentId":3,"tags":{},"startTime":1776992244809,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":0,"timestamp":7385298621391,"id":1851,"parentId":3,"tags":{},"startTime":1776992244809,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":254000,"timestamp":7385298375735,"id":1852,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":false},"startTime":1776992244832,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":254000,"timestamp":7385298376778,"id":1853,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1776992244832,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":322923,"timestamp":7385298322902,"id":1770,"tags":{"url":"/settings?_rsc=k4bbk","isTurbopack":false},"startTime":1776992244511,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385298645871,"id":1854,"parentId":1770,"tags":{"url":"/settings?_rsc=k4bbk","memory.rss":"261046272","memory.heapUsed":"195852040","memory.heapTotal":"232833024"},"startTime":1776992244833,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":12570,"timestamp":7385298650617,"id":1855,"tags":{"url":"/settings?_rsc=ll4b7","isTurbopack":false},"startTime":1776992244838,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":2,"timestamp":7385298663483,"id":1856,"parentId":1855,"tags":{"url":"/settings?_rsc=ll4b7","memory.rss":"261128192","memory.heapUsed":"197529824","memory.heapTotal":"232833024"},"startTime":1776992244851,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":68948,"timestamp":7385334577284,"id":1858,"tags":{"url":"/login?_rsc=1n1s6","isTurbopack":false},"startTime":1776992280765,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385334646330,"id":1859,"parentId":1858,"tags":{"url":"/login?_rsc=1n1s6","memory.rss":"115376128","memory.heapUsed":"208473536","memory.heapTotal":"234848256"},"startTime":1776992280834,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":90304,"timestamp":7385334573202,"id":1857,"tags":{"url":"/login","isTurbopack":false},"startTime":1776992280761,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":2,"timestamp":7385334663567,"id":1860,"parentId":1857,"tags":{"url":"/login","memory.rss":"118292480","memory.heapUsed":"209053648","memory.heapTotal":"235110400"},"startTime":1776992280851,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":14,"timestamp":7385335607269,"id":1861,"parentId":3,"tags":{},"startTime":1776992281795,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":1,"timestamp":7385335607456,"id":1862,"parentId":3,"tags":{},"startTime":1776992281795,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":23098,"timestamp":7385343925830,"id":1863,"tags":{"url":"/dashboard?_rsc=12xdt","isTurbopack":false},"startTime":1776992290113,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385343949042,"id":1864,"parentId":1863,"tags":{"url":"/dashboard?_rsc=12xdt","memory.rss":"128794624","memory.heapUsed":"201986296","memory.heapTotal":"206569472"},"startTime":1776992290137,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":11088,"timestamp":7385343955044,"id":1865,"tags":{"url":"/dashboard?_rsc=1i74o","isTurbopack":false},"startTime":1776992290143,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385343966156,"id":1866,"parentId":1865,"tags":{"url":"/dashboard?_rsc=1i74o","memory.rss":"134283264","memory.heapUsed":"200681064","memory.heapTotal":"211140608"},"startTime":1776992290154,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":12638,"timestamp":7385383748298,"id":1867,"tags":{"url":"/settings?_rsc=k4bbk","isTurbopack":false},"startTime":1776992329936,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385383760958,"id":1868,"parentId":1867,"tags":{"url":"/settings?_rsc=k4bbk","memory.rss":"197787648","memory.heapUsed":"188716304","memory.heapTotal":"194887680"},"startTime":1776992329948,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":7662,"timestamp":7385383768823,"id":1869,"tags":{"url":"/settings?_rsc=ll4b7","isTurbopack":false},"startTime":1776992329956,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385383776506,"id":1870,"parentId":1869,"tags":{"url":"/settings?_rsc=ll4b7","memory.rss":"198918144","memory.heapUsed":"188745168","memory.heapTotal":"193839104"},"startTime":1776992329964,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":15562,"timestamp":7385387770576,"id":1872,"tags":{"url":"/login?_rsc=1n1s6","isTurbopack":false},"startTime":1776992333958,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385387786189,"id":1873,"parentId":1872,"tags":{"url":"/login?_rsc=1n1s6","memory.rss":"200966144","memory.heapUsed":"188700312","memory.heapTotal":"196427776"},"startTime":1776992333974,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":36599,"timestamp":7385387766452,"id":1871,"tags":{"url":"/login","isTurbopack":false},"startTime":1776992333954,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385387803116,"id":1874,"parentId":1871,"tags":{"url":"/login","memory.rss":"194691072","memory.heapUsed":"189478456","memory.heapTotal":"196427776"},"startTime":1776992333991,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":19,"timestamp":7385388637194,"id":1875,"parentId":3,"tags":{},"startTime":1776992334825,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":4,"timestamp":7385388640707,"id":1876,"parentId":3,"tags":{},"startTime":1776992334828,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":10709,"timestamp":7385415844612,"id":1877,"tags":{"url":"/dashboard?_rsc=12xdt","isTurbopack":false},"startTime":1776992362032,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385415855422,"id":1878,"parentId":1877,"tags":{"url":"/dashboard?_rsc=12xdt","memory.rss":"101859328","memory.heapUsed":"189613040","memory.heapTotal":"193544192"},"startTime":1776992362043,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":7515,"timestamp":7385415863143,"id":1879,"tags":{"url":"/dashboard?_rsc=1i74o","isTurbopack":false},"startTime":1776992362051,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385415870687,"id":1880,"parentId":1879,"tags":{"url":"/dashboard?_rsc=1i74o","memory.rss":"105480192","memory.heapUsed":"189449464","memory.heapTotal":"193544192"},"startTime":1776992362058,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":42270,"timestamp":7385429515608,"id":1882,"tags":{"url":"/login?_rsc=1n1s6","isTurbopack":false},"startTime":1776992375703,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":7,"timestamp":7385429559384,"id":1883,"parentId":1882,"tags":{"url":"/login?_rsc=1n1s6","memory.rss":"104235008","memory.heapUsed":"190814792","memory.heapTotal":"194068480"},"startTime":1776992375747,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":85006,"timestamp":7385429514312,"id":1881,"tags":{"url":"/login","isTurbopack":false},"startTime":1776992375702,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":4,"timestamp":7385429599480,"id":1884,"parentId":1881,"tags":{"url":"/login","memory.rss":"108412928","memory.heapUsed":"190180848","memory.heapTotal":"194068480"},"startTime":1776992375787,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":43,"timestamp":7385430078770,"id":1885,"parentId":3,"tags":{},"startTime":1776992376266,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":1,"timestamp":7385430079348,"id":1886,"parentId":3,"tags":{},"startTime":1776992376267,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":8561,"timestamp":7385435719735,"id":1887,"tags":{"url":"/dashboard?_rsc=12xdt","isTurbopack":false},"startTime":1776992381907,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385435728334,"id":1888,"parentId":1887,"tags":{"url":"/dashboard?_rsc=12xdt","memory.rss":"118276096","memory.heapUsed":"190974256","memory.heapTotal":"194068480"},"startTime":1776992381916,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":7460,"timestamp":7385435731879,"id":1889,"tags":{"url":"/dashboard?_rsc=1i74o","isTurbopack":false},"startTime":1776992381919,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385435739703,"id":1890,"parentId":1889,"tags":{"url":"/dashboard?_rsc=1i74o","memory.rss":"119177216","memory.heapUsed":"190813136","memory.heapTotal":"194330624"},"startTime":1776992381927,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":35093,"timestamp":7385440723845,"id":1891,"tags":{"url":"/","isTurbopack":false},"startTime":1776992386911,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385440759080,"id":1892,"parentId":1891,"tags":{"url":"/","memory.rss":"111509504","memory.heapUsed":"192778712","memory.heapTotal":"199557120"},"startTime":1776992386946,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":13,"timestamp":7385441334195,"id":1893,"parentId":3,"tags":{},"startTime":1776992387522,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":8,"timestamp":7385441337293,"id":1894,"parentId":3,"tags":{},"startTime":1776992387525,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":7794,"timestamp":7385446644289,"id":1895,"tags":{"url":"/login?_rsc=gdhdt","isTurbopack":false},"startTime":1776992392832,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385446652112,"id":1896,"parentId":1895,"tags":{"url":"/login?_rsc=gdhdt","memory.rss":"119635968","memory.heapUsed":"192437360","memory.heapTotal":"196411392"},"startTime":1776992392839,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":8378,"timestamp":7385446659394,"id":1897,"tags":{"url":"/login?_rsc=1bgkv","isTurbopack":false},"startTime":1776992392847,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385446667802,"id":1898,"parentId":1897,"tags":{"url":"/login?_rsc=1bgkv","memory.rss":"120242176","memory.heapUsed":"192845560","memory.heapTotal":"197459968"},"startTime":1776992392855,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":113032,"timestamp":7385463296893,"id":1899,"tags":{"url":"/login","isTurbopack":false},"startTime":1776992409484,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385463410013,"id":1900,"parentId":1899,"tags":{"url":"/login","memory.rss":"103579648","memory.heapUsed":"192858240","memory.heapTotal":"196935680"},"startTime":1776992409597,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":10,"timestamp":7385463995688,"id":1901,"parentId":3,"tags":{},"startTime":1776992410183,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":7,"timestamp":7385464007141,"id":1902,"parentId":3,"tags":{},"startTime":1776992410194,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":33589,"timestamp":7385474380136,"id":1903,"tags":{"url":"/dashboard?_rsc=12xdt","isTurbopack":false},"startTime":1776992420567,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":6,"timestamp":7385474413995,"id":1904,"parentId":1903,"tags":{"url":"/dashboard?_rsc=12xdt","memory.rss":"90521600","memory.heapUsed":"193580080","memory.heapTotal":"197197824"},"startTime":1776992420601,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":46847,"timestamp":7385474420171,"id":1905,"tags":{"url":"/dashboard?_rsc=1i74o","isTurbopack":false},"startTime":1776992420607,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":2,"timestamp":7385474467051,"id":1906,"parentId":1905,"tags":{"url":"/dashboard?_rsc=1i74o","memory.rss":"95453184","memory.heapUsed":"193330152","memory.heapTotal":"197197824"},"startTime":1776992420654,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":41962,"timestamp":7385505120448,"id":1921,"parentId":1912,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":44939,"timestamp":7385505120464,"id":1927,"parentId":1912,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":47680,"timestamp":7385505120430,"id":1915,"parentId":1912,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":49112,"timestamp":7385505120455,"id":1924,"parentId":1912,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":49697,"timestamp":7385505120463,"id":1926,"parentId":1912,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":52117,"timestamp":7385505120461,"id":1925,"parentId":1912,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":57384,"timestamp":7385505120450,"id":1922,"parentId":1912,"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":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":57409,"timestamp":7385505120452,"id":1923,"parentId":1912,"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":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":57597,"timestamp":7385505120446,"id":1920,"parentId":1912,"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":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":58182,"timestamp":7385505120434,"id":1916,"parentId":1912,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1074,"timestamp":7385505189873,"id":1930,"parentId":1929,"tags":{},"startTime":1776992451377,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4173,"timestamp":7385505189278,"id":1929,"parentId":1913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","layer":null},"startTime":1776992451377,"traceId":"27fab7e1c891f919"},{"name":"next-client-pages-loader","duration":1351,"timestamp":7385505199173,"id":1933,"parentId":1932,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1776992451386,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":5144,"timestamp":7385505197817,"id":1932,"parentId":1917,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!","layer":null},"startTime":1776992451385,"traceId":"27fab7e1c891f919"},{"name":"next-client-pages-loader","duration":22,"timestamp":7385505203073,"id":1935,"parentId":1934,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1776992451390,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":1205,"timestamp":7385505203000,"id":1934,"parentId":1918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!","layer":null},"startTime":1776992451390,"traceId":"27fab7e1c891f919"},{"name":"next-client-pages-loader","duration":20,"timestamp":7385505204264,"id":1937,"parentId":1936,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js"},"startTime":1776992451392,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":716,"timestamp":7385505204220,"id":1936,"parentId":1928,"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%2Fpages%2F_error.js&page=%2F_error!","layer":null},"startTime":1776992451391,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1705,"timestamp":7385505213819,"id":1941,"parentId":1940,"tags":{},"startTime":1776992451401,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7045,"timestamp":7385505213766,"id":1940,"parentId":1929,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","layer":null},"startTime":1776992451401,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":68788,"timestamp":7385505232687,"id":1952,"parentId":1951,"tags":{},"startTime":1776992451420,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":68838,"timestamp":7385505232653,"id":1951,"parentId":1950,"tags":{},"startTime":1776992451420,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":71649,"timestamp":7385505232550,"id":1950,"parentId":1934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1776992451420,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":89238,"timestamp":7385505215061,"id":1944,"parentId":1943,"tags":{},"startTime":1776992451402,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":89279,"timestamp":7385505215026,"id":1943,"parentId":1942,"tags":{},"startTime":1776992451402,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":94930,"timestamp":7385505214932,"id":1942,"parentId":1919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js","layer":null},"startTime":1776992451402,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":104762,"timestamp":7385505205164,"id":1939,"parentId":1938,"tags":{},"startTime":1776992451392,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":104972,"timestamp":7385505204956,"id":1938,"parentId":1931,"tags":{},"startTime":1776992451392,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":113735,"timestamp":7385505197677,"id":1931,"parentId":1914,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/next-dev.js","layer":null},"startTime":1776992451385,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":81649,"timestamp":7385505229815,"id":1947,"parentId":1946,"tags":{},"startTime":1776992451417,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":81938,"timestamp":7385505229528,"id":1946,"parentId":1945,"tags":{},"startTime":1776992451417,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":83757,"timestamp":7385505229154,"id":1945,"parentId":1936,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1776992451416,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":83427,"timestamp":7385505232304,"id":1949,"parentId":1948,"tags":{},"startTime":1776992451420,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":83840,"timestamp":7385505232267,"id":1948,"parentId":1929,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":null},"startTime":1776992451420,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2471,"timestamp":7385505318949,"id":1955,"parentId":1954,"tags":{},"startTime":1776992451506,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2520,"timestamp":7385505318909,"id":1954,"parentId":1953,"tags":{},"startTime":1776992451506,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3905,"timestamp":7385505318718,"id":1953,"parentId":1931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/webpack.js","layer":null},"startTime":1776992451506,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4150,"timestamp":7385505319450,"id":1967,"parentId":1966,"tags":{},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4162,"timestamp":7385505319442,"id":1966,"parentId":1958,"tags":{},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6976,"timestamp":7385505319325,"id":1958,"parentId":1931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/setup-hydration-warning.js","layer":null},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6986,"timestamp":7385505319438,"id":1965,"parentId":1964,"tags":{},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6998,"timestamp":7385505319429,"id":1964,"parentId":1957,"tags":{},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9075,"timestamp":7385505319296,"id":1957,"parentId":1942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/with-router.js","layer":null},"startTime":1776992451507,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-transform","duration":8298,"timestamp":7385505320793,"id":1972,"parentId":1971,"tags":{},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8345,"timestamp":7385505320749,"id":1971,"parentId":1970,"tags":{},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9715,"timestamp":7385505320536,"id":1970,"parentId":1931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/hot-middleware-client.js","layer":null},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10856,"timestamp":7385505319460,"id":1969,"parentId":1968,"tags":{},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10870,"timestamp":7385505319452,"id":1968,"parentId":1959,"tags":{},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12765,"timestamp":7385505319348,"id":1959,"parentId":1931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/page-bootstrap.js","layer":null},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10994,"timestamp":7385505321181,"id":1980,"parentId":1979,"tags":{},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11033,"timestamp":7385505321144,"id":1979,"parentId":1975,"tags":{},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13967,"timestamp":7385505320946,"id":1975,"parentId":1950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13747,"timestamp":7385505321202,"id":1982,"parentId":1981,"tags":{},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13770,"timestamp":7385505321185,"id":1981,"parentId":1976,"tags":{},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14759,"timestamp":7385505321018,"id":1976,"parentId":1942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":null},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16969,"timestamp":7385505321218,"id":1984,"parentId":1983,"tags":{},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16987,"timestamp":7385505321205,"id":1983,"parentId":1977,"tags":{},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19816,"timestamp":7385505321054,"id":1977,"parentId":1945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":23311,"timestamp":7385505319384,"id":1961,"parentId":1960,"tags":{},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23762,"timestamp":7385505319368,"id":1960,"parentId":1942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":23794,"timestamp":7385505319426,"id":1963,"parentId":1962,"tags":{},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":23820,"timestamp":7385505319403,"id":1962,"parentId":1956,"tags":{},"startTime":1776992451507,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30515,"timestamp":7385505319246,"id":1956,"parentId":1931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/index.js","layer":null},"startTime":1776992451506,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32786,"timestamp":7385505320915,"id":1974,"parentId":1973,"tags":{},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34819,"timestamp":7385505320872,"id":1973,"parentId":1948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js","layer":null},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":34786,"timestamp":7385505321230,"id":1986,"parentId":1985,"tags":{},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34799,"timestamp":7385505321221,"id":1985,"parentId":1978,"tags":{},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":51167,"timestamp":7385505321081,"id":1978,"parentId":1942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/router.js","layer":null},"startTime":1776992451508,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":253543,"timestamp":7385505120132,"id":1913,"parentId":1912,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992451307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5382,"timestamp":7385505380820,"id":1997,"parentId":1996,"tags":{},"startTime":1776992451568,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5400,"timestamp":7385505380811,"id":1996,"parentId":1991,"tags":{},"startTime":1776992451568,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6577,"timestamp":7385505380594,"id":1991,"parentId":1959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/fouc.js","layer":null},"startTime":1776992451568,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6404,"timestamp":7385505380793,"id":1993,"parentId":1992,"tags":{},"startTime":1776992451568,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6452,"timestamp":7385505380746,"id":1992,"parentId":1989,"tags":{},"startTime":1776992451568,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7369,"timestamp":7385505380468,"id":1989,"parentId":1959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/on-demand-entries-client.js","layer":null},"startTime":1776992451568,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7172,"timestamp":7385505380808,"id":1995,"parentId":1994,"tags":{},"startTime":1776992451568,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7185,"timestamp":7385505380797,"id":1994,"parentId":1990,"tags":{},"startTime":1776992451568,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8455,"timestamp":7385505380560,"id":1990,"parentId":1959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/dev-build-watcher.js","layer":null},"startTime":1776992451568,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5702,"timestamp":7385505385053,"id":2022,"parentId":2021,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5714,"timestamp":7385505385045,"id":2021,"parentId":2000,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7356,"timestamp":7385505384406,"id":2000,"parentId":1977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6749,"timestamp":7385505385029,"id":2018,"parentId":2017,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6783,"timestamp":7385505384996,"id":2017,"parentId":1998,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8190,"timestamp":7385505384279,"id":1998,"parentId":1977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7441,"timestamp":7385505385043,"id":2020,"parentId":2019,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7452,"timestamp":7385505385033,"id":2019,"parentId":1999,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9164,"timestamp":7385505384376,"id":1999,"parentId":1977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8500,"timestamp":7385505385063,"id":2024,"parentId":2023,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8510,"timestamp":7385505385056,"id":2023,"parentId":2001,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9643,"timestamp":7385505384430,"id":2001,"parentId":1977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9013,"timestamp":7385505385083,"id":2028,"parentId":2027,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9021,"timestamp":7385505385075,"id":2027,"parentId":2003,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10270,"timestamp":7385505384471,"id":2003,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/performance-relayer.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9656,"timestamp":7385505385104,"id":2030,"parentId":2029,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9676,"timestamp":7385505385086,"id":2029,"parentId":2004,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11606,"timestamp":7385505384491,"id":2004,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-announcer.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10978,"timestamp":7385505385140,"id":2034,"parentId":2033,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10992,"timestamp":7385505385128,"id":2033,"parentId":2006,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12376,"timestamp":7385505384528,"id":2006,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11912,"timestamp":7385505385124,"id":2032,"parentId":2031,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11942,"timestamp":7385505385115,"id":2031,"parentId":2005,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13734,"timestamp":7385505384509,"id":2005,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13340,"timestamp":7385505385072,"id":2026,"parentId":2025,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13351,"timestamp":7385505385065,"id":2025,"parentId":2002,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23861,"timestamp":7385505384451,"id":2002,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/head-manager.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":23255,"timestamp":7385505385156,"id":2036,"parentId":2035,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":23282,"timestamp":7385505385143,"id":2035,"parentId":2007,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26598,"timestamp":7385505384548,"id":2007,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":29724,"timestamp":7385505385175,"id":2040,"parentId":2039,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29742,"timestamp":7385505385169,"id":2039,"parentId":2009,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30935,"timestamp":7385505384702,"id":2009,"parentId":1960,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":30495,"timestamp":7385505385183,"id":2042,"parentId":2041,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30503,"timestamp":7385505385177,"id":2041,"parentId":2010,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31830,"timestamp":7385505384731,"id":2010,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/page-loader.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31392,"timestamp":7385505385200,"id":2046,"parentId":2045,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31400,"timestamp":7385505385194,"id":2045,"parentId":2012,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32155,"timestamp":7385505384774,"id":2012,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/runtime-config.external.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31732,"timestamp":7385505385209,"id":2048,"parentId":2047,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31740,"timestamp":7385505385203,"id":2047,"parentId":2013,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32421,"timestamp":7385505384794,"id":2013,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":32038,"timestamp":7385505385192,"id":2044,"parentId":2043,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32045,"timestamp":7385505385186,"id":2043,"parentId":2011,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33651,"timestamp":7385505384753,"id":2011,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/mitt.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":33276,"timestamp":7385505385166,"id":2038,"parentId":2037,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33285,"timestamp":7385505385159,"id":2037,"parentId":2008,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38610,"timestamp":7385505384620,"id":2008,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/script.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":38071,"timestamp":7385505385217,"id":2050,"parentId":2049,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38079,"timestamp":7385505385211,"id":2049,"parentId":2014,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39075,"timestamp":7385505384814,"id":2014,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":49649,"timestamp":7385505377841,"id":1988,"parentId":1987,"tags":{},"startTime":1776992451565,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":50427,"timestamp":7385505377795,"id":1987,"parentId":1953,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":null},"startTime":1776992451565,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":43738,"timestamp":7385505385225,"id":2052,"parentId":2051,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43746,"timestamp":7385505385219,"id":2051,"parentId":2015,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":48705,"timestamp":7385505384833,"id":2015,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":43837,"timestamp":7385505389884,"id":2086,"parentId":2085,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43852,"timestamp":7385505389877,"id":2085,"parentId":2057,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":46435,"timestamp":7385505389292,"id":2057,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":45913,"timestamp":7385505389874,"id":2084,"parentId":2083,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":45925,"timestamp":7385505389865,"id":2083,"parentId":2056,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":47373,"timestamp":7385505389268,"id":2056,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":46810,"timestamp":7385505389861,"id":2082,"parentId":2081,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46834,"timestamp":7385505389839,"id":2081,"parentId":2055,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":49426,"timestamp":7385505389214,"id":2055,"parentId":1959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":null},"startTime":1776992451576,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":48804,"timestamp":7385505389894,"id":2088,"parentId":2087,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":48945,"timestamp":7385505389887,"id":2087,"parentId":2058,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":50476,"timestamp":7385505389312,"id":2058,"parentId":1977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":54600,"timestamp":7385505385233,"id":2054,"parentId":2053,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":54608,"timestamp":7385505385227,"id":2053,"parentId":2016,"tags":{},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":56134,"timestamp":7385505384855,"id":2016,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/adapters.js","layer":null},"startTime":1776992451572,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":51077,"timestamp":7385505389936,"id":2096,"parentId":2095,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":51087,"timestamp":7385505389928,"id":2095,"parentId":2062,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":52566,"timestamp":7385505389402,"id":2062,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-locale.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":52069,"timestamp":7385505389926,"id":2094,"parentId":2093,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52079,"timestamp":7385505389918,"id":2093,"parentId":2061,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":54305,"timestamp":7385505389374,"id":2061,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":53782,"timestamp":7385505389916,"id":2092,"parentId":2091,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":53795,"timestamp":7385505389905,"id":2091,"parentId":2060,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":55124,"timestamp":7385505389351,"id":2060,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/detect-domain-locale.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":54482,"timestamp":7385505390017,"id":2102,"parentId":2101,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":54496,"timestamp":7385505390005,"id":2101,"parentId":2067,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":55498,"timestamp":7385505389492,"id":2067,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":55060,"timestamp":7385505389944,"id":2098,"parentId":2097,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":55069,"timestamp":7385505389938,"id":2097,"parentId":2063,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":56674,"timestamp":7385505389422,"id":2063,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":56241,"timestamp":7385505389903,"id":2090,"parentId":2089,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":56250,"timestamp":7385505389897,"id":2089,"parentId":2059,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":58916,"timestamp":7385505389332,"id":2059,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-loader.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":58288,"timestamp":7385505390001,"id":2100,"parentId":2099,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":58313,"timestamp":7385505389978,"id":2099,"parentId":2064,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":59717,"timestamp":7385505389440,"id":2064,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":59140,"timestamp":7385505390042,"id":2106,"parentId":2105,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":59150,"timestamp":7385505390034,"id":2105,"parentId":2069,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":61925,"timestamp":7385505389530,"id":2069,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":61469,"timestamp":7385505390031,"id":2104,"parentId":2103,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":61482,"timestamp":7385505390020,"id":2103,"parentId":2068,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":62888,"timestamp":7385505389511,"id":2068,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":66811,"timestamp":7385505390053,"id":2108,"parentId":2107,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":66823,"timestamp":7385505390045,"id":2107,"parentId":2070,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":68066,"timestamp":7385505389547,"id":2070,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":67580,"timestamp":7385505390071,"id":2112,"parentId":2111,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":67588,"timestamp":7385505390065,"id":2111,"parentId":2072,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":68711,"timestamp":7385505389581,"id":2072,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":68225,"timestamp":7385505390090,"id":2116,"parentId":2115,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":68234,"timestamp":7385505390083,"id":2115,"parentId":2074,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":69294,"timestamp":7385505389620,"id":2074,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":68894,"timestamp":7385505390061,"id":2110,"parentId":2109,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":68902,"timestamp":7385505390055,"id":2109,"parentId":2071,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":70598,"timestamp":7385505389565,"id":2071,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":70100,"timestamp":7385505390081,"id":2114,"parentId":2113,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":70108,"timestamp":7385505390074,"id":2113,"parentId":2073,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":70959,"timestamp":7385505389599,"id":2073,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/compare-states.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":70469,"timestamp":7385505390104,"id":2118,"parentId":2117,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":70482,"timestamp":7385505390093,"id":2117,"parentId":2075,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":71398,"timestamp":7385505389647,"id":2075,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":70941,"timestamp":7385505390114,"id":2120,"parentId":2119,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":70951,"timestamp":7385505390106,"id":2119,"parentId":2076,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":71738,"timestamp":7385505389665,"id":2076,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":71294,"timestamp":7385505390123,"id":2122,"parentId":2121,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":71302,"timestamp":7385505390117,"id":2121,"parentId":2077,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":72385,"timestamp":7385505389683,"id":2077,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":71947,"timestamp":7385505390152,"id":2128,"parentId":2127,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":71956,"timestamp":7385505390145,"id":2127,"parentId":2080,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":73107,"timestamp":7385505389754,"id":2080,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":72732,"timestamp":7385505390143,"id":2126,"parentId":2125,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":72740,"timestamp":7385505390137,"id":2125,"parentId":2079,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":73454,"timestamp":7385505389719,"id":2079,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":73055,"timestamp":7385505390133,"id":2124,"parentId":2123,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":73063,"timestamp":7385505390127,"id":2123,"parentId":2078,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":73983,"timestamp":7385505389702,"id":2078,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":49537,"timestamp":7385505414276,"id":2137,"parentId":2136,"tags":{},"startTime":1776992451602,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":49589,"timestamp":7385505414226,"id":2136,"parentId":2132,"tags":{},"startTime":1776992451601,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":50606,"timestamp":7385505413568,"id":2132,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/report-to-socket.js","layer":null},"startTime":1776992451601,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":49976,"timestamp":7385505414211,"id":2135,"parentId":2134,"tags":{},"startTime":1776992451601,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50093,"timestamp":7385505414095,"id":2134,"parentId":2131,"tags":{},"startTime":1776992451601,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":51801,"timestamp":7385505412966,"id":2131,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/tracer.js","layer":null},"startTime":1776992451600,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":50492,"timestamp":7385505414292,"id":2139,"parentId":2138,"tags":{},"startTime":1776992451602,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50503,"timestamp":7385505414282,"id":2138,"parentId":2133,"tags":{},"startTime":1776992451602,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":53288,"timestamp":7385505413782,"id":2133,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/bloom-filter.js","layer":null},"startTime":1776992451601,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2985,"timestamp":7385505469531,"id":2153,"parentId":2152,"tags":{},"startTime":1776992451657,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2996,"timestamp":7385505469524,"id":2152,"parentId":2145,"tags":{},"startTime":1776992451657,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4368,"timestamp":7385505469332,"id":2145,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/client.js","layer":null},"startTime":1776992451657,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5599,"timestamp":7385505469512,"id":2149,"parentId":2148,"tags":{},"startTime":1776992451657,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5611,"timestamp":7385505469502,"id":2148,"parentId":2143,"tags":{},"startTime":1776992451657,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6856,"timestamp":7385505469285,"id":2143,"parentId":1959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/websocket.js","layer":null},"startTime":1776992451657,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7043,"timestamp":7385505469498,"id":2147,"parentId":2146,"tags":{},"startTime":1776992451657,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7078,"timestamp":7385505469466,"id":2146,"parentId":2142,"tags":{},"startTime":1776992451657,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7944,"timestamp":7385505469224,"id":2142,"parentId":1959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":null},"startTime":1776992451656,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":87884,"timestamp":7385505389478,"id":2066,"parentId":2065,"tags":{},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":88017,"timestamp":7385505389458,"id":2065,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-api-route.js","layer":null},"startTime":1776992451577,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8607,"timestamp":7385505469522,"id":2151,"parentId":2150,"tags":{},"startTime":1776992451657,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8616,"timestamp":7385505469514,"id":2150,"parentId":2144,"tags":{},"startTime":1776992451657,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10980,"timestamp":7385505469310,"id":2144,"parentId":1959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/hot-reloader-client.js","layer":null},"startTime":1776992451657,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7949,"timestamp":7385505474439,"id":2164,"parentId":2163,"tags":{},"startTime":1776992451662,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7963,"timestamp":7385505474431,"id":2163,"parentId":2156,"tags":{},"startTime":1776992451662,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8602,"timestamp":7385505474256,"id":2156,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":null},"startTime":1776992451662,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8446,"timestamp":7385505474428,"id":2162,"parentId":2161,"tags":{},"startTime":1776992451662,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8460,"timestamp":7385505474416,"id":2161,"parentId":2155,"tags":{},"startTime":1776992451662,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10223,"timestamp":7385505474210,"id":2155,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1776992451661,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10042,"timestamp":7385505474412,"id":2160,"parentId":2159,"tags":{},"startTime":1776992451662,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10078,"timestamp":7385505474378,"id":2159,"parentId":2154,"tags":{},"startTime":1776992451662,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10793,"timestamp":7385505474072,"id":2154,"parentId":1959,"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":null},"startTime":1776992451661,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":72623,"timestamp":7385505412520,"id":2130,"parentId":2129,"tags":{},"startTime":1776992451600,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":73310,"timestamp":7385505412294,"id":2129,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":null},"startTime":1776992451600,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20061,"timestamp":7385505469206,"id":2141,"parentId":2140,"tags":{},"startTime":1776992451656,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20292,"timestamp":7385505469163,"id":2140,"parentId":1959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":null},"startTime":1776992451656,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-transform","duration":4268,"timestamp":7385505488287,"id":2181,"parentId":2180,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4277,"timestamp":7385505488280,"id":2180,"parentId":2168,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5091,"timestamp":7385505488038,"id":2168,"parentId":2059,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/trusted-types.js","layer":null},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4879,"timestamp":7385505488267,"id":2177,"parentId":2176,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4892,"timestamp":7385505488255,"id":2176,"parentId":2166,"tags":{},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5617,"timestamp":7385505487974,"id":2166,"parentId":2008,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":null},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5331,"timestamp":7385505488278,"id":2179,"parentId":2178,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5340,"timestamp":7385505488270,"id":2178,"parentId":2167,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6235,"timestamp":7385505488006,"id":2167,"parentId":2061,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":null},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6001,"timestamp":7385505488251,"id":2175,"parentId":2174,"tags":{},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6036,"timestamp":7385505488218,"id":2174,"parentId":2165,"tags":{},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6663,"timestamp":7385505487875,"id":2165,"parentId":2006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":null},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7146,"timestamp":7385505488304,"id":2185,"parentId":2184,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7154,"timestamp":7385505488298,"id":2184,"parentId":2170,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7684,"timestamp":7385505488079,"id":2170,"parentId":2010,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","layer":null},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7452,"timestamp":7385505488321,"id":2189,"parentId":2188,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7459,"timestamp":7385505488315,"id":2188,"parentId":2172,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8535,"timestamp":7385505488119,"id":2172,"parentId":2063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":null},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8336,"timestamp":7385505488329,"id":2191,"parentId":2190,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8344,"timestamp":7385505488323,"id":2190,"parentId":2173,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8769,"timestamp":7385505488136,"id":2173,"parentId":2016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/as-path-to-search-params.js","layer":null},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9086,"timestamp":7385505488312,"id":2187,"parentId":2186,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9094,"timestamp":7385505488306,"id":2186,"parentId":2171,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9639,"timestamp":7385505488098,"id":2171,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config.js","layer":null},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":23720,"timestamp":7385505474300,"id":2158,"parentId":2157,"tags":{},"startTime":1776992451662,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23841,"timestamp":7385505474283,"id":2157,"parentId":1950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/jsx-runtime.js","layer":null},"startTime":1776992451662,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9944,"timestamp":7385505488296,"id":2183,"parentId":2182,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9951,"timestamp":7385505488289,"id":2182,"parentId":2169,"tags":{},"startTime":1776992451676,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17520,"timestamp":7385505488059,"id":2169,"parentId":2010,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1776992451675,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16486,"timestamp":7385505492361,"id":2203,"parentId":2202,"tags":{},"startTime":1776992451680,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16634,"timestamp":7385505492219,"id":2202,"parentId":2196,"tags":{},"startTime":1776992451679,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21753,"timestamp":7385505491094,"id":2196,"parentId":2071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":null},"startTime":1776992451678,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":20522,"timestamp":7385505492400,"id":2207,"parentId":2206,"tags":{},"startTime":1776992451680,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20532,"timestamp":7385505492391,"id":2206,"parentId":2198,"tags":{},"startTime":1776992451680,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22319,"timestamp":7385505491299,"id":2198,"parentId":2069,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-match.js","layer":null},"startTime":1776992451679,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21235,"timestamp":7385505492411,"id":2209,"parentId":2208,"tags":{},"startTime":1776992451680,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21244,"timestamp":7385505492403,"id":2208,"parentId":2199,"tags":{},"startTime":1776992451680,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22673,"timestamp":7385505491401,"id":2199,"parentId":2075,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":null},"startTime":1776992451679,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21657,"timestamp":7385505492433,"id":2213,"parentId":2212,"tags":{},"startTime":1776992451680,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21666,"timestamp":7385505492426,"id":2212,"parentId":2201,"tags":{},"startTime":1776992451680,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23287,"timestamp":7385505491527,"id":2201,"parentId":2076,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":null},"startTime":1776992451679,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19754,"timestamp":7385505495095,"id":2223,"parentId":2222,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19778,"timestamp":7385505495074,"id":2222,"parentId":2214,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20529,"timestamp":7385505494824,"id":2214,"parentId":2007,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":null},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":20267,"timestamp":7385505495109,"id":2225,"parentId":2224,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20278,"timestamp":7385505495099,"id":2224,"parentId":2215,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20975,"timestamp":7385505494891,"id":2215,"parentId":2145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/bus.js","layer":null},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":23458,"timestamp":7385505492422,"id":2211,"parentId":2210,"tags":{},"startTime":1776992451680,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":23466,"timestamp":7385505492415,"id":2210,"parentId":2200,"tags":{},"startTime":1776992451680,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24722,"timestamp":7385505491460,"id":2200,"parentId":2076,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":null},"startTime":1776992451679,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":23825,"timestamp":7385505492388,"id":2205,"parentId":2204,"tags":{},"startTime":1776992451680,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":23843,"timestamp":7385505492371,"id":2204,"parentId":2197,"tags":{},"startTime":1776992451680,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27769,"timestamp":7385505491224,"id":2197,"parentId":2069,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","layer":null},"startTime":1776992451678,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":23915,"timestamp":7385505495118,"id":2227,"parentId":2226,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":23924,"timestamp":7385505495111,"id":2226,"parentId":2216,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24822,"timestamp":7385505494918,"id":2216,"parentId":2145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/ReactDevOverlay.js","layer":null},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24658,"timestamp":7385505495144,"id":2233,"parentId":2232,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24667,"timestamp":7385505495138,"id":2232,"parentId":2219,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26308,"timestamp":7385505494982,"id":2219,"parentId":2145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":null},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":26184,"timestamp":7385505495136,"id":2231,"parentId":2230,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26192,"timestamp":7385505495130,"id":2230,"parentId":2218,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26854,"timestamp":7385505494964,"id":2218,"parentId":2145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":null},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":28903,"timestamp":7385505495152,"id":2235,"parentId":2234,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28911,"timestamp":7385505495146,"id":2234,"parentId":2220,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29630,"timestamp":7385505495003,"id":2220,"parentId":2145,"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":null},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":29820,"timestamp":7385505495127,"id":2229,"parentId":2228,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29829,"timestamp":7385505495121,"id":2228,"parentId":2217,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33563,"timestamp":7385505494943,"id":2217,"parentId":2145,"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":null},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":33401,"timestamp":7385505495161,"id":2237,"parentId":2236,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33408,"timestamp":7385505495155,"id":2236,"parentId":2221,"tags":{},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34538,"timestamp":7385505495023,"id":2221,"parentId":2145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/nodeStackFrames.js","layer":null},"startTime":1776992451682,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44990,"timestamp":7385505491079,"id":2195,"parentId":2194,"tags":{},"startTime":1776992451678,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":46490,"timestamp":7385505491043,"id":2194,"parentId":2071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":null},"startTime":1776992451678,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":46558,"timestamp":7385505491009,"id":2193,"parentId":2192,"tags":{},"startTime":1776992451678,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":47001,"timestamp":7385505490910,"id":2192,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/client.js","layer":null},"startTime":1776992451678,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7177,"timestamp":7385505531087,"id":2243,"parentId":2242,"tags":{},"startTime":1776992451718,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7212,"timestamp":7385505531054,"id":2242,"parentId":2240,"tags":{},"startTime":1776992451718,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8226,"timestamp":7385505530780,"id":2240,"parentId":2143,"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":null},"startTime":1776992451718,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7982,"timestamp":7385505531104,"id":2245,"parentId":2244,"tags":{},"startTime":1776992451718,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7994,"timestamp":7385505531094,"id":2244,"parentId":2241,"tags":{},"startTime":1776992451718,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10296,"timestamp":7385505530860,"id":2241,"parentId":2144,"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":null},"startTime":1776992451718,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6500,"timestamp":7385505535834,"id":2252,"parentId":2251,"tags":{},"startTime":1776992451723,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6539,"timestamp":7385505535798,"id":2251,"parentId":2248,"tags":{},"startTime":1776992451723,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8587,"timestamp":7385505535632,"id":2248,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/portal/index.js","layer":null},"startTime":1776992451723,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6075,"timestamp":7385505541745,"id":2255,"parentId":2254,"tags":{},"startTime":1776992451729,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6117,"timestamp":7385505541711,"id":2254,"parentId":2253,"tags":{},"startTime":1776992451729,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6715,"timestamp":7385505541590,"id":2253,"parentId":2155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1776992451729,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17615,"timestamp":7385505530755,"id":2239,"parentId":2238,"tags":{},"startTime":1776992451718,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17888,"timestamp":7385505530705,"id":2238,"parentId":2144,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":null},"startTime":1776992451718,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2802,"timestamp":7385505546740,"id":2258,"parentId":2257,"tags":{},"startTime":1776992451734,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2840,"timestamp":7385505546704,"id":2257,"parentId":2256,"tags":{},"startTime":1776992451734,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3434,"timestamp":7385505546512,"id":2256,"parentId":2169,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1776992451734,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15589,"timestamp":7385505535554,"id":2247,"parentId":2246,"tags":{},"startTime":1776992451723,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16170,"timestamp":7385505535341,"id":2246,"parentId":1950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/index.js","layer":null},"startTime":1776992451723,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2552,"timestamp":7385505549360,"id":2273,"parentId":2272,"tags":{},"startTime":1776992451737,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2560,"timestamp":7385505549353,"id":2272,"parentId":2264,"tags":{},"startTime":1776992451737,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3265,"timestamp":7385505549233,"id":2264,"parentId":2197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-url.js","layer":null},"startTime":1776992451736,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3177,"timestamp":7385505549341,"id":2269,"parentId":2268,"tags":{},"startTime":1776992451737,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3188,"timestamp":7385505549332,"id":2268,"parentId":2262,"tags":{},"startTime":1776992451737,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3690,"timestamp":7385505549188,"id":2262,"parentId":2218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":null},"startTime":1776992451736,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4234,"timestamp":7385505549351,"id":2271,"parentId":2270,"tags":{},"startTime":1776992451737,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":4344,"timestamp":7385505549344,"id":2270,"parentId":2263,"tags":{},"startTime":1776992451737,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5080,"timestamp":7385505549212,"id":2263,"parentId":2216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/ErrorBoundary.js","layer":null},"startTime":1776992451736,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":18591,"timestamp":7385505535746,"id":2250,"parentId":2249,"tags":{},"startTime":1776992451723,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19283,"timestamp":7385505535731,"id":2249,"parentId":2057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1776992451723,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5770,"timestamp":7385505549328,"id":2267,"parentId":2266,"tags":{},"startTime":1776992451737,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5797,"timestamp":7385505549303,"id":2266,"parentId":2261,"tags":{},"startTime":1776992451737,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6491,"timestamp":7385505549137,"id":2261,"parentId":2197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":null},"startTime":1776992451736,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3829,"timestamp":7385505551810,"id":2278,"parentId":2277,"tags":{},"startTime":1776992451739,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3860,"timestamp":7385505551781,"id":2277,"parentId":2276,"tags":{},"startTime":1776992451739,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4360,"timestamp":7385505551652,"id":2276,"parentId":2016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1776992451739,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8556,"timestamp":7385505549368,"id":2275,"parentId":2274,"tags":{},"startTime":1776992451737,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8564,"timestamp":7385505549362,"id":2274,"parentId":2265,"tags":{},"startTime":1776992451737,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10597,"timestamp":7385505549253,"id":2265,"parentId":2218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":null},"startTime":1776992451736,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6447,"timestamp":7385505553429,"id":2295,"parentId":2294,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6456,"timestamp":7385505553422,"id":2294,"parentId":2284,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7046,"timestamp":7385505553291,"id":2284,"parentId":2216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":null},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6970,"timestamp":7385505553395,"id":2289,"parentId":2288,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6995,"timestamp":7385505553373,"id":2288,"parentId":2281,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7588,"timestamp":7385505553208,"id":2281,"parentId":2216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":null},"startTime":1776992451740,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7403,"timestamp":7385505553409,"id":2291,"parentId":2290,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7414,"timestamp":7385505553398,"id":2290,"parentId":2282,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8137,"timestamp":7385505553248,"id":2282,"parentId":2216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":null},"startTime":1776992451740,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7959,"timestamp":7385505553438,"id":2297,"parentId":2296,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7994,"timestamp":7385505553431,"id":2296,"parentId":2285,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8488,"timestamp":7385505553310,"id":2285,"parentId":2216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":null},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8561,"timestamp":7385505553448,"id":2299,"parentId":2298,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8569,"timestamp":7385505553441,"id":2298,"parentId":2286,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9074,"timestamp":7385505553331,"id":2286,"parentId":2216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":null},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9261,"timestamp":7385505553458,"id":2301,"parentId":2300,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9270,"timestamp":7385505553450,"id":2300,"parentId":2287,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9708,"timestamp":7385505553348,"id":2287,"parentId":2240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":null},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9677,"timestamp":7385505553418,"id":2293,"parentId":2292,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9685,"timestamp":7385505553411,"id":2292,"parentId":2283,"tags":{},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10966,"timestamp":7385505553271,"id":2283,"parentId":2216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":null},"startTime":1776992451741,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":18643,"timestamp":7385505549123,"id":2260,"parentId":2259,"tags":{},"startTime":1776992451736,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22181,"timestamp":7385505549090,"id":2259,"parentId":2157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react-jsx-runtime.development.js","layer":null},"startTime":1776992451736,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":21142,"timestamp":7385505553193,"id":2280,"parentId":2279,"tags":{},"startTime":1776992451740,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21514,"timestamp":7385505553171,"id":2279,"parentId":2197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/api-utils/get-cookie-parser.js","layer":null},"startTime":1776992451740,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":10084,"timestamp":7385505572836,"id":2303,"parentId":2302,"tags":{},"startTime":1776992451760,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27722,"timestamp":7385505572782,"id":2302,"parentId":2246,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react.development.js","layer":null},"startTime":1776992451760,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":20274,"timestamp":7385505581568,"id":2309,"parentId":2308,"tags":{},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20312,"timestamp":7385505581536,"id":2308,"parentId":2306,"tags":{},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21246,"timestamp":7385505581364,"id":2306,"parentId":2249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":20316,"timestamp":7385505582328,"id":2320,"parentId":2319,"tags":{},"startTime":1776992451770,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20335,"timestamp":7385505582311,"id":2319,"parentId":2314,"tags":{},"startTime":1776992451770,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21100,"timestamp":7385505581934,"id":2314,"parentId":2284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":null},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21478,"timestamp":7385505581581,"id":2311,"parentId":2310,"tags":{},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21488,"timestamp":7385505581572,"id":2310,"parentId":2307,"tags":{},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22775,"timestamp":7385505581427,"id":2307,"parentId":2276,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":23989,"timestamp":7385505581352,"id":2305,"parentId":2304,"tags":{},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24254,"timestamp":7385505581312,"id":2304,"parentId":2192,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/index.js","layer":null},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1897,"timestamp":7385505604727,"id":2327,"parentId":2326,"tags":{},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1952,"timestamp":7385505604689,"id":2326,"parentId":2321,"tags":{},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2713,"timestamp":7385505604444,"id":2321,"parentId":2285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":null},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2809,"timestamp":7385505604752,"id":2331,"parentId":2330,"tags":{},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2818,"timestamp":7385505604745,"id":2330,"parentId":2323,"tags":{},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3701,"timestamp":7385505604578,"id":2323,"parentId":2285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":null},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3608,"timestamp":7385505604742,"id":2329,"parentId":2328,"tags":{},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3619,"timestamp":7385505604732,"id":2328,"parentId":2322,"tags":{},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4519,"timestamp":7385505604549,"id":2322,"parentId":2285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":null},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5245,"timestamp":7385505604761,"id":2333,"parentId":2332,"tags":{},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5254,"timestamp":7385505604755,"id":2332,"parentId":2324,"tags":{},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6642,"timestamp":7385505604601,"id":2324,"parentId":2285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":null},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29460,"timestamp":7385505581925,"id":2313,"parentId":2312,"tags":{},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29640,"timestamp":7385505581911,"id":2312,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-is/index.js","layer":null},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29305,"timestamp":7385505582274,"id":2316,"parentId":2315,"tags":{},"startTime":1776992451770,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29965,"timestamp":7385505581995,"id":2315,"parentId":1950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":null},"startTime":1776992451769,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":491806,"timestamp":7385505120439,"id":1918,"parentId":1912,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8923,"timestamp":7385505604770,"id":2335,"parentId":2334,"tags":{},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8933,"timestamp":7385505604764,"id":2334,"parentId":2325,"tags":{},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9803,"timestamp":7385505604622,"id":2325,"parentId":2283,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":null},"startTime":1776992451792,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32253,"timestamp":7385505582292,"id":2318,"parentId":2317,"tags":{},"startTime":1776992451770,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32807,"timestamp":7385505582283,"id":2317,"parentId":1977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":null},"startTime":1776992451770,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9492,"timestamp":7385505605725,"id":2338,"parentId":2337,"tags":{},"startTime":1776992451793,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9514,"timestamp":7385505605705,"id":2337,"parentId":2336,"tags":{},"startTime":1776992451793,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10742,"timestamp":7385505605631,"id":2336,"parentId":2283,"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":null},"startTime":1776992451793,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":496636,"timestamp":7385505120466,"id":1928,"parentId":1912,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":496670,"timestamp":7385505120436,"id":1917,"parentId":1912,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6329,"timestamp":7385505617483,"id":2340,"parentId":2339,"tags":{},"startTime":1776992451805,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9923,"timestamp":7385505617417,"id":2339,"parentId":2003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/web-vitals/web-vitals.js","layer":null},"startTime":1776992451805,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5474,"timestamp":7385505622390,"id":2346,"parentId":2345,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5486,"timestamp":7385505622381,"id":2345,"parentId":2342,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6028,"timestamp":7385505622280,"id":2342,"parentId":2306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5956,"timestamp":7385505622377,"id":2344,"parentId":2343,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5991,"timestamp":7385505622343,"id":2343,"parentId":2341,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6522,"timestamp":7385505622196,"id":2341,"parentId":2306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1776992451809,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5607,"timestamp":7385505623123,"id":2356,"parentId":2355,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5626,"timestamp":7385505623105,"id":2355,"parentId":2348,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6081,"timestamp":7385505622977,"id":2348,"parentId":2282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":null},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6362,"timestamp":7385505623102,"id":2354,"parentId":2353,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6381,"timestamp":7385505623084,"id":2353,"parentId":2347,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6849,"timestamp":7385505622938,"id":2347,"parentId":2282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":null},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6864,"timestamp":7385505623143,"id":2360,"parentId":2359,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6871,"timestamp":7385505623136,"id":2359,"parentId":2350,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7294,"timestamp":7385505623026,"id":2350,"parentId":2283,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":null},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7205,"timestamp":7385505623133,"id":2358,"parentId":2357,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7214,"timestamp":7385505623125,"id":2357,"parentId":2349,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7994,"timestamp":7385505623000,"id":2349,"parentId":2285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":null},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4954,"timestamp":7385505627775,"id":2368,"parentId":2367,"tags":{},"startTime":1776992451815,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4973,"timestamp":7385505627758,"id":2367,"parentId":2364,"tags":{},"startTime":1776992451815,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5538,"timestamp":7385505627624,"id":2364,"parentId":2336,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":null},"startTime":1776992451815,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-transform","duration":5533,"timestamp":7385505627753,"id":2366,"parentId":2365,"tags":{},"startTime":1776992451815,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5591,"timestamp":7385505627697,"id":2365,"parentId":2361,"tags":{},"startTime":1776992451815,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6600,"timestamp":7385505627442,"id":2361,"parentId":2144,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":null},"startTime":1776992451815,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2475,"timestamp":7385505631770,"id":2377,"parentId":2376,"tags":{},"startTime":1776992451819,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2484,"timestamp":7385505631763,"id":2376,"parentId":2371,"tags":{},"startTime":1776992451819,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3242,"timestamp":7385505631618,"id":2371,"parentId":2285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":null},"startTime":1776992451819,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3728,"timestamp":7385505631748,"id":2373,"parentId":2372,"tags":{},"startTime":1776992451819,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3754,"timestamp":7385505631724,"id":2372,"parentId":2369,"tags":{},"startTime":1776992451819,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4397,"timestamp":7385505631537,"id":2369,"parentId":2282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":null},"startTime":1776992451819,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4186,"timestamp":7385505631761,"id":2375,"parentId":2374,"tags":{},"startTime":1776992451819,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4196,"timestamp":7385505631751,"id":2374,"parentId":2370,"tags":{},"startTime":1776992451819,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4669,"timestamp":7385505631594,"id":2370,"parentId":2282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":null},"startTime":1776992451819,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2651,"timestamp":7385505635349,"id":2382,"parentId":2381,"tags":{},"startTime":1776992451823,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2689,"timestamp":7385505635324,"id":2381,"parentId":2380,"tags":{},"startTime":1776992451823,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3526,"timestamp":7385505635238,"id":2380,"parentId":2283,"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":null},"startTime":1776992451822,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11175,"timestamp":7385505627604,"id":2363,"parentId":2362,"tags":{},"startTime":1776992451815,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11785,"timestamp":7385505627586,"id":2362,"parentId":2312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-is/cjs/react-is.development.js","layer":null},"startTime":1776992451815,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16327,"timestamp":7385505623054,"id":2352,"parentId":2351,"tags":{},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":89697,"timestamp":7385505623045,"id":2351,"parentId":2304,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/cjs/react-dom.development.js","layer":null},"startTime":1776992451810,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":88997,"timestamp":7385505635222,"id":2379,"parentId":2378,"tags":{},"startTime":1776992451822,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":94277,"timestamp":7385505635193,"id":2378,"parentId":2198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":null},"startTime":1776992451822,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11979,"timestamp":7385505718613,"id":2395,"parentId":2394,"tags":{},"startTime":1776992451906,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11999,"timestamp":7385505718597,"id":2394,"parentId":2387,"tags":{},"startTime":1776992451906,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14505,"timestamp":7385505717894,"id":2387,"parentId":2347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":null},"startTime":1776992451905,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14144,"timestamp":7385505718635,"id":2397,"parentId":2396,"tags":{},"startTime":1776992451906,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14165,"timestamp":7385505718617,"id":2396,"parentId":2388,"tags":{},"startTime":1776992451906,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17447,"timestamp":7385505717954,"id":2388,"parentId":2350,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":null},"startTime":1776992451905,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17481,"timestamp":7385505718694,"id":2399,"parentId":2398,"tags":{},"startTime":1776992451906,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17540,"timestamp":7385505718639,"id":2398,"parentId":2389,"tags":{},"startTime":1776992451906,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18857,"timestamp":7385505717984,"id":2389,"parentId":2349,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":null},"startTime":1776992451905,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18289,"timestamp":7385505718589,"id":2393,"parentId":2392,"tags":{},"startTime":1776992451906,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18380,"timestamp":7385505718499,"id":2392,"parentId":2386,"tags":{},"startTime":1776992451906,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20115,"timestamp":7385505717671,"id":2386,"parentId":2348,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":null},"startTime":1776992451905,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":30603,"timestamp":7385505718386,"id":2391,"parentId":2390,"tags":{},"startTime":1776992451906,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30764,"timestamp":7385505718239,"id":2390,"parentId":2385,"tags":{},"startTime":1776992451905,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33219,"timestamp":7385505717510,"id":2385,"parentId":2349,"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":null},"startTime":1776992451905,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":20536,"timestamp":7385505730240,"id":2406,"parentId":2405,"tags":{},"startTime":1776992451917,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20551,"timestamp":7385505730227,"id":2405,"parentId":2402,"tags":{},"startTime":1776992451917,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25126,"timestamp":7385505730046,"id":2402,"parentId":2371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":null},"startTime":1776992451917,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25046,"timestamp":7385505730221,"id":2404,"parentId":2403,"tags":{},"startTime":1776992451917,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25095,"timestamp":7385505730176,"id":2403,"parentId":2401,"tags":{},"startTime":1776992451917,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27133,"timestamp":7385505729689,"id":2401,"parentId":2371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":null},"startTime":1776992451917,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42939,"timestamp":7385505714490,"id":2384,"parentId":2383,"tags":{},"startTime":1776992451902,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":49376,"timestamp":7385505714423,"id":2383,"parentId":2219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":null},"startTime":1776992451902,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":23276,"timestamp":7385505740965,"id":2420,"parentId":2419,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":23300,"timestamp":7385505740955,"id":2419,"parentId":2410,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25319,"timestamp":7385505740114,"id":2410,"parentId":2369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":null},"startTime":1776992451927,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24600,"timestamp":7385505740937,"id":2416,"parentId":2415,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24624,"timestamp":7385505740919,"id":2415,"parentId":2408,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28414,"timestamp":7385505739615,"id":2408,"parentId":2369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":null},"startTime":1776992451927,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":42435,"timestamp":7385505740910,"id":2414,"parentId":2413,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42563,"timestamp":7385505740799,"id":2413,"parentId":2407,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":46522,"timestamp":7385505739400,"id":2407,"parentId":2369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":null},"startTime":1776992451927,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":70602,"timestamp":7385505740993,"id":2424,"parentId":2423,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":70630,"timestamp":7385505740982,"id":2423,"parentId":2412,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":73452,"timestamp":7385505740378,"id":2412,"parentId":2370,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":null},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":72974,"timestamp":7385505740978,"id":2422,"parentId":2421,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":72989,"timestamp":7385505740969,"id":2421,"parentId":2411,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":74613,"timestamp":7385505740224,"id":2411,"parentId":2369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":null},"startTime":1776992451927,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":73934,"timestamp":7385505740951,"id":2418,"parentId":2417,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":73947,"timestamp":7385505740941,"id":2417,"parentId":2409,"tags":{},"startTime":1776992451928,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":75604,"timestamp":7385505739866,"id":2409,"parentId":2369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":null},"startTime":1776992451927,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":53906,"timestamp":7385505769937,"id":2430,"parentId":2429,"tags":{},"startTime":1776992451957,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":53925,"timestamp":7385505769924,"id":2429,"parentId":2426,"tags":{},"startTime":1776992451957,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":55180,"timestamp":7385505769680,"id":2426,"parentId":2380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":null},"startTime":1776992451957,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":55022,"timestamp":7385505769918,"id":2428,"parentId":2427,"tags":{},"startTime":1776992451957,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":55070,"timestamp":7385505769873,"id":2427,"parentId":2425,"tags":{},"startTime":1776992451957,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":56540,"timestamp":7385505769548,"id":2425,"parentId":2370,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":null},"startTime":1776992451957,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2769,"timestamp":7385505835979,"id":2439,"parentId":2438,"tags":{},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2834,"timestamp":7385505835921,"id":2438,"parentId":2433,"tags":{},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3931,"timestamp":7385505835567,"id":2433,"parentId":2389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":null},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3749,"timestamp":7385505836015,"id":2445,"parentId":2444,"tags":{},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3758,"timestamp":7385505836009,"id":2444,"parentId":2436,"tags":{},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4371,"timestamp":7385505835818,"id":2436,"parentId":2386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":null},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":13815,"timestamp":7385505826563,"id":2432,"parentId":2431,"tags":{},"startTime":1776992452014,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14064,"timestamp":7385505826509,"id":2431,"parentId":2284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":null},"startTime":1776992452014,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4598,"timestamp":7385505836006,"id":2443,"parentId":2442,"tags":{},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4607,"timestamp":7385505835998,"id":2442,"parentId":2435,"tags":{},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5164,"timestamp":7385505835789,"id":2435,"parentId":2389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":null},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6027,"timestamp":7385505836024,"id":2447,"parentId":2446,"tags":{},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6035,"timestamp":7385505836018,"id":2446,"parentId":2437,"tags":{},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6811,"timestamp":7385505835846,"id":2437,"parentId":2387,"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":null},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6496,"timestamp":7385505836386,"id":2452,"parentId":2451,"tags":{},"startTime":1776992452024,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6513,"timestamp":7385505836370,"id":2451,"parentId":2448,"tags":{},"startTime":1776992452024,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6805,"timestamp":7385505836305,"id":2448,"parentId":2349,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":null},"startTime":1776992452024,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":7309,"timestamp":7385505836355,"id":2450,"parentId":2449,"tags":{},"startTime":1776992452024,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7891,"timestamp":7385505836342,"id":2449,"parentId":2279,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/cookie/index.js","layer":null},"startTime":1776992452024,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1933,"timestamp":7385505843436,"id":2455,"parentId":2454,"tags":{},"startTime":1776992452031,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1967,"timestamp":7385505843403,"id":2454,"parentId":2453,"tags":{},"startTime":1776992452031,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2631,"timestamp":7385505843255,"id":2453,"parentId":2407,"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":null},"startTime":1776992452030,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2143,"timestamp":7385505846170,"id":2458,"parentId":2457,"tags":{},"startTime":1776992452033,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2174,"timestamp":7385505846144,"id":2457,"parentId":2456,"tags":{},"startTime":1776992452033,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3023,"timestamp":7385505845976,"id":2456,"parentId":2436,"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":null},"startTime":1776992452033,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2906,"timestamp":7385505847912,"id":2461,"parentId":2460,"tags":{},"startTime":1776992452035,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2931,"timestamp":7385505847891,"id":2460,"parentId":2459,"tags":{},"startTime":1776992452035,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3753,"timestamp":7385505847847,"id":2459,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":null},"startTime":1776992452035,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":495,"timestamp":7385505853944,"id":2463,"parentId":2462,"tags":{},"startTime":1776992452041,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":688,"timestamp":7385505853916,"id":2462,"parentId":2351,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/index.js","layer":null},"startTime":1776992452041,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":541,"timestamp":7385505854071,"id":2465,"parentId":2464,"tags":{},"startTime":1776992452041,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1786,"timestamp":7385505854009,"id":2464,"parentId":2386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":null},"startTime":1776992452041,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":430,"timestamp":7385505857191,"id":2467,"parentId":2466,"tags":{},"startTime":1776992452044,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":1583,"timestamp":7385505857162,"id":2466,"parentId":2462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/cjs/scheduler.development.js","layer":null},"startTime":1776992452044,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":738362,"timestamp":7385505120441,"id":1919,"parentId":1912,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24085,"timestamp":7385505835995,"id":2441,"parentId":2440,"tags":{},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24097,"timestamp":7385505835985,"id":2440,"parentId":2434,"tags":{},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29687,"timestamp":7385505835732,"id":2434,"parentId":2387,"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":null},"startTime":1776992452023,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":419,"timestamp":7385505868759,"id":2469,"parentId":2468,"tags":{},"startTime":1776992452056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3962,"timestamp":7385505868715,"id":2468,"parentId":2434,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":null},"startTime":1776992452056,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":7340,"timestamp":7385505868816,"id":2471,"parentId":2470,"tags":{},"startTime":1776992452056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9128,"timestamp":7385505868801,"id":2470,"parentId":2434,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":null},"startTime":1776992452056,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":757602,"timestamp":7385505120412,"id":1914,"parentId":1912,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776992451308,"traceId":"27fab7e1c891f919"},{"name":"make","duration":759551,"timestamp":7385505118486,"id":1912,"parentId":1911,"tags":{},"startTime":1776992451306,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":2414,"timestamp":7385505884856,"id":2473,"parentId":2472,"tags":{},"startTime":1776992452072,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7385505887292,"id":2475,"parentId":2472,"tags":{},"startTime":1776992452075,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":36,"timestamp":7385505887304,"id":2476,"parentId":2472,"tags":{},"startTime":1776992452075,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":6,"timestamp":7385505887355,"id":2477,"parentId":2472,"tags":{},"startTime":1776992452075,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385505887374,"id":2478,"parentId":2472,"tags":{},"startTime":1776992452075,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":952,"timestamp":7385505887285,"id":2474,"parentId":2472,"tags":{},"startTime":1776992452075,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":3318,"timestamp":7385505889252,"id":2479,"parentId":2472,"tags":{},"startTime":1776992452076,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":9054,"timestamp":7385505892584,"id":2480,"parentId":2472,"tags":{},"startTime":1776992452080,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":4961,"timestamp":7385505903793,"id":2481,"parentId":2472,"tags":{},"startTime":1776992452091,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":98,"timestamp":7385505908754,"id":2482,"parentId":2472,"tags":{},"startTime":1776992452096,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":76,"timestamp":7385505908843,"id":2483,"parentId":2472,"tags":{},"startTime":1776992452096,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":77750,"timestamp":7385505908922,"id":2484,"parentId":2472,"tags":{},"startTime":1776992452096,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":171,"timestamp":7385505987749,"id":2486,"parentId":1911,"tags":{},"startTime":1776992452175,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":327,"timestamp":7385505987601,"id":2485,"parentId":1911,"tags":{},"startTime":1776992452175,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":107753,"timestamp":7385505881487,"id":2472,"parentId":1911,"tags":{},"startTime":1776992452069,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":873426,"timestamp":7385505115837,"id":1911,"parentId":1908,"tags":{"name":"client"},"startTime":1776992451303,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":23743,"timestamp":7385505989282,"id":2487,"parentId":1908,"tags":{},"startTime":1776992452177,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":910766,"timestamp":7385505103142,"id":1908,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992451290,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":4,"timestamp":7385506029849,"id":2490,"parentId":3,"tags":{},"startTime":1776992452217,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":1,"timestamp":7385506030488,"id":2491,"parentId":3,"tags":{},"startTime":1776992452218,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":938000,"timestamp":7385505103378,"id":2502,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":false},"startTime":1776992452230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3399,"timestamp":7385506045568,"id":2505,"parentId":2504,"tags":{},"startTime":1776992452233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3450,"timestamp":7385506045525,"id":2504,"parentId":2503,"tags":{},"startTime":1776992452233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4813,"timestamp":7385506045041,"id":2503,"parentId":2495,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1776992452232,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17894,"timestamp":7385506038986,"id":2499,"parentId":2489,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776992452226,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17903,"timestamp":7385506038988,"id":2500,"parentId":2489,"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":1776992452226,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17906,"timestamp":7385506038989,"id":2501,"parentId":2489,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%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":1776992452226,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":146,"timestamp":7385506056905,"id":2506,"parentId":2503,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1776992452244,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":6,"timestamp":7385506057061,"id":2507,"parentId":2503,"tags":{"name":"react","layer":null},"startTime":1776992452244,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":20296,"timestamp":7385506038984,"id":2498,"parentId":2489,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%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":1776992452226,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3191,"timestamp":7385506057266,"id":2510,"parentId":2509,"tags":{},"startTime":1776992452245,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3240,"timestamp":7385506057223,"id":2509,"parentId":2508,"tags":{},"startTime":1776992452244,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4819,"timestamp":7385506057070,"id":2508,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1776992452244,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":959000,"timestamp":7385505105506,"id":2518,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1776992452254,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":5429,"timestamp":7385506063018,"id":2512,"parentId":2511,"tags":{},"startTime":1776992452250,"traceId":"27fab7e1c891f919"},{"name":"build-module-cjs","duration":11804,"timestamp":7385506062503,"id":2511,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_default.cjs","layer":null},"startTime":1776992452250,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":12667,"timestamp":7385506063796,"id":2516,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":null},"startTime":1776992452251,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":37532,"timestamp":7385506038975,"id":2495,"parentId":2489,"tags":{"request":"next/dist/pages/_app"},"startTime":1776992452226,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":12982,"timestamp":7385506065426,"id":2517,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":null},"startTime":1776992452253,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1512,"timestamp":7385506079072,"id":2521,"parentId":2520,"tags":{},"startTime":1776992452266,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1549,"timestamp":7385506079038,"id":2520,"parentId":2519,"tags":{},"startTime":1776992452266,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2202,"timestamp":7385506078963,"id":2519,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1776992452266,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1781,"timestamp":7385506079770,"id":2523,"parentId":2522,"tags":{},"startTime":1776992452267,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1929,"timestamp":7385506079743,"id":2522,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":null},"startTime":1776992452267,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":663,"timestamp":7385506081260,"id":2527,"parentId":2526,"tags":{},"startTime":1776992452269,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":977,"timestamp":7385506081239,"id":2526,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/module.compiled.js","layer":null},"startTime":1776992452268,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1834,"timestamp":7385506080522,"id":2525,"parentId":2524,"tags":{},"startTime":1776992452268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2083,"timestamp":7385506080494,"id":2524,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/templates/helpers.js","layer":null},"startTime":1776992452268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27,"timestamp":7385506082599,"id":2531,"parentId":2526,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.dev.js","layer":null},"startTime":1776992452270,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19314,"timestamp":7385506063471,"id":2515,"parentId":2514,"tags":{},"startTime":1776992452251,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19379,"timestamp":7385506063408,"id":2514,"parentId":2513,"tags":{},"startTime":1776992452251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45745,"timestamp":7385506063047,"id":2513,"parentId":2496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_document.js","layer":null},"startTime":1776992452250,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":34208,"timestamp":7385506081788,"id":2530,"parentId":2529,"tags":{},"startTime":1776992452269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34237,"timestamp":7385506081765,"id":2529,"parentId":2528,"tags":{},"startTime":1776992452269,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37923,"timestamp":7385506081721,"id":2528,"parentId":2519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1776992452269,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":376,"timestamp":7385506130690,"id":2533,"parentId":2532,"tags":{},"startTime":1776992452318,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3774,"timestamp":7385506130574,"id":2532,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1776992452318,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11997,"timestamp":7385506138395,"id":2536,"parentId":2535,"tags":{},"startTime":1776992452326,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12516,"timestamp":7385506137883,"id":2535,"parentId":2534,"tags":{},"startTime":1776992452325,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":70975,"timestamp":7385506130709,"id":2534,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1776992452318,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":57125,"timestamp":7385506149359,"id":2541,"parentId":2540,"tags":{},"startTime":1776992452337,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":57177,"timestamp":7385506149319,"id":2540,"parentId":2537,"tags":{},"startTime":1776992452337,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":61852,"timestamp":7385506148900,"id":2537,"parentId":2528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1776992452336,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":61764,"timestamp":7385506149373,"id":2543,"parentId":2542,"tags":{},"startTime":1776992452337,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":61788,"timestamp":7385506149363,"id":2542,"parentId":2538,"tags":{},"startTime":1776992452337,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":62823,"timestamp":7385506149109,"id":2538,"parentId":2528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1776992452336,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":62595,"timestamp":7385506149385,"id":2545,"parentId":2544,"tags":{},"startTime":1776992452337,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":62606,"timestamp":7385506149376,"id":2544,"parentId":2539,"tags":{},"startTime":1776992452337,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":62939,"timestamp":7385506149231,"id":2539,"parentId":2528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1776992452336,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10297,"timestamp":7385506203449,"id":2558,"parentId":2557,"tags":{},"startTime":1776992452391,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10350,"timestamp":7385506203407,"id":2557,"parentId":2548,"tags":{},"startTime":1776992452391,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11413,"timestamp":7385506202942,"id":2548,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":null},"startTime":1776992452390,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2901,"timestamp":7385506213025,"id":2561,"parentId":2560,"tags":{},"startTime":1776992452400,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3136,"timestamp":7385506212794,"id":2560,"parentId":2559,"tags":{},"startTime":1776992452400,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4290,"timestamp":7385506212272,"id":2559,"parentId":2532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1776992452400,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14019,"timestamp":7385506203085,"id":2552,"parentId":2551,"tags":{},"startTime":1776992452390,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15677,"timestamp":7385506203076,"id":2551,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/utils.js","layer":null},"startTime":1776992452390,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15715,"timestamp":7385506203065,"id":2550,"parentId":2549,"tags":{},"startTime":1776992452390,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16126,"timestamp":7385506203048,"id":2549,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/htmlescape.js","layer":null},"startTime":1776992452390,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4401,"timestamp":7385506214812,"id":2564,"parentId":2563,"tags":{},"startTime":1776992452402,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4475,"timestamp":7385506214739,"id":2563,"parentId":2562,"tags":{},"startTime":1776992452402,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4838,"timestamp":7385506214461,"id":2562,"parentId":2534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1776992452402,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16769,"timestamp":7385506203123,"id":2556,"parentId":2555,"tags":{},"startTime":1776992452390,"traceId":"27fab7e1c891f919"},{"name":"build-module-cjs","duration":17242,"timestamp":7385506203109,"id":2555,"parentId":2528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs","layer":null},"startTime":1776992452390,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17537,"timestamp":7385506202888,"id":2547,"parentId":2546,"tags":{},"startTime":1776992452390,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18481,"timestamp":7385506202270,"id":2546,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/pretty-bytes.js","layer":null},"startTime":1776992452390,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17663,"timestamp":7385506203101,"id":2554,"parentId":2553,"tags":{},"startTime":1776992452390,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17841,"timestamp":7385506203092,"id":2553,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/get-page-files.js","layer":null},"startTime":1776992452390,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1381,"timestamp":7385506221699,"id":2567,"parentId":2566,"tags":{},"startTime":1776992452409,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1419,"timestamp":7385506221669,"id":2566,"parentId":2565,"tags":{},"startTime":1776992452409,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":2254,"timestamp":7385506221587,"id":2565,"parentId":2553,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1776992452409,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2394,"timestamp":7385506222449,"id":2570,"parentId":2569,"tags":{},"startTime":1776992452410,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2419,"timestamp":7385506222425,"id":2569,"parentId":2568,"tags":{},"startTime":1776992452410,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2722,"timestamp":7385506222375,"id":2568,"parentId":2553,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js","layer":null},"startTime":1776992452410,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":45,"timestamp":7385506230313,"id":2583,"parentId":2568,"tags":{"name":"path","layer":null},"startTime":1776992452418,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2423,"timestamp":7385506228136,"id":2582,"parentId":2581,"tags":{},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2439,"timestamp":7385506228122,"id":2581,"parentId":2578,"tags":{},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3674,"timestamp":7385506227976,"id":2578,"parentId":2565,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4836,"timestamp":7385506228117,"id":2580,"parentId":2579,"tags":{},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4927,"timestamp":7385506228029,"id":2579,"parentId":2571,"tags":{},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5506,"timestamp":7385506227718,"id":2571,"parentId":2565,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2751,"timestamp":7385506230486,"id":2586,"parentId":2585,"tags":{},"startTime":1776992452418,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2783,"timestamp":7385506230455,"id":2585,"parentId":2584,"tags":{},"startTime":1776992452418,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3002,"timestamp":7385506230376,"id":2584,"parentId":2568,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1776992452418,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":5704,"timestamp":7385506227908,"id":2573,"parentId":2572,"tags":{},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5835,"timestamp":7385506227874,"id":2572,"parentId":2528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/amp-context.js","layer":null},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":5777,"timestamp":7385506227942,"id":2575,"parentId":2574,"tags":{},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5829,"timestamp":7385506227930,"id":2574,"parentId":2528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/head-manager-context.js","layer":null},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3617,"timestamp":7385506233555,"id":2592,"parentId":2591,"tags":{},"startTime":1776992452421,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3634,"timestamp":7385506233545,"id":2591,"parentId":2588,"tags":{},"startTime":1776992452421,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4057,"timestamp":7385506233495,"id":2588,"parentId":2578,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1776992452421,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":10079,"timestamp":7385506227969,"id":2577,"parentId":2576,"tags":{},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10305,"timestamp":7385506227951,"id":2576,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/html-context.js","layer":null},"startTime":1776992452415,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4754,"timestamp":7385506233542,"id":2590,"parentId":2589,"tags":{},"startTime":1776992452421,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4776,"timestamp":7385506233521,"id":2589,"parentId":2587,"tags":{},"startTime":1776992452421,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5959,"timestamp":7385506233442,"id":2587,"parentId":2578,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1776992452421,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":8,"timestamp":7385506240954,"id":2594,"parentId":2593,"tags":{},"startTime":1776992452428,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":550,"timestamp":7385506240904,"id":2593,"parentId":2588,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1776992452428,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1815,"timestamp":7385506242928,"id":2597,"parentId":2596,"tags":{},"startTime":1776992452430,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2496,"timestamp":7385506242253,"id":2596,"parentId":2595,"tags":{},"startTime":1776992452429,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3593,"timestamp":7385506242110,"id":2595,"parentId":2593,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1776992452429,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":938,"timestamp":7385506249502,"id":2600,"parentId":2599,"tags":{},"startTime":1776992452437,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1019,"timestamp":7385506249426,"id":2599,"parentId":2598,"tags":{},"startTime":1776992452437,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2794,"timestamp":7385506249134,"id":2598,"parentId":2595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1776992452436,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":213034,"timestamp":7385506038979,"id":2496,"parentId":2489,"tags":{"request":"next/dist/pages/_document"},"startTime":1776992452226,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":213077,"timestamp":7385506038939,"id":2494,"parentId":2489,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776992452226,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":213037,"timestamp":7385506038981,"id":2497,"parentId":2489,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776992452226,"traceId":"27fab7e1c891f919"},{"name":"make","duration":250970,"timestamp":7385506023075,"id":2489,"parentId":2488,"tags":{},"startTime":1776992452210,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":7728,"timestamp":7385506281948,"id":2618,"parentId":2617,"tags":{},"startTime":1776992452469,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":58,"timestamp":7385506289799,"id":2620,"parentId":2617,"tags":{},"startTime":1776992452477,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":4837,"timestamp":7385506289967,"id":2621,"parentId":2617,"tags":{},"startTime":1776992452477,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":18,"timestamp":7385506294873,"id":2622,"parentId":2617,"tags":{},"startTime":1776992452482,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":8,"timestamp":7385506294918,"id":2623,"parentId":2617,"tags":{},"startTime":1776992452482,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":6108,"timestamp":7385506289766,"id":2619,"parentId":2617,"tags":{},"startTime":1776992452477,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":561,"timestamp":7385506298994,"id":2624,"parentId":2617,"tags":{},"startTime":1776992452486,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":4189,"timestamp":7385506299611,"id":2625,"parentId":2617,"tags":{},"startTime":1776992452487,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":1240,"timestamp":7385506304947,"id":2626,"parentId":2617,"tags":{},"startTime":1776992452492,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":51,"timestamp":7385506306188,"id":2627,"parentId":2617,"tags":{},"startTime":1776992452493,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":46,"timestamp":7385506306231,"id":2628,"parentId":2617,"tags":{},"startTime":1776992452493,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":6370,"timestamp":7385506306280,"id":2629,"parentId":2617,"tags":{},"startTime":1776992452494,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":34678,"timestamp":7385506280253,"id":2617,"parentId":2488,"tags":{},"startTime":1776992452467,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":296455,"timestamp":7385506022683,"id":2488,"parentId":1910,"tags":{"name":"server"},"startTime":1776992452210,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":17467,"timestamp":7385506319197,"id":2630,"parentId":1910,"tags":{},"startTime":1776992452506,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":1234181,"timestamp":7385505103263,"id":1909,"tags":{"trigger":"/_error","isTurbopack":false},"startTime":1776992451291,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":750,"timestamp":7385506337031,"id":2631,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992452524,"traceId":"27fab7e1c891f919"}] -[{"name":"add-entry","duration":6393,"timestamp":7385506354906,"id":2636,"parentId":2633,"tags":{"request":"next/dist/pages/_document"},"startTime":1776992452542,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":23761,"timestamp":7385506354921,"id":2639,"parentId":2633,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%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":1776992452542,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":23786,"timestamp":7385506354936,"id":2641,"parentId":2633,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%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":1776992452542,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":24186,"timestamp":7385506354933,"id":2640,"parentId":2633,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776992452542,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":24240,"timestamp":7385506354899,"id":2635,"parentId":2633,"tags":{"request":"next/dist/pages/_app"},"startTime":1776992452542,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":25600,"timestamp":7385506354858,"id":2634,"parentId":2633,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776992452542,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":25563,"timestamp":7385506354909,"id":2637,"parentId":2633,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776992452542,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":25980,"timestamp":7385506354913,"id":2638,"parentId":2633,"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":1776992452542,"traceId":"27fab7e1c891f919"},{"name":"make","duration":79651,"timestamp":7385506341163,"id":2633,"parentId":2632,"tags":{},"startTime":1776992452528,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":5442,"timestamp":7385506424785,"id":2659,"parentId":2658,"tags":{},"startTime":1776992452612,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":6,"timestamp":7385506430255,"id":2661,"parentId":2658,"tags":{},"startTime":1776992452617,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":14333,"timestamp":7385506430274,"id":2662,"parentId":2658,"tags":{},"startTime":1776992452618,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":27,"timestamp":7385506444697,"id":2663,"parentId":2658,"tags":{},"startTime":1776992452632,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":4,"timestamp":7385506444755,"id":2664,"parentId":2658,"tags":{},"startTime":1776992452632,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":15353,"timestamp":7385506430248,"id":2660,"parentId":2658,"tags":{},"startTime":1776992452617,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":191,"timestamp":7385506448088,"id":2665,"parentId":2658,"tags":{},"startTime":1776992452635,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":2017,"timestamp":7385506448289,"id":2666,"parentId":2658,"tags":{},"startTime":1776992452636,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":1247,"timestamp":7385506453965,"id":2667,"parentId":2658,"tags":{},"startTime":1776992452641,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":64,"timestamp":7385506455212,"id":2668,"parentId":2658,"tags":{},"startTime":1776992452642,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":67,"timestamp":7385506455267,"id":2669,"parentId":2658,"tags":{},"startTime":1776992452643,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":141,"timestamp":7385506455336,"id":2670,"parentId":2658,"tags":{},"startTime":1776992452643,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":33828,"timestamp":7385506423870,"id":2658,"parentId":2632,"tags":{},"startTime":1776992452611,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":120019,"timestamp":7385506340875,"id":2632,"parentId":3,"tags":{"name":"server"},"startTime":1776992452528,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":3237,"timestamp":7385506460916,"id":2671,"parentId":3,"tags":{},"startTime":1776992452648,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":1407374,"timestamp":7385505091454,"id":1907,"tags":{"url":"/api/market/strategy-board","isTurbopack":false},"startTime":1776992451279,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":778548,"timestamp":7385505720288,"id":2400,"tags":{"url":"/api/sectors/hot?limit=8","isTurbopack":false},"startTime":1776992451908,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385506498857,"id":2672,"parentId":1907,"tags":{"url":"/api/market/strategy-board","memory.rss":"365740032","memory.heapUsed":"247328232","memory.heapTotal":"295026688"},"startTime":1776992452686,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385506498861,"id":2673,"parentId":2400,"tags":{"url":"/api/sectors/hot?limit=8","memory.rss":"365740032","memory.heapUsed":"247329456","memory.heapTotal":"295026688"},"startTime":1776992452686,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":517326,"timestamp":7385506038021,"id":2493,"tags":{"url":"/?_rsc=qt7ii","isTurbopack":false},"startTime":1776992452225,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385506555371,"id":2674,"parentId":2493,"tags":{"url":"/?_rsc=qt7ii","memory.rss":"373850112","memory.heapUsed":"259040064","memory.heapTotal":"297664512"},"startTime":1776992452743,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":524792,"timestamp":7385506030938,"id":2492,"tags":{"url":"/dashboard?_rsc=1oyxd","isTurbopack":false},"startTime":1776992452218,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385506555749,"id":2675,"parentId":2492,"tags":{"url":"/dashboard?_rsc=1oyxd","memory.rss":"373899264","memory.heapUsed":"259088240","memory.heapTotal":"297664512"},"startTime":1776992452743,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":13728,"timestamp":7385506560388,"id":2676,"tags":{"url":"/?_rsc=qt7ii","isTurbopack":false},"startTime":1776992452748,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":21,"timestamp":7385506574139,"id":2678,"parentId":2676,"tags":{"url":"/?_rsc=qt7ii","memory.rss":"375537664","memory.heapUsed":"252185816","memory.heapTotal":"296501248"},"startTime":1776992452761,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":13209,"timestamp":7385506561790,"id":2677,"tags":{"url":"/dashboard?_rsc=1oyxd","isTurbopack":false},"startTime":1776992452749,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385506575021,"id":2679,"parentId":2677,"tags":{"url":"/dashboard?_rsc=1oyxd","memory.rss":"375537664","memory.heapUsed":"252210880","memory.heapTotal":"296501248"},"startTime":1776992452762,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":2281,"timestamp":7385524574631,"id":2680,"tags":{"url":"/api/market/strategy-board","isTurbopack":false},"startTime":1776992470762,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385524576945,"id":2681,"parentId":2680,"tags":{"url":"/api/market/strategy-board","memory.rss":"218841088","memory.heapUsed":"217600672","memory.heapTotal":"224198656"},"startTime":1776992470764,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26439,"timestamp":7385659188364,"id":2694,"parentId":2685,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":47948,"timestamp":7385659188379,"id":2700,"parentId":2685,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":50932,"timestamp":7385659188041,"id":2686,"parentId":2685,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":50661,"timestamp":7385659188332,"id":2688,"parentId":2685,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":53402,"timestamp":7385659188374,"id":2697,"parentId":2685,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":53449,"timestamp":7385659188377,"id":2699,"parentId":2685,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":54832,"timestamp":7385659188351,"id":2691,"parentId":2685,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":62443,"timestamp":7385659188343,"id":2690,"parentId":2685,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":64450,"timestamp":7385659188371,"id":2696,"parentId":2685,"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":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":64716,"timestamp":7385659188360,"id":2692,"parentId":2685,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":64894,"timestamp":7385659188362,"id":2693,"parentId":2685,"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":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4375,"timestamp":7385659248915,"id":2706,"parentId":2705,"tags":{},"startTime":1776992605436,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":87325,"timestamp":7385659188340,"id":2689,"parentId":2685,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"postcss-process","duration":135701,"timestamp":7385659253475,"id":2708,"parentId":2707,"tags":{},"startTime":1776992605440,"traceId":"27fab7e1c891f919"},{"name":"postcss-loader","duration":137045,"timestamp":7385659253356,"id":2707,"parentId":2705,"tags":{},"startTime":1776992605440,"traceId":"27fab7e1c891f919"},{"name":"css-loader","duration":22017,"timestamp":7385659390470,"id":2709,"parentId":2705,"tags":{"astUsed":"true"},"startTime":1776992605577,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":171711,"timestamp":7385659246347,"id":2705,"parentId":2701,"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":1776992605433,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":199621,"timestamp":7385659222042,"id":2704,"parentId":2703,"tags":{},"startTime":1776992605409,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":199979,"timestamp":7385659221689,"id":2703,"parentId":2702,"tags":{},"startTime":1776992605409,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":219914,"timestamp":7385659221197,"id":2702,"parentId":2684,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"app-pages-browser"},"startTime":1776992605408,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":262557,"timestamp":7385659216018,"id":2701,"parentId":2684,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776992605403,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":290835,"timestamp":7385659188326,"id":2687,"parentId":2685,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":129,"timestamp":7385659481168,"id":2710,"parentId":2701,"tags":{},"startTime":1776992605668,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":294808,"timestamp":7385659188366,"id":2695,"parentId":2685,"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":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":297156,"timestamp":7385659188375,"id":2698,"parentId":2685,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992605375,"traceId":"27fab7e1c891f919"},{"name":"make","duration":298819,"timestamp":7385659186770,"id":2685,"parentId":2684,"tags":{},"startTime":1776992605374,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":2184,"timestamp":7385659614168,"id":2712,"parentId":2711,"tags":{},"startTime":1776992605801,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":5,"timestamp":7385659616377,"id":2714,"parentId":2711,"tags":{},"startTime":1776992605803,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":74,"timestamp":7385659616394,"id":2715,"parentId":2711,"tags":{},"startTime":1776992605803,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":12,"timestamp":7385659616511,"id":2716,"parentId":2711,"tags":{},"startTime":1776992605803,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":5,"timestamp":7385659616548,"id":2717,"parentId":2711,"tags":{},"startTime":1776992605804,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":1089,"timestamp":7385659616370,"id":2713,"parentId":2711,"tags":{},"startTime":1776992605803,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":1505,"timestamp":7385659618854,"id":2718,"parentId":2711,"tags":{},"startTime":1776992605806,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":10036,"timestamp":7385659620408,"id":2719,"parentId":2711,"tags":{},"startTime":1776992605807,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":12677,"timestamp":7385659632074,"id":2720,"parentId":2711,"tags":{},"startTime":1776992605819,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":168,"timestamp":7385659644749,"id":2721,"parentId":2711,"tags":{},"startTime":1776992605832,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":118,"timestamp":7385659644904,"id":2722,"parentId":2711,"tags":{},"startTime":1776992605832,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":8196,"timestamp":7385659645025,"id":2723,"parentId":2711,"tags":{},"startTime":1776992605832,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":122,"timestamp":7385659654334,"id":2725,"parentId":2684,"tags":{},"startTime":1776992605841,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":238,"timestamp":7385659654227,"id":2724,"parentId":2684,"tags":{},"startTime":1776992605841,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":43756,"timestamp":7385659612653,"id":2711,"parentId":2684,"tags":{},"startTime":1776992605800,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":470727,"timestamp":7385659185732,"id":2684,"parentId":2682,"tags":{"name":"client"},"startTime":1776992605373,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":22324,"timestamp":7385659656476,"id":2726,"parentId":2682,"tags":{},"startTime":1776992605843,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":523085,"timestamp":7385659156787,"id":2682,"parentId":3,"tags":{"trigger":"src/app/(auth)/dashboard/page.tsx"},"startTime":1776992605344,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":11,"timestamp":7385659689833,"id":2729,"parentId":3,"tags":{},"startTime":1776992605877,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":0,"timestamp":7385659689898,"id":2730,"parentId":3,"tags":{},"startTime":1776992605877,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12912,"timestamp":7385659696961,"id":2732,"parentId":2728,"tags":{"request":"next/dist/pages/_app"},"startTime":1776992605884,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":24385,"timestamp":7385659696973,"id":2735,"parentId":2728,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%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":1776992605884,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":24734,"timestamp":7385659696968,"id":2733,"parentId":2728,"tags":{"request":"next/dist/pages/_document"},"startTime":1776992605884,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26655,"timestamp":7385659696976,"id":2736,"parentId":2728,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%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":1776992605884,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":30107,"timestamp":7385659696970,"id":2734,"parentId":2728,"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":1776992605884,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":32945,"timestamp":7385659696685,"id":2731,"parentId":2728,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776992605884,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":569000,"timestamp":7385659162190,"id":2741,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!","[project]/src/app/globals.css"],"page":"/","isPageHidden":false},"startTime":1776992605919,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12790,"timestamp":7385659720260,"id":2740,"parentId":2739,"tags":{},"startTime":1776992605907,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12897,"timestamp":7385659720158,"id":2739,"parentId":2738,"tags":{},"startTime":1776992605907,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":16063,"timestamp":7385659719343,"id":2738,"parentId":2727,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"rsc"},"startTime":1776992605906,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":39454,"timestamp":7385659696978,"id":2737,"parentId":2728,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776992605884,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":584000,"timestamp":7385659158533,"id":2758,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!","[project]/src/app/globals.css","[project]/src/app/(auth)/dashboard/page.tsx"],"page":"/dashboard","isPageHidden":false},"startTime":1776992605947,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13651,"timestamp":7385659760999,"id":2761,"parentId":2760,"tags":{},"startTime":1776992605948,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13739,"timestamp":7385659760920,"id":2760,"parentId":2759,"tags":{},"startTime":1776992605948,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":36214,"timestamp":7385659760777,"id":2759,"parentId":2727,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"ssr"},"startTime":1776992605948,"traceId":"27fab7e1c891f919"},{"name":"make","duration":133147,"timestamp":7385659682956,"id":2728,"parentId":2727,"tags":{},"startTime":1776992605870,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":2768,"timestamp":7385659820393,"id":2763,"parentId":2762,"tags":{},"startTime":1776992606007,"traceId":"27fab7e1c891f919"}] -[{"name":"optimize-modules","duration":6,"timestamp":7385659826386,"id":2765,"parentId":2762,"tags":{},"startTime":1776992606013,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":5541,"timestamp":7385659826411,"id":2766,"parentId":2762,"tags":{},"startTime":1776992606013,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":6,"timestamp":7385659831979,"id":2767,"parentId":2762,"tags":{},"startTime":1776992606019,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385659831996,"id":2768,"parentId":2762,"tags":{},"startTime":1776992606019,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":6650,"timestamp":7385659826372,"id":2764,"parentId":2762,"tags":{},"startTime":1776992606013,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":10520,"timestamp":7385659836645,"id":2769,"parentId":2762,"tags":{},"startTime":1776992606024,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":3272,"timestamp":7385659847193,"id":2770,"parentId":2762,"tags":{},"startTime":1776992606034,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":1266,"timestamp":7385659853137,"id":2771,"parentId":2762,"tags":{},"startTime":1776992606040,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":69,"timestamp":7385659854403,"id":2772,"parentId":2762,"tags":{},"startTime":1776992606041,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":64,"timestamp":7385659854464,"id":2773,"parentId":2762,"tags":{},"startTime":1776992606041,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":2812,"timestamp":7385659854532,"id":2774,"parentId":2762,"tags":{},"startTime":1776992606042,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":44056,"timestamp":7385659818764,"id":2762,"parentId":2727,"tags":{},"startTime":1776992606006,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":186114,"timestamp":7385659682485,"id":2727,"parentId":2683,"tags":{"name":"server"},"startTime":1776992605869,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":10200,"timestamp":7385659868694,"id":2775,"parentId":2683,"tags":{},"startTime":1776992606056,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":723636,"timestamp":7385659159249,"id":2683,"parentId":3,"tags":{"trigger":"src/app/(auth)/dashboard/page.tsx"},"startTime":1776992605346,"traceId":"27fab7e1c891f919"}] -[{"name":"handle-request","duration":239976,"timestamp":7385659895228,"id":2776,"tags":{"url":"/?_rsc=qt7ii","isTurbopack":false},"startTime":1776992606082,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":2,"timestamp":7385660136431,"id":2778,"parentId":2776,"tags":{"url":"/?_rsc=qt7ii","memory.rss":"298319872","memory.heapUsed":"245789600","memory.heapTotal":"281821184"},"startTime":1776992606323,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":42210,"timestamp":7385660128883,"id":2777,"tags":{"url":"/dashboard?_rsc=1oyxd","isTurbopack":false},"startTime":1776992606316,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":6,"timestamp":7385660171140,"id":2779,"parentId":2777,"tags":{"url":"/dashboard?_rsc=1oyxd","memory.rss":"300220416","memory.heapUsed":"248787392","memory.heapTotal":"283049984"},"startTime":1776992606358,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":132479,"timestamp":7385783873965,"id":2780,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1776992730061,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385784006550,"id":2781,"parentId":2780,"tags":{"url":"/dashboard","memory.rss":"160088064","memory.heapUsed":"224409160","memory.heapTotal":"229736448"},"startTime":1776992730193,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":43,"timestamp":7385784858635,"id":2782,"parentId":3,"tags":{},"startTime":1776992731045,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":4,"timestamp":7385784883463,"id":2783,"parentId":3,"tags":{},"startTime":1776992731070,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":22471,"timestamp":7385791317376,"id":2794,"parentId":2788,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%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":1776992737504,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":22506,"timestamp":7385791317379,"id":2795,"parentId":2788,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%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":1776992737504,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":22507,"timestamp":7385791317381,"id":2796,"parentId":2788,"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":1776992737504,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":25410,"timestamp":7385791317368,"id":2791,"parentId":2788,"tags":{"request":"next/dist/pages/_document"},"startTime":1776992737504,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26958,"timestamp":7385791317364,"id":2790,"parentId":2788,"tags":{"request":"next/dist/pages/_app"},"startTime":1776992737504,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26956,"timestamp":7385791317374,"id":2793,"parentId":2788,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776992737504,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":27105,"timestamp":7385791317231,"id":2789,"parentId":2788,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776992737504,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":21578,"timestamp":7385791335499,"id":2797,"parentId":2792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%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":1776992737522,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":95004,"timestamp":7385791360646,"id":2800,"parentId":2799,"tags":{},"startTime":1776992737547,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":95134,"timestamp":7385791360532,"id":2799,"parentId":2798,"tags":{},"startTime":1776992737547,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":95999,"timestamp":7385791360318,"id":2798,"parentId":2797,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1776992737547,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":140779,"timestamp":7385791317371,"id":2792,"parentId":2788,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%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":1776992737504,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":670,"timestamp":7385791490027,"id":2822,"parentId":2787,"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(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992737677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":42093,"timestamp":7385791497718,"id":2825,"parentId":2824,"tags":{},"startTime":1776992737684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42195,"timestamp":7385791497627,"id":2824,"parentId":2823,"tags":{},"startTime":1776992737684,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":60005,"timestamp":7385791497324,"id":2823,"parentId":2822,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1776992737684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6741,"timestamp":7385791566143,"id":2828,"parentId":2827,"tags":{},"startTime":1776992737753,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6969,"timestamp":7385791565926,"id":2827,"parentId":2826,"tags":{},"startTime":1776992737753,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":12516,"timestamp":7385791565803,"id":2826,"parentId":2823,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1776992737753,"traceId":"27fab7e1c891f919"},{"name":"make","duration":272593,"timestamp":7385791312518,"id":2788,"parentId":2787,"tags":{},"startTime":1776992737499,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":5005,"timestamp":7385791587593,"id":2830,"parentId":2829,"tags":{},"startTime":1776992737774,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7385791592679,"id":2832,"parentId":2829,"tags":{},"startTime":1776992737779,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":8941,"timestamp":7385791592692,"id":2833,"parentId":2829,"tags":{},"startTime":1776992737779,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":8,"timestamp":7385791601664,"id":2834,"parentId":2829,"tags":{},"startTime":1776992737788,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385791601694,"id":2835,"parentId":2829,"tags":{},"startTime":1776992737788,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":10122,"timestamp":7385791592671,"id":2831,"parentId":2829,"tags":{},"startTime":1776992737779,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":617,"timestamp":7385791604663,"id":2836,"parentId":2829,"tags":{},"startTime":1776992737791,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":4902,"timestamp":7385791605296,"id":2837,"parentId":2829,"tags":{},"startTime":1776992737792,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":1873,"timestamp":7385791611507,"id":2838,"parentId":2829,"tags":{},"startTime":1776992737798,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":190,"timestamp":7385791613380,"id":2839,"parentId":2829,"tags":{},"startTime":1776992737800,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":141,"timestamp":7385791613553,"id":2840,"parentId":2829,"tags":{},"startTime":1776992737800,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":4739,"timestamp":7385791613702,"id":2841,"parentId":2829,"tags":{},"startTime":1776992737800,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":34462,"timestamp":7385791586486,"id":2829,"parentId":2787,"tags":{},"startTime":1776992737773,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":315615,"timestamp":7385791309473,"id":2787,"parentId":2785,"tags":{"name":"server"},"startTime":1776992737496,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":4879,"timestamp":7385791625142,"id":2842,"parentId":2785,"tags":{},"startTime":1776992737812,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":332995,"timestamp":7385791297361,"id":2785,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992737484,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":6687,"timestamp":7385791639235,"id":2853,"parentId":2844,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":11442,"timestamp":7385791639245,"id":2859,"parentId":2844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":13079,"timestamp":7385791639169,"id":2845,"parentId":2844,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":13044,"timestamp":7385791639217,"id":2847,"parentId":2844,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14072,"timestamp":7385791639240,"id":2856,"parentId":2844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14501,"timestamp":7385791639244,"id":2858,"parentId":2844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":15515,"timestamp":7385791639229,"id":2850,"parentId":2844,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17316,"timestamp":7385791639242,"id":2857,"parentId":2844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17599,"timestamp":7385791639237,"id":2854,"parentId":2844,"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":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26020,"timestamp":7385791639223,"id":2849,"parentId":2844,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":27193,"timestamp":7385791639231,"id":2851,"parentId":2844,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":28246,"timestamp":7385791639238,"id":2855,"parentId":2844,"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":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":28820,"timestamp":7385791639221,"id":2848,"parentId":2844,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":28818,"timestamp":7385791639233,"id":2852,"parentId":2844,"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":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":33831,"timestamp":7385791639213,"id":2846,"parentId":2844,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":907,"timestamp":7385791682470,"id":2861,"parentId":2860,"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(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992737869,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16118,"timestamp":7385791684531,"id":2864,"parentId":2863,"tags":{},"startTime":1776992737871,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16203,"timestamp":7385791684455,"id":2863,"parentId":2862,"tags":{},"startTime":1776992737871,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":28394,"timestamp":7385791684330,"id":2862,"parentId":2861,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1776992737871,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8855,"timestamp":7385791723425,"id":2867,"parentId":2866,"tags":{},"startTime":1776992737910,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8923,"timestamp":7385791723365,"id":2866,"parentId":2865,"tags":{},"startTime":1776992737910,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":14222,"timestamp":7385791723220,"id":2865,"parentId":2862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776992737910,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":98989,"timestamp":7385791639247,"id":2860,"parentId":2844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992737826,"traceId":"27fab7e1c891f919"},{"name":"make","duration":106043,"timestamp":7385791632242,"id":2844,"parentId":2843,"tags":{},"startTime":1776992737819,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1445,"timestamp":7385791740576,"id":2869,"parentId":2868,"tags":{},"startTime":1776992737927,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7385791742046,"id":2871,"parentId":2868,"tags":{},"startTime":1776992737929,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":31,"timestamp":7385791742087,"id":2872,"parentId":2868,"tags":{},"startTime":1776992737929,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":8,"timestamp":7385791742152,"id":2873,"parentId":2868,"tags":{},"startTime":1776992737929,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385791742176,"id":2874,"parentId":2868,"tags":{},"startTime":1776992737929,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":1229,"timestamp":7385791742038,"id":2870,"parentId":2868,"tags":{},"startTime":1776992737929,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":376,"timestamp":7385791744261,"id":2875,"parentId":2868,"tags":{},"startTime":1776992737931,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":2145,"timestamp":7385791744644,"id":2876,"parentId":2868,"tags":{},"startTime":1776992737931,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":2747,"timestamp":7385791747910,"id":2877,"parentId":2868,"tags":{},"startTime":1776992737935,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":88,"timestamp":7385791750656,"id":2878,"parentId":2868,"tags":{},"startTime":1776992737937,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":51,"timestamp":7385791750737,"id":2879,"parentId":2868,"tags":{},"startTime":1776992737937,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":6509,"timestamp":7385791750791,"id":2880,"parentId":2868,"tags":{},"startTime":1776992737938,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":133,"timestamp":7385791758011,"id":2882,"parentId":2843,"tags":{},"startTime":1776992737945,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":187,"timestamp":7385791757961,"id":2881,"parentId":2843,"tags":{},"startTime":1776992737945,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":19615,"timestamp":7385791739666,"id":2868,"parentId":2843,"tags":{},"startTime":1776992737926,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":127341,"timestamp":7385791631960,"id":2843,"parentId":2821,"tags":{"name":"client"},"startTime":1776992737819,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":3781,"timestamp":7385791759316,"id":2883,"parentId":2821,"tags":{},"startTime":1776992737946,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":466069,"timestamp":7385791297485,"id":2786,"tags":{"trigger":"/recommendations","isTurbopack":false},"startTime":1776992737484,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":304133,"timestamp":7385791459700,"id":2821,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992737646,"traceId":"27fab7e1c891f919"}] -[{"name":"client-success","duration":2,"timestamp":7385791766250,"id":2884,"parentId":3,"tags":{},"startTime":1776992737953,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":0,"timestamp":7385791766393,"id":2885,"parentId":3,"tags":{},"startTime":1776992737953,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":504089,"timestamp":7385791287814,"id":2784,"tags":{"url":"/recommendations?_rsc=fd642","isTurbopack":false},"startTime":1776992737475,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":2,"timestamp":7385791791972,"id":2909,"parentId":2784,"tags":{"url":"/recommendations?_rsc=fd642","memory.rss":"292864000","memory.heapUsed":"244898952","memory.heapTotal":"279724032"},"startTime":1776992737979,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":7313,"timestamp":7385791790502,"id":2900,"parentId":2891,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"next-client-pages-loader","duration":107,"timestamp":7385791798221,"id":2911,"parentId":2910,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js"},"startTime":1776992737985,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":664,"timestamp":7385791798106,"id":2910,"parentId":2908,"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":1776992737985,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":9416,"timestamp":7385791790559,"id":2906,"parentId":2891,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":11271,"timestamp":7385791790423,"id":2892,"parentId":2891,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":11223,"timestamp":7385791790478,"id":2894,"parentId":2891,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":11745,"timestamp":7385791790550,"id":2903,"parentId":2891,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":11795,"timestamp":7385791790557,"id":2905,"parentId":2891,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":11863,"timestamp":7385791790568,"id":2907,"parentId":2891,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12285,"timestamp":7385791790494,"id":2897,"parentId":2891,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":15689,"timestamp":7385791790555,"id":2904,"parentId":2891,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17299,"timestamp":7385791790484,"id":2896,"parentId":2891,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":18748,"timestamp":7385791790504,"id":2901,"parentId":2891,"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":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":18996,"timestamp":7385791790511,"id":2902,"parentId":2891,"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":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":19331,"timestamp":7385791790497,"id":2898,"parentId":2891,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":19381,"timestamp":7385791790499,"id":2899,"parentId":2891,"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":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":19820,"timestamp":7385791790482,"id":2895,"parentId":2891,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":21105,"timestamp":7385791790473,"id":2893,"parentId":2891,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":45000,"timestamp":7385791770685,"id":2916,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1776992738002,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5139,"timestamp":7385791813003,"id":2915,"parentId":2914,"tags":{},"startTime":1776992738000,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5204,"timestamp":7385791812941,"id":2914,"parentId":2913,"tags":{},"startTime":1776992738000,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6512,"timestamp":7385791812808,"id":2913,"parentId":2910,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"app-pages-browser"},"startTime":1776992738000,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":19398,"timestamp":7385791801302,"id":2912,"tags":{"url":"/recommendations?_rsc=h601u","isTurbopack":false},"startTime":1776992737988,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385791820719,"id":2917,"parentId":2912,"tags":{"url":"/recommendations?_rsc=h601u","memory.rss":"296681472","memory.heapUsed":"244872664","memory.heapTotal":"278691840"},"startTime":1776992738007,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":37250,"timestamp":7385791790571,"id":2908,"parentId":2891,"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":1776992737977,"traceId":"27fab7e1c891f919"},{"name":"make","duration":55082,"timestamp":7385791772767,"id":2891,"parentId":2890,"tags":{},"startTime":1776992737960,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1595,"timestamp":7385791830919,"id":2919,"parentId":2918,"tags":{},"startTime":1776992738018,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7385791832536,"id":2921,"parentId":2918,"tags":{},"startTime":1776992738019,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":30,"timestamp":7385791832550,"id":2922,"parentId":2918,"tags":{},"startTime":1776992738019,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":3,"timestamp":7385791832595,"id":2923,"parentId":2918,"tags":{},"startTime":1776992738019,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385791832608,"id":2924,"parentId":2918,"tags":{},"startTime":1776992738019,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":537,"timestamp":7385791832530,"id":2920,"parentId":2918,"tags":{},"startTime":1776992738019,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":445,"timestamp":7385791833868,"id":2925,"parentId":2918,"tags":{},"startTime":1776992738021,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":1106,"timestamp":7385791834323,"id":2926,"parentId":2918,"tags":{},"startTime":1776992738021,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":5626,"timestamp":7385791836207,"id":2927,"parentId":2918,"tags":{},"startTime":1776992738023,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":105,"timestamp":7385791841833,"id":2928,"parentId":2918,"tags":{},"startTime":1776992738029,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":75,"timestamp":7385791841929,"id":2929,"parentId":2918,"tags":{},"startTime":1776992738029,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":1608,"timestamp":7385791842007,"id":2930,"parentId":2918,"tags":{},"startTime":1776992738029,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":342,"timestamp":7385791844358,"id":2932,"parentId":2890,"tags":{},"startTime":1776992738031,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":401,"timestamp":7385791844305,"id":2931,"parentId":2890,"tags":{},"startTime":1776992738031,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":17590,"timestamp":7385791829680,"id":2918,"parentId":2890,"tags":{},"startTime":1776992738016,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":74950,"timestamp":7385791772351,"id":2890,"parentId":2887,"tags":{"name":"client"},"startTime":1776992737959,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":7699,"timestamp":7385791847340,"id":2933,"parentId":2887,"tags":{},"startTime":1776992738034,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":85896,"timestamp":7385791769599,"id":2887,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992737956,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":3,"timestamp":7385791859369,"id":2936,"parentId":3,"tags":{},"startTime":1776992738046,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":1,"timestamp":7385791859469,"id":2937,"parentId":3,"tags":{},"startTime":1776992738046,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":98000,"timestamp":7385791770449,"id":2947,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1776992738094,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":54514,"timestamp":7385791863718,"id":2943,"parentId":2935,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%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":1776992738050,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":54541,"timestamp":7385791863721,"id":2945,"parentId":2935,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%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":1776992738050,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":54538,"timestamp":7385791863727,"id":2946,"parentId":2935,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%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":1776992738050,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":54601,"timestamp":7385791863704,"id":2939,"parentId":2935,"tags":{"request":"next/dist/pages/_app"},"startTime":1776992738050,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":55778,"timestamp":7385791863719,"id":2944,"parentId":2935,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776992738050,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":60012,"timestamp":7385791863716,"id":2942,"parentId":2935,"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":1776992738050,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":62750,"timestamp":7385791863708,"id":2940,"parentId":2935,"tags":{"request":"next/dist/pages/_document"},"startTime":1776992738050,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":63233,"timestamp":7385791863645,"id":2938,"parentId":2935,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776992738050,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":21864,"timestamp":7385791914618,"id":2948,"parentId":2941,"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":1776992738101,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":75095,"timestamp":7385791863713,"id":2941,"parentId":2935,"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":1776992738050,"traceId":"27fab7e1c891f919"},{"name":"make","duration":128618,"timestamp":7385791857878,"id":2935,"parentId":2934,"tags":{},"startTime":1776992738045,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":3565,"timestamp":7385791993650,"id":2972,"parentId":2971,"tags":{},"startTime":1776992738180,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":5,"timestamp":7385791997243,"id":2974,"parentId":2971,"tags":{},"startTime":1776992738184,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":3180,"timestamp":7385791997264,"id":2975,"parentId":2971,"tags":{},"startTime":1776992738184,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":5,"timestamp":7385792000488,"id":2976,"parentId":2971,"tags":{},"startTime":1776992738187,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385792000503,"id":2977,"parentId":2971,"tags":{},"startTime":1776992738187,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":4798,"timestamp":7385791997235,"id":2973,"parentId":2971,"tags":{},"startTime":1776992738184,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":730,"timestamp":7385792005919,"id":2978,"parentId":2971,"tags":{},"startTime":1776992738193,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":1413,"timestamp":7385792006680,"id":2979,"parentId":2971,"tags":{},"startTime":1776992738193,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":4574,"timestamp":7385792009899,"id":2980,"parentId":2971,"tags":{},"startTime":1776992738197,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":371,"timestamp":7385792014467,"id":2981,"parentId":2971,"tags":{},"startTime":1776992738201,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":249,"timestamp":7385792014809,"id":2982,"parentId":2971,"tags":{},"startTime":1776992738202,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":2935,"timestamp":7385792015156,"id":2983,"parentId":2971,"tags":{},"startTime":1776992738202,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":34756,"timestamp":7385791991539,"id":2971,"parentId":2934,"tags":{},"startTime":1776992738178,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":199437,"timestamp":7385791857703,"id":2934,"parentId":2889,"tags":{"name":"server"},"startTime":1776992738044,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":8837,"timestamp":7385792057239,"id":2984,"parentId":2889,"tags":{},"startTime":1776992738244,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":296833,"timestamp":7385791769624,"id":2888,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776992737956,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":296749,"timestamp":7385791769801,"id":2889,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992737957,"traceId":"27fab7e1c891f919"}] -[{"name":"client-full-reload","duration":6,"timestamp":7385792140165,"id":2985,"parentId":3,"tags":{"stackTrace":""},"startTime":1776992738327,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":381275,"timestamp":7385791768204,"id":2886,"tags":{"url":"/_next/static/webpack/3787e0adc0bac5f4.webpack.hot-update.json","isTurbopack":false},"startTime":1776992737955,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385792149639,"id":2986,"parentId":2886,"tags":{"url":"/_next/static/webpack/3787e0adc0bac5f4.webpack.hot-update.json","memory.rss":"310050816","memory.heapUsed":"261116328","memory.heapTotal":"286867456"},"startTime":1776992738336,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":64764,"timestamp":7385792150952,"id":2987,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776992738338,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385792215768,"id":2988,"parentId":2987,"tags":{"url":"/recommendations","memory.rss":"310362112","memory.heapUsed":"257634544","memory.heapTotal":"288063488"},"startTime":1776992738403,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":36,"timestamp":7385792820459,"id":2989,"parentId":3,"tags":{},"startTime":1776992739007,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":3,"timestamp":7385792842549,"id":2990,"parentId":3,"tags":{},"startTime":1776992739029,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":16740,"timestamp":7385793526411,"id":2991,"tags":{"url":"/dashboard?_rsc=1oe23","isTurbopack":false},"startTime":1776992739713,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":16,"timestamp":7385793543325,"id":2992,"parentId":2991,"tags":{"url":"/dashboard?_rsc=1oe23","memory.rss":"309886976","memory.heapUsed":"257226688","memory.heapTotal":"292143104"},"startTime":1776992739730,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":7884,"timestamp":7385793546919,"id":2993,"tags":{"url":"/dashboard?_rsc=10zpk","isTurbopack":false},"startTime":1776992739734,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385793554827,"id":2994,"parentId":2993,"tags":{"url":"/dashboard?_rsc=10zpk","memory.rss":"298745856","memory.heapUsed":"259799456","memory.heapTotal":"292143104"},"startTime":1776992739742,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14510,"timestamp":7385795866643,"id":3004,"parentId":2999,"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":1776992742053,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14519,"timestamp":7385795866646,"id":3005,"parentId":2999,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%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":1776992742053,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14556,"timestamp":7385795866650,"id":3007,"parentId":2999,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%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":1776992742053,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14555,"timestamp":7385795866655,"id":3008,"parentId":2999,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%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":1776992742053,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":15352,"timestamp":7385795866648,"id":3006,"parentId":2999,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776992742053,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":19563,"timestamp":7385795866635,"id":3002,"parentId":2999,"tags":{"request":"next/dist/pages/_document"},"startTime":1776992742053,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":20289,"timestamp":7385795866631,"id":3001,"parentId":2999,"tags":{"request":"next/dist/pages/_app"},"startTime":1776992742053,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":20286,"timestamp":7385795866637,"id":3003,"parentId":2999,"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":1776992742053,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":20467,"timestamp":7385795866459,"id":3000,"parentId":2999,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776992742053,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":23137,"timestamp":7385795880224,"id":3010,"parentId":3009,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%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":1776992742067,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5190,"timestamp":7385795907578,"id":3013,"parentId":3012,"tags":{},"startTime":1776992742094,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5308,"timestamp":7385795907471,"id":3012,"parentId":3011,"tags":{},"startTime":1776992742094,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":6009,"timestamp":7385795907235,"id":3011,"parentId":3010,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"rsc"},"startTime":1776992742094,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":48611,"timestamp":7385795866658,"id":3009,"parentId":2999,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%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":1776992742053,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":575,"timestamp":7385795931599,"id":3041,"parentId":2998,"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(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992742118,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5082,"timestamp":7385795935408,"id":3044,"parentId":3043,"tags":{},"startTime":1776992742122,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5157,"timestamp":7385795935341,"id":3043,"parentId":3042,"tags":{},"startTime":1776992742122,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":10799,"timestamp":7385795935138,"id":3042,"parentId":3041,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"ssr"},"startTime":1776992742122,"traceId":"27fab7e1c891f919"},{"name":"make","duration":91486,"timestamp":7385795862278,"id":2999,"parentId":2998,"tags":{},"startTime":1776992742049,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1487,"timestamp":7385795955742,"id":3046,"parentId":3045,"tags":{},"startTime":1776992742142,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":5,"timestamp":7385795957253,"id":3048,"parentId":3045,"tags":{},"startTime":1776992742144,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":2324,"timestamp":7385795957272,"id":3049,"parentId":3045,"tags":{},"startTime":1776992742144,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":7,"timestamp":7385795959610,"id":3050,"parentId":3045,"tags":{},"startTime":1776992742146,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385795959628,"id":3051,"parentId":3045,"tags":{},"startTime":1776992742146,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":2856,"timestamp":7385795957246,"id":3047,"parentId":3045,"tags":{},"startTime":1776992742144,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":513,"timestamp":7385795960918,"id":3052,"parentId":3045,"tags":{},"startTime":1776992742148,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":1646,"timestamp":7385795961473,"id":3053,"parentId":3045,"tags":{},"startTime":1776992742148,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":1512,"timestamp":7385795963934,"id":3054,"parentId":3045,"tags":{},"startTime":1776992742151,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":61,"timestamp":7385795965446,"id":3055,"parentId":3045,"tags":{},"startTime":1776992742152,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":31,"timestamp":7385795965502,"id":3056,"parentId":3045,"tags":{},"startTime":1776992742152,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":2331,"timestamp":7385795965535,"id":3057,"parentId":3045,"tags":{},"startTime":1776992742152,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":15440,"timestamp":7385795955105,"id":3045,"parentId":2998,"tags":{},"startTime":1776992742142,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":113535,"timestamp":7385795861615,"id":2998,"parentId":2996,"tags":{"name":"server"},"startTime":1776992742048,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":3504,"timestamp":7385795975184,"id":3058,"parentId":2996,"tags":{},"startTime":1776992742162,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":126577,"timestamp":7385795852367,"id":2996,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992742039,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":2890,"timestamp":7385795992068,"id":3069,"parentId":3060,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":624,"timestamp":7385795995426,"id":3079,"parentId":3077,"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(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992742182,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":4775,"timestamp":7385795992092,"id":3078,"parentId":3060,"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":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":5531,"timestamp":7385795992083,"id":3075,"parentId":3060,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":9739,"timestamp":7385795992015,"id":3061,"parentId":3060,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":9711,"timestamp":7385795992052,"id":3063,"parentId":3060,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10452,"timestamp":7385795992075,"id":3072,"parentId":3060,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10518,"timestamp":7385795992080,"id":3074,"parentId":3060,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10586,"timestamp":7385795992087,"id":3076,"parentId":3060,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":11152,"timestamp":7385795992060,"id":3066,"parentId":3060,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12119,"timestamp":7385795992077,"id":3073,"parentId":3060,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12240,"timestamp":7385795992070,"id":3070,"parentId":3060,"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":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":13341,"timestamp":7385795992058,"id":3065,"parentId":3060,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":15997,"timestamp":7385795992063,"id":3067,"parentId":3060,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17611,"timestamp":7385795992073,"id":3071,"parentId":3060,"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":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":18054,"timestamp":7385795992055,"id":3064,"parentId":3060,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":18051,"timestamp":7385795992066,"id":3068,"parentId":3060,"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":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":19220,"timestamp":7385795992048,"id":3062,"parentId":3060,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9726,"timestamp":7385796005771,"id":3082,"parentId":3081,"tags":{},"startTime":1776992742193,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9795,"timestamp":7385796005706,"id":3081,"parentId":3080,"tags":{},"startTime":1776992742192,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":17037,"timestamp":7385796005465,"id":3080,"parentId":3079,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"app-pages-browser"},"startTime":1776992742192,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":36681,"timestamp":7385795992089,"id":3077,"parentId":3060,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992742179,"traceId":"27fab7e1c891f919"},{"name":"make","duration":47140,"timestamp":7385795981669,"id":3060,"parentId":3059,"tags":{},"startTime":1776992742168,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1302,"timestamp":7385796035348,"id":3084,"parentId":3083,"tags":{},"startTime":1776992742222,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":43,"timestamp":7385796036668,"id":3086,"parentId":3083,"tags":{},"startTime":1776992742223,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":31,"timestamp":7385796036722,"id":3087,"parentId":3083,"tags":{},"startTime":1776992742223,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":3,"timestamp":7385796036767,"id":3088,"parentId":3083,"tags":{},"startTime":1776992742224,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385796036781,"id":3089,"parentId":3083,"tags":{},"startTime":1776992742224,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":909,"timestamp":7385796036663,"id":3085,"parentId":3083,"tags":{},"startTime":1776992742223,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":6416,"timestamp":7385796040661,"id":3090,"parentId":3083,"tags":{},"startTime":1776992742227,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":4603,"timestamp":7385796047176,"id":3091,"parentId":3083,"tags":{},"startTime":1776992742234,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":4661,"timestamp":7385796053773,"id":3092,"parentId":3083,"tags":{},"startTime":1776992742241,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":99,"timestamp":7385796058433,"id":3093,"parentId":3083,"tags":{},"startTime":1776992742245,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":62,"timestamp":7385796058524,"id":3094,"parentId":3083,"tags":{},"startTime":1776992742245,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":2454,"timestamp":7385796058588,"id":3095,"parentId":3083,"tags":{},"startTime":1776992742245,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":119,"timestamp":7385796062841,"id":3097,"parentId":3059,"tags":{},"startTime":1776992742250,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":180,"timestamp":7385796062783,"id":3096,"parentId":3059,"tags":{},"startTime":1776992742250,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":33366,"timestamp":7385796033579,"id":3083,"parentId":3059,"tags":{},"startTime":1776992742220,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":85567,"timestamp":7385795981424,"id":3059,"parentId":3040,"tags":{"name":"client"},"startTime":1776992742168,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":4877,"timestamp":7385796067045,"id":3098,"parentId":3040,"tags":{},"startTime":1776992742254,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":219894,"timestamp":7385795852449,"id":2997,"tags":{"trigger":"/strategy","isTurbopack":false},"startTime":1776992742039,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":155537,"timestamp":7385795917171,"id":3040,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992742104,"traceId":"27fab7e1c891f919"}] -[{"name":"client-success","duration":3,"timestamp":7385796076163,"id":3099,"parentId":3,"tags":{},"startTime":1776992742263,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":4,"timestamp":7385796113440,"id":3100,"parentId":3,"tags":{},"startTime":1776992742300,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":265496,"timestamp":7385795849916,"id":2995,"tags":{"url":"/strategy?_rsc=1oe23","isTurbopack":false},"startTime":1776992742037,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":3,"timestamp":7385796115494,"id":3101,"parentId":2995,"tags":{"url":"/strategy?_rsc=1oe23","memory.rss":"253263872","memory.heapUsed":"274995072","memory.heapTotal":"311181312"},"startTime":1776992742302,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":206000,"timestamp":7385795919619,"id":3103,"parentId":3,"tags":{"updatedModules":[],"page":"/recommendations","isPageHidden":false},"startTime":1776992742313,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":205000,"timestamp":7385795919853,"id":3104,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1776992742315,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":16025,"timestamp":7385796122268,"id":3102,"tags":{"url":"/strategy?_rsc=g4vg8","isTurbopack":false},"startTime":1776992742309,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385796138316,"id":3105,"parentId":3102,"tags":{"url":"/strategy?_rsc=g4vg8","memory.rss":"253607936","memory.heapUsed":"278089240","memory.heapTotal":"311181312"},"startTime":1776992742325,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10851,"timestamp":7385796994497,"id":3116,"parentId":3110,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%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":1776992743181,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10859,"timestamp":7385796994500,"id":3117,"parentId":3110,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%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":1776992743181,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10859,"timestamp":7385796994502,"id":3118,"parentId":3110,"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":1776992743181,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10859,"timestamp":7385796994504,"id":3119,"parentId":3110,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%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":1776992743181,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10859,"timestamp":7385796994507,"id":3120,"parentId":3110,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776992743181,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":11453,"timestamp":7385796994495,"id":3115,"parentId":3110,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%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":1776992743181,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":13889,"timestamp":7385796994489,"id":3113,"parentId":3110,"tags":{"request":"next/dist/pages/_document"},"startTime":1776992743181,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14055,"timestamp":7385796994482,"id":3112,"parentId":3110,"tags":{"request":"next/dist/pages/_app"},"startTime":1776992743181,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14049,"timestamp":7385796994492,"id":3114,"parentId":3110,"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":1776992743181,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14115,"timestamp":7385796994429,"id":3111,"parentId":3110,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776992743181,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":14460,"timestamp":7385797004812,"id":3122,"parentId":3121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%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":1776992743192,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3415,"timestamp":7385797021861,"id":3125,"parentId":3124,"tags":{},"startTime":1776992743209,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3478,"timestamp":7385797021802,"id":3124,"parentId":3123,"tags":{},"startTime":1776992743209,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":3966,"timestamp":7385797021660,"id":3123,"parentId":3122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"rsc"},"startTime":1776992743208,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":33133,"timestamp":7385796994509,"id":3121,"parentId":3110,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%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":1776992743181,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":553,"timestamp":7385797045399,"id":3157,"parentId":3109,"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(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992743232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10277,"timestamp":7385797048040,"id":3160,"parentId":3159,"tags":{},"startTime":1776992743235,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10362,"timestamp":7385797047960,"id":3159,"parentId":3158,"tags":{},"startTime":1776992743235,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":18831,"timestamp":7385797047665,"id":3158,"parentId":3157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"ssr"},"startTime":1776992743234,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3474,"timestamp":7385797079570,"id":3162,"parentId":3161,"tags":{},"startTime":1776992743266,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1073,"timestamp":7385797082843,"id":3165,"parentId":3163,"tags":{},"startTime":1776992743270,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385797083925,"id":3170,"parentId":3163,"tags":{},"startTime":1776992743271,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2424,"timestamp":7385797082697,"id":3163,"parentId":3158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"ssr"},"startTime":1776992743269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5779,"timestamp":7385797082915,"id":3167,"parentId":3166,"tags":{},"startTime":1776992743270,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5842,"timestamp":7385797082856,"id":3166,"parentId":3164,"tags":{},"startTime":1776992743270,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":6650,"timestamp":7385797082780,"id":3164,"parentId":3158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/error-boundary.tsx","layer":"ssr"},"startTime":1776992743270,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6368,"timestamp":7385797083104,"id":3169,"parentId":3168,"tags":{},"startTime":1776992743270,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6417,"timestamp":7385797083057,"id":3168,"parentId":3161,"tags":{},"startTime":1776992743270,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11585,"timestamp":7385797079374,"id":3161,"parentId":3158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.js","layer":"ssr"},"startTime":1776992743266,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2963,"timestamp":7385797091483,"id":3180,"parentId":3174,"tags":{},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":54,"timestamp":7385797094462,"id":3183,"parentId":3174,"tags":{},"startTime":1776992743281,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3569,"timestamp":7385797091331,"id":3174,"parentId":3163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"ssr"},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3442,"timestamp":7385797091478,"id":3179,"parentId":3173,"tags":{},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797094925,"id":3184,"parentId":3173,"tags":{},"startTime":1776992743282,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3803,"timestamp":7385797091289,"id":3173,"parentId":3163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"ssr"},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3630,"timestamp":7385797091472,"id":3178,"parentId":3172,"tags":{},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797095108,"id":3185,"parentId":3172,"tags":{},"startTime":1776992743282,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4080,"timestamp":7385797091243,"id":3172,"parentId":3163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"ssr"},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3744,"timestamp":7385797091586,"id":3181,"parentId":3175,"tags":{},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797095334,"id":3186,"parentId":3175,"tags":{},"startTime":1776992743282,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4078,"timestamp":7385797091369,"id":3175,"parentId":3163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"ssr"},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3835,"timestamp":7385797091616,"id":3182,"parentId":3176,"tags":{},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797095455,"id":3187,"parentId":3176,"tags":{},"startTime":1776992743282,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4292,"timestamp":7385797091409,"id":3176,"parentId":3163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"ssr"},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":7087,"timestamp":7385797091458,"id":3177,"parentId":3171,"tags":{},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797098553,"id":3188,"parentId":3171,"tags":{},"startTime":1776992743285,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8080,"timestamp":7385797091143,"id":3171,"parentId":3163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"ssr"},"startTime":1776992743278,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19174,"timestamp":7385797101401,"id":3190,"parentId":3189,"tags":{},"startTime":1776992743288,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797120587,"id":3315,"parentId":3189,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20066,"timestamp":7385797101312,"id":3189,"parentId":3172,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"ssr"},"startTime":1776992743288,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19301,"timestamp":7385797104445,"id":3200,"parentId":3194,"tags":{},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797123754,"id":3316,"parentId":3194,"tags":{},"startTime":1776992743310,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19647,"timestamp":7385797104304,"id":3194,"parentId":3173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"ssr"},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19525,"timestamp":7385797104434,"id":3199,"parentId":3193,"tags":{},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797123963,"id":3317,"parentId":3193,"tags":{},"startTime":1776992743311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19832,"timestamp":7385797104262,"id":3193,"parentId":3173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"ssr"},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19646,"timestamp":7385797104453,"id":3202,"parentId":3196,"tags":{},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797124102,"id":3318,"parentId":3196,"tags":{},"startTime":1776992743311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19979,"timestamp":7385797104381,"id":3196,"parentId":3172,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"ssr"},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19935,"timestamp":7385797104430,"id":3198,"parentId":3192,"tags":{},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797124373,"id":3319,"parentId":3192,"tags":{},"startTime":1776992743311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20600,"timestamp":7385797104219,"id":3192,"parentId":3171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"ssr"},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20403,"timestamp":7385797104422,"id":3197,"parentId":3191,"tags":{},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":138,"timestamp":7385797124828,"id":3320,"parentId":3191,"tags":{},"startTime":1776992743312,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38185,"timestamp":7385797104158,"id":3191,"parentId":3171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"ssr"},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":24777,"timestamp":7385797117598,"id":3208,"parentId":3204,"tags":{},"startTime":1776992743304,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":64,"timestamp":7385797142386,"id":3321,"parentId":3204,"tags":{},"startTime":1776992743329,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25401,"timestamp":7385797117394,"id":3204,"parentId":3171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"ssr"},"startTime":1776992743304,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38353,"timestamp":7385797104450,"id":3201,"parentId":3195,"tags":{},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":47,"timestamp":7385797142808,"id":3322,"parentId":3195,"tags":{},"startTime":1776992743330,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41364,"timestamp":7385797104343,"id":3195,"parentId":3175,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"ssr"},"startTime":1776992743291,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":30374,"timestamp":7385797117580,"id":3207,"parentId":3203,"tags":{},"startTime":1776992743304,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797147968,"id":3323,"parentId":3203,"tags":{},"startTime":1776992743335,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31864,"timestamp":7385797117039,"id":3203,"parentId":3171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"ssr"},"startTime":1776992743304,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":31311,"timestamp":7385797117607,"id":3209,"parentId":3205,"tags":{},"startTime":1776992743304,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":51,"timestamp":7385797148928,"id":3324,"parentId":3205,"tags":{},"startTime":1776992743336,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32231,"timestamp":7385797117458,"id":3205,"parentId":3171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"ssr"},"startTime":1776992743304,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32085,"timestamp":7385797117612,"id":3210,"parentId":3206,"tags":{},"startTime":1776992743304,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":45,"timestamp":7385797149714,"id":3325,"parentId":3206,"tags":{},"startTime":1776992743336,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33856,"timestamp":7385797117500,"id":3206,"parentId":3171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"ssr"},"startTime":1776992743304,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":31669,"timestamp":7385797120347,"id":3263,"parentId":3211,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44,"timestamp":7385797152023,"id":3326,"parentId":3211,"tags":{},"startTime":1776992743339,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33855,"timestamp":7385797118385,"id":3211,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"ssr"},"startTime":1776992743305,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":31894,"timestamp":7385797120365,"id":3265,"parentId":3213,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797152262,"id":3327,"parentId":3213,"tags":{},"startTime":1776992743339,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33918,"timestamp":7385797118497,"id":3213,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"ssr"},"startTime":1776992743305,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32061,"timestamp":7385797120358,"id":3264,"parentId":3212,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797152423,"id":3328,"parentId":3212,"tags":{},"startTime":1776992743339,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34172,"timestamp":7385797118433,"id":3212,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"ssr"},"startTime":1776992743305,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":35175,"timestamp":7385797120384,"id":3268,"parentId":3216,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797155570,"id":3329,"parentId":3216,"tags":{},"startTime":1776992743342,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37314,"timestamp":7385797118618,"id":3216,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"ssr"},"startTime":1776992743305,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":35567,"timestamp":7385797120372,"id":3266,"parentId":3214,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":31,"timestamp":7385797156085,"id":3330,"parentId":3214,"tags":{},"startTime":1776992743343,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37746,"timestamp":7385797118539,"id":3214,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"ssr"},"startTime":1776992743305,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":35902,"timestamp":7385797120388,"id":3269,"parentId":3217,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797156294,"id":3331,"parentId":3217,"tags":{},"startTime":1776992743343,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37792,"timestamp":7385797118657,"id":3217,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"ssr"},"startTime":1776992743305,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36073,"timestamp":7385797120379,"id":3267,"parentId":3215,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797156455,"id":3332,"parentId":3215,"tags":{},"startTime":1776992743343,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38030,"timestamp":7385797118580,"id":3215,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"ssr"},"startTime":1776992743305,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36243,"timestamp":7385797120397,"id":3271,"parentId":3219,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797156649,"id":3333,"parentId":3219,"tags":{},"startTime":1776992743343,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38159,"timestamp":7385797118731,"id":3219,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"ssr"},"startTime":1776992743305,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36546,"timestamp":7385797120406,"id":3273,"parentId":3221,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797156959,"id":3334,"parentId":3221,"tags":{},"startTime":1776992743344,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38319,"timestamp":7385797118805,"id":3221,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36728,"timestamp":7385797120410,"id":3274,"parentId":3222,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797157141,"id":3335,"parentId":3222,"tags":{},"startTime":1776992743344,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38451,"timestamp":7385797118842,"id":3222,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36900,"timestamp":7385797120401,"id":3272,"parentId":3220,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797157305,"id":3336,"parentId":3220,"tags":{},"startTime":1776992743344,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38633,"timestamp":7385797118768,"id":3220,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37012,"timestamp":7385797120393,"id":3270,"parentId":3218,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797157408,"id":3337,"parentId":3218,"tags":{},"startTime":1776992743344,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38825,"timestamp":7385797118694,"id":3218,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"ssr"},"startTime":1776992743305,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37097,"timestamp":7385797120427,"id":3279,"parentId":3227,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797157526,"id":3338,"parentId":3227,"tags":{},"startTime":1776992743344,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38629,"timestamp":7385797119030,"id":3227,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37248,"timestamp":7385797120413,"id":3275,"parentId":3223,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797157664,"id":3339,"parentId":3223,"tags":{},"startTime":1776992743344,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39055,"timestamp":7385797118879,"id":3223,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37521,"timestamp":7385797120416,"id":3276,"parentId":3224,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797157941,"id":3340,"parentId":3224,"tags":{},"startTime":1776992743345,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39133,"timestamp":7385797118916,"id":3224,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37619,"timestamp":7385797120433,"id":3281,"parentId":3229,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797158056,"id":3341,"parentId":3229,"tags":{},"startTime":1776992743345,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39040,"timestamp":7385797119108,"id":3229,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37732,"timestamp":7385797120420,"id":3277,"parentId":3225,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797158155,"id":3342,"parentId":3225,"tags":{},"startTime":1776992743345,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39324,"timestamp":7385797118953,"id":3225,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37850,"timestamp":7385797120430,"id":3280,"parentId":3228,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797158284,"id":3343,"parentId":3228,"tags":{},"startTime":1776992743345,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39323,"timestamp":7385797119070,"id":3228,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37974,"timestamp":7385797120423,"id":3278,"parentId":3226,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25,"timestamp":7385797158400,"id":3344,"parentId":3226,"tags":{},"startTime":1776992743345,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39507,"timestamp":7385797118990,"id":3226,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38064,"timestamp":7385797120437,"id":3282,"parentId":3230,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797158503,"id":3345,"parentId":3230,"tags":{},"startTime":1776992743345,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39470,"timestamp":7385797119145,"id":3230,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38178,"timestamp":7385797120439,"id":3283,"parentId":3231,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797158620,"id":3346,"parentId":3231,"tags":{},"startTime":1776992743345,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39568,"timestamp":7385797119184,"id":3231,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38306,"timestamp":7385797120448,"id":3286,"parentId":3234,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797158757,"id":3347,"parentId":3234,"tags":{},"startTime":1776992743345,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39556,"timestamp":7385797119296,"id":3234,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38412,"timestamp":7385797120443,"id":3284,"parentId":3232,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797158857,"id":3348,"parentId":3232,"tags":{},"startTime":1776992743346,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39720,"timestamp":7385797119222,"id":3232,"parentId":3174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38499,"timestamp":7385797120445,"id":3285,"parentId":3233,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797158947,"id":3349,"parentId":3233,"tags":{},"startTime":1776992743346,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39979,"timestamp":7385797119258,"id":3233,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38787,"timestamp":7385797120454,"id":3288,"parentId":3236,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797159243,"id":3350,"parentId":3236,"tags":{},"startTime":1776992743346,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40002,"timestamp":7385797119370,"id":3236,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38925,"timestamp":7385797120451,"id":3287,"parentId":3235,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797159378,"id":3351,"parentId":3235,"tags":{},"startTime":1776992743346,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40380,"timestamp":7385797119333,"id":3235,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":39292,"timestamp":7385797120456,"id":3289,"parentId":3237,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":45,"timestamp":7385797159758,"id":3352,"parentId":3237,"tags":{},"startTime":1776992743346,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40951,"timestamp":7385797119406,"id":3237,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":39904,"timestamp":7385797120461,"id":3291,"parentId":3239,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797160370,"id":3353,"parentId":3239,"tags":{},"startTime":1776992743347,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41182,"timestamp":7385797119480,"id":3239,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":40213,"timestamp":7385797120459,"id":3290,"parentId":3238,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797160677,"id":3354,"parentId":3238,"tags":{},"startTime":1776992743347,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41538,"timestamp":7385797119443,"id":3238,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":40521,"timestamp":7385797120469,"id":3294,"parentId":3242,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797160994,"id":3355,"parentId":3242,"tags":{},"startTime":1776992743348,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41565,"timestamp":7385797119589,"id":3242,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":40688,"timestamp":7385797120471,"id":3295,"parentId":3243,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797161163,"id":3356,"parentId":3243,"tags":{},"startTime":1776992743348,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41902,"timestamp":7385797119625,"id":3243,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41063,"timestamp":7385797120474,"id":3296,"parentId":3244,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797161543,"id":3357,"parentId":3244,"tags":{},"startTime":1776992743348,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42137,"timestamp":7385797119660,"id":3244,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41337,"timestamp":7385797120466,"id":3293,"parentId":3241,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797161807,"id":3358,"parentId":3241,"tags":{},"startTime":1776992743349,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42406,"timestamp":7385797119553,"id":3241,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41487,"timestamp":7385797120477,"id":3297,"parentId":3245,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797161968,"id":3359,"parentId":3245,"tags":{},"startTime":1776992743349,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42531,"timestamp":7385797119695,"id":3245,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41747,"timestamp":7385797120482,"id":3299,"parentId":3247,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797162233,"id":3360,"parentId":3247,"tags":{},"startTime":1776992743349,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42591,"timestamp":7385797119764,"id":3247,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41896,"timestamp":7385797120464,"id":3292,"parentId":3240,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797162363,"id":3361,"parentId":3240,"tags":{},"startTime":1776992743349,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43075,"timestamp":7385797119515,"id":3240,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42120,"timestamp":7385797120487,"id":3301,"parentId":3249,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797162613,"id":3362,"parentId":3249,"tags":{},"startTime":1776992743349,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42962,"timestamp":7385797119834,"id":3249,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42311,"timestamp":7385797120490,"id":3302,"parentId":3250,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797162805,"id":3363,"parentId":3250,"tags":{},"startTime":1776992743350,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43071,"timestamp":7385797119871,"id":3250,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"}] -[{"name":"read-resource","duration":42537,"timestamp":7385797120495,"id":3304,"parentId":3252,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797163035,"id":3364,"parentId":3252,"tags":{},"startTime":1776992743350,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43247,"timestamp":7385797119942,"id":3252,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42708,"timestamp":7385797120485,"id":3300,"parentId":3248,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797163196,"id":3365,"parentId":3248,"tags":{},"startTime":1776992743350,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43521,"timestamp":7385797119800,"id":3248,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42827,"timestamp":7385797120497,"id":3305,"parentId":3253,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797163328,"id":3366,"parentId":3253,"tags":{},"startTime":1776992743350,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43497,"timestamp":7385797119978,"id":3253,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42999,"timestamp":7385797120479,"id":3298,"parentId":3246,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797163482,"id":3367,"parentId":3246,"tags":{},"startTime":1776992743350,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44483,"timestamp":7385797119730,"id":3246,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"ssr"},"startTime":1776992743306,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":43719,"timestamp":7385797120499,"id":3306,"parentId":3254,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797164222,"id":3368,"parentId":3254,"tags":{},"startTime":1776992743351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44346,"timestamp":7385797120013,"id":3254,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":43860,"timestamp":7385797120504,"id":3308,"parentId":3256,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797164367,"id":3369,"parentId":3256,"tags":{},"startTime":1776992743351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44556,"timestamp":7385797120087,"id":3256,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44145,"timestamp":7385797120502,"id":3307,"parentId":3255,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797164653,"id":3370,"parentId":3255,"tags":{},"startTime":1776992743351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44711,"timestamp":7385797120049,"id":3255,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44258,"timestamp":7385797120506,"id":3309,"parentId":3257,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797164772,"id":3371,"parentId":3257,"tags":{},"startTime":1776992743352,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44751,"timestamp":7385797120129,"id":3257,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44377,"timestamp":7385797120508,"id":3310,"parentId":3258,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797164888,"id":3372,"parentId":3258,"tags":{},"startTime":1776992743352,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44844,"timestamp":7385797120164,"id":3258,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44501,"timestamp":7385797120511,"id":3311,"parentId":3259,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797165014,"id":3373,"parentId":3259,"tags":{},"startTime":1776992743352,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44998,"timestamp":7385797120201,"id":3259,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44717,"timestamp":7385797120493,"id":3303,"parentId":3251,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797165214,"id":3374,"parentId":3251,"tags":{},"startTime":1776992743352,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45455,"timestamp":7385797119906,"id":3251,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44850,"timestamp":7385797120515,"id":3313,"parentId":3261,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797165369,"id":3375,"parentId":3261,"tags":{},"startTime":1776992743352,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45199,"timestamp":7385797120271,"id":3261,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44960,"timestamp":7385797120513,"id":3312,"parentId":3260,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":48,"timestamp":7385797165476,"id":3376,"parentId":3260,"tags":{},"startTime":1776992743352,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45381,"timestamp":7385797120236,"id":3260,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":45105,"timestamp":7385797120517,"id":3314,"parentId":3262,"tags":{},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797165626,"id":3377,"parentId":3262,"tags":{},"startTime":1776992743352,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45441,"timestamp":7385797120307,"id":3262,"parentId":3176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"ssr"},"startTime":1776992743307,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":25268,"timestamp":7385797251544,"id":3401,"parentId":3382,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":69,"timestamp":7385797276839,"id":3562,"parentId":3382,"tags":{},"startTime":1776992743464,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27860,"timestamp":7385797249891,"id":3382,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"ssr"},"startTime":1776992743437,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26247,"timestamp":7385797251523,"id":3398,"parentId":3379,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":54,"timestamp":7385797277777,"id":3563,"parentId":3379,"tags":{},"startTime":1776992743465,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32221,"timestamp":7385797248271,"id":3379,"parentId":3196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"ssr"},"startTime":1776992743435,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28974,"timestamp":7385797251530,"id":3399,"parentId":3380,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":64,"timestamp":7385797280510,"id":3564,"parentId":3380,"tags":{},"startTime":1776992743467,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35235,"timestamp":7385797249417,"id":3380,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"ssr"},"startTime":1776992743436,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33131,"timestamp":7385797251538,"id":3400,"parentId":3381,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":49,"timestamp":7385797284677,"id":3565,"parentId":3381,"tags":{},"startTime":1776992743471,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35467,"timestamp":7385797249510,"id":3381,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"ssr"},"startTime":1776992743436,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33490,"timestamp":7385797251494,"id":3397,"parentId":3378,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797284988,"id":3566,"parentId":3378,"tags":{},"startTime":1776992743472,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37595,"timestamp":7385797248120,"id":3378,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"ssr"},"startTime":1776992743435,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34165,"timestamp":7385797251559,"id":3404,"parentId":3385,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797285729,"id":3567,"parentId":3385,"tags":{},"startTime":1776992743472,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35393,"timestamp":7385797250514,"id":3385,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"ssr"},"startTime":1776992743437,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34364,"timestamp":7385797251549,"id":3402,"parentId":3383,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":48,"timestamp":7385797285917,"id":3568,"parentId":3383,"tags":{},"startTime":1776992743473,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37343,"timestamp":7385797249969,"id":3383,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"ssr"},"startTime":1776992743437,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":35775,"timestamp":7385797251563,"id":3405,"parentId":3386,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":68,"timestamp":7385797287349,"id":3569,"parentId":3386,"tags":{},"startTime":1776992743474,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37333,"timestamp":7385797250570,"id":3386,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"ssr"},"startTime":1776992743437,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36343,"timestamp":7385797251570,"id":3407,"parentId":3388,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46,"timestamp":7385797287919,"id":3570,"parentId":3388,"tags":{},"startTime":1776992743475,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37172,"timestamp":7385797250901,"id":3388,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"ssr"},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36506,"timestamp":7385797251573,"id":3408,"parentId":3389,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797288084,"id":3571,"parentId":3389,"tags":{},"startTime":1776992743475,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37296,"timestamp":7385797250959,"id":3389,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"ssr"},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36683,"timestamp":7385797251577,"id":3409,"parentId":3390,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797288264,"id":3572,"parentId":3390,"tags":{},"startTime":1776992743475,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37356,"timestamp":7385797251039,"id":3390,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"ssr"},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36845,"timestamp":7385797251554,"id":3403,"parentId":3384,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":59,"timestamp":7385797288403,"id":3573,"parentId":3384,"tags":{},"startTime":1776992743475,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":47268,"timestamp":7385797250032,"id":3384,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"ssr"},"startTime":1776992743437,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":45739,"timestamp":7385797251580,"id":3410,"parentId":3391,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":59,"timestamp":7385797297330,"id":3574,"parentId":3391,"tags":{},"startTime":1776992743484,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":47059,"timestamp":7385797251090,"id":3391,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"ssr"},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":46575,"timestamp":7385797251590,"id":3413,"parentId":3394,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":110,"timestamp":7385797298173,"id":3575,"parentId":3394,"tags":{},"startTime":1776992743485,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":49814,"timestamp":7385797251243,"id":3394,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"ssr"},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":49498,"timestamp":7385797251583,"id":3411,"parentId":3392,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":71,"timestamp":7385797301093,"id":3576,"parentId":3392,"tags":{},"startTime":1776992743488,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":53361,"timestamp":7385797251144,"id":3392,"parentId":3196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"ssr"},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":52983,"timestamp":7385797251567,"id":3406,"parentId":3387,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":51,"timestamp":7385797304561,"id":3577,"parentId":3387,"tags":{},"startTime":1776992743491,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":54149,"timestamp":7385797250648,"id":3387,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"ssr"},"startTime":1776992743437,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":53219,"timestamp":7385797251593,"id":3414,"parentId":3395,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46,"timestamp":7385797304817,"id":3578,"parentId":3395,"tags":{},"startTime":1776992743492,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":53761,"timestamp":7385797251341,"id":3395,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"ssr"},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":53515,"timestamp":7385797251596,"id":3415,"parentId":3396,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":59,"timestamp":7385797305116,"id":3579,"parentId":3396,"tags":{},"startTime":1776992743492,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":57002,"timestamp":7385797251393,"id":3396,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"ssr"},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":56821,"timestamp":7385797251587,"id":3412,"parentId":3393,"tags":{},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385797308415,"id":3580,"parentId":3393,"tags":{},"startTime":1776992743495,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":57850,"timestamp":7385797251193,"id":3393,"parentId":3192,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"ssr"},"startTime":1776992743438,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":45353,"timestamp":7385797266989,"id":3459,"parentId":3418,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":56,"timestamp":7385797312352,"id":3581,"parentId":3418,"tags":{},"startTime":1776992743499,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":50024,"timestamp":7385797264582,"id":3418,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"ssr"},"startTime":1776992743451,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":52651,"timestamp":7385797266980,"id":3458,"parentId":3417,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":191,"timestamp":7385797319746,"id":3582,"parentId":3417,"tags":{},"startTime":1776992743506,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":58345,"timestamp":7385797264494,"id":3417,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"ssr"},"startTime":1776992743451,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":55906,"timestamp":7385797266996,"id":3460,"parentId":3419,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":71,"timestamp":7385797322924,"id":3583,"parentId":3419,"tags":{},"startTime":1776992743510,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":59908,"timestamp":7385797264644,"id":3419,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"ssr"},"startTime":1776992743451,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":57690,"timestamp":7385797266944,"id":3457,"parentId":3416,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":60,"timestamp":7385797324644,"id":3584,"parentId":3416,"tags":{},"startTime":1776992743511,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":64091,"timestamp":7385797264349,"id":3416,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"ssr"},"startTime":1776992743451,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":61473,"timestamp":7385797267009,"id":3462,"parentId":3421,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":78,"timestamp":7385797328495,"id":3585,"parentId":3421,"tags":{},"startTime":1776992743515,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":66664,"timestamp":7385797264773,"id":3421,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":64443,"timestamp":7385797267018,"id":3464,"parentId":3423,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":237,"timestamp":7385797331472,"id":3586,"parentId":3423,"tags":{},"startTime":1776992743518,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":67597,"timestamp":7385797264895,"id":3423,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":65483,"timestamp":7385797267023,"id":3465,"parentId":3424,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":91,"timestamp":7385797332514,"id":3587,"parentId":3424,"tags":{},"startTime":1776992743519,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":67771,"timestamp":7385797264985,"id":3424,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":65735,"timestamp":7385797267028,"id":3466,"parentId":3425,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":75,"timestamp":7385797332769,"id":3588,"parentId":3425,"tags":{},"startTime":1776992743520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":67858,"timestamp":7385797265090,"id":3425,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":65940,"timestamp":7385797267014,"id":3463,"parentId":3422,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797332960,"id":3589,"parentId":3422,"tags":{},"startTime":1776992743520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":68975,"timestamp":7385797264835,"id":3422,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":66843,"timestamp":7385797267038,"id":3468,"parentId":3427,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":84,"timestamp":7385797333974,"id":3590,"parentId":3427,"tags":{},"startTime":1776992743521,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":70758,"timestamp":7385797265209,"id":3427,"parentId":3195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":68953,"timestamp":7385797267042,"id":3469,"parentId":3428,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":58,"timestamp":7385797336005,"id":3591,"parentId":3428,"tags":{},"startTime":1776992743523,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":72492,"timestamp":7385797265265,"id":3428,"parentId":3195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":70746,"timestamp":7385797267033,"id":3467,"parentId":3426,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":67,"timestamp":7385797337789,"id":3592,"parentId":3426,"tags":{},"startTime":1776992743525,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":74464,"timestamp":7385797265152,"id":3426,"parentId":3204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":72415,"timestamp":7385797267218,"id":3472,"parentId":3431,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":59,"timestamp":7385797339641,"id":3593,"parentId":3431,"tags":{},"startTime":1776992743526,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":78685,"timestamp":7385797265432,"id":3431,"parentId":3205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":76937,"timestamp":7385797267209,"id":3471,"parentId":3430,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":123,"timestamp":7385797344157,"id":3594,"parentId":3430,"tags":{},"startTime":1776992743531,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":80539,"timestamp":7385797265379,"id":3430,"parentId":3203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":78887,"timestamp":7385797267049,"id":3470,"parentId":3429,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":72,"timestamp":7385797345944,"id":3595,"parentId":3429,"tags":{},"startTime":1776992743533,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":81612,"timestamp":7385797265319,"id":3429,"parentId":3195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":79715,"timestamp":7385797267233,"id":3475,"parentId":3434,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":61,"timestamp":7385797346956,"id":3596,"parentId":3434,"tags":{},"startTime":1776992743534,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":81865,"timestamp":7385797265588,"id":3434,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":80239,"timestamp":7385797267224,"id":3473,"parentId":3432,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46,"timestamp":7385797347469,"id":3597,"parentId":3432,"tags":{},"startTime":1776992743534,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":82809,"timestamp":7385797265485,"id":3432,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":81095,"timestamp":7385797267243,"id":3477,"parentId":3436,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":77,"timestamp":7385797348351,"id":3598,"parentId":3436,"tags":{},"startTime":1776992743535,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":83260,"timestamp":7385797265692,"id":3436,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":81714,"timestamp":7385797267247,"id":3478,"parentId":3437,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50,"timestamp":7385797348966,"id":3599,"parentId":3437,"tags":{},"startTime":1776992743536,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":83614,"timestamp":7385797265741,"id":3437,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":82133,"timestamp":7385797267229,"id":3474,"parentId":3433,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797349367,"id":3600,"parentId":3433,"tags":{},"startTime":1776992743536,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":83988,"timestamp":7385797265537,"id":3433,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":82292,"timestamp":7385797267238,"id":3476,"parentId":3435,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":59,"timestamp":7385797349534,"id":3601,"parentId":3435,"tags":{},"startTime":1776992743536,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":84786,"timestamp":7385797265640,"id":3435,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"ssr"},"startTime":1776992743452,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":83179,"timestamp":7385797267253,"id":3479,"parentId":3438,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":48,"timestamp":7385797350436,"id":3602,"parentId":3438,"tags":{},"startTime":1776992743537,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":84875,"timestamp":7385797265791,"id":3438,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":83667,"timestamp":7385797267004,"id":3461,"parentId":3420,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":59,"timestamp":7385797350676,"id":3603,"parentId":3420,"tags":{},"startTime":1776992743537,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":86517,"timestamp":7385797264702,"id":3420,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"ssr"},"startTime":1776992743451,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":83961,"timestamp":7385797267263,"id":3481,"parentId":3440,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":51,"timestamp":7385797351229,"id":3604,"parentId":3440,"tags":{},"startTime":1776992743538,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":86146,"timestamp":7385797265892,"id":3440,"parentId":3211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":84801,"timestamp":7385797267256,"id":3480,"parentId":3439,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":72,"timestamp":7385797352066,"id":3605,"parentId":3439,"tags":{},"startTime":1776992743539,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":87122,"timestamp":7385797265841,"id":3439,"parentId":3206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":85724,"timestamp":7385797267272,"id":3483,"parentId":3442,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":61,"timestamp":7385797353004,"id":3606,"parentId":3442,"tags":{},"startTime":1776992743540,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":87467,"timestamp":7385797265994,"id":3442,"parentId":3213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":86194,"timestamp":7385797267276,"id":3484,"parentId":3443,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":81,"timestamp":7385797353475,"id":3607,"parentId":3443,"tags":{},"startTime":1776992743540,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":96073,"timestamp":7385797266048,"id":3443,"parentId":3211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":94861,"timestamp":7385797267289,"id":3487,"parentId":3446,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":120,"timestamp":7385797362162,"id":3608,"parentId":3446,"tags":{},"startTime":1776992743549,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":107368,"timestamp":7385797266280,"id":3446,"parentId":3212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":106394,"timestamp":7385797267285,"id":3486,"parentId":3445,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":58,"timestamp":7385797373691,"id":3609,"parentId":3445,"tags":{},"startTime":1776992743560,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":107879,"timestamp":7385797266230,"id":3445,"parentId":3212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":106862,"timestamp":7385797267268,"id":3482,"parentId":3441,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797374137,"id":3610,"parentId":3441,"tags":{},"startTime":1776992743561,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":108565,"timestamp":7385797265943,"id":3441,"parentId":3211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":107234,"timestamp":7385797267280,"id":3485,"parentId":3444,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50,"timestamp":7385797374521,"id":3611,"parentId":3444,"tags":{},"startTime":1776992743561,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":111058,"timestamp":7385797266175,"id":3444,"parentId":3213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":109981,"timestamp":7385797267306,"id":3492,"parentId":3451,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":291,"timestamp":7385797377321,"id":3612,"parentId":3451,"tags":{},"startTime":1776992743564,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":112786,"timestamp":7385797266545,"id":3451,"parentId":3216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":112050,"timestamp":7385797267310,"id":3493,"parentId":3452,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":57,"timestamp":7385797379373,"id":3613,"parentId":3452,"tags":{},"startTime":1776992743566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":113243,"timestamp":7385797266597,"id":3452,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":112560,"timestamp":7385797267292,"id":3488,"parentId":3447,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":57,"timestamp":7385797379859,"id":3614,"parentId":3447,"tags":{},"startTime":1776992743567,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":114260,"timestamp":7385797266333,"id":3447,"parentId":3216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":113316,"timestamp":7385797267296,"id":3489,"parentId":3448,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":137,"timestamp":7385797380770,"id":3615,"parentId":3448,"tags":{},"startTime":1776992743568,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":114973,"timestamp":7385797266383,"id":3448,"parentId":3216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":114068,"timestamp":7385797267300,"id":3490,"parentId":3449,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":171,"timestamp":7385797381375,"id":3616,"parentId":3449,"tags":{},"startTime":1776992743568,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":119186,"timestamp":7385797266442,"id":3449,"parentId":3216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":118336,"timestamp":7385797267313,"id":3494,"parentId":3453,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":65,"timestamp":7385797385658,"id":3617,"parentId":3453,"tags":{},"startTime":1776992743572,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":120293,"timestamp":7385797266648,"id":3453,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":119643,"timestamp":7385797267317,"id":3495,"parentId":3454,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":56,"timestamp":7385797386969,"id":3618,"parentId":3454,"tags":{},"startTime":1776992743574,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":121024,"timestamp":7385797266707,"id":3454,"parentId":3206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":120419,"timestamp":7385797267321,"id":3496,"parentId":3455,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797387745,"id":3619,"parentId":3455,"tags":{},"startTime":1776992743574,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":121137,"timestamp":7385797266761,"id":3455,"parentId":3203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":120578,"timestamp":7385797267325,"id":3497,"parentId":3456,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797387907,"id":3620,"parentId":3456,"tags":{},"startTime":1776992743575,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":121351,"timestamp":7385797266848,"id":3456,"parentId":3206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"ssr"},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":120903,"timestamp":7385797267303,"id":3491,"parentId":3450,"tags":{},"startTime":1776992743454,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797388210,"id":3621,"parentId":3450,"tags":{},"startTime":1776992743575,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":122313,"timestamp":7385797266495,"id":3450,"parentId":3216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"ssr"},"startTime":1776992743453,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":121395,"timestamp":7385797274416,"id":3524,"parentId":3499,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":47,"timestamp":7385797395825,"id":3622,"parentId":3499,"tags":{},"startTime":1776992743583,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":123851,"timestamp":7385797272294,"id":3499,"parentId":3215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"ssr"},"startTime":1776992743459,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":121700,"timestamp":7385797274468,"id":3527,"parentId":3502,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":47,"timestamp":7385797396177,"id":3623,"parentId":3502,"tags":{},"startTime":1776992743583,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":123707,"timestamp":7385797272932,"id":3502,"parentId":3214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":122215,"timestamp":7385797274431,"id":3526,"parentId":3501,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797396652,"id":3624,"parentId":3501,"tags":{},"startTime":1776992743583,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":124323,"timestamp":7385797272867,"id":3501,"parentId":3214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":122805,"timestamp":7385797274396,"id":3523,"parentId":3498,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797397208,"id":3625,"parentId":3498,"tags":{},"startTime":1776992743584,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":125617,"timestamp":7385797272178,"id":3498,"parentId":3206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"ssr"},"startTime":1776992743459,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":123324,"timestamp":7385797274478,"id":3529,"parentId":3504,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797397808,"id":3626,"parentId":3504,"tags":{},"startTime":1776992743585,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":125094,"timestamp":7385797273045,"id":3504,"parentId":3214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":123676,"timestamp":7385797274473,"id":3528,"parentId":3503,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":103,"timestamp":7385797398155,"id":3627,"parentId":3503,"tags":{},"startTime":1776992743585,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":125763,"timestamp":7385797272991,"id":3503,"parentId":3214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":124279,"timestamp":7385797274482,"id":3530,"parentId":3505,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797398766,"id":3628,"parentId":3505,"tags":{},"startTime":1776992743586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":125910,"timestamp":7385797273098,"id":3505,"parentId":3217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":124527,"timestamp":7385797274487,"id":3531,"parentId":3506,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797399018,"id":3629,"parentId":3506,"tags":{},"startTime":1776992743586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":126229,"timestamp":7385797273150,"id":3506,"parentId":3217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":124890,"timestamp":7385797274495,"id":3533,"parentId":3508,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385797399390,"id":3630,"parentId":3508,"tags":{},"startTime":1776992743586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":126497,"timestamp":7385797273263,"id":3508,"parentId":3215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":125257,"timestamp":7385797274507,"id":3536,"parentId":3511,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797399770,"id":3631,"parentId":3511,"tags":{},"startTime":1776992743587,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":126368,"timestamp":7385797273586,"id":3511,"parentId":3219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":125459,"timestamp":7385797274499,"id":3534,"parentId":3509,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797399963,"id":3632,"parentId":3509,"tags":{},"startTime":1776992743587,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":127303,"timestamp":7385797273314,"id":3509,"parentId":3215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":126112,"timestamp":7385797274511,"id":3537,"parentId":3512,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797400629,"id":3633,"parentId":3512,"tags":{},"startTime":1776992743587,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":127852,"timestamp":7385797273641,"id":3512,"parentId":3219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":126988,"timestamp":7385797274516,"id":3538,"parentId":3513,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385797401510,"id":3634,"parentId":3513,"tags":{},"startTime":1776992743588,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":128174,"timestamp":7385797273691,"id":3513,"parentId":3219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":127368,"timestamp":7385797274504,"id":3535,"parentId":3510,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797401877,"id":3635,"parentId":3510,"tags":{},"startTime":1776992743589,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":128577,"timestamp":7385797273500,"id":3510,"parentId":3219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":127562,"timestamp":7385797274520,"id":3539,"parentId":3514,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797402086,"id":3636,"parentId":3514,"tags":{},"startTime":1776992743589,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":128606,"timestamp":7385797273743,"id":3514,"parentId":3211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":127829,"timestamp":7385797274526,"id":3541,"parentId":3516,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797402360,"id":3637,"parentId":3516,"tags":{},"startTime":1776992743589,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":129028,"timestamp":7385797273893,"id":3516,"parentId":3221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"ssr"},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":128398,"timestamp":7385797274530,"id":3542,"parentId":3517,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":73,"timestamp":7385797402932,"id":3638,"parentId":3517,"tags":{},"startTime":1776992743590,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":129364,"timestamp":7385797273972,"id":3517,"parentId":3221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"ssr"},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":128806,"timestamp":7385797274537,"id":3544,"parentId":3519,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797403347,"id":3639,"parentId":3519,"tags":{},"startTime":1776992743590,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":129766,"timestamp":7385797274100,"id":3519,"parentId":3222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"ssr"},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":129330,"timestamp":7385797274541,"id":3545,"parentId":3520,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797403875,"id":3640,"parentId":3520,"tags":{},"startTime":1776992743591,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":129969,"timestamp":7385797274152,"id":3520,"parentId":3222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"ssr"},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":129601,"timestamp":7385797274544,"id":3546,"parentId":3521,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797404148,"id":3641,"parentId":3521,"tags":{},"startTime":1776992743591,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":130038,"timestamp":7385797274259,"id":3521,"parentId":3222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"ssr"},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":129747,"timestamp":7385797274555,"id":3547,"parentId":3522,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":47,"timestamp":7385797404306,"id":3642,"parentId":3522,"tags":{},"startTime":1776992743591,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":133191,"timestamp":7385797274325,"id":3522,"parentId":3220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"ssr"},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":133012,"timestamp":7385797274534,"id":3543,"parentId":3518,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":68,"timestamp":7385797407581,"id":3643,"parentId":3518,"tags":{},"startTime":1776992743594,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":134680,"timestamp":7385797274024,"id":3518,"parentId":3221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"ssr"},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":134292,"timestamp":7385797274424,"id":3525,"parentId":3500,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797408723,"id":3644,"parentId":3500,"tags":{},"startTime":1776992743595,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":136287,"timestamp":7385797272620,"id":3500,"parentId":3215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"ssr"},"startTime":1776992743459,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":134423,"timestamp":7385797274491,"id":3532,"parentId":3507,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":47,"timestamp":7385797408920,"id":3645,"parentId":3507,"tags":{},"startTime":1776992743596,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":136364,"timestamp":7385797273204,"id":3507,"parentId":3215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"ssr"},"startTime":1776992743460,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":135055,"timestamp":7385797274523,"id":3540,"parentId":3515,"tags":{},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797409585,"id":3646,"parentId":3515,"tags":{},"startTime":1776992743596,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":136765,"timestamp":7385797273841,"id":3515,"parentId":3213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"ssr"},"startTime":1776992743461,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":145286,"timestamp":7385797276106,"id":3556,"parentId":3549,"tags":{},"startTime":1776992743463,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46,"timestamp":7385797421403,"id":3647,"parentId":3549,"tags":{},"startTime":1776992743608,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":147577,"timestamp":7385797275481,"id":3549,"parentId":3218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"ssr"},"startTime":1776992743462,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":146961,"timestamp":7385797276120,"id":3560,"parentId":3553,"tags":{},"startTime":1776992743463,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":48,"timestamp":7385797423091,"id":3648,"parentId":3553,"tags":{},"startTime":1776992743610,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":147441,"timestamp":7385797275960,"id":3553,"parentId":3218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"ssr"},"startTime":1776992743463,"traceId":"27fab7e1c891f919"}] -[{"name":"read-resource","duration":147407,"timestamp":7385797276113,"id":3558,"parentId":3551,"tags":{},"startTime":1776992743463,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797423527,"id":3649,"parentId":3551,"tags":{},"startTime":1776992743610,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":148300,"timestamp":7385797275640,"id":3551,"parentId":3218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"ssr"},"startTime":1776992743462,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":147828,"timestamp":7385797276117,"id":3559,"parentId":3552,"tags":{},"startTime":1776992743463,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797423949,"id":3650,"parentId":3552,"tags":{},"startTime":1776992743611,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":148186,"timestamp":7385797275877,"id":3552,"parentId":3218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"ssr"},"startTime":1776992743463,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":147945,"timestamp":7385797276123,"id":3561,"parentId":3554,"tags":{},"startTime":1776992743463,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797424072,"id":3651,"parentId":3554,"tags":{},"startTime":1776992743611,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":148491,"timestamp":7385797276032,"id":3554,"parentId":3227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"ssr"},"startTime":1776992743463,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":148419,"timestamp":7385797276110,"id":3557,"parentId":3550,"tags":{},"startTime":1776992743463,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797424533,"id":3652,"parentId":3550,"tags":{},"startTime":1776992743611,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":149606,"timestamp":7385797275533,"id":3550,"parentId":3218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"ssr"},"startTime":1776992743462,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":149057,"timestamp":7385797276097,"id":3555,"parentId":3548,"tags":{},"startTime":1776992743463,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":51,"timestamp":7385797425162,"id":3653,"parentId":3548,"tags":{},"startTime":1776992743612,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":150123,"timestamp":7385797275345,"id":3548,"parentId":3220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"ssr"},"startTime":1776992743462,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11099,"timestamp":7385797489869,"id":3678,"parentId":3656,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797500979,"id":3782,"parentId":3656,"tags":{},"startTime":1776992743688,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13007,"timestamp":7385797488822,"id":3656,"parentId":3223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11963,"timestamp":7385797489877,"id":3679,"parentId":3657,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797501845,"id":3783,"parentId":3657,"tags":{},"startTime":1776992743689,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13217,"timestamp":7385797488865,"id":3657,"parentId":3227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":12199,"timestamp":7385797489888,"id":3681,"parentId":3659,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797502091,"id":3784,"parentId":3659,"tags":{},"startTime":1776992743689,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13298,"timestamp":7385797488957,"id":3659,"parentId":3223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":12418,"timestamp":7385797489841,"id":3676,"parentId":3654,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797502263,"id":3785,"parentId":3654,"tags":{},"startTime":1776992743689,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14059,"timestamp":7385797488612,"id":3654,"parentId":3227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"ssr"},"startTime":1776992743675,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":12782,"timestamp":7385797489893,"id":3682,"parentId":3660,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797502678,"id":3786,"parentId":3660,"tags":{},"startTime":1776992743689,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13871,"timestamp":7385797488998,"id":3660,"parentId":3223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":12989,"timestamp":7385797489883,"id":3680,"parentId":3658,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797502875,"id":3787,"parentId":3658,"tags":{},"startTime":1776992743690,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14185,"timestamp":7385797488915,"id":3658,"parentId":3227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":13203,"timestamp":7385797489901,"id":3684,"parentId":3662,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797503107,"id":3788,"parentId":3662,"tags":{},"startTime":1776992743690,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14181,"timestamp":7385797489106,"id":3662,"parentId":3223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":13393,"timestamp":7385797489897,"id":3683,"parentId":3661,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797503293,"id":3789,"parentId":3661,"tags":{},"startTime":1776992743690,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14428,"timestamp":7385797489066,"id":3661,"parentId":3223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":13641,"timestamp":7385797489858,"id":3677,"parentId":3655,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797503502,"id":3790,"parentId":3655,"tags":{},"startTime":1776992743690,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15406,"timestamp":7385797488766,"id":3655,"parentId":3227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14280,"timestamp":7385797489909,"id":3686,"parentId":3664,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":56,"timestamp":7385797504198,"id":3791,"parentId":3664,"tags":{},"startTime":1776992743691,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15420,"timestamp":7385797489184,"id":3664,"parentId":3223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14705,"timestamp":7385797489905,"id":3685,"parentId":3663,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797504615,"id":3792,"parentId":3663,"tags":{},"startTime":1776992743691,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15949,"timestamp":7385797489145,"id":3663,"parentId":3223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15185,"timestamp":7385797489916,"id":3688,"parentId":3666,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797505105,"id":3793,"parentId":3666,"tags":{},"startTime":1776992743692,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16493,"timestamp":7385797489298,"id":3666,"parentId":3223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15870,"timestamp":7385797489926,"id":3692,"parentId":3670,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797505801,"id":3794,"parentId":3670,"tags":{},"startTime":1776992743693,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16471,"timestamp":7385797489563,"id":3670,"parentId":3229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16126,"timestamp":7385797489912,"id":3687,"parentId":3665,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797506042,"id":3795,"parentId":3665,"tags":{},"startTime":1776992743693,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16918,"timestamp":7385797489233,"id":3665,"parentId":3223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16234,"timestamp":7385797489921,"id":3690,"parentId":3668,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797506158,"id":3796,"parentId":3668,"tags":{},"startTime":1776992743693,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16923,"timestamp":7385797489475,"id":3668,"parentId":3224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16479,"timestamp":7385797489924,"id":3691,"parentId":3669,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797506405,"id":3797,"parentId":3669,"tags":{},"startTime":1776992743693,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17095,"timestamp":7385797489520,"id":3669,"parentId":3224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16701,"timestamp":7385797489918,"id":3689,"parentId":3667,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":147,"timestamp":7385797506622,"id":3798,"parentId":3667,"tags":{},"startTime":1776992743693,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18011,"timestamp":7385797489415,"id":3667,"parentId":3223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17500,"timestamp":7385797489937,"id":3696,"parentId":3674,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797507444,"id":3799,"parentId":3674,"tags":{},"startTime":1776992743694,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17910,"timestamp":7385797489720,"id":3674,"parentId":3225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17699,"timestamp":7385797489935,"id":3695,"parentId":3673,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797507638,"id":3800,"parentId":3673,"tags":{},"startTime":1776992743694,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18176,"timestamp":7385797489681,"id":3673,"parentId":3225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22416,"timestamp":7385797489940,"id":3697,"parentId":3675,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797512366,"id":3801,"parentId":3675,"tags":{},"startTime":1776992743699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22942,"timestamp":7385797489758,"id":3675,"parentId":3225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22788,"timestamp":7385797489930,"id":3693,"parentId":3671,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":57,"timestamp":7385797512723,"id":3802,"parentId":3671,"tags":{},"startTime":1776992743699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26414,"timestamp":7385797489603,"id":3671,"parentId":3229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26100,"timestamp":7385797489933,"id":3694,"parentId":3672,"tags":{},"startTime":1776992743677,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797516039,"id":3803,"parentId":3672,"tags":{},"startTime":1776992743703,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27215,"timestamp":7385797489642,"id":3672,"parentId":3225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"ssr"},"startTime":1776992743676,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19936,"timestamp":7385797497076,"id":3730,"parentId":3698,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797517018,"id":3804,"parentId":3698,"tags":{},"startTime":1776992743704,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21952,"timestamp":7385797495609,"id":3698,"parentId":3225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"ssr"},"startTime":1776992743682,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20467,"timestamp":7385797497100,"id":3733,"parentId":3701,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797517572,"id":3805,"parentId":3701,"tags":{},"startTime":1776992743704,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22206,"timestamp":7385797495757,"id":3701,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"ssr"},"startTime":1776992743682,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20881,"timestamp":7385797497089,"id":3731,"parentId":3699,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797517974,"id":3806,"parentId":3699,"tags":{},"startTime":1776992743705,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23045,"timestamp":7385797495676,"id":3699,"parentId":3171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"ssr"},"startTime":1776992743682,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":21618,"timestamp":7385797497111,"id":3735,"parentId":3703,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797518734,"id":3807,"parentId":3703,"tags":{},"startTime":1776992743705,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23227,"timestamp":7385797495832,"id":3703,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":25094,"timestamp":7385797497107,"id":3734,"parentId":3702,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797522207,"id":3808,"parentId":3702,"tags":{},"startTime":1776992743709,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26852,"timestamp":7385797495794,"id":3702,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":25558,"timestamp":7385797497095,"id":3732,"parentId":3700,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797522665,"id":3809,"parentId":3700,"tags":{},"startTime":1776992743709,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28571,"timestamp":7385797495718,"id":3700,"parentId":3171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"ssr"},"startTime":1776992743682,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27232,"timestamp":7385797497113,"id":3736,"parentId":3704,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797524351,"id":3810,"parentId":3704,"tags":{},"startTime":1776992743711,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":28928,"timestamp":7385797495870,"id":3704,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27690,"timestamp":7385797497116,"id":3737,"parentId":3705,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797524809,"id":3811,"parentId":3705,"tags":{},"startTime":1776992743712,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29929,"timestamp":7385797495907,"id":3705,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28721,"timestamp":7385797497121,"id":3739,"parentId":3707,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797525848,"id":3812,"parentId":3707,"tags":{},"startTime":1776992743713,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32421,"timestamp":7385797495998,"id":3707,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":31333,"timestamp":7385797497118,"id":3738,"parentId":3706,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":64,"timestamp":7385797528467,"id":3813,"parentId":3706,"tags":{},"startTime":1776992743715,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33183,"timestamp":7385797495961,"id":3706,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32065,"timestamp":7385797497127,"id":3741,"parentId":3709,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":48,"timestamp":7385797529199,"id":3814,"parentId":3709,"tags":{},"startTime":1776992743716,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34752,"timestamp":7385797496084,"id":3709,"parentId":3194,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33747,"timestamp":7385797497124,"id":3740,"parentId":3708,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797530876,"id":3815,"parentId":3708,"tags":{},"startTime":1776992743718,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36398,"timestamp":7385797496047,"id":3708,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":35314,"timestamp":7385797497138,"id":3745,"parentId":3713,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797532456,"id":3816,"parentId":3713,"tags":{},"startTime":1776992743719,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36980,"timestamp":7385797496304,"id":3713,"parentId":3195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36161,"timestamp":7385797497130,"id":3742,"parentId":3710,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797533295,"id":3817,"parentId":3710,"tags":{},"startTime":1776992743720,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38046,"timestamp":7385797496122,"id":3710,"parentId":3193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37046,"timestamp":7385797497135,"id":3744,"parentId":3712,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46,"timestamp":7385797534188,"id":3818,"parentId":3712,"tags":{},"startTime":1776992743721,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39211,"timestamp":7385797496230,"id":3712,"parentId":3195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38326,"timestamp":7385797497132,"id":3743,"parentId":3711,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44,"timestamp":7385797535466,"id":3819,"parentId":3711,"tags":{},"startTime":1776992743722,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39957,"timestamp":7385797496171,"id":3711,"parentId":3204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":39001,"timestamp":7385797497140,"id":3746,"parentId":3714,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797536147,"id":3820,"parentId":3714,"tags":{},"startTime":1776992743723,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40216,"timestamp":7385797496372,"id":3714,"parentId":3228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":39451,"timestamp":7385797497143,"id":3747,"parentId":3715,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797536599,"id":3821,"parentId":3715,"tags":{},"startTime":1776992743723,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40578,"timestamp":7385797496420,"id":3715,"parentId":3228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":39857,"timestamp":7385797497147,"id":3749,"parentId":3717,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797537009,"id":3822,"parentId":3717,"tags":{},"startTime":1776992743724,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40995,"timestamp":7385797496517,"id":3717,"parentId":3226,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":40365,"timestamp":7385797497153,"id":3751,"parentId":3719,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797537521,"id":3823,"parentId":3719,"tags":{},"startTime":1776992743724,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41174,"timestamp":7385797496598,"id":3719,"parentId":3226,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":40619,"timestamp":7385797497158,"id":3753,"parentId":3721,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797537780,"id":3824,"parentId":3721,"tags":{},"startTime":1776992743725,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41241,"timestamp":7385797496701,"id":3721,"parentId":3230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":40791,"timestamp":7385797497155,"id":3752,"parentId":3720,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797537949,"id":3825,"parentId":3720,"tags":{},"startTime":1776992743725,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41452,"timestamp":7385797496643,"id":3720,"parentId":3226,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":40968,"timestamp":7385797497145,"id":3748,"parentId":3716,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797538116,"id":3826,"parentId":3716,"tags":{},"startTime":1776992743725,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42126,"timestamp":7385797496464,"id":3716,"parentId":3228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41444,"timestamp":7385797497150,"id":3750,"parentId":3718,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797538597,"id":3827,"parentId":3718,"tags":{},"startTime":1776992743725,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43540,"timestamp":7385797496560,"id":3718,"parentId":3226,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42949,"timestamp":7385797497163,"id":3755,"parentId":3723,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797540119,"id":3828,"parentId":3723,"tags":{},"startTime":1776992743727,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43853,"timestamp":7385797496790,"id":3723,"parentId":3230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"ssr"},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":43489,"timestamp":7385797497160,"id":3754,"parentId":3722,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797540655,"id":3829,"parentId":3722,"tags":{},"startTime":1776992743727,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44482,"timestamp":7385797496752,"id":3722,"parentId":3230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"ssr"},"startTime":1776992743683,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44074,"timestamp":7385797497169,"id":3758,"parentId":3726,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":80,"timestamp":7385797541249,"id":3830,"parentId":3726,"tags":{},"startTime":1776992743728,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44850,"timestamp":7385797496902,"id":3726,"parentId":3231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"ssr"},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44587,"timestamp":7385797497171,"id":3759,"parentId":3727,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797541762,"id":3831,"parentId":3727,"tags":{},"startTime":1776992743728,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":46096,"timestamp":7385797496940,"id":3727,"parentId":3231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"ssr"},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":45878,"timestamp":7385797497175,"id":3761,"parentId":3729,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":47,"timestamp":7385797543062,"id":3832,"parentId":3729,"tags":{},"startTime":1776992743730,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":46337,"timestamp":7385797497012,"id":3729,"parentId":3232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"ssr"},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":46190,"timestamp":7385797497167,"id":3757,"parentId":3725,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797543361,"id":3833,"parentId":3725,"tags":{},"startTime":1776992743730,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":47730,"timestamp":7385797496865,"id":3725,"parentId":3231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"ssr"},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":47487,"timestamp":7385797497173,"id":3760,"parentId":3728,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":47,"timestamp":7385797544669,"id":3834,"parentId":3728,"tags":{},"startTime":1776992743731,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":48698,"timestamp":7385797496976,"id":3728,"parentId":3232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"ssr"},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":48517,"timestamp":7385797497165,"id":3756,"parentId":3724,"tags":{},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797545686,"id":3835,"parentId":3724,"tags":{},"startTime":1776992743732,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":49020,"timestamp":7385797496829,"id":3724,"parentId":3230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"ssr"},"startTime":1776992743684,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":52881,"timestamp":7385797499689,"id":3767,"parentId":3762,"tags":{},"startTime":1776992743686,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797552577,"id":3836,"parentId":3762,"tags":{},"startTime":1776992743739,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":53534,"timestamp":7385797499330,"id":3762,"parentId":3231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"ssr"},"startTime":1776992743686,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":53132,"timestamp":7385797499750,"id":3770,"parentId":3765,"tags":{},"startTime":1776992743686,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797552887,"id":3837,"parentId":3765,"tags":{},"startTime":1776992743740,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":53892,"timestamp":7385797499573,"id":3765,"parentId":3235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"ssr"},"startTime":1776992743686,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":53748,"timestamp":7385797499735,"id":3768,"parentId":3763,"tags":{},"startTime":1776992743686,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797553489,"id":3838,"parentId":3763,"tags":{},"startTime":1776992743740,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":54253,"timestamp":7385797499430,"id":3763,"parentId":3223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"ssr"},"startTime":1776992743686,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":53954,"timestamp":7385797499743,"id":3769,"parentId":3764,"tags":{},"startTime":1776992743686,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797553701,"id":3839,"parentId":3764,"tags":{},"startTime":1776992743740,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":55395,"timestamp":7385797499481,"id":3764,"parentId":3233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"ssr"},"startTime":1776992743686,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":55126,"timestamp":7385797499757,"id":3771,"parentId":3766,"tags":{},"startTime":1776992743686,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797554888,"id":3840,"parentId":3766,"tags":{},"startTime":1776992743742,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":55775,"timestamp":7385797499626,"id":3766,"parentId":3236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"ssr"},"startTime":1776992743686,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":61734,"timestamp":7385797500863,"id":3777,"parentId":3772,"tags":{},"startTime":1776992743688,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797562605,"id":3841,"parentId":3772,"tags":{},"startTime":1776992743749,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":62648,"timestamp":7385797500610,"id":3772,"parentId":3235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"ssr"},"startTime":1776992743687,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":62395,"timestamp":7385797500871,"id":3778,"parentId":3773,"tags":{},"startTime":1776992743688,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797563270,"id":3842,"parentId":3773,"tags":{},"startTime":1776992743750,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":63037,"timestamp":7385797500683,"id":3773,"parentId":3237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"ssr"},"startTime":1776992743687,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":62850,"timestamp":7385797500874,"id":3779,"parentId":3774,"tags":{},"startTime":1776992743688,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797563728,"id":3843,"parentId":3774,"tags":{},"startTime":1776992743750,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":63585,"timestamp":7385797500733,"id":3774,"parentId":3237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"ssr"},"startTime":1776992743687,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":63447,"timestamp":7385797500877,"id":3780,"parentId":3775,"tags":{},"startTime":1776992743688,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":31,"timestamp":7385797564411,"id":3844,"parentId":3775,"tags":{},"startTime":1776992743751,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":63774,"timestamp":7385797500773,"id":3775,"parentId":3233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"ssr"},"startTime":1776992743688,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":63670,"timestamp":7385797500881,"id":3781,"parentId":3776,"tags":{},"startTime":1776992743688,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797564554,"id":3845,"parentId":3776,"tags":{},"startTime":1776992743751,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":63878,"timestamp":7385797500815,"id":3776,"parentId":3233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"ssr"},"startTime":1776992743688,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14909,"timestamp":7385797592000,"id":3847,"parentId":3846,"tags":{},"startTime":1776992743779,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797606921,"id":3918,"parentId":3846,"tags":{},"startTime":1776992743794,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16357,"timestamp":7385797591870,"id":3846,"parentId":3233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"ssr"},"startTime":1776992743779,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11358,"timestamp":7385797597383,"id":3877,"parentId":3852,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":54,"timestamp":7385797608747,"id":3919,"parentId":3852,"tags":{},"startTime":1776992743795,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13167,"timestamp":7385797596593,"id":3852,"parentId":3242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"ssr"},"startTime":1776992743783,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":12396,"timestamp":7385797597371,"id":3875,"parentId":3850,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797609771,"id":3920,"parentId":3850,"tags":{},"startTime":1776992743797,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13578,"timestamp":7385797596509,"id":3850,"parentId":3239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"ssr"},"startTime":1776992743783,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":12726,"timestamp":7385797597365,"id":3874,"parentId":3849,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797610095,"id":3921,"parentId":3849,"tags":{},"startTime":1776992743797,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14038,"timestamp":7385797596462,"id":3849,"parentId":3237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"ssr"},"startTime":1776992743783,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":13118,"timestamp":7385797597390,"id":3879,"parentId":3854,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797610513,"id":3922,"parentId":3854,"tags":{},"startTime":1776992743797,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14717,"timestamp":7385797596668,"id":3854,"parentId":3243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"ssr"},"startTime":1776992743783,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14034,"timestamp":7385797597355,"id":3873,"parentId":3848,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797611393,"id":3923,"parentId":3848,"tags":{},"startTime":1776992743798,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15234,"timestamp":7385797596397,"id":3848,"parentId":3237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"ssr"},"startTime":1776992743783,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14249,"timestamp":7385797597387,"id":3878,"parentId":3853,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":58,"timestamp":7385797611639,"id":3924,"parentId":3853,"tags":{},"startTime":1776992743798,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15614,"timestamp":7385797596630,"id":3853,"parentId":3243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"ssr"},"startTime":1776992743783,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14856,"timestamp":7385797597396,"id":3881,"parentId":3856,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797612257,"id":3925,"parentId":3856,"tags":{},"startTime":1776992743799,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16024,"timestamp":7385797596742,"id":3856,"parentId":3244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"ssr"},"startTime":1776992743783,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15392,"timestamp":7385797597399,"id":3882,"parentId":3857,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":60,"timestamp":7385797612802,"id":3926,"parentId":3857,"tags":{},"startTime":1776992743800,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16529,"timestamp":7385797596779,"id":3857,"parentId":3244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15906,"timestamp":7385797597421,"id":3886,"parentId":3861,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797613332,"id":3927,"parentId":3861,"tags":{},"startTime":1776992743800,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16820,"timestamp":7385797596923,"id":3861,"parentId":3245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16335,"timestamp":7385797597415,"id":3884,"parentId":3859,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797613755,"id":3928,"parentId":3859,"tags":{},"startTime":1776992743800,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17059,"timestamp":7385797596851,"id":3859,"parentId":3244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16541,"timestamp":7385797597376,"id":3876,"parentId":3851,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797613922,"id":3929,"parentId":3851,"tags":{},"startTime":1776992743801,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17700,"timestamp":7385797596554,"id":3851,"parentId":3238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"ssr"},"startTime":1776992743783,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16859,"timestamp":7385797597401,"id":3883,"parentId":3858,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":51,"timestamp":7385797614263,"id":3930,"parentId":3858,"tags":{},"startTime":1776992743801,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18056,"timestamp":7385797596816,"id":3858,"parentId":3244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17484,"timestamp":7385797597393,"id":3880,"parentId":3855,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797614881,"id":3931,"parentId":3855,"tags":{},"startTime":1776992743802,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18496,"timestamp":7385797596706,"id":3855,"parentId":3244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"ssr"},"startTime":1776992743783,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17792,"timestamp":7385797597418,"id":3885,"parentId":3860,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797615216,"id":3932,"parentId":3860,"tags":{},"startTime":1776992743802,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18548,"timestamp":7385797596887,"id":3860,"parentId":3241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":18007,"timestamp":7385797597434,"id":3891,"parentId":3866,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797615445,"id":3933,"parentId":3866,"tags":{},"startTime":1776992743802,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20478,"timestamp":7385797597105,"id":3866,"parentId":3235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20182,"timestamp":7385797597424,"id":3887,"parentId":3862,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50,"timestamp":7385797617615,"id":3934,"parentId":3862,"tags":{},"startTime":1776992743804,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22677,"timestamp":7385797596961,"id":3862,"parentId":3245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22219,"timestamp":7385797597432,"id":3890,"parentId":3865,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797619659,"id":3935,"parentId":3865,"tags":{},"startTime":1776992743806,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23112,"timestamp":7385797597070,"id":3865,"parentId":3235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22775,"timestamp":7385797597426,"id":3888,"parentId":3863,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":68,"timestamp":7385797620210,"id":3936,"parentId":3863,"tags":{},"startTime":1776992743807,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25716,"timestamp":7385797596997,"id":3863,"parentId":3241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":25298,"timestamp":7385797597429,"id":3889,"parentId":3864,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":49,"timestamp":7385797622734,"id":3937,"parentId":3864,"tags":{},"startTime":1776992743809,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26343,"timestamp":7385797597033,"id":3864,"parentId":3233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":25948,"timestamp":7385797597436,"id":3892,"parentId":3867,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797623389,"id":3938,"parentId":3867,"tags":{},"startTime":1776992743810,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26775,"timestamp":7385797597140,"id":3867,"parentId":3235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26486,"timestamp":7385797597439,"id":3893,"parentId":3868,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":69,"timestamp":7385797623930,"id":3939,"parentId":3868,"tags":{},"startTime":1776992743811,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27225,"timestamp":7385797597175,"id":3868,"parentId":3239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26966,"timestamp":7385797597441,"id":3894,"parentId":3869,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797624412,"id":3940,"parentId":3869,"tags":{},"startTime":1776992743811,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27603,"timestamp":7385797597210,"id":3869,"parentId":3239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27374,"timestamp":7385797597445,"id":3896,"parentId":3871,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797624824,"id":3941,"parentId":3871,"tags":{},"startTime":1776992743812,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27890,"timestamp":7385797597280,"id":3871,"parentId":3236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27731,"timestamp":7385797597443,"id":3895,"parentId":3870,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797625178,"id":3942,"parentId":3870,"tags":{},"startTime":1776992743812,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28289,"timestamp":7385797597245,"id":3870,"parentId":3238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28091,"timestamp":7385797597448,"id":3897,"parentId":3872,"tags":{},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797625542,"id":3943,"parentId":3872,"tags":{},"startTime":1776992743812,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28660,"timestamp":7385797597314,"id":3872,"parentId":3236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"ssr"},"startTime":1776992743784,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32634,"timestamp":7385797604727,"id":3903,"parentId":3900,"tags":{},"startTime":1776992743791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797637376,"id":3944,"parentId":3900,"tags":{},"startTime":1776992743824,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33130,"timestamp":7385797604642,"id":3900,"parentId":3235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"ssr"},"startTime":1776992743791,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33057,"timestamp":7385797604721,"id":3902,"parentId":3899,"tags":{},"startTime":1776992743791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797637781,"id":3945,"parentId":3899,"tags":{},"startTime":1776992743825,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33623,"timestamp":7385797604587,"id":3899,"parentId":3235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"ssr"},"startTime":1776992743791,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33510,"timestamp":7385797604704,"id":3901,"parentId":3898,"tags":{},"startTime":1776992743791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797638218,"id":3946,"parentId":3898,"tags":{},"startTime":1776992743825,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33901,"timestamp":7385797604460,"id":3898,"parentId":3235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"ssr"},"startTime":1776992743791,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34471,"timestamp":7385797606879,"id":3915,"parentId":3908,"tags":{},"startTime":1776992743794,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797641357,"id":3947,"parentId":3908,"tags":{},"startTime":1776992743828,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34887,"timestamp":7385797606734,"id":3908,"parentId":3245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"ssr"},"startTime":1776992743793,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34760,"timestamp":7385797606869,"id":3913,"parentId":3906,"tags":{},"startTime":1776992743794,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797641633,"id":3948,"parentId":3906,"tags":{},"startTime":1776992743828,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35494,"timestamp":7385797606656,"id":3906,"parentId":3254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"ssr"},"startTime":1776992743793,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":35292,"timestamp":7385797606863,"id":3912,"parentId":3905,"tags":{},"startTime":1776992743794,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797642159,"id":3949,"parentId":3905,"tags":{},"startTime":1776992743829,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36443,"timestamp":7385797606615,"id":3905,"parentId":3246,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"ssr"},"startTime":1776992743793,"traceId":"27fab7e1c891f919"}] -[{"name":"read-resource","duration":36318,"timestamp":7385797606853,"id":3911,"parentId":3904,"tags":{},"startTime":1776992743794,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797643188,"id":3950,"parentId":3904,"tags":{},"startTime":1776992743830,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37852,"timestamp":7385797606550,"id":3904,"parentId":3246,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"ssr"},"startTime":1776992743793,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37534,"timestamp":7385797606881,"id":3916,"parentId":3909,"tags":{},"startTime":1776992743794,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797644421,"id":3951,"parentId":3909,"tags":{},"startTime":1776992743831,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39913,"timestamp":7385797606773,"id":3909,"parentId":3245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"ssr"},"startTime":1776992743794,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":39986,"timestamp":7385797606884,"id":3917,"parentId":3910,"tags":{},"startTime":1776992743794,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":63,"timestamp":7385797646882,"id":3952,"parentId":3910,"tags":{},"startTime":1776992743834,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40405,"timestamp":7385797606811,"id":3910,"parentId":3247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"ssr"},"startTime":1776992743794,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":40371,"timestamp":7385797606873,"id":3914,"parentId":3907,"tags":{},"startTime":1776992743794,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797647249,"id":3953,"parentId":3907,"tags":{},"startTime":1776992743834,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41276,"timestamp":7385797606696,"id":3907,"parentId":3245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"ssr"},"startTime":1776992743793,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15431,"timestamp":7385797676496,"id":4004,"parentId":3954,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":54,"timestamp":7385797691941,"id":4148,"parentId":3954,"tags":{},"startTime":1776992743879,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21495,"timestamp":7385797672827,"id":3954,"parentId":3247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17794,"timestamp":7385797676547,"id":4009,"parentId":3959,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46,"timestamp":7385797694349,"id":4149,"parentId":3959,"tags":{},"startTime":1776992743881,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22014,"timestamp":7385797673106,"id":3959,"parentId":3240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":18586,"timestamp":7385797676542,"id":4008,"parentId":3958,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797695133,"id":4150,"parentId":3958,"tags":{},"startTime":1776992743882,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22261,"timestamp":7385797673066,"id":3958,"parentId":3240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":18775,"timestamp":7385797676557,"id":4011,"parentId":3961,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797695338,"id":4151,"parentId":3961,"tags":{},"startTime":1776992743882,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22275,"timestamp":7385797673182,"id":3961,"parentId":3249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":18890,"timestamp":7385797676572,"id":4014,"parentId":3964,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797695465,"id":4152,"parentId":3964,"tags":{},"startTime":1776992743882,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22328,"timestamp":7385797673294,"id":3964,"parentId":3250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19084,"timestamp":7385797676552,"id":4010,"parentId":3960,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797695640,"id":4153,"parentId":3960,"tags":{},"startTime":1776992743882,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22615,"timestamp":7385797673145,"id":3960,"parentId":3249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19187,"timestamp":7385797676576,"id":4015,"parentId":3965,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797695767,"id":4154,"parentId":3965,"tags":{},"startTime":1776992743883,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22545,"timestamp":7385797673331,"id":3965,"parentId":3252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19318,"timestamp":7385797676562,"id":4012,"parentId":3962,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797695883,"id":4155,"parentId":3962,"tags":{},"startTime":1776992743883,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23082,"timestamp":7385797673219,"id":3962,"parentId":3249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19778,"timestamp":7385797676529,"id":4006,"parentId":3956,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797696310,"id":4156,"parentId":3956,"tags":{},"startTime":1776992743883,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23801,"timestamp":7385797672983,"id":3956,"parentId":3247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20214,"timestamp":7385797676581,"id":4016,"parentId":3966,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797696801,"id":4157,"parentId":3966,"tags":{},"startTime":1776992743884,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23689,"timestamp":7385797673370,"id":3966,"parentId":3252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20498,"timestamp":7385797676567,"id":4013,"parentId":3963,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":91,"timestamp":7385797697070,"id":4158,"parentId":3963,"tags":{},"startTime":1776992743884,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25816,"timestamp":7385797673256,"id":3963,"parentId":3250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22489,"timestamp":7385797676590,"id":4018,"parentId":3968,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797699084,"id":4159,"parentId":3968,"tags":{},"startTime":1776992743886,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25798,"timestamp":7385797673451,"id":3968,"parentId":3253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22718,"timestamp":7385797676536,"id":4007,"parentId":3957,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797699257,"id":4160,"parentId":3957,"tags":{},"startTime":1776992743886,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26346,"timestamp":7385797673025,"id":3957,"parentId":3240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22790,"timestamp":7385797676586,"id":4017,"parentId":3967,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797699379,"id":4161,"parentId":3967,"tags":{},"startTime":1776992743886,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26412,"timestamp":7385797673408,"id":3967,"parentId":3249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":23229,"timestamp":7385797676603,"id":4021,"parentId":3971,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797699836,"id":4162,"parentId":3971,"tags":{},"startTime":1776992743887,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27122,"timestamp":7385797673559,"id":3971,"parentId":3252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":24074,"timestamp":7385797676613,"id":4023,"parentId":3973,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797700691,"id":4163,"parentId":3973,"tags":{},"startTime":1776992743887,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27218,"timestamp":7385797673632,"id":3973,"parentId":3239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":24238,"timestamp":7385797676617,"id":4024,"parentId":3974,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797700860,"id":4164,"parentId":3974,"tags":{},"startTime":1776992743888,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27452,"timestamp":7385797673667,"id":3974,"parentId":3239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":24529,"timestamp":7385797676595,"id":4019,"parentId":3969,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44,"timestamp":7385797701128,"id":4165,"parentId":3969,"tags":{},"startTime":1776992743888,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30309,"timestamp":7385797673487,"id":3969,"parentId":3253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27227,"timestamp":7385797676598,"id":4020,"parentId":3970,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":61,"timestamp":7385797703838,"id":4166,"parentId":3970,"tags":{},"startTime":1776992743891,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30629,"timestamp":7385797673522,"id":3970,"parentId":3254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27555,"timestamp":7385797676607,"id":4022,"parentId":3972,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797704169,"id":4167,"parentId":3972,"tags":{},"startTime":1776992743891,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30786,"timestamp":7385797673595,"id":3972,"parentId":3239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27759,"timestamp":7385797676632,"id":4027,"parentId":3977,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":82,"timestamp":7385797704395,"id":4168,"parentId":3977,"tags":{},"startTime":1776992743891,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30978,"timestamp":7385797673796,"id":3977,"parentId":3238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"ssr"},"startTime":1776992743861,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28159,"timestamp":7385797676626,"id":4026,"parentId":3976,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797704790,"id":4169,"parentId":3976,"tags":{},"startTime":1776992743892,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31252,"timestamp":7385797673738,"id":3976,"parentId":3238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28475,"timestamp":7385797676521,"id":4005,"parentId":3955,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797705001,"id":4170,"parentId":3955,"tags":{},"startTime":1776992743892,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32229,"timestamp":7385797672934,"id":3955,"parentId":3247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28522,"timestamp":7385797676647,"id":4030,"parentId":3980,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797705174,"id":4171,"parentId":3980,"tags":{},"startTime":1776992743892,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31426,"timestamp":7385797674092,"id":3980,"parentId":3244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"ssr"},"startTime":1776992743861,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28869,"timestamp":7385797676655,"id":4032,"parentId":3982,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797705529,"id":4172,"parentId":3982,"tags":{},"startTime":1776992743892,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31446,"timestamp":7385797674494,"id":3982,"parentId":3240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"ssr"},"startTime":1776992743861,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29284,"timestamp":7385797676660,"id":4033,"parentId":3983,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797705948,"id":4173,"parentId":3983,"tags":{},"startTime":1776992743893,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32549,"timestamp":7385797674547,"id":3983,"parentId":3240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"ssr"},"startTime":1776992743861,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":30465,"timestamp":7385797676643,"id":4029,"parentId":3979,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":49,"timestamp":7385797707115,"id":4174,"parentId":3979,"tags":{},"startTime":1776992743894,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34224,"timestamp":7385797673873,"id":3979,"parentId":3242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"ssr"},"startTime":1776992743861,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":31445,"timestamp":7385797676664,"id":4034,"parentId":3984,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797708117,"id":4175,"parentId":3984,"tags":{},"startTime":1776992743895,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33358,"timestamp":7385797674950,"id":3984,"parentId":3240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":31645,"timestamp":7385797676669,"id":4035,"parentId":3985,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797708318,"id":4176,"parentId":3985,"tags":{},"startTime":1776992743895,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33700,"timestamp":7385797675121,"id":3985,"parentId":3240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32148,"timestamp":7385797676678,"id":4037,"parentId":3987,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797708830,"id":4177,"parentId":3987,"tags":{},"startTime":1776992743896,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":33986,"timestamp":7385797675212,"id":3987,"parentId":3255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32521,"timestamp":7385797676686,"id":4039,"parentId":3989,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":148,"timestamp":7385797709261,"id":4178,"parentId":3989,"tags":{},"startTime":1776992743896,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34855,"timestamp":7385797675293,"id":3989,"parentId":3258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33466,"timestamp":7385797676694,"id":4041,"parentId":3991,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797710167,"id":4179,"parentId":3991,"tags":{},"startTime":1776992743897,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34935,"timestamp":7385797675375,"id":3991,"parentId":3258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33723,"timestamp":7385797676621,"id":4025,"parentId":3975,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797710349,"id":4180,"parentId":3975,"tags":{},"startTime":1776992743897,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36900,"timestamp":7385797673703,"id":3975,"parentId":3239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"ssr"},"startTime":1776992743860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33927,"timestamp":7385797676682,"id":4038,"parentId":3988,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797710613,"id":4181,"parentId":3988,"tags":{},"startTime":1776992743897,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35860,"timestamp":7385797675253,"id":3988,"parentId":3255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34625,"timestamp":7385797676651,"id":4031,"parentId":3981,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":49,"timestamp":7385797711288,"id":4182,"parentId":3981,"tags":{},"startTime":1776992743898,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37603,"timestamp":7385797674341,"id":3981,"parentId":3240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"ssr"},"startTime":1776992743861,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":35279,"timestamp":7385797676673,"id":4036,"parentId":3986,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797711957,"id":4183,"parentId":3986,"tags":{},"startTime":1776992743899,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36941,"timestamp":7385797675171,"id":3986,"parentId":3256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":35429,"timestamp":7385797676690,"id":4040,"parentId":3990,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":85,"timestamp":7385797712123,"id":4184,"parentId":3990,"tags":{},"startTime":1776992743899,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37617,"timestamp":7385797675333,"id":3990,"parentId":3258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36246,"timestamp":7385797676709,"id":4042,"parentId":3992,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797712959,"id":4185,"parentId":3992,"tags":{},"startTime":1776992743900,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38087,"timestamp":7385797675415,"id":3992,"parentId":3259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36793,"timestamp":7385797676714,"id":4043,"parentId":3993,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385797713511,"id":4186,"parentId":3993,"tags":{},"startTime":1776992743900,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39494,"timestamp":7385797675469,"id":3993,"parentId":3259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38341,"timestamp":7385797676637,"id":4028,"parentId":3978,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46,"timestamp":7385797714986,"id":4187,"parentId":3978,"tags":{},"startTime":1776992743902,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41479,"timestamp":7385797673834,"id":3978,"parentId":3242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"ssr"},"startTime":1776992743861,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38598,"timestamp":7385797676722,"id":4045,"parentId":3995,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797715326,"id":4188,"parentId":3995,"tags":{},"startTime":1776992743902,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39981,"timestamp":7385797675575,"id":3995,"parentId":3259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38835,"timestamp":7385797676726,"id":4046,"parentId":3996,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797715566,"id":4189,"parentId":3996,"tags":{},"startTime":1776992743902,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40502,"timestamp":7385797675621,"id":3996,"parentId":3251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":39396,"timestamp":7385797676731,"id":4047,"parentId":3997,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797716132,"id":4190,"parentId":3997,"tags":{},"startTime":1776992743903,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40526,"timestamp":7385797675743,"id":3997,"parentId":3251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":39554,"timestamp":7385797676719,"id":4044,"parentId":3994,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797716277,"id":4191,"parentId":3994,"tags":{},"startTime":1776992743903,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40872,"timestamp":7385797675511,"id":3994,"parentId":3259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"ssr"},"startTime":1776992743862,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":39640,"timestamp":7385797676746,"id":4051,"parentId":4001,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":49,"timestamp":7385797716390,"id":4192,"parentId":4001,"tags":{},"startTime":1776992743903,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42205,"timestamp":7385797676257,"id":4001,"parentId":3262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"ssr"},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41737,"timestamp":7385797676743,"id":4050,"parentId":4000,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46,"timestamp":7385797718490,"id":4193,"parentId":4000,"tags":{},"startTime":1776992743905,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42520,"timestamp":7385797676198,"id":4000,"parentId":3261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"ssr"},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41973,"timestamp":7385797676752,"id":4053,"parentId":4003,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":59,"timestamp":7385797718730,"id":4194,"parentId":4003,"tags":{},"startTime":1776992743905,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43754,"timestamp":7385797676341,"id":4003,"parentId":3379,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"ssr"},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":43423,"timestamp":7385797676739,"id":4049,"parentId":3999,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":97,"timestamp":7385797720185,"id":4195,"parentId":3999,"tags":{},"startTime":1776992743907,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45850,"timestamp":7385797676095,"id":3999,"parentId":3261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"ssr"},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":52304,"timestamp":7385797676749,"id":4052,"parentId":4002,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797729080,"id":4196,"parentId":4002,"tags":{},"startTime":1776992743916,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":53379,"timestamp":7385797676298,"id":4002,"parentId":3262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"ssr"},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":52974,"timestamp":7385797676736,"id":4048,"parentId":3998,"tags":{},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797729716,"id":4197,"parentId":3998,"tags":{},"startTime":1776992743916,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":54281,"timestamp":7385797675973,"id":3998,"parentId":3261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"ssr"},"startTime":1776992743863,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":43426,"timestamp":7385797686958,"id":4096,"parentId":4056,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797730399,"id":4198,"parentId":4056,"tags":{},"startTime":1776992743917,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45467,"timestamp":7385797685265,"id":4056,"parentId":3380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":43774,"timestamp":7385797686966,"id":4097,"parentId":4057,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797730746,"id":4199,"parentId":4057,"tags":{},"startTime":1776992743917,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45678,"timestamp":7385797685303,"id":4057,"parentId":3380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44054,"timestamp":7385797686932,"id":4094,"parentId":4054,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":62,"timestamp":7385797730991,"id":4200,"parentId":4054,"tags":{},"startTime":1776992743918,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":49754,"timestamp":7385797685137,"id":4054,"parentId":3379,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":54928,"timestamp":7385797686951,"id":4095,"parentId":4055,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797741888,"id":4201,"parentId":4055,"tags":{},"startTime":1776992743929,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":57260,"timestamp":7385797685220,"id":4055,"parentId":3379,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":55513,"timestamp":7385797686973,"id":4098,"parentId":4058,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797742491,"id":4202,"parentId":4058,"tags":{},"startTime":1776992743929,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":58142,"timestamp":7385797685343,"id":4058,"parentId":3380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":56440,"timestamp":7385797687053,"id":4101,"parentId":4061,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797743498,"id":4203,"parentId":4061,"tags":{},"startTime":1776992743930,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":58212,"timestamp":7385797685458,"id":4061,"parentId":3378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":56632,"timestamp":7385797687044,"id":4100,"parentId":4060,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797743679,"id":4204,"parentId":4060,"tags":{},"startTime":1776992743930,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":58453,"timestamp":7385797685421,"id":4060,"parentId":3378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":56817,"timestamp":7385797687061,"id":4102,"parentId":4062,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797743882,"id":4205,"parentId":4062,"tags":{},"startTime":1776992743931,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":58505,"timestamp":7385797685496,"id":4062,"parentId":3378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":56902,"timestamp":7385797687103,"id":4103,"parentId":4063,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797744009,"id":4206,"parentId":4063,"tags":{},"startTime":1776992743931,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":58581,"timestamp":7385797685531,"id":4063,"parentId":3378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":57106,"timestamp":7385797687011,"id":4099,"parentId":4059,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797744120,"id":4207,"parentId":4059,"tags":{},"startTime":1776992743931,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":59601,"timestamp":7385797685382,"id":4059,"parentId":3379,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":57904,"timestamp":7385797687111,"id":4104,"parentId":4064,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":63,"timestamp":7385797745027,"id":4208,"parentId":4064,"tags":{},"startTime":1776992743932,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":59754,"timestamp":7385797685567,"id":4064,"parentId":3384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":58202,"timestamp":7385797687129,"id":4107,"parentId":4067,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797745336,"id":4209,"parentId":4067,"tags":{},"startTime":1776992743932,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":61560,"timestamp":7385797685677,"id":4067,"parentId":3386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":60150,"timestamp":7385797687117,"id":4105,"parentId":4065,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":66,"timestamp":7385797747278,"id":4210,"parentId":4065,"tags":{},"startTime":1776992743934,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":62317,"timestamp":7385797685605,"id":4065,"parentId":3384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":60820,"timestamp":7385797687123,"id":4106,"parentId":4066,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":51,"timestamp":7385797748033,"id":4211,"parentId":4066,"tags":{},"startTime":1776992743935,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":64386,"timestamp":7385797685641,"id":4066,"parentId":3384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":62903,"timestamp":7385797687134,"id":4108,"parentId":4068,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797750044,"id":4212,"parentId":4068,"tags":{},"startTime":1776992743937,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":64472,"timestamp":7385797685713,"id":4068,"parentId":3386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":63052,"timestamp":7385797687141,"id":4109,"parentId":4069,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797750197,"id":4213,"parentId":4069,"tags":{},"startTime":1776992743937,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":65045,"timestamp":7385797685749,"id":4069,"parentId":3386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"ssr"},"startTime":1776992743872,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":63652,"timestamp":7385797687150,"id":4111,"parentId":4071,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797750806,"id":4214,"parentId":4071,"tags":{},"startTime":1776992743938,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":66073,"timestamp":7385797685822,"id":4071,"parentId":3384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":64759,"timestamp":7385797687158,"id":4113,"parentId":4073,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":63,"timestamp":7385797751926,"id":4215,"parentId":4073,"tags":{},"startTime":1776992743939,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":66701,"timestamp":7385797685895,"id":4073,"parentId":3386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":65462,"timestamp":7385797687146,"id":4110,"parentId":4070,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797752614,"id":4216,"parentId":4070,"tags":{},"startTime":1776992743939,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":67267,"timestamp":7385797685785,"id":4070,"parentId":3384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":65930,"timestamp":7385797687154,"id":4112,"parentId":4072,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50,"timestamp":7385797753092,"id":4217,"parentId":4072,"tags":{},"startTime":1776992743940,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":67856,"timestamp":7385797685859,"id":4072,"parentId":3384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":66560,"timestamp":7385797687162,"id":4114,"parentId":4074,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797753727,"id":4218,"parentId":4074,"tags":{},"startTime":1776992743940,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":68125,"timestamp":7385797685933,"id":4074,"parentId":3386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":66890,"timestamp":7385797687181,"id":4119,"parentId":4079,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44,"timestamp":7385797754075,"id":4219,"parentId":4079,"tags":{},"startTime":1776992743941,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":69144,"timestamp":7385797686313,"id":4079,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":68299,"timestamp":7385797687166,"id":4115,"parentId":4075,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385797755470,"id":4220,"parentId":4075,"tags":{},"startTime":1776992743942,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":70129,"timestamp":7385797685970,"id":4075,"parentId":3386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":68918,"timestamp":7385797687188,"id":4121,"parentId":4081,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385797756110,"id":4221,"parentId":4081,"tags":{},"startTime":1776992743943,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":70495,"timestamp":7385797686425,"id":4081,"parentId":3387,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":69758,"timestamp":7385797687169,"id":4116,"parentId":4076,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797756931,"id":4222,"parentId":4076,"tags":{},"startTime":1776992743944,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":71014,"timestamp":7385797686007,"id":4076,"parentId":3379,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":69841,"timestamp":7385797687184,"id":4120,"parentId":4080,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797757028,"id":4223,"parentId":4080,"tags":{},"startTime":1776992743944,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":71332,"timestamp":7385797686377,"id":4080,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":70512,"timestamp":7385797687201,"id":4124,"parentId":4084,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797757717,"id":4224,"parentId":4084,"tags":{},"startTime":1776992743944,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":71303,"timestamp":7385797686543,"id":4084,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":70645,"timestamp":7385797687205,"id":4125,"parentId":4085,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797757853,"id":4225,"parentId":4085,"tags":{},"startTime":1776992743945,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":71370,"timestamp":7385797686589,"id":4085,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":70754,"timestamp":7385797687209,"id":4126,"parentId":4086,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797757966,"id":4226,"parentId":4086,"tags":{},"startTime":1776992743945,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":72708,"timestamp":7385797686628,"id":4086,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":72148,"timestamp":7385797687212,"id":4127,"parentId":4087,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":78,"timestamp":7385797759369,"id":4227,"parentId":4087,"tags":{},"startTime":1776992743946,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":73216,"timestamp":7385797686665,"id":4087,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":72690,"timestamp":7385797687197,"id":4123,"parentId":4083,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797759892,"id":4228,"parentId":4083,"tags":{},"startTime":1776992743947,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":73598,"timestamp":7385797686505,"id":4083,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":72919,"timestamp":7385797687191,"id":4122,"parentId":4082,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797760113,"id":4229,"parentId":4082,"tags":{},"startTime":1776992743947,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":74278,"timestamp":7385797686466,"id":4082,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":73533,"timestamp":7385797687216,"id":4128,"parentId":4088,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797760752,"id":4230,"parentId":4088,"tags":{},"startTime":1776992743947,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":74406,"timestamp":7385797686701,"id":4088,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":73853,"timestamp":7385797687259,"id":4132,"parentId":4092,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797761115,"id":4231,"parentId":4092,"tags":{},"startTime":1776992743948,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":74413,"timestamp":7385797686849,"id":4092,"parentId":3435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"ssr"},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":74042,"timestamp":7385797687225,"id":4130,"parentId":4090,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797761270,"id":4232,"parentId":4090,"tags":{},"startTime":1776992743948,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":74804,"timestamp":7385797686774,"id":4090,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"ssr"},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":74319,"timestamp":7385797687262,"id":4133,"parentId":4093,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797761584,"id":4233,"parentId":4093,"tags":{},"startTime":1776992743948,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":74771,"timestamp":7385797686886,"id":4093,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"ssr"},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":74407,"timestamp":7385797687255,"id":4131,"parentId":4091,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797761666,"id":4234,"parentId":4091,"tags":{},"startTime":1776992743948,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":75521,"timestamp":7385797686809,"id":4091,"parentId":3438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"ssr"},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":75162,"timestamp":7385797687173,"id":4117,"parentId":4077,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797762339,"id":4235,"parentId":4077,"tags":{},"startTime":1776992743949,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":77154,"timestamp":7385797686085,"id":4077,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":76068,"timestamp":7385797687177,"id":4118,"parentId":4078,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797763248,"id":4236,"parentId":4078,"tags":{},"startTime":1776992743950,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":77255,"timestamp":7385797686238,"id":4078,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":76279,"timestamp":7385797687220,"id":4129,"parentId":4089,"tags":{},"startTime":1776992743874,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797763502,"id":4237,"parentId":4089,"tags":{},"startTime":1776992743950,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":78130,"timestamp":7385797686738,"id":4089,"parentId":3427,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"ssr"},"startTime":1776992743873,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":84274,"timestamp":7385797690406,"id":4136,"parentId":4134,"tags":{},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797774690,"id":4238,"parentId":4134,"tags":{},"startTime":1776992743961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":84653,"timestamp":7385797690292,"id":4134,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"ssr"},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":84563,"timestamp":7385797690415,"id":4137,"parentId":4135,"tags":{},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":59,"timestamp":7385797774991,"id":4239,"parentId":4135,"tags":{},"startTime":1776992743962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":85757,"timestamp":7385797690357,"id":4135,"parentId":3439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"ssr"},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":85395,"timestamp":7385797690729,"id":4146,"parentId":4141,"tags":{},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797776129,"id":4240,"parentId":4141,"tags":{},"startTime":1776992743963,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":85842,"timestamp":7385797690643,"id":4141,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"ssr"},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":85771,"timestamp":7385797690719,"id":4143,"parentId":4138,"tags":{},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797776494,"id":4241,"parentId":4138,"tags":{},"startTime":1776992743963,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":86295,"timestamp":7385797690520,"id":4138,"parentId":3442,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"ssr"},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":86096,"timestamp":7385797690723,"id":4144,"parentId":4139,"tags":{},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797776823,"id":4242,"parentId":4139,"tags":{},"startTime":1776992743964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":86787,"timestamp":7385797690564,"id":4139,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"ssr"},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":86642,"timestamp":7385797690726,"id":4145,"parentId":4140,"tags":{},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":49,"timestamp":7385797777376,"id":4243,"parentId":4140,"tags":{},"startTime":1776992743964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":87584,"timestamp":7385797690603,"id":4140,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"ssr"},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":87474,"timestamp":7385797690731,"id":4147,"parentId":4142,"tags":{},"startTime":1776992743877,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797778210,"id":4244,"parentId":4142,"tags":{},"startTime":1776992743965,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":87764,"timestamp":7385797690681,"id":4142,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"ssr"},"startTime":1776992743877,"traceId":"27fab7e1c891f919"}] -[{"name":"read-resource","duration":9027,"timestamp":7385797827822,"id":4319,"parentId":4247,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385797836865,"id":4425,"parentId":4247,"tags":{},"startTime":1776992744024,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13100,"timestamp":7385797825017,"id":4247,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":10333,"timestamp":7385797827800,"id":4317,"parentId":4245,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797838140,"id":4426,"parentId":4245,"tags":{},"startTime":1776992744025,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13615,"timestamp":7385797824873,"id":4245,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":10629,"timestamp":7385797827871,"id":4321,"parentId":4249,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797838504,"id":4427,"parentId":4249,"tags":{},"startTime":1776992744025,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13570,"timestamp":7385797825094,"id":4249,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":10774,"timestamp":7385797827894,"id":4326,"parentId":4254,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797838671,"id":4428,"parentId":4254,"tags":{},"startTime":1776992744025,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13618,"timestamp":7385797825274,"id":4254,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11041,"timestamp":7385797827855,"id":4320,"parentId":4248,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797838899,"id":4429,"parentId":4248,"tags":{},"startTime":1776992744026,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13995,"timestamp":7385797825056,"id":4248,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11174,"timestamp":7385797827880,"id":4323,"parentId":4251,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797839057,"id":4430,"parentId":4251,"tags":{},"startTime":1776992744026,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14018,"timestamp":7385797825167,"id":4251,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11300,"timestamp":7385797827889,"id":4325,"parentId":4253,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797839192,"id":4431,"parentId":4253,"tags":{},"startTime":1776992744026,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14071,"timestamp":7385797825239,"id":4253,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11416,"timestamp":7385797827898,"id":4327,"parentId":4255,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797839316,"id":4432,"parentId":4255,"tags":{},"startTime":1776992744026,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14179,"timestamp":7385797825310,"id":4255,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11617,"timestamp":7385797827876,"id":4322,"parentId":4250,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797839495,"id":4433,"parentId":4250,"tags":{},"startTime":1776992744026,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14489,"timestamp":7385797825130,"id":4250,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11737,"timestamp":7385797827884,"id":4324,"parentId":4252,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25,"timestamp":7385797839625,"id":4434,"parentId":4252,"tags":{},"startTime":1776992744026,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14527,"timestamp":7385797825202,"id":4252,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11829,"timestamp":7385797827902,"id":4328,"parentId":4256,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797839734,"id":4435,"parentId":4256,"tags":{},"startTime":1776992744026,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14641,"timestamp":7385797825345,"id":4256,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":12084,"timestamp":7385797827906,"id":4329,"parentId":4257,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25,"timestamp":7385797839993,"id":4436,"parentId":4257,"tags":{},"startTime":1776992744027,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14746,"timestamp":7385797825382,"id":4257,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":12222,"timestamp":7385797827910,"id":4330,"parentId":4258,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797840135,"id":4437,"parentId":4258,"tags":{},"startTime":1776992744027,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16555,"timestamp":7385797825417,"id":4258,"parentId":3421,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14066,"timestamp":7385797827920,"id":4332,"parentId":4260,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":63,"timestamp":7385797841994,"id":4438,"parentId":4260,"tags":{},"startTime":1776992744029,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16759,"timestamp":7385797825549,"id":4260,"parentId":3423,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14395,"timestamp":7385797827931,"id":4334,"parentId":4262,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797842336,"id":4439,"parentId":4262,"tags":{},"startTime":1776992744029,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17067,"timestamp":7385797825759,"id":4262,"parentId":3446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14916,"timestamp":7385797827915,"id":4331,"parentId":4259,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797842835,"id":4440,"parentId":4259,"tags":{},"startTime":1776992744030,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17544,"timestamp":7385797825455,"id":4259,"parentId":3423,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15063,"timestamp":7385797827940,"id":4336,"parentId":4264,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797843006,"id":4441,"parentId":4264,"tags":{},"startTime":1776992744030,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17336,"timestamp":7385797825871,"id":4264,"parentId":3451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15269,"timestamp":7385797827944,"id":4337,"parentId":4265,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797843216,"id":4442,"parentId":4265,"tags":{},"startTime":1776992744030,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17845,"timestamp":7385797825917,"id":4265,"parentId":3447,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15953,"timestamp":7385797827815,"id":4318,"parentId":4246,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797843771,"id":4443,"parentId":4246,"tags":{},"startTime":1776992744031,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18959,"timestamp":7385797824971,"id":4246,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15988,"timestamp":7385797827948,"id":4338,"parentId":4266,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797843938,"id":4444,"parentId":4266,"tags":{},"startTime":1776992744031,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18129,"timestamp":7385797825960,"id":4266,"parentId":3449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16142,"timestamp":7385797827951,"id":4339,"parentId":4267,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797844096,"id":4445,"parentId":4267,"tags":{},"startTime":1776992744031,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19041,"timestamp":7385797825998,"id":4267,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17118,"timestamp":7385797827936,"id":4335,"parentId":4263,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":45,"timestamp":7385797845061,"id":4446,"parentId":4263,"tags":{},"startTime":1776992744032,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19551,"timestamp":7385797825803,"id":4263,"parentId":3446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17408,"timestamp":7385797827954,"id":4340,"parentId":4268,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797845366,"id":4447,"parentId":4268,"tags":{},"startTime":1776992744032,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19485,"timestamp":7385797826035,"id":4268,"parentId":3447,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17565,"timestamp":7385797827961,"id":4342,"parentId":4270,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797845530,"id":4448,"parentId":4270,"tags":{},"startTime":1776992744032,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19937,"timestamp":7385797826112,"id":4270,"parentId":3453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":18099,"timestamp":7385797827957,"id":4341,"parentId":4269,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385797846064,"id":4449,"parentId":4269,"tags":{},"startTime":1776992744033,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20498,"timestamp":7385797826075,"id":4269,"parentId":3449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":18606,"timestamp":7385797827972,"id":4346,"parentId":4274,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797846582,"id":4450,"parentId":4274,"tags":{},"startTime":1776992744033,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20988,"timestamp":7385797826266,"id":4274,"parentId":3506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19284,"timestamp":7385797827975,"id":4347,"parentId":4275,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385797847262,"id":4451,"parentId":4275,"tags":{},"startTime":1776992744034,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21947,"timestamp":7385797826306,"id":4275,"parentId":3509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20289,"timestamp":7385797827969,"id":4345,"parentId":4273,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797848263,"id":4452,"parentId":4273,"tags":{},"startTime":1776992744035,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22201,"timestamp":7385797826229,"id":4273,"parentId":3503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20476,"timestamp":7385797827964,"id":4343,"parentId":4271,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797848449,"id":4453,"parentId":4271,"tags":{},"startTime":1776992744035,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22614,"timestamp":7385797826152,"id":4271,"parentId":3446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20810,"timestamp":7385797827966,"id":4344,"parentId":4272,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797848781,"id":4454,"parentId":4272,"tags":{},"startTime":1776992744036,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22755,"timestamp":7385797826191,"id":4272,"parentId":3508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20974,"timestamp":7385797827977,"id":4348,"parentId":4276,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797848955,"id":4455,"parentId":4276,"tags":{},"startTime":1776992744036,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23092,"timestamp":7385797826342,"id":4276,"parentId":3449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":21451,"timestamp":7385797827989,"id":4352,"parentId":4280,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797849450,"id":4456,"parentId":4280,"tags":{},"startTime":1776992744036,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23141,"timestamp":7385797826485,"id":4280,"parentId":3549,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":21706,"timestamp":7385797827925,"id":4333,"parentId":4261,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797849636,"id":4457,"parentId":4261,"tags":{},"startTime":1776992744036,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24163,"timestamp":7385797825685,"id":4261,"parentId":3394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"ssr"},"startTime":1776992744012,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":21873,"timestamp":7385797827980,"id":4349,"parentId":4277,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":45,"timestamp":7385797849859,"id":4458,"parentId":4277,"tags":{},"startTime":1776992744037,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":24883,"timestamp":7385797826379,"id":4277,"parentId":3501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":23285,"timestamp":7385797827986,"id":4351,"parentId":4279,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797851276,"id":4459,"parentId":4279,"tags":{},"startTime":1776992744038,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27494,"timestamp":7385797826450,"id":4279,"parentId":3507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":25968,"timestamp":7385797827992,"id":4353,"parentId":4281,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797853971,"id":4460,"parentId":4281,"tags":{},"startTime":1776992744041,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27607,"timestamp":7385797826520,"id":4281,"parentId":3549,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26135,"timestamp":7385797827998,"id":4355,"parentId":4283,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797854135,"id":4461,"parentId":4283,"tags":{},"startTime":1776992744041,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27697,"timestamp":7385797826592,"id":4283,"parentId":3551,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26298,"timestamp":7385797827995,"id":4354,"parentId":4282,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797854295,"id":4462,"parentId":4282,"tags":{},"startTime":1776992744041,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28211,"timestamp":7385797826556,"id":4282,"parentId":3549,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26825,"timestamp":7385797827983,"id":4350,"parentId":4278,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797854812,"id":4463,"parentId":4278,"tags":{},"startTime":1776992744042,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28610,"timestamp":7385797826414,"id":4278,"parentId":3522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27017,"timestamp":7385797828012,"id":4357,"parentId":4285,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797855032,"id":4464,"parentId":4285,"tags":{},"startTime":1776992744042,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28812,"timestamp":7385797826662,"id":4285,"parentId":3549,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27459,"timestamp":7385797828018,"id":4359,"parentId":4287,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797855486,"id":4465,"parentId":4287,"tags":{},"startTime":1776992744042,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28930,"timestamp":7385797826732,"id":4287,"parentId":3662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27650,"timestamp":7385797828016,"id":4358,"parentId":4286,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797855679,"id":4466,"parentId":4286,"tags":{},"startTime":1776992744042,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29341,"timestamp":7385797826696,"id":4286,"parentId":3663,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28020,"timestamp":7385797828021,"id":4360,"parentId":4288,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797856044,"id":4467,"parentId":4288,"tags":{},"startTime":1776992744043,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29612,"timestamp":7385797826767,"id":4288,"parentId":3663,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28362,"timestamp":7385797828023,"id":4361,"parentId":4289,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797856389,"id":4468,"parentId":4289,"tags":{},"startTime":1776992744043,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29941,"timestamp":7385797826802,"id":4289,"parentId":3666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28719,"timestamp":7385797828029,"id":4363,"parentId":4291,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":64,"timestamp":7385797856751,"id":4469,"parentId":4291,"tags":{},"startTime":1776992744043,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30395,"timestamp":7385797826873,"id":4291,"parentId":3666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29240,"timestamp":7385797828034,"id":4365,"parentId":4293,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797857279,"id":4470,"parentId":4293,"tags":{},"startTime":1776992744044,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30818,"timestamp":7385797826943,"id":4293,"parentId":3668,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29730,"timestamp":7385797828037,"id":4366,"parentId":4294,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385797857771,"id":4471,"parentId":4294,"tags":{},"startTime":1776992744045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31168,"timestamp":7385797826978,"id":4294,"parentId":3667,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":30153,"timestamp":7385797828000,"id":4356,"parentId":4284,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385797858163,"id":4472,"parentId":4284,"tags":{},"startTime":1776992744045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32157,"timestamp":7385797826627,"id":4284,"parentId":3554,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"ssr"},"startTime":1776992744013,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":30751,"timestamp":7385797828039,"id":4367,"parentId":4295,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797858797,"id":4473,"parentId":4295,"tags":{},"startTime":1776992744046,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32138,"timestamp":7385797827013,"id":4295,"parentId":3673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":31130,"timestamp":7385797828031,"id":4364,"parentId":4292,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797859181,"id":4474,"parentId":4292,"tags":{},"startTime":1776992744046,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32487,"timestamp":7385797826907,"id":4292,"parentId":3666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":31358,"timestamp":7385797828043,"id":4369,"parentId":4297,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797859405,"id":4475,"parentId":4297,"tags":{},"startTime":1776992744046,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32682,"timestamp":7385797827082,"id":4297,"parentId":3699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":31748,"timestamp":7385797828026,"id":4362,"parentId":4290,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797859778,"id":4476,"parentId":4290,"tags":{},"startTime":1776992744047,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33333,"timestamp":7385797826837,"id":4290,"parentId":3663,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32132,"timestamp":7385797828045,"id":4370,"parentId":4298,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25,"timestamp":7385797860180,"id":4477,"parentId":4298,"tags":{},"startTime":1776992744047,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33193,"timestamp":7385797827115,"id":4298,"parentId":3699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32264,"timestamp":7385797828048,"id":4371,"parentId":4299,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797860314,"id":4478,"parentId":4299,"tags":{},"startTime":1776992744047,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33676,"timestamp":7385797827149,"id":4299,"parentId":3671,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32778,"timestamp":7385797828051,"id":4372,"parentId":4300,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797860832,"id":4479,"parentId":4300,"tags":{},"startTime":1776992744048,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34594,"timestamp":7385797827182,"id":4300,"parentId":3671,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33726,"timestamp":7385797828053,"id":4373,"parentId":4301,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797861783,"id":4480,"parentId":4301,"tags":{},"startTime":1776992744049,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34817,"timestamp":7385797827216,"id":4301,"parentId":3707,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33981,"timestamp":7385797828056,"id":4374,"parentId":4302,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797862040,"id":4481,"parentId":4302,"tags":{},"startTime":1776992744049,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35092,"timestamp":7385797827250,"id":4302,"parentId":3671,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34287,"timestamp":7385797828058,"id":4375,"parentId":4303,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797862349,"id":4482,"parentId":4303,"tags":{},"startTime":1776992744049,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35197,"timestamp":7385797827286,"id":4303,"parentId":3671,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34435,"timestamp":7385797828063,"id":4377,"parentId":4305,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797862501,"id":4483,"parentId":4305,"tags":{},"startTime":1776992744049,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35263,"timestamp":7385797827362,"id":4305,"parentId":3671,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34567,"timestamp":7385797828061,"id":4376,"parentId":4304,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797862631,"id":4484,"parentId":4304,"tags":{},"startTime":1776992744049,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35428,"timestamp":7385797827321,"id":4304,"parentId":3671,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34685,"timestamp":7385797828066,"id":4378,"parentId":4306,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797862754,"id":4485,"parentId":4306,"tags":{},"startTime":1776992744049,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35500,"timestamp":7385797827398,"id":4306,"parentId":3671,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34833,"timestamp":7385797828068,"id":4379,"parentId":4307,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385797862904,"id":4486,"parentId":4307,"tags":{},"startTime":1776992744050,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35576,"timestamp":7385797827433,"id":4307,"parentId":3671,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34931,"timestamp":7385797828082,"id":4384,"parentId":4312,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25,"timestamp":7385797863016,"id":4487,"parentId":4312,"tags":{},"startTime":1776992744050,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35597,"timestamp":7385797827603,"id":4312,"parentId":3708,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":35119,"timestamp":7385797828084,"id":4385,"parentId":4313,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797863206,"id":4488,"parentId":4313,"tags":{},"startTime":1776992744050,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35713,"timestamp":7385797827636,"id":4313,"parentId":3708,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":35279,"timestamp":7385797828073,"id":4381,"parentId":4309,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797863355,"id":4489,"parentId":4309,"tags":{},"startTime":1776992744050,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37229,"timestamp":7385797827501,"id":4309,"parentId":3709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36696,"timestamp":7385797828041,"id":4368,"parentId":4296,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385797864742,"id":4490,"parentId":4296,"tags":{},"startTime":1776992744051,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38410,"timestamp":7385797827047,"id":4296,"parentId":3699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37386,"timestamp":7385797828077,"id":4382,"parentId":4310,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797865467,"id":4491,"parentId":4310,"tags":{},"startTime":1776992744052,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38016,"timestamp":7385797827534,"id":4310,"parentId":3709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37485,"timestamp":7385797828070,"id":4380,"parentId":4308,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":48,"timestamp":7385797865619,"id":4492,"parentId":4308,"tags":{},"startTime":1776992744052,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40407,"timestamp":7385797827468,"id":4308,"parentId":3713,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":39805,"timestamp":7385797828079,"id":4383,"parentId":4311,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797867892,"id":4493,"parentId":4311,"tags":{},"startTime":1776992744055,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40657,"timestamp":7385797827569,"id":4311,"parentId":3709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":40143,"timestamp":7385797828091,"id":4388,"parentId":4316,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797868253,"id":4494,"parentId":4316,"tags":{},"startTime":1776992744055,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40886,"timestamp":7385797827736,"id":4316,"parentId":3710,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":50958,"timestamp":7385797828086,"id":4386,"parentId":4314,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385797879064,"id":4495,"parentId":4314,"tags":{},"startTime":1776992744066,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":52965,"timestamp":7385797827669,"id":4314,"parentId":3710,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":52558,"timestamp":7385797828088,"id":4387,"parentId":4315,"tags":{},"startTime":1776992744015,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797880653,"id":4496,"parentId":4315,"tags":{},"startTime":1776992744067,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":53882,"timestamp":7385797827703,"id":4315,"parentId":3710,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"ssr"},"startTime":1776992744014,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":61719,"timestamp":7385797831197,"id":4402,"parentId":4390,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797892928,"id":4497,"parentId":4390,"tags":{},"startTime":1776992744080,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":63233,"timestamp":7385797830613,"id":4390,"parentId":3712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"ssr"},"startTime":1776992744017,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":62642,"timestamp":7385797831212,"id":4404,"parentId":4392,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797893861,"id":4498,"parentId":4392,"tags":{},"startTime":1776992744081,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":63845,"timestamp":7385797830710,"id":4392,"parentId":3699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"ssr"},"startTime":1776992744017,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":63383,"timestamp":7385797831179,"id":4401,"parentId":4389,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797894566,"id":4499,"parentId":4389,"tags":{},"startTime":1776992744081,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":64620,"timestamp":7385797830537,"id":4389,"parentId":3710,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"ssr"},"startTime":1776992744017,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":63946,"timestamp":7385797831226,"id":4407,"parentId":4395,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797895177,"id":4500,"parentId":4395,"tags":{},"startTime":1776992744082,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":64880,"timestamp":7385797830855,"id":4395,"parentId":3717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"ssr"},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":64511,"timestamp":7385797831229,"id":4408,"parentId":4396,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797895746,"id":4501,"parentId":4396,"tags":{},"startTime":1776992744082,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":65043,"timestamp":7385797830928,"id":4396,"parentId":3717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"ssr"},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":64740,"timestamp":7385797831234,"id":4410,"parentId":4398,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797895978,"id":4502,"parentId":4398,"tags":{},"startTime":1776992744083,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":65208,"timestamp":7385797831019,"id":4398,"parentId":3717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"ssr"},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":65013,"timestamp":7385797831219,"id":4405,"parentId":4393,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797896235,"id":4503,"parentId":4393,"tags":{},"startTime":1776992744083,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":65754,"timestamp":7385797830754,"id":4393,"parentId":3699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"ssr"},"startTime":1776992744017,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":65307,"timestamp":7385797831204,"id":4403,"parentId":4391,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385797896514,"id":4504,"parentId":4391,"tags":{},"startTime":1776992744083,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":66023,"timestamp":7385797830662,"id":4391,"parentId":3708,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"ssr"},"startTime":1776992744017,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":65449,"timestamp":7385797831239,"id":4412,"parentId":4400,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797896692,"id":4505,"parentId":4400,"tags":{},"startTime":1776992744083,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":65852,"timestamp":7385797831119,"id":4400,"parentId":3728,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"ssr"},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":65743,"timestamp":7385797831232,"id":4409,"parentId":4397,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797896978,"id":4506,"parentId":4397,"tags":{},"startTime":1776992744084,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":66779,"timestamp":7385797830975,"id":4397,"parentId":3717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"ssr"},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":66537,"timestamp":7385797831223,"id":4406,"parentId":4394,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797897763,"id":4507,"parentId":4394,"tags":{},"startTime":1776992744085,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":67080,"timestamp":7385797830796,"id":4394,"parentId":3709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"ssr"},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":66643,"timestamp":7385797831237,"id":4411,"parentId":4399,"tags":{},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797897882,"id":4508,"parentId":4399,"tags":{},"startTime":1776992744085,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":67341,"timestamp":7385797831067,"id":4399,"parentId":3717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"ssr"},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":78136,"timestamp":7385797831968,"id":4420,"parentId":4414,"tags":{},"startTime":1776992744019,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797910115,"id":4509,"parentId":4414,"tags":{},"startTime":1776992744097,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":78968,"timestamp":7385797831698,"id":4414,"parentId":3764,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"ssr"},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":78703,"timestamp":7385797831971,"id":4421,"parentId":4415,"tags":{},"startTime":1776992744019,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797910680,"id":4510,"parentId":4415,"tags":{},"startTime":1776992744097,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":79165,"timestamp":7385797831737,"id":4415,"parentId":3764,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"ssr"},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":78931,"timestamp":7385797831976,"id":4423,"parentId":4417,"tags":{},"startTime":1776992744019,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":47,"timestamp":7385797910911,"id":4511,"parentId":4417,"tags":{},"startTime":1776992744098,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":81278,"timestamp":7385797831840,"id":4417,"parentId":3766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"ssr"},"startTime":1776992744019,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":81204,"timestamp":7385797831958,"id":4419,"parentId":4413,"tags":{},"startTime":1776992744019,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":90,"timestamp":7385797913176,"id":4512,"parentId":4413,"tags":{},"startTime":1776992744100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":82124,"timestamp":7385797831649,"id":4413,"parentId":3724,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"ssr"},"startTime":1776992744018,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":81811,"timestamp":7385797831974,"id":4422,"parentId":4416,"tags":{},"startTime":1776992744019,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":56,"timestamp":7385797913791,"id":4513,"parentId":4416,"tags":{},"startTime":1776992744101,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":82164,"timestamp":7385797831775,"id":4416,"parentId":3764,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"ssr"},"startTime":1776992744019,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":81969,"timestamp":7385797831978,"id":4424,"parentId":4418,"tags":{},"startTime":1776992744019,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797913952,"id":4514,"parentId":4418,"tags":{},"startTime":1776992744101,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":82974,"timestamp":7385797831907,"id":4418,"parentId":3772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"ssr"},"startTime":1776992744019,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":13819,"timestamp":7385797918272,"id":4545,"parentId":4515,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":100,"timestamp":7385797932102,"id":4695,"parentId":4515,"tags":{},"startTime":1776992744119,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16153,"timestamp":7385797916948,"id":4515,"parentId":3772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14815,"timestamp":7385797918301,"id":4548,"parentId":4518,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":72,"timestamp":7385797933122,"id":4696,"parentId":4518,"tags":{},"startTime":1776992744120,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16547,"timestamp":7385797917146,"id":4518,"parentId":3846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15379,"timestamp":7385797918321,"id":4549,"parentId":4519,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797933703,"id":4697,"parentId":4519,"tags":{},"startTime":1776992744120,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16711,"timestamp":7385797917185,"id":4519,"parentId":3846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15571,"timestamp":7385797918331,"id":4552,"parentId":4522,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797933906,"id":4698,"parentId":4522,"tags":{},"startTime":1776992744121,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16919,"timestamp":7385797917296,"id":4522,"parentId":3849,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15905,"timestamp":7385797918324,"id":4550,"parentId":4520,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797934232,"id":4699,"parentId":4520,"tags":{},"startTime":1776992744121,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17329,"timestamp":7385797917222,"id":4520,"parentId":3846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16225,"timestamp":7385797918333,"id":4553,"parentId":4523,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797934562,"id":4700,"parentId":4523,"tags":{},"startTime":1776992744121,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17512,"timestamp":7385797917332,"id":4523,"parentId":3846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":16513,"timestamp":7385797918337,"id":4554,"parentId":4524,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797934853,"id":4701,"parentId":4524,"tags":{},"startTime":1776992744122,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17869,"timestamp":7385797917368,"id":4524,"parentId":3857,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":19641,"timestamp":7385797918295,"id":4547,"parentId":4517,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797937942,"id":4702,"parentId":4517,"tags":{},"startTime":1776992744125,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22811,"timestamp":7385797917106,"id":4517,"parentId":3846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":21626,"timestamp":7385797918327,"id":4551,"parentId":4521,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":76,"timestamp":7385797939969,"id":4703,"parentId":4521,"tags":{},"startTime":1776992744127,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23458,"timestamp":7385797917259,"id":4521,"parentId":3849,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22381,"timestamp":7385797918350,"id":4557,"parentId":4527,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":65,"timestamp":7385797940739,"id":4704,"parentId":4527,"tags":{},"startTime":1776992744127,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23538,"timestamp":7385797917475,"id":4527,"parentId":3851,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22734,"timestamp":7385797918288,"id":4546,"parentId":4516,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797941027,"id":4705,"parentId":4516,"tags":{},"startTime":1776992744128,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24451,"timestamp":7385797917056,"id":4516,"parentId":3774,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"}] -[{"name":"read-resource","duration":23268,"timestamp":7385797918339,"id":4555,"parentId":4525,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":47,"timestamp":7385797941613,"id":4706,"parentId":4525,"tags":{},"startTime":1776992744128,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25604,"timestamp":7385797917403,"id":4525,"parentId":3856,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":24662,"timestamp":7385797918357,"id":4559,"parentId":4529,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797943023,"id":4707,"parentId":4529,"tags":{},"startTime":1776992744130,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26644,"timestamp":7385797917550,"id":4529,"parentId":3863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":25855,"timestamp":7385797918348,"id":4556,"parentId":4526,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":49,"timestamp":7385797944208,"id":4708,"parentId":4526,"tags":{},"startTime":1776992744131,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27064,"timestamp":7385797917439,"id":4526,"parentId":3858,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26147,"timestamp":7385797918362,"id":4561,"parentId":4531,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797944514,"id":4709,"parentId":4531,"tags":{},"startTime":1776992744131,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27155,"timestamp":7385797917641,"id":4531,"parentId":3863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26455,"timestamp":7385797918360,"id":4560,"parentId":4530,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385797944823,"id":4710,"parentId":4530,"tags":{},"startTime":1776992744132,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27812,"timestamp":7385797917599,"id":4530,"parentId":3863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27051,"timestamp":7385797918369,"id":4564,"parentId":4534,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39,"timestamp":7385797945426,"id":4711,"parentId":4534,"tags":{},"startTime":1776992744132,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27981,"timestamp":7385797917748,"id":4534,"parentId":3864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27370,"timestamp":7385797918367,"id":4563,"parentId":4533,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797945741,"id":4712,"parentId":4533,"tags":{},"startTime":1776992744132,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28245,"timestamp":7385797917713,"id":4533,"parentId":3863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27610,"timestamp":7385797918354,"id":4558,"parentId":4528,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797945969,"id":4713,"parentId":4528,"tags":{},"startTime":1776992744133,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30277,"timestamp":7385797917510,"id":4528,"parentId":3858,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29439,"timestamp":7385797918365,"id":4562,"parentId":4532,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":49,"timestamp":7385797947812,"id":4714,"parentId":4532,"tags":{},"startTime":1776992744135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30601,"timestamp":7385797917678,"id":4532,"parentId":3863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"ssr"},"startTime":1776992744104,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29921,"timestamp":7385797918373,"id":4566,"parentId":4536,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43,"timestamp":7385797948301,"id":4715,"parentId":4536,"tags":{},"startTime":1776992744135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30764,"timestamp":7385797917824,"id":4536,"parentId":3868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"ssr"},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":30226,"timestamp":7385797918375,"id":4567,"parentId":4537,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":45,"timestamp":7385797948609,"id":4716,"parentId":4537,"tags":{},"startTime":1776992744135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31352,"timestamp":7385797917859,"id":4537,"parentId":3872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"ssr"},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":30848,"timestamp":7385797918371,"id":4565,"parentId":4535,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797949224,"id":4717,"parentId":4535,"tags":{},"startTime":1776992744136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33258,"timestamp":7385797917789,"id":4535,"parentId":3191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32702,"timestamp":7385797918377,"id":4568,"parentId":4538,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797951087,"id":4718,"parentId":4538,"tags":{},"startTime":1776992744138,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33355,"timestamp":7385797917893,"id":4538,"parentId":3872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"ssr"},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":32871,"timestamp":7385797918382,"id":4570,"parentId":4540,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797951256,"id":4719,"parentId":4540,"tags":{},"startTime":1776992744138,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33740,"timestamp":7385797917968,"id":4540,"parentId":3899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"ssr"},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33333,"timestamp":7385797918380,"id":4569,"parentId":4539,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797951716,"id":4720,"parentId":4539,"tags":{},"startTime":1776992744138,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33890,"timestamp":7385797917934,"id":4539,"parentId":3905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"ssr"},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33436,"timestamp":7385797918391,"id":4574,"parentId":4544,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797951831,"id":4721,"parentId":4544,"tags":{},"startTime":1776992744139,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34087,"timestamp":7385797918119,"id":4544,"parentId":3954,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"ssr"},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33843,"timestamp":7385797918384,"id":4571,"parentId":4541,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797952231,"id":4722,"parentId":4541,"tags":{},"startTime":1776992744139,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34801,"timestamp":7385797918005,"id":4541,"parentId":3905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"ssr"},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":34598,"timestamp":7385797918386,"id":4572,"parentId":4542,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":57,"timestamp":7385797953111,"id":4723,"parentId":4542,"tags":{},"startTime":1776992744140,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35709,"timestamp":7385797918040,"id":4542,"parentId":3910,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"ssr"},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":35406,"timestamp":7385797918389,"id":4573,"parentId":4543,"tags":{},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1613,"timestamp":7385797953803,"id":4724,"parentId":4543,"tags":{},"startTime":1776992744141,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40034,"timestamp":7385797918081,"id":4543,"parentId":3905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"ssr"},"startTime":1776992744105,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36444,"timestamp":7385797929661,"id":4623,"parentId":4577,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":45,"timestamp":7385797966125,"id":4725,"parentId":4577,"tags":{},"startTime":1776992744153,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38664,"timestamp":7385797927921,"id":4577,"parentId":3959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":36941,"timestamp":7385797929655,"id":4622,"parentId":4576,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797966601,"id":4726,"parentId":4576,"tags":{},"startTime":1776992744153,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38911,"timestamp":7385797927875,"id":4576,"parentId":3954,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":37116,"timestamp":7385797929676,"id":4626,"parentId":4580,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385797966797,"id":4727,"parentId":4580,"tags":{},"startTime":1776992744154,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39738,"timestamp":7385797928079,"id":4580,"parentId":3964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38165,"timestamp":7385797929672,"id":4625,"parentId":4579,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50,"timestamp":7385797967847,"id":4728,"parentId":4579,"tags":{},"startTime":1776992744155,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40181,"timestamp":7385797928003,"id":4579,"parentId":3961,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":38550,"timestamp":7385797929644,"id":4621,"parentId":4575,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":72,"timestamp":7385797968200,"id":4729,"parentId":4575,"tags":{},"startTime":1776992744155,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41808,"timestamp":7385797927801,"id":4575,"parentId":3954,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":39939,"timestamp":7385797929683,"id":4628,"parentId":4582,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385797969628,"id":4730,"parentId":4582,"tags":{},"startTime":1776992744156,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41643,"timestamp":7385797928173,"id":4582,"parentId":3954,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":40132,"timestamp":7385797929690,"id":4630,"parentId":4584,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797969826,"id":4731,"parentId":4584,"tags":{},"startTime":1776992744157,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41713,"timestamp":7385797928259,"id":4584,"parentId":3963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":40335,"timestamp":7385797929679,"id":4627,"parentId":4581,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":153,"timestamp":7385797970018,"id":4732,"parentId":4581,"tags":{},"startTime":1776992744157,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42885,"timestamp":7385797928119,"id":4581,"parentId":3954,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41340,"timestamp":7385797929687,"id":4629,"parentId":4583,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385797971033,"id":4733,"parentId":4583,"tags":{},"startTime":1776992744158,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43407,"timestamp":7385797928220,"id":4583,"parentId":3966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41942,"timestamp":7385797929693,"id":4631,"parentId":4585,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797971640,"id":4734,"parentId":4585,"tags":{},"startTime":1776992744158,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44010,"timestamp":7385797928307,"id":4585,"parentId":3963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42626,"timestamp":7385797929700,"id":4634,"parentId":4588,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797972332,"id":4735,"parentId":4588,"tags":{},"startTime":1776992744159,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44067,"timestamp":7385797928416,"id":4588,"parentId":3957,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42822,"timestamp":7385797929668,"id":4624,"parentId":4578,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797972494,"id":4736,"parentId":4578,"tags":{},"startTime":1776992744159,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44648,"timestamp":7385797927960,"id":4578,"parentId":3961,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42917,"timestamp":7385797929695,"id":4632,"parentId":4586,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797972615,"id":4737,"parentId":4586,"tags":{},"startTime":1776992744159,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44570,"timestamp":7385797928344,"id":4586,"parentId":3962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":43220,"timestamp":7385797929698,"id":4633,"parentId":4587,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797972922,"id":4738,"parentId":4587,"tags":{},"startTime":1776992744160,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44650,"timestamp":7385797928381,"id":4587,"parentId":3957,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":43332,"timestamp":7385797929705,"id":4636,"parentId":4590,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797973040,"id":4739,"parentId":4590,"tags":{},"startTime":1776992744160,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":44865,"timestamp":7385797928487,"id":4590,"parentId":3971,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":43656,"timestamp":7385797929702,"id":4635,"parentId":4589,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":82,"timestamp":7385797973362,"id":4740,"parentId":4589,"tags":{},"startTime":1776992744160,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45440,"timestamp":7385797928453,"id":4589,"parentId":3971,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44189,"timestamp":7385797929709,"id":4638,"parentId":4592,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385797973903,"id":4741,"parentId":4592,"tags":{},"startTime":1776992744161,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45865,"timestamp":7385797928597,"id":4592,"parentId":3987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":44757,"timestamp":7385797929711,"id":4639,"parentId":4593,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797974472,"id":4742,"parentId":4593,"tags":{},"startTime":1776992744161,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":46932,"timestamp":7385797928637,"id":4593,"parentId":3984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":45861,"timestamp":7385797929714,"id":4640,"parentId":4594,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797975579,"id":4743,"parentId":4594,"tags":{},"startTime":1776992744162,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":47369,"timestamp":7385797928672,"id":4594,"parentId":3977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":46340,"timestamp":7385797929707,"id":4637,"parentId":4591,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797976051,"id":4744,"parentId":4591,"tags":{},"startTime":1776992744163,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":47993,"timestamp":7385797928559,"id":4591,"parentId":3963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":46828,"timestamp":7385797929731,"id":4643,"parentId":4597,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385797976564,"id":4745,"parentId":4597,"tags":{},"startTime":1776992744163,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":49093,"timestamp":7385797928788,"id":4597,"parentId":4001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":48181,"timestamp":7385797929727,"id":4642,"parentId":4596,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":67,"timestamp":7385797977934,"id":4746,"parentId":4596,"tags":{},"startTime":1776992744165,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":49465,"timestamp":7385797928752,"id":4596,"parentId":4001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":48511,"timestamp":7385797929716,"id":4641,"parentId":4595,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":190,"timestamp":7385797978232,"id":4747,"parentId":4595,"tags":{},"startTime":1776992744165,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":51858,"timestamp":7385797928707,"id":4595,"parentId":3973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"ssr"},"startTime":1776992744115,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":50845,"timestamp":7385797929734,"id":4644,"parentId":4598,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46,"timestamp":7385797980587,"id":4748,"parentId":4598,"tags":{},"startTime":1776992744167,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":51903,"timestamp":7385797928835,"id":4598,"parentId":4000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":51004,"timestamp":7385797929740,"id":4646,"parentId":4600,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797980748,"id":4749,"parentId":4600,"tags":{},"startTime":1776992744167,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":51999,"timestamp":7385797928923,"id":4600,"parentId":4000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":51188,"timestamp":7385797929738,"id":4645,"parentId":4599,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797980930,"id":4750,"parentId":4599,"tags":{},"startTime":1776992744168,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":52633,"timestamp":7385797928889,"id":4599,"parentId":4000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":51771,"timestamp":7385797929758,"id":4647,"parentId":4601,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385797981532,"id":4751,"parentId":4601,"tags":{},"startTime":1776992744168,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":52927,"timestamp":7385797928960,"id":4601,"parentId":3999,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":52149,"timestamp":7385797929760,"id":4648,"parentId":4602,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":60,"timestamp":7385797981922,"id":4752,"parentId":4602,"tags":{},"startTime":1776992744169,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":53308,"timestamp":7385797928995,"id":4602,"parentId":3999,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":52547,"timestamp":7385797929762,"id":4649,"parentId":4603,"tags":{},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797982315,"id":4753,"parentId":4603,"tags":{},"startTime":1776992744169,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":53502,"timestamp":7385797929030,"id":4603,"parentId":4067,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":52776,"timestamp":7385797929765,"id":4650,"parentId":4604,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":91,"timestamp":7385797982545,"id":4754,"parentId":4604,"tags":{},"startTime":1776992744169,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":54037,"timestamp":7385797929063,"id":4604,"parentId":4067,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":53339,"timestamp":7385797929767,"id":4651,"parentId":4605,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797983111,"id":4755,"parentId":4605,"tags":{},"startTime":1776992744170,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":54422,"timestamp":7385797929097,"id":4605,"parentId":4067,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":53753,"timestamp":7385797929772,"id":4653,"parentId":4607,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385797983529,"id":4756,"parentId":4607,"tags":{},"startTime":1776992744170,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":55157,"timestamp":7385797929163,"id":4607,"parentId":4089,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":54561,"timestamp":7385797929769,"id":4652,"parentId":4606,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385797984334,"id":4757,"parentId":4606,"tags":{},"startTime":1776992744171,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":55538,"timestamp":7385797929130,"id":4606,"parentId":4073,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":54897,"timestamp":7385797929776,"id":4655,"parentId":4609,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385797984677,"id":4758,"parentId":4609,"tags":{},"startTime":1776992744171,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":55681,"timestamp":7385797929229,"id":4609,"parentId":4077,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":55136,"timestamp":7385797929779,"id":4656,"parentId":4610,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797984920,"id":4759,"parentId":4610,"tags":{},"startTime":1776992744172,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":56151,"timestamp":7385797929262,"id":4610,"parentId":4089,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":55645,"timestamp":7385797929774,"id":4654,"parentId":4608,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385797985422,"id":4760,"parentId":4608,"tags":{},"startTime":1776992744172,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":56380,"timestamp":7385797929196,"id":4608,"parentId":4084,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":55804,"timestamp":7385797929781,"id":4657,"parentId":4611,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385797985591,"id":4761,"parentId":4611,"tags":{},"startTime":1776992744172,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":56501,"timestamp":7385797929295,"id":4611,"parentId":4091,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":56019,"timestamp":7385797929784,"id":4658,"parentId":4612,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385797985807,"id":4762,"parentId":4612,"tags":{},"startTime":1776992744173,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":56636,"timestamp":7385797929329,"id":4612,"parentId":4082,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":56187,"timestamp":7385797929786,"id":4659,"parentId":4613,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385797985976,"id":4763,"parentId":4613,"tags":{},"startTime":1776992744173,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":57459,"timestamp":7385797929361,"id":4613,"parentId":4089,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":57055,"timestamp":7385797929790,"id":4661,"parentId":4615,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":58,"timestamp":7385797986852,"id":4764,"parentId":4615,"tags":{},"startTime":1776992744174,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":57759,"timestamp":7385797929431,"id":4615,"parentId":4254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":57468,"timestamp":7385797929792,"id":4662,"parentId":4616,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385797987266,"id":4765,"parentId":4616,"tags":{},"startTime":1776992744174,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":57960,"timestamp":7385797929465,"id":4616,"parentId":4253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":57637,"timestamp":7385797929794,"id":4663,"parentId":4617,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385797987434,"id":4766,"parentId":4617,"tags":{},"startTime":1776992744174,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":58632,"timestamp":7385797929498,"id":4617,"parentId":4250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":58349,"timestamp":7385797929796,"id":4664,"parentId":4618,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":53,"timestamp":7385797988155,"id":4767,"parentId":4618,"tags":{},"startTime":1776992744175,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":59334,"timestamp":7385797929532,"id":4618,"parentId":4265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":59131,"timestamp":7385797929800,"id":4666,"parentId":4620,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":224,"timestamp":7385797988966,"id":4768,"parentId":4620,"tags":{},"startTime":1776992744176,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":60225,"timestamp":7385797929599,"id":4620,"parentId":4276,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":60050,"timestamp":7385797929798,"id":4665,"parentId":4619,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":55,"timestamp":7385797989854,"id":4769,"parentId":4619,"tags":{},"startTime":1776992744177,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":62843,"timestamp":7385797929566,"id":4619,"parentId":4294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":62653,"timestamp":7385797929788,"id":4660,"parentId":4614,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":54,"timestamp":7385797992452,"id":4770,"parentId":4614,"tags":{},"startTime":1776992744179,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":64383,"timestamp":7385797929393,"id":4614,"parentId":3713,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1776992744116,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":77828,"timestamp":7385797930751,"id":4681,"parentId":4669,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46,"timestamp":7385798008597,"id":4771,"parentId":4669,"tags":{},"startTime":1776992744195,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":79712,"timestamp":7385797930360,"id":4669,"parentId":4296,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":79331,"timestamp":7385797930758,"id":4684,"parentId":4672,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385798010098,"id":4772,"parentId":4672,"tags":{},"startTime":1776992744197,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":80266,"timestamp":7385797930468,"id":4672,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":79991,"timestamp":7385797930753,"id":4682,"parentId":4670,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":41,"timestamp":7385798010913,"id":4773,"parentId":4670,"tags":{},"startTime":1776992744198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":80942,"timestamp":7385797930397,"id":4670,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":80591,"timestamp":7385797930756,"id":4683,"parentId":4671,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385798011352,"id":4774,"parentId":4671,"tags":{},"startTime":1776992744198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":82135,"timestamp":7385797930433,"id":4671,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":81852,"timestamp":7385797930742,"id":4679,"parentId":4667,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":85,"timestamp":7385798012607,"id":4775,"parentId":4667,"tags":{},"startTime":1776992744199,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":84768,"timestamp":7385797930263,"id":4667,"parentId":4308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":84301,"timestamp":7385797930748,"id":4680,"parentId":4668,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":48,"timestamp":7385798015060,"id":4776,"parentId":4668,"tags":{},"startTime":1776992744202,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":85102,"timestamp":7385797930319,"id":4668,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":84699,"timestamp":7385797930760,"id":4685,"parentId":4673,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385798015464,"id":4777,"parentId":4673,"tags":{},"startTime":1776992744202,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":85093,"timestamp":7385797930501,"id":4673,"parentId":4390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":84838,"timestamp":7385797930764,"id":4687,"parentId":4675,"tags":{},"startTime":1776992744118,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385798015607,"id":4778,"parentId":4675,"tags":{},"startTime":1776992744202,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":85143,"timestamp":7385797930576,"id":4675,"parentId":4390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":84962,"timestamp":7385797930762,"id":4686,"parentId":4674,"tags":{},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25,"timestamp":7385798015727,"id":4779,"parentId":4674,"tags":{},"startTime":1776992744202,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":85302,"timestamp":7385797930535,"id":4674,"parentId":4390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":85074,"timestamp":7385797930766,"id":4688,"parentId":4676,"tags":{},"startTime":1776992744118,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25,"timestamp":7385798015844,"id":4780,"parentId":4676,"tags":{},"startTime":1776992744203,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":85355,"timestamp":7385797930618,"id":4676,"parentId":4390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":85207,"timestamp":7385797930771,"id":4690,"parentId":4678,"tags":{},"startTime":1776992744118,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385798015981,"id":4781,"parentId":4678,"tags":{},"startTime":1776992744203,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":85423,"timestamp":7385797930703,"id":4678,"parentId":4389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":85360,"timestamp":7385797930769,"id":4689,"parentId":4677,"tags":{},"startTime":1776992744118,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25,"timestamp":7385798016131,"id":4782,"parentId":4677,"tags":{},"startTime":1776992744203,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":85566,"timestamp":7385797930664,"id":4677,"parentId":4390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"ssr"},"startTime":1776992744117,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":99223,"timestamp":7385797931155,"id":4694,"parentId":4693,"tags":{},"startTime":1776992744118,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385798030391,"id":4783,"parentId":4693,"tags":{},"startTime":1776992744217,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":99660,"timestamp":7385797931108,"id":4693,"parentId":4296,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"ssr"},"startTime":1776992744118,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":99748,"timestamp":7385797931041,"id":4692,"parentId":4691,"tags":{},"startTime":1776992744118,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385798030794,"id":4784,"parentId":4691,"tags":{},"startTime":1776992744218,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":100300,"timestamp":7385797931003,"id":4691,"parentId":4397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"ssr"},"startTime":1776992744118,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":7200,"timestamp":7385798033179,"id":4790,"parentId":4787,"tags":{},"startTime":1776992744220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385798040384,"id":4819,"parentId":4787,"tags":{},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9114,"timestamp":7385798033077,"id":4787,"parentId":4521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"ssr"},"startTime":1776992744220,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":9050,"timestamp":7385798033160,"id":4788,"parentId":4785,"tags":{},"startTime":1776992744220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385798042213,"id":4820,"parentId":4785,"tags":{},"startTime":1776992744229,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9421,"timestamp":7385798032948,"id":4785,"parentId":4518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"ssr"},"startTime":1776992744220,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":9207,"timestamp":7385798033173,"id":4789,"parentId":4786,"tags":{},"startTime":1776992744220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385798042383,"id":4821,"parentId":4786,"tags":{},"startTime":1776992744229,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9445,"timestamp":7385798033035,"id":4786,"parentId":4521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"ssr"},"startTime":1776992744220,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6189,"timestamp":7385798038604,"id":4796,"parentId":4792,"tags":{},"startTime":1776992744225,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385798044798,"id":4822,"parentId":4792,"tags":{},"startTime":1776992744232,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6533,"timestamp":7385798038429,"id":4792,"parentId":4540,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"ssr"},"startTime":1776992744225,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6376,"timestamp":7385798038592,"id":4795,"parentId":4791,"tags":{},"startTime":1776992744225,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385798044971,"id":4823,"parentId":4791,"tags":{},"startTime":1776992744232,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6966,"timestamp":7385798038276,"id":4791,"parentId":4541,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"ssr"},"startTime":1776992744225,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6625,"timestamp":7385798038621,"id":4798,"parentId":4794,"tags":{},"startTime":1776992744225,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385798045248,"id":4824,"parentId":4794,"tags":{},"startTime":1776992744232,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7275,"timestamp":7385798038540,"id":4794,"parentId":4579,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"ssr"},"startTime":1776992744225,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":7208,"timestamp":7385798038610,"id":4797,"parentId":4793,"tags":{},"startTime":1776992744225,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385798045821,"id":4825,"parentId":4793,"tags":{},"startTime":1776992744233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7543,"timestamp":7385798038488,"id":4793,"parentId":4540,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"ssr"},"startTime":1776992744225,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":7627,"timestamp":7385798040057,"id":4804,"parentId":4799,"tags":{},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385798047689,"id":4826,"parentId":4799,"tags":{},"startTime":1776992744234,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8171,"timestamp":7385798039833,"id":4799,"parentId":4522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"ssr"},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":7946,"timestamp":7385798040065,"id":4805,"parentId":4800,"tags":{},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385798048014,"id":4827,"parentId":4800,"tags":{},"startTime":1776992744235,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8244,"timestamp":7385798039889,"id":4800,"parentId":4522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"ssr"},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":8068,"timestamp":7385798040070,"id":4806,"parentId":4801,"tags":{},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385798048140,"id":4828,"parentId":4801,"tags":{},"startTime":1776992744235,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8313,"timestamp":7385798039928,"id":4801,"parentId":4522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"ssr"},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":8169,"timestamp":7385798040074,"id":4807,"parentId":4802,"tags":{},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385798048246,"id":4829,"parentId":4802,"tags":{},"startTime":1776992744235,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8394,"timestamp":7385798039966,"id":4802,"parentId":4595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"ssr"},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":8033,"timestamp":7385798040330,"id":4814,"parentId":4809,"tags":{},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24,"timestamp":7385798048366,"id":4830,"parentId":4809,"tags":{},"startTime":1776992744235,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8304,"timestamp":7385798040123,"id":4809,"parentId":4672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"ssr"},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":8089,"timestamp":7385798040342,"id":4815,"parentId":4810,"tags":{},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25,"timestamp":7385798048434,"id":4831,"parentId":4810,"tags":{},"startTime":1776992744235,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8414,"timestamp":7385798040170,"id":4810,"parentId":4671,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"ssr"},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":9678,"timestamp":7385798040345,"id":4816,"parentId":4811,"tags":{},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385798050027,"id":4832,"parentId":4811,"tags":{},"startTime":1776992744237,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10021,"timestamp":7385798040206,"id":4811,"parentId":4667,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"ssr"},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":10151,"timestamp":7385798040081,"id":4808,"parentId":4803,"tags":{},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385798050234,"id":4833,"parentId":4803,"tags":{},"startTime":1776992744237,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10347,"timestamp":7385798040004,"id":4803,"parentId":4594,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"ssr"},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":10006,"timestamp":7385798040349,"id":4817,"parentId":4812,"tags":{},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31,"timestamp":7385798050357,"id":4834,"parentId":4812,"tags":{},"startTime":1776992744237,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10529,"timestamp":7385798040248,"id":4812,"parentId":4667,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"ssr"},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":10427,"timestamp":7385798040357,"id":4818,"parentId":4813,"tags":{},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385798050789,"id":4835,"parentId":4813,"tags":{},"startTime":1776992744238,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10764,"timestamp":7385798040291,"id":4813,"parentId":4616,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"ssr"},"startTime":1776992744227,"traceId":"27fab7e1c891f919"},{"name":"make","duration":1063159,"timestamp":7385796991336,"id":3110,"parentId":3109,"tags":{},"startTime":1776992743178,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":9136,"timestamp":7385798078595,"id":4837,"parentId":4836,"tags":{},"startTime":1776992744265,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":4,"timestamp":7385798087756,"id":4839,"parentId":4836,"tags":{},"startTime":1776992744274,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":5980,"timestamp":7385798087769,"id":4840,"parentId":4836,"tags":{},"startTime":1776992744275,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":7,"timestamp":7385798093773,"id":4841,"parentId":4836,"tags":{},"startTime":1776992744281,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385798093795,"id":4842,"parentId":4836,"tags":{},"startTime":1776992744281,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":7876,"timestamp":7385798087749,"id":4838,"parentId":4836,"tags":{},"startTime":1776992744274,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":5740,"timestamp":7385798099220,"id":4843,"parentId":4836,"tags":{},"startTime":1776992744286,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":59653,"timestamp":7385798104975,"id":4844,"parentId":4836,"tags":{},"startTime":1776992744292,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":1420,"timestamp":7385798166408,"id":4845,"parentId":4836,"tags":{},"startTime":1776992744353,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":88,"timestamp":7385798167827,"id":4846,"parentId":4836,"tags":{},"startTime":1776992744355,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":141,"timestamp":7385798167906,"id":4847,"parentId":4836,"tags":{},"startTime":1776992744355,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":132920,"timestamp":7385798168050,"id":4848,"parentId":4836,"tags":{},"startTime":1776992744355,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":234814,"timestamp":7385798071414,"id":4836,"parentId":3109,"tags":{},"startTime":1776992744258,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1321701,"timestamp":7385796990969,"id":3109,"parentId":3107,"tags":{"name":"server"},"startTime":1776992743178,"traceId":"27fab7e1c891f919"}] -[{"name":"emit","duration":48670,"timestamp":7385798312894,"id":4849,"parentId":3107,"tags":{},"startTime":1776992744500,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":1375768,"timestamp":7385796986304,"id":3107,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992743173,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":2644,"timestamp":7385798382521,"id":4860,"parentId":4851,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":721,"timestamp":7385798385470,"id":4871,"parentId":4869,"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(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992744572,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":4105,"timestamp":7385798382554,"id":4870,"parentId":4851,"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":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":4823,"timestamp":7385798382543,"id":4866,"parentId":4851,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":4957,"timestamp":7385798382548,"id":4868,"parentId":4851,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":6407,"timestamp":7385798382121,"id":4852,"parentId":4851,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":6117,"timestamp":7385798382419,"id":4854,"parentId":4851,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":6760,"timestamp":7385798382535,"id":4863,"parentId":4851,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":6837,"timestamp":7385798382540,"id":4865,"parentId":4851,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":6877,"timestamp":7385798382545,"id":4867,"parentId":4851,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":8331,"timestamp":7385798382455,"id":4857,"parentId":4851,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":9380,"timestamp":7385798382538,"id":4864,"parentId":4851,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":9598,"timestamp":7385798382526,"id":4861,"parentId":4851,"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":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":11216,"timestamp":7385798382445,"id":4856,"parentId":4851,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12161,"timestamp":7385798382465,"id":4858,"parentId":4851,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12401,"timestamp":7385798382532,"id":4862,"parentId":4851,"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":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12714,"timestamp":7385798382434,"id":4855,"parentId":4851,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12651,"timestamp":7385798382502,"id":4859,"parentId":4851,"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":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":13291,"timestamp":7385798382390,"id":4853,"parentId":4851,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11852,"timestamp":7385798394048,"id":4874,"parentId":4873,"tags":{},"startTime":1776992744581,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11963,"timestamp":7385798393948,"id":4873,"parentId":4872,"tags":{},"startTime":1776992744581,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":16830,"timestamp":7385798393731,"id":4872,"parentId":4871,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1776992744580,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":197,"timestamp":7385798416502,"id":4878,"parentId":4876,"tags":{},"startTime":1776992744603,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":349,"timestamp":7385798416510,"id":4879,"parentId":4877,"tags":{},"startTime":1776992744603,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":45,"timestamp":7385798416866,"id":4884,"parentId":4877,"tags":{},"startTime":1776992744604,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1008,"timestamp":7385798416429,"id":4877,"parentId":4872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"app-pages-browser"},"startTime":1776992744603,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22,"timestamp":7385798419629,"id":4891,"parentId":4885,"tags":{},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":55,"timestamp":7385798419634,"id":4892,"parentId":4886,"tags":{},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":78,"timestamp":7385798419638,"id":4893,"parentId":4887,"tags":{},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":100,"timestamp":7385798419640,"id":4894,"parentId":4888,"tags":{},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":123,"timestamp":7385798419647,"id":4895,"parentId":4889,"tags":{},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":147,"timestamp":7385798419649,"id":4896,"parentId":4890,"tags":{},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":164,"timestamp":7385798419659,"id":4897,"parentId":4885,"tags":{},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":131,"timestamp":7385798419691,"id":4898,"parentId":4886,"tags":{},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":106,"timestamp":7385798419717,"id":4899,"parentId":4887,"tags":{},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":81,"timestamp":7385798419742,"id":4900,"parentId":4888,"tags":{},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":53,"timestamp":7385798419771,"id":4901,"parentId":4889,"tags":{},"startTime":1776992744607,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26,"timestamp":7385798419798,"id":4902,"parentId":4890,"tags":{},"startTime":1776992744607,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1077,"timestamp":7385798419351,"id":4885,"parentId":4877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"app-pages-browser"},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1247,"timestamp":7385798419428,"id":4886,"parentId":4877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"app-pages-browser"},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1449,"timestamp":7385798419470,"id":4887,"parentId":4877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"app-pages-browser"},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1634,"timestamp":7385798419512,"id":4888,"parentId":4877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"app-pages-browser"},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1794,"timestamp":7385798419550,"id":4889,"parentId":4877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"app-pages-browser"},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1808,"timestamp":7385798419589,"id":4890,"parentId":4877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"app-pages-browser"},"startTime":1776992744606,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4899,"timestamp":7385798416572,"id":4881,"parentId":4880,"tags":{},"startTime":1776992744603,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4958,"timestamp":7385798416515,"id":4880,"parentId":4875,"tags":{},"startTime":1776992744603,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":6020,"timestamp":7385798416266,"id":4875,"parentId":4872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/error-boundary.tsx","layer":"app-pages-browser"},"startTime":1776992744603,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5493,"timestamp":7385798416843,"id":4883,"parentId":4882,"tags":{},"startTime":1776992744604,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5619,"timestamp":7385798416720,"id":4882,"parentId":4876,"tags":{},"startTime":1776992744603,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6830,"timestamp":7385798416383,"id":4876,"parentId":4872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.js","layer":"app-pages-browser"},"startTime":1776992744603,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":171,"timestamp":7385798442607,"id":4966,"parentId":4903,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":313,"timestamp":7385798442614,"id":4967,"parentId":4904,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":338,"timestamp":7385798442617,"id":4968,"parentId":4905,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":372,"timestamp":7385798442621,"id":4969,"parentId":4906,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":399,"timestamp":7385798442624,"id":4970,"parentId":4907,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":441,"timestamp":7385798442627,"id":4971,"parentId":4908,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":467,"timestamp":7385798442630,"id":4972,"parentId":4909,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":500,"timestamp":7385798442633,"id":4973,"parentId":4910,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":528,"timestamp":7385798442636,"id":4974,"parentId":4911,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":556,"timestamp":7385798442639,"id":4975,"parentId":4912,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":583,"timestamp":7385798442642,"id":4976,"parentId":4913,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":624,"timestamp":7385798442645,"id":4977,"parentId":4914,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":650,"timestamp":7385798442648,"id":4978,"parentId":4915,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":675,"timestamp":7385798442651,"id":4979,"parentId":4916,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":698,"timestamp":7385798442654,"id":4980,"parentId":4917,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":721,"timestamp":7385798442657,"id":4981,"parentId":4918,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":748,"timestamp":7385798442660,"id":4982,"parentId":4919,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":779,"timestamp":7385798442663,"id":4983,"parentId":4920,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":801,"timestamp":7385798442666,"id":4984,"parentId":4921,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":824,"timestamp":7385798442669,"id":4985,"parentId":4922,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":847,"timestamp":7385798442672,"id":4986,"parentId":4923,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":887,"timestamp":7385798442674,"id":4987,"parentId":4924,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":969,"timestamp":7385798442677,"id":4988,"parentId":4925,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":998,"timestamp":7385798442686,"id":4989,"parentId":4926,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1039,"timestamp":7385798442689,"id":4990,"parentId":4927,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1073,"timestamp":7385798442692,"id":4991,"parentId":4928,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1103,"timestamp":7385798442695,"id":4992,"parentId":4929,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1129,"timestamp":7385798442697,"id":4993,"parentId":4930,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1158,"timestamp":7385798442700,"id":4994,"parentId":4931,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1186,"timestamp":7385798442702,"id":4995,"parentId":4932,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1227,"timestamp":7385798442705,"id":4996,"parentId":4933,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1258,"timestamp":7385798442707,"id":4997,"parentId":4934,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1289,"timestamp":7385798442710,"id":4998,"parentId":4935,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1319,"timestamp":7385798442712,"id":4999,"parentId":4936,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1349,"timestamp":7385798442714,"id":5000,"parentId":4937,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1378,"timestamp":7385798442717,"id":5001,"parentId":4938,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1413,"timestamp":7385798442719,"id":5002,"parentId":4939,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1440,"timestamp":7385798442721,"id":5003,"parentId":4940,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1466,"timestamp":7385798442724,"id":5004,"parentId":4941,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2597,"timestamp":7385798442726,"id":5005,"parentId":4942,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2625,"timestamp":7385798442728,"id":5006,"parentId":4943,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2650,"timestamp":7385798442731,"id":5007,"parentId":4944,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2678,"timestamp":7385798442733,"id":5008,"parentId":4945,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2707,"timestamp":7385798442735,"id":5009,"parentId":4946,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2733,"timestamp":7385798442737,"id":5010,"parentId":4947,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2762,"timestamp":7385798442739,"id":5011,"parentId":4948,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2788,"timestamp":7385798442741,"id":5012,"parentId":4949,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2817,"timestamp":7385798442743,"id":5013,"parentId":4950,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2841,"timestamp":7385798442746,"id":5014,"parentId":4951,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"}] -[{"name":"read-resource","duration":3080,"timestamp":7385798442748,"id":5015,"parentId":4952,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3133,"timestamp":7385798442750,"id":5016,"parentId":4953,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3170,"timestamp":7385798442752,"id":5017,"parentId":4954,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3199,"timestamp":7385798442754,"id":5018,"parentId":4955,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3229,"timestamp":7385798442756,"id":5019,"parentId":4956,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3263,"timestamp":7385798442758,"id":5020,"parentId":4957,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3289,"timestamp":7385798442761,"id":5021,"parentId":4958,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3316,"timestamp":7385798442763,"id":5022,"parentId":4959,"tags":{},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3342,"timestamp":7385798442765,"id":5023,"parentId":4960,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3368,"timestamp":7385798442767,"id":5024,"parentId":4961,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3394,"timestamp":7385798442769,"id":5025,"parentId":4962,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3424,"timestamp":7385798442771,"id":5026,"parentId":4963,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3449,"timestamp":7385798442773,"id":5027,"parentId":4964,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3480,"timestamp":7385798442775,"id":5028,"parentId":4965,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3502,"timestamp":7385798442787,"id":5029,"parentId":4903,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3360,"timestamp":7385798442930,"id":5030,"parentId":4904,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3333,"timestamp":7385798442957,"id":5031,"parentId":4905,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3297,"timestamp":7385798442995,"id":5032,"parentId":4906,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3267,"timestamp":7385798443024,"id":5033,"parentId":4907,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3222,"timestamp":7385798443070,"id":5034,"parentId":4908,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3193,"timestamp":7385798443100,"id":5035,"parentId":4909,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3158,"timestamp":7385798443135,"id":5036,"parentId":4910,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3127,"timestamp":7385798443166,"id":5037,"parentId":4911,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3097,"timestamp":7385798443196,"id":5038,"parentId":4912,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3067,"timestamp":7385798443226,"id":5039,"parentId":4913,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3023,"timestamp":7385798443271,"id":5040,"parentId":4914,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2995,"timestamp":7385798443300,"id":5041,"parentId":4915,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2966,"timestamp":7385798443328,"id":5042,"parentId":4916,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2941,"timestamp":7385798443354,"id":5043,"parentId":4917,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2915,"timestamp":7385798443380,"id":5044,"parentId":4918,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2886,"timestamp":7385798443410,"id":5045,"parentId":4919,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2852,"timestamp":7385798443443,"id":5046,"parentId":4920,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2827,"timestamp":7385798443469,"id":5047,"parentId":4921,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2801,"timestamp":7385798443494,"id":5048,"parentId":4922,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2776,"timestamp":7385798443520,"id":5049,"parentId":4923,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2712,"timestamp":7385798443585,"id":5050,"parentId":4924,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2647,"timestamp":7385798443650,"id":5051,"parentId":4925,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2598,"timestamp":7385798443699,"id":5052,"parentId":4926,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2566,"timestamp":7385798443732,"id":5053,"parentId":4927,"tags":{},"startTime":1776992744630,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2529,"timestamp":7385798443769,"id":5054,"parentId":4928,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2498,"timestamp":7385798443800,"id":5055,"parentId":4929,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2469,"timestamp":7385798443830,"id":5056,"parentId":4930,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2438,"timestamp":7385798443861,"id":5057,"parentId":4931,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2406,"timestamp":7385798443893,"id":5058,"parentId":4932,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2363,"timestamp":7385798443936,"id":5059,"parentId":4933,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2331,"timestamp":7385798443968,"id":5060,"parentId":4934,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2298,"timestamp":7385798444002,"id":5061,"parentId":4935,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2266,"timestamp":7385798444034,"id":5062,"parentId":4936,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2234,"timestamp":7385798444066,"id":5063,"parentId":4937,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2204,"timestamp":7385798444097,"id":5064,"parentId":4938,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2167,"timestamp":7385798444134,"id":5065,"parentId":4939,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2138,"timestamp":7385798444163,"id":5066,"parentId":4940,"tags":{},"startTime":1776992744631,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1013,"timestamp":7385798445288,"id":5067,"parentId":4941,"tags":{},"startTime":1776992744632,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":975,"timestamp":7385798445327,"id":5068,"parentId":4942,"tags":{},"startTime":1776992744632,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":946,"timestamp":7385798445356,"id":5069,"parentId":4943,"tags":{},"startTime":1776992744632,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":920,"timestamp":7385798445383,"id":5070,"parentId":4944,"tags":{},"startTime":1776992744632,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":890,"timestamp":7385798445413,"id":5071,"parentId":4945,"tags":{},"startTime":1776992744632,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":859,"timestamp":7385798445444,"id":5072,"parentId":4946,"tags":{},"startTime":1776992744632,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":831,"timestamp":7385798445472,"id":5073,"parentId":4947,"tags":{},"startTime":1776992744632,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":801,"timestamp":7385798445503,"id":5074,"parentId":4948,"tags":{},"startTime":1776992744632,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":772,"timestamp":7385798445532,"id":5075,"parentId":4949,"tags":{},"startTime":1776992744632,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":742,"timestamp":7385798445562,"id":5076,"parentId":4950,"tags":{},"startTime":1776992744632,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":514,"timestamp":7385798445792,"id":5077,"parentId":4951,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":474,"timestamp":7385798445832,"id":5078,"parentId":4952,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":416,"timestamp":7385798445890,"id":5079,"parentId":4953,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":382,"timestamp":7385798445925,"id":5080,"parentId":4954,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":348,"timestamp":7385798445958,"id":5081,"parentId":4955,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":319,"timestamp":7385798445988,"id":5082,"parentId":4956,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":284,"timestamp":7385798446023,"id":5083,"parentId":4957,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":256,"timestamp":7385798446052,"id":5084,"parentId":4958,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":227,"timestamp":7385798446081,"id":5085,"parentId":4959,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":199,"timestamp":7385798446109,"id":5086,"parentId":4960,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":172,"timestamp":7385798446137,"id":5087,"parentId":4961,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":143,"timestamp":7385798446165,"id":5088,"parentId":4962,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":112,"timestamp":7385798446197,"id":5089,"parentId":4963,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":85,"timestamp":7385798446224,"id":5090,"parentId":4964,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":53,"timestamp":7385798446257,"id":5091,"parentId":4965,"tags":{},"startTime":1776992744633,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10910,"timestamp":7385798440216,"id":4903,"parentId":4885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11325,"timestamp":7385798440320,"id":4904,"parentId":4885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12258,"timestamp":7385798440366,"id":4905,"parentId":4885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12692,"timestamp":7385798440407,"id":4906,"parentId":4885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13848,"timestamp":7385798440447,"id":4907,"parentId":4885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14469,"timestamp":7385798440485,"id":4908,"parentId":4885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15474,"timestamp":7385798440522,"id":4909,"parentId":4886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15604,"timestamp":7385798440559,"id":4910,"parentId":4886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15634,"timestamp":7385798440597,"id":4911,"parentId":4887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16237,"timestamp":7385798440634,"id":4912,"parentId":4887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17792,"timestamp":7385798440671,"id":4913,"parentId":4890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17900,"timestamp":7385798440708,"id":4914,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17978,"timestamp":7385798440745,"id":4915,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"app-pages-browser"},"startTime":1776992744627,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18025,"timestamp":7385798440779,"id":4916,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18057,"timestamp":7385798440814,"id":4917,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18093,"timestamp":7385798440850,"id":4918,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18124,"timestamp":7385798440886,"id":4919,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18157,"timestamp":7385798440920,"id":4920,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18184,"timestamp":7385798440955,"id":4921,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18279,"timestamp":7385798440990,"id":4922,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18298,"timestamp":7385798441033,"id":4923,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18316,"timestamp":7385798441077,"id":4924,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18344,"timestamp":7385798441119,"id":4925,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18378,"timestamp":7385798441168,"id":4926,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":18493,"timestamp":7385798441206,"id":4927,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18523,"timestamp":7385798441242,"id":4928,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18542,"timestamp":7385798441280,"id":4929,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18559,"timestamp":7385798441317,"id":4930,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18572,"timestamp":7385798441354,"id":4931,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19918,"timestamp":7385798441390,"id":4932,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20110,"timestamp":7385798441451,"id":4933,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20947,"timestamp":7385798441486,"id":4934,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21316,"timestamp":7385798441520,"id":4935,"parentId":4888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22406,"timestamp":7385798441556,"id":4936,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22587,"timestamp":7385798441590,"id":4937,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22880,"timestamp":7385798441625,"id":4938,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22948,"timestamp":7385798441659,"id":4939,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23145,"timestamp":7385798441693,"id":4940,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23254,"timestamp":7385798441727,"id":4941,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23368,"timestamp":7385798441761,"id":4942,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"app-pages-browser"},"startTime":1776992744628,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23423,"timestamp":7385798441795,"id":4943,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23521,"timestamp":7385798441830,"id":4944,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23575,"timestamp":7385798441864,"id":4945,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23691,"timestamp":7385798441899,"id":4946,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23791,"timestamp":7385798441934,"id":4947,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23948,"timestamp":7385798441968,"id":4948,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24411,"timestamp":7385798442002,"id":4949,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24454,"timestamp":7385798442035,"id":4950,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24484,"timestamp":7385798442070,"id":4951,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24504,"timestamp":7385798442110,"id":4952,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25656,"timestamp":7385798442145,"id":4953,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25718,"timestamp":7385798442179,"id":4954,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25762,"timestamp":7385798442214,"id":4955,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25800,"timestamp":7385798442248,"id":4956,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25826,"timestamp":7385798442282,"id":4957,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25993,"timestamp":7385798442318,"id":4958,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26020,"timestamp":7385798442353,"id":4959,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26042,"timestamp":7385798442388,"id":4960,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26064,"timestamp":7385798442422,"id":4961,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26087,"timestamp":7385798442458,"id":4962,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26104,"timestamp":7385798442493,"id":4963,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26158,"timestamp":7385798442527,"id":4964,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26313,"timestamp":7385798442562,"id":4965,"parentId":4889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"app-pages-browser"},"startTime":1776992744629,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":388,"timestamp":7385798602417,"id":5154,"parentId":5092,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":434,"timestamp":7385798602429,"id":5155,"parentId":5093,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":465,"timestamp":7385798602434,"id":5156,"parentId":5094,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":503,"timestamp":7385798602439,"id":5157,"parentId":5095,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":697,"timestamp":7385798602443,"id":5158,"parentId":5096,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":735,"timestamp":7385798602448,"id":5159,"parentId":5097,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":811,"timestamp":7385798602452,"id":5160,"parentId":5098,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":843,"timestamp":7385798602456,"id":5161,"parentId":5099,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":871,"timestamp":7385798602460,"id":5162,"parentId":5100,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":909,"timestamp":7385798602464,"id":5163,"parentId":5101,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":934,"timestamp":7385798602467,"id":5164,"parentId":5102,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":972,"timestamp":7385798602470,"id":5165,"parentId":5103,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1012,"timestamp":7385798602474,"id":5166,"parentId":5104,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1040,"timestamp":7385798602479,"id":5167,"parentId":5105,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1066,"timestamp":7385798602483,"id":5168,"parentId":5106,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1100,"timestamp":7385798602486,"id":5169,"parentId":5107,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1139,"timestamp":7385798602490,"id":5170,"parentId":5108,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1163,"timestamp":7385798602493,"id":5171,"parentId":5109,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1187,"timestamp":7385798602497,"id":5172,"parentId":5110,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1216,"timestamp":7385798602500,"id":5173,"parentId":5111,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1249,"timestamp":7385798602503,"id":5174,"parentId":5112,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1275,"timestamp":7385798602507,"id":5175,"parentId":5113,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1299,"timestamp":7385798602511,"id":5176,"parentId":5114,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1324,"timestamp":7385798602514,"id":5177,"parentId":5115,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1351,"timestamp":7385798602517,"id":5178,"parentId":5116,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1376,"timestamp":7385798602521,"id":5179,"parentId":5117,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1399,"timestamp":7385798602525,"id":5180,"parentId":5118,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1422,"timestamp":7385798602528,"id":5181,"parentId":5119,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1449,"timestamp":7385798602532,"id":5182,"parentId":5120,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1479,"timestamp":7385798602535,"id":5183,"parentId":5121,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1513,"timestamp":7385798602538,"id":5184,"parentId":5122,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1542,"timestamp":7385798602541,"id":5185,"parentId":5123,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1574,"timestamp":7385798602544,"id":5186,"parentId":5124,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1636,"timestamp":7385798602547,"id":5187,"parentId":5125,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1671,"timestamp":7385798602550,"id":5188,"parentId":5126,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1706,"timestamp":7385798602553,"id":5189,"parentId":5127,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1733,"timestamp":7385798602556,"id":5190,"parentId":5128,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1759,"timestamp":7385798602560,"id":5191,"parentId":5129,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1812,"timestamp":7385798602563,"id":5192,"parentId":5130,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1866,"timestamp":7385798602566,"id":5193,"parentId":5131,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1899,"timestamp":7385798602570,"id":5194,"parentId":5132,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1945,"timestamp":7385798602573,"id":5195,"parentId":5133,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1981,"timestamp":7385798602576,"id":5196,"parentId":5134,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2013,"timestamp":7385798602579,"id":5197,"parentId":5135,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2042,"timestamp":7385798602582,"id":5198,"parentId":5136,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2073,"timestamp":7385798602585,"id":5199,"parentId":5137,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2100,"timestamp":7385798602588,"id":5200,"parentId":5138,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2125,"timestamp":7385798602592,"id":5201,"parentId":5139,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2148,"timestamp":7385798602596,"id":5202,"parentId":5140,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2180,"timestamp":7385798602599,"id":5203,"parentId":5141,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2215,"timestamp":7385798602602,"id":5204,"parentId":5142,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2240,"timestamp":7385798602605,"id":5205,"parentId":5143,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2274,"timestamp":7385798602608,"id":5206,"parentId":5144,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2297,"timestamp":7385798602612,"id":5207,"parentId":5145,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2325,"timestamp":7385798602615,"id":5208,"parentId":5146,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2370,"timestamp":7385798602618,"id":5209,"parentId":5147,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2430,"timestamp":7385798602621,"id":5210,"parentId":5148,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2470,"timestamp":7385798602624,"id":5211,"parentId":5149,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2499,"timestamp":7385798602627,"id":5212,"parentId":5150,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2528,"timestamp":7385798602630,"id":5213,"parentId":5151,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2560,"timestamp":7385798602633,"id":5214,"parentId":5152,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2585,"timestamp":7385798602636,"id":5215,"parentId":5153,"tags":{},"startTime":1776992744789,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":3328,"timestamp":7385798602819,"id":5216,"parentId":5092,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3283,"timestamp":7385798602866,"id":5217,"parentId":5093,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3249,"timestamp":7385798602901,"id":5218,"parentId":5094,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3207,"timestamp":7385798602945,"id":5219,"parentId":5095,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3002,"timestamp":7385798603150,"id":5220,"parentId":5096,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2966,"timestamp":7385798603187,"id":5221,"parentId":5097,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2887,"timestamp":7385798603267,"id":5222,"parentId":5098,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2853,"timestamp":7385798603302,"id":5223,"parentId":5099,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2822,"timestamp":7385798603333,"id":5224,"parentId":5100,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2781,"timestamp":7385798603376,"id":5225,"parentId":5101,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2754,"timestamp":7385798603403,"id":5226,"parentId":5102,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2713,"timestamp":7385798603445,"id":5227,"parentId":5103,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2669,"timestamp":7385798603491,"id":5228,"parentId":5104,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2640,"timestamp":7385798603521,"id":5229,"parentId":5105,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2610,"timestamp":7385798603552,"id":5230,"parentId":5106,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2573,"timestamp":7385798603589,"id":5231,"parentId":5107,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2532,"timestamp":7385798603632,"id":5232,"parentId":5108,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2506,"timestamp":7385798603658,"id":5233,"parentId":5109,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2479,"timestamp":7385798603687,"id":5234,"parentId":5110,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2448,"timestamp":7385798603719,"id":5235,"parentId":5111,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2412,"timestamp":7385798603755,"id":5236,"parentId":5112,"tags":{},"startTime":1776992744790,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2384,"timestamp":7385798603784,"id":5237,"parentId":5113,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2357,"timestamp":7385798603812,"id":5238,"parentId":5114,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2329,"timestamp":7385798603841,"id":5239,"parentId":5115,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2300,"timestamp":7385798603871,"id":5240,"parentId":5116,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2273,"timestamp":7385798603899,"id":5241,"parentId":5117,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2247,"timestamp":7385798603926,"id":5242,"parentId":5118,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2221,"timestamp":7385798603952,"id":5243,"parentId":5119,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2191,"timestamp":7385798603983,"id":5244,"parentId":5120,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2158,"timestamp":7385798604016,"id":5245,"parentId":5121,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2122,"timestamp":7385798604053,"id":5246,"parentId":5122,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2090,"timestamp":7385798604086,"id":5247,"parentId":5123,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2055,"timestamp":7385798604122,"id":5248,"parentId":5124,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1990,"timestamp":7385798604187,"id":5249,"parentId":5125,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1955,"timestamp":7385798604224,"id":5250,"parentId":5126,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1917,"timestamp":7385798604262,"id":5251,"parentId":5127,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1887,"timestamp":7385798604293,"id":5252,"parentId":5128,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1859,"timestamp":7385798604322,"id":5253,"parentId":5129,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1792,"timestamp":7385798604390,"id":5254,"parentId":5130,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1744,"timestamp":7385798604438,"id":5255,"parentId":5131,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1711,"timestamp":7385798604472,"id":5256,"parentId":5132,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1659,"timestamp":7385798604525,"id":5257,"parentId":5133,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1624,"timestamp":7385798604560,"id":5258,"parentId":5134,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1590,"timestamp":7385798604595,"id":5259,"parentId":5135,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1558,"timestamp":7385798604628,"id":5260,"parentId":5136,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1526,"timestamp":7385798604661,"id":5261,"parentId":5137,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1496,"timestamp":7385798604691,"id":5262,"parentId":5138,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1469,"timestamp":7385798604720,"id":5263,"parentId":5139,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1442,"timestamp":7385798604747,"id":5264,"parentId":5140,"tags":{},"startTime":1776992744791,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1408,"timestamp":7385798604782,"id":5265,"parentId":5141,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1372,"timestamp":7385798604819,"id":5266,"parentId":5142,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1344,"timestamp":7385798604848,"id":5267,"parentId":5143,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1308,"timestamp":7385798604885,"id":5268,"parentId":5144,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1281,"timestamp":7385798604912,"id":5269,"parentId":5145,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1251,"timestamp":7385798604942,"id":5270,"parentId":5146,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1202,"timestamp":7385798604992,"id":5271,"parentId":5147,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1138,"timestamp":7385798605056,"id":5272,"parentId":5148,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1099,"timestamp":7385798605096,"id":5273,"parentId":5149,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1067,"timestamp":7385798605129,"id":5274,"parentId":5150,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1035,"timestamp":7385798605161,"id":5275,"parentId":5151,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1001,"timestamp":7385798605195,"id":5276,"parentId":5152,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":838,"timestamp":7385798605360,"id":5277,"parentId":5153,"tags":{},"startTime":1776992744792,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8548,"timestamp":7385798598693,"id":5092,"parentId":4885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"app-pages-browser"},"startTime":1776992744785,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9659,"timestamp":7385798598813,"id":5093,"parentId":4885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12338,"timestamp":7385798598861,"id":5094,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12556,"timestamp":7385798598900,"id":5095,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12686,"timestamp":7385798598943,"id":5096,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14056,"timestamp":7385798599069,"id":5097,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15750,"timestamp":7385798599135,"id":5098,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16034,"timestamp":7385798599182,"id":5099,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16892,"timestamp":7385798599225,"id":5100,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16952,"timestamp":7385798599270,"id":5101,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19710,"timestamp":7385798599309,"id":5102,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21925,"timestamp":7385798599347,"id":5103,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22652,"timestamp":7385798599390,"id":5104,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23106,"timestamp":7385798599427,"id":5105,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23342,"timestamp":7385798599471,"id":5106,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24447,"timestamp":7385798599514,"id":5107,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24519,"timestamp":7385798599558,"id":5108,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24620,"timestamp":7385798599599,"id":5109,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25073,"timestamp":7385798599635,"id":5110,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25255,"timestamp":7385798599671,"id":5111,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25401,"timestamp":7385798599713,"id":5112,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25523,"timestamp":7385798599753,"id":5113,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"app-pages-browser"},"startTime":1776992744786,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25735,"timestamp":7385798599793,"id":5114,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25915,"timestamp":7385798599833,"id":5115,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26051,"timestamp":7385798599872,"id":5116,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26083,"timestamp":7385798599907,"id":5117,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26131,"timestamp":7385798599944,"id":5118,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26151,"timestamp":7385798599982,"id":5119,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26388,"timestamp":7385798600021,"id":5120,"parentId":4904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26805,"timestamp":7385798600056,"id":5121,"parentId":4905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27107,"timestamp":7385798600095,"id":5122,"parentId":4906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27818,"timestamp":7385798600131,"id":5123,"parentId":4906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30043,"timestamp":7385798600167,"id":5124,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30694,"timestamp":7385798600202,"id":5125,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32631,"timestamp":7385798600239,"id":5126,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32823,"timestamp":7385798600275,"id":5127,"parentId":4905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33013,"timestamp":7385798600315,"id":5128,"parentId":4907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33352,"timestamp":7385798600353,"id":5129,"parentId":4907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34102,"timestamp":7385798600390,"id":5130,"parentId":4907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":34399,"timestamp":7385798600431,"id":5131,"parentId":4907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34552,"timestamp":7385798600469,"id":5132,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34773,"timestamp":7385798600506,"id":5133,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34966,"timestamp":7385798600548,"id":5134,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35007,"timestamp":7385798600591,"id":5135,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35060,"timestamp":7385798600627,"id":5136,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35082,"timestamp":7385798600669,"id":5137,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35115,"timestamp":7385798600704,"id":5138,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35527,"timestamp":7385798600743,"id":5139,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"app-pages-browser"},"startTime":1776992744787,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36666,"timestamp":7385798600798,"id":5140,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"app-pages-browser"},"startTime":1776992744788,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37037,"timestamp":7385798600837,"id":5141,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"app-pages-browser"},"startTime":1776992744788,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37263,"timestamp":7385798600873,"id":5142,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"app-pages-browser"},"startTime":1776992744788,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37635,"timestamp":7385798600908,"id":5143,"parentId":4904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"app-pages-browser"},"startTime":1776992744788,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37858,"timestamp":7385798600943,"id":5144,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"app-pages-browser"},"startTime":1776992744788,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37134,"timestamp":7385798601950,"id":5145,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"app-pages-browser"},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38264,"timestamp":7385798602024,"id":5146,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"app-pages-browser"},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39282,"timestamp":7385798602069,"id":5147,"parentId":4909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"app-pages-browser"},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40116,"timestamp":7385798602115,"id":5148,"parentId":4910,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"app-pages-browser"},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40526,"timestamp":7385798602159,"id":5149,"parentId":4913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"app-pages-browser"},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40851,"timestamp":7385798602200,"id":5150,"parentId":4913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"app-pages-browser"},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41375,"timestamp":7385798602238,"id":5151,"parentId":4913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"app-pages-browser"},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41584,"timestamp":7385798602276,"id":5152,"parentId":4914,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"app-pages-browser"},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41776,"timestamp":7385798602313,"id":5153,"parentId":4914,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"app-pages-browser"},"startTime":1776992744789,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":361,"timestamp":7385798679355,"id":5326,"parentId":5278,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":418,"timestamp":7385798679361,"id":5327,"parentId":5279,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":452,"timestamp":7385798679364,"id":5328,"parentId":5280,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":481,"timestamp":7385798679368,"id":5329,"parentId":5281,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":515,"timestamp":7385798679371,"id":5330,"parentId":5282,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":561,"timestamp":7385798679374,"id":5331,"parentId":5283,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":585,"timestamp":7385798679378,"id":5332,"parentId":5284,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":625,"timestamp":7385798679382,"id":5333,"parentId":5285,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":661,"timestamp":7385798679386,"id":5334,"parentId":5286,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":693,"timestamp":7385798679388,"id":5335,"parentId":5287,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":730,"timestamp":7385798679392,"id":5336,"parentId":5288,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":760,"timestamp":7385798679395,"id":5337,"parentId":5289,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":791,"timestamp":7385798679397,"id":5338,"parentId":5290,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":815,"timestamp":7385798679401,"id":5339,"parentId":5291,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":841,"timestamp":7385798679404,"id":5340,"parentId":5292,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":869,"timestamp":7385798679407,"id":5341,"parentId":5293,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":906,"timestamp":7385798679410,"id":5342,"parentId":5294,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":936,"timestamp":7385798679413,"id":5343,"parentId":5295,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":968,"timestamp":7385798679416,"id":5344,"parentId":5296,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":995,"timestamp":7385798679419,"id":5345,"parentId":5297,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1019,"timestamp":7385798679422,"id":5346,"parentId":5298,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1047,"timestamp":7385798679425,"id":5347,"parentId":5299,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1073,"timestamp":7385798679427,"id":5348,"parentId":5300,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1103,"timestamp":7385798679430,"id":5349,"parentId":5301,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1137,"timestamp":7385798679433,"id":5350,"parentId":5302,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1176,"timestamp":7385798679435,"id":5351,"parentId":5303,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1201,"timestamp":7385798679437,"id":5352,"parentId":5304,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1242,"timestamp":7385798679440,"id":5353,"parentId":5305,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1275,"timestamp":7385798679443,"id":5354,"parentId":5306,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1306,"timestamp":7385798679446,"id":5355,"parentId":5307,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1331,"timestamp":7385798679448,"id":5356,"parentId":5308,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1356,"timestamp":7385798679450,"id":5357,"parentId":5309,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1381,"timestamp":7385798679453,"id":5358,"parentId":5310,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1424,"timestamp":7385798679455,"id":5359,"parentId":5311,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1514,"timestamp":7385798679458,"id":5360,"parentId":5312,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1542,"timestamp":7385798679460,"id":5361,"parentId":5313,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1598,"timestamp":7385798679462,"id":5362,"parentId":5314,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1623,"timestamp":7385798679465,"id":5363,"parentId":5315,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1659,"timestamp":7385798679467,"id":5364,"parentId":5316,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1692,"timestamp":7385798679469,"id":5365,"parentId":5317,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1716,"timestamp":7385798679472,"id":5366,"parentId":5318,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1741,"timestamp":7385798679474,"id":5367,"parentId":5319,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1769,"timestamp":7385798679476,"id":5368,"parentId":5320,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1816,"timestamp":7385798679479,"id":5369,"parentId":5321,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1844,"timestamp":7385798679481,"id":5370,"parentId":5322,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1871,"timestamp":7385798679483,"id":5371,"parentId":5323,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1914,"timestamp":7385798679485,"id":5372,"parentId":5324,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1949,"timestamp":7385798679488,"id":5373,"parentId":5325,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6816,"timestamp":7385798679726,"id":5374,"parentId":5278,"tags":{},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6763,"timestamp":7385798679781,"id":5375,"parentId":5279,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6726,"timestamp":7385798679819,"id":5376,"parentId":5280,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6694,"timestamp":7385798679851,"id":5377,"parentId":5281,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6657,"timestamp":7385798679888,"id":5378,"parentId":5282,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6608,"timestamp":7385798679937,"id":5379,"parentId":5283,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6581,"timestamp":7385798679965,"id":5380,"parentId":5284,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6537,"timestamp":7385798680009,"id":5381,"parentId":5285,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6498,"timestamp":7385798680049,"id":5382,"parentId":5286,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6463,"timestamp":7385798680084,"id":5383,"parentId":5287,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6424,"timestamp":7385798680123,"id":5384,"parentId":5288,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6391,"timestamp":7385798680156,"id":5385,"parentId":5289,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6357,"timestamp":7385798680190,"id":5386,"parentId":5290,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6329,"timestamp":7385798680219,"id":5387,"parentId":5291,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6301,"timestamp":7385798680247,"id":5388,"parentId":5292,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6271,"timestamp":7385798680278,"id":5389,"parentId":5293,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6231,"timestamp":7385798680318,"id":5390,"parentId":5294,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6199,"timestamp":7385798680351,"id":5391,"parentId":5295,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6164,"timestamp":7385798680386,"id":5392,"parentId":5296,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6134,"timestamp":7385798680416,"id":5393,"parentId":5297,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6107,"timestamp":7385798680443,"id":5394,"parentId":5298,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6077,"timestamp":7385798680473,"id":5395,"parentId":5299,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6050,"timestamp":7385798680501,"id":5396,"parentId":5300,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6017,"timestamp":7385798680535,"id":5397,"parentId":5301,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5980,"timestamp":7385798680571,"id":5398,"parentId":5302,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5939,"timestamp":7385798680613,"id":5399,"parentId":5303,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5912,"timestamp":7385798680641,"id":5400,"parentId":5304,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5869,"timestamp":7385798680683,"id":5401,"parentId":5305,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5833,"timestamp":7385798680720,"id":5402,"parentId":5306,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5799,"timestamp":7385798680754,"id":5403,"parentId":5307,"tags":{},"startTime":1776992744867,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":5973,"timestamp":7385798680781,"id":5404,"parentId":5308,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5951,"timestamp":7385798680808,"id":5405,"parentId":5309,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5924,"timestamp":7385798680836,"id":5406,"parentId":5310,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5879,"timestamp":7385798680881,"id":5407,"parentId":5311,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5787,"timestamp":7385798680974,"id":5408,"parentId":5312,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5758,"timestamp":7385798681004,"id":5409,"parentId":5313,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5700,"timestamp":7385798681062,"id":5410,"parentId":5314,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5673,"timestamp":7385798681090,"id":5411,"parentId":5315,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5635,"timestamp":7385798681127,"id":5412,"parentId":5316,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5600,"timestamp":7385798681163,"id":5413,"parentId":5317,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5574,"timestamp":7385798681190,"id":5414,"parentId":5318,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5547,"timestamp":7385798681216,"id":5415,"parentId":5319,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5517,"timestamp":7385798681247,"id":5416,"parentId":5320,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5467,"timestamp":7385798681297,"id":5417,"parentId":5321,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5438,"timestamp":7385798681327,"id":5418,"parentId":5322,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5409,"timestamp":7385798681356,"id":5419,"parentId":5323,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5365,"timestamp":7385798681401,"id":5420,"parentId":5324,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5327,"timestamp":7385798681438,"id":5421,"parentId":5325,"tags":{},"startTime":1776992744868,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10378,"timestamp":7385798677463,"id":5278,"parentId":4915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"app-pages-browser"},"startTime":1776992744864,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10383,"timestamp":7385798677567,"id":5279,"parentId":4916,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"app-pages-browser"},"startTime":1776992744864,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10421,"timestamp":7385798677612,"id":5280,"parentId":4916,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"app-pages-browser"},"startTime":1776992744864,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10619,"timestamp":7385798677664,"id":5281,"parentId":4914,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"app-pages-browser"},"startTime":1776992744864,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12708,"timestamp":7385798677710,"id":5282,"parentId":4914,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"app-pages-browser"},"startTime":1776992744864,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12848,"timestamp":7385798677749,"id":5283,"parentId":4915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"app-pages-browser"},"startTime":1776992744864,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14377,"timestamp":7385798677787,"id":5284,"parentId":4915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14870,"timestamp":7385798677829,"id":5285,"parentId":4916,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15354,"timestamp":7385798677864,"id":5286,"parentId":4916,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15580,"timestamp":7385798677904,"id":5287,"parentId":4916,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15697,"timestamp":7385798677941,"id":5288,"parentId":4917,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17026,"timestamp":7385798677976,"id":5289,"parentId":4917,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17262,"timestamp":7385798678016,"id":5290,"parentId":4918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17375,"timestamp":7385798678051,"id":5291,"parentId":4918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17987,"timestamp":7385798678100,"id":5292,"parentId":4911,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19266,"timestamp":7385798678138,"id":5293,"parentId":4912,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20093,"timestamp":7385798678174,"id":5294,"parentId":4913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20979,"timestamp":7385798678207,"id":5295,"parentId":4913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21575,"timestamp":7385798678241,"id":5296,"parentId":4922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21681,"timestamp":7385798678274,"id":5297,"parentId":4922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22136,"timestamp":7385798678308,"id":5298,"parentId":4918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22308,"timestamp":7385798678342,"id":5299,"parentId":4918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22525,"timestamp":7385798678379,"id":5300,"parentId":4919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22899,"timestamp":7385798678412,"id":5301,"parentId":4919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23063,"timestamp":7385798678445,"id":5302,"parentId":4919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23146,"timestamp":7385798678480,"id":5303,"parentId":4919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24667,"timestamp":7385798678517,"id":5304,"parentId":4920,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24918,"timestamp":7385798678550,"id":5305,"parentId":4920,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25160,"timestamp":7385798678584,"id":5306,"parentId":4920,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25248,"timestamp":7385798678617,"id":5307,"parentId":4920,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25344,"timestamp":7385798678664,"id":5308,"parentId":4920,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25431,"timestamp":7385798678699,"id":5309,"parentId":4921,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25873,"timestamp":7385798678734,"id":5310,"parentId":4921,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"app-pages-browser"},"startTime":1776992744865,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28763,"timestamp":7385798678768,"id":5311,"parentId":4921,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29185,"timestamp":7385798678803,"id":5312,"parentId":4921,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30520,"timestamp":7385798678837,"id":5313,"parentId":4921,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30690,"timestamp":7385798678891,"id":5314,"parentId":4922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30812,"timestamp":7385798678925,"id":5315,"parentId":4922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30936,"timestamp":7385798678960,"id":5316,"parentId":4922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31025,"timestamp":7385798678994,"id":5317,"parentId":4922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31208,"timestamp":7385798679028,"id":5318,"parentId":4922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31496,"timestamp":7385798679065,"id":5319,"parentId":4922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31625,"timestamp":7385798679101,"id":5320,"parentId":4922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32048,"timestamp":7385798679135,"id":5321,"parentId":4922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32387,"timestamp":7385798679170,"id":5322,"parentId":4922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33491,"timestamp":7385798679211,"id":5323,"parentId":4923,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33621,"timestamp":7385798679252,"id":5324,"parentId":4923,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33958,"timestamp":7385798679286,"id":5325,"parentId":4924,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"app-pages-browser"},"startTime":1776992744866,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":370,"timestamp":7385798749301,"id":5431,"parentId":5422,"tags":{},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":418,"timestamp":7385798749307,"id":5432,"parentId":5423,"tags":{},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":453,"timestamp":7385798749310,"id":5433,"parentId":5424,"tags":{},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":493,"timestamp":7385798749312,"id":5434,"parentId":5425,"tags":{},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":520,"timestamp":7385798749315,"id":5435,"parentId":5426,"tags":{},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":545,"timestamp":7385798749318,"id":5436,"parentId":5427,"tags":{},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":577,"timestamp":7385798749320,"id":5437,"parentId":5428,"tags":{},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":607,"timestamp":7385798749323,"id":5438,"parentId":5429,"tags":{},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":640,"timestamp":7385798749325,"id":5439,"parentId":5430,"tags":{},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13116,"timestamp":7385798749682,"id":5440,"parentId":5422,"tags":{},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13081,"timestamp":7385798749727,"id":5441,"parentId":5423,"tags":{},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13044,"timestamp":7385798749765,"id":5442,"parentId":5424,"tags":{},"startTime":1776992744937,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13003,"timestamp":7385798749807,"id":5443,"parentId":5425,"tags":{},"startTime":1776992744937,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12974,"timestamp":7385798749837,"id":5444,"parentId":5426,"tags":{},"startTime":1776992744937,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12947,"timestamp":7385798749865,"id":5445,"parentId":5427,"tags":{},"startTime":1776992744937,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12913,"timestamp":7385798749900,"id":5446,"parentId":5428,"tags":{},"startTime":1776992744937,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12882,"timestamp":7385798749931,"id":5447,"parentId":5429,"tags":{},"startTime":1776992744937,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12847,"timestamp":7385798749968,"id":5448,"parentId":5430,"tags":{},"startTime":1776992744937,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14536,"timestamp":7385798748832,"id":5422,"parentId":4924,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"app-pages-browser"},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15348,"timestamp":7385798748941,"id":5423,"parentId":4924,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"app-pages-browser"},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15772,"timestamp":7385798748989,"id":5424,"parentId":4925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15905,"timestamp":7385798749031,"id":5425,"parentId":4925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"app-pages-browser"},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15976,"timestamp":7385798749070,"id":5426,"parentId":4925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"app-pages-browser"},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16653,"timestamp":7385798749111,"id":5427,"parentId":4926,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"app-pages-browser"},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16991,"timestamp":7385798749149,"id":5428,"parentId":4926,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"app-pages-browser"},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18074,"timestamp":7385798749187,"id":5429,"parentId":4926,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"app-pages-browser"},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21282,"timestamp":7385798749224,"id":5430,"parentId":4926,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"app-pages-browser"},"startTime":1776992744936,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":504,"timestamp":7385798777650,"id":5499,"parentId":5449,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":549,"timestamp":7385798777662,"id":5500,"parentId":5450,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":580,"timestamp":7385798777667,"id":5501,"parentId":5451,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":611,"timestamp":7385798777672,"id":5502,"parentId":5452,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":657,"timestamp":7385798777676,"id":5503,"parentId":5453,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":700,"timestamp":7385798777680,"id":5504,"parentId":5454,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":727,"timestamp":7385798777685,"id":5505,"parentId":5455,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":751,"timestamp":7385798777689,"id":5506,"parentId":5456,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"}] -[{"name":"read-resource","duration":963,"timestamp":7385798777693,"id":5507,"parentId":5457,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1002,"timestamp":7385798777697,"id":5508,"parentId":5458,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1028,"timestamp":7385798777701,"id":5509,"parentId":5459,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1058,"timestamp":7385798777705,"id":5510,"parentId":5460,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1085,"timestamp":7385798777709,"id":5511,"parentId":5461,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1123,"timestamp":7385798777713,"id":5512,"parentId":5462,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1153,"timestamp":7385798777717,"id":5513,"parentId":5463,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1200,"timestamp":7385798777722,"id":5514,"parentId":5464,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1242,"timestamp":7385798777725,"id":5515,"parentId":5465,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1269,"timestamp":7385798777730,"id":5516,"parentId":5466,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1330,"timestamp":7385798777733,"id":5517,"parentId":5467,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1367,"timestamp":7385798777738,"id":5518,"parentId":5468,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1397,"timestamp":7385798777742,"id":5519,"parentId":5469,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1426,"timestamp":7385798777746,"id":5520,"parentId":5470,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1463,"timestamp":7385798777750,"id":5521,"parentId":5471,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1489,"timestamp":7385798777755,"id":5522,"parentId":5472,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1517,"timestamp":7385798777759,"id":5523,"parentId":5473,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1545,"timestamp":7385798777763,"id":5524,"parentId":5474,"tags":{},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1592,"timestamp":7385798777767,"id":5525,"parentId":5475,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1625,"timestamp":7385798777770,"id":5526,"parentId":5476,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1653,"timestamp":7385798777774,"id":5527,"parentId":5477,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1679,"timestamp":7385798777777,"id":5528,"parentId":5478,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1724,"timestamp":7385798777781,"id":5529,"parentId":5479,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1783,"timestamp":7385798777785,"id":5530,"parentId":5480,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1813,"timestamp":7385798777788,"id":5531,"parentId":5481,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1840,"timestamp":7385798777792,"id":5532,"parentId":5482,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1875,"timestamp":7385798777795,"id":5533,"parentId":5483,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1905,"timestamp":7385798777799,"id":5534,"parentId":5484,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1947,"timestamp":7385798777802,"id":5535,"parentId":5485,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1980,"timestamp":7385798777805,"id":5536,"parentId":5486,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2007,"timestamp":7385798777808,"id":5537,"parentId":5487,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2032,"timestamp":7385798777811,"id":5538,"parentId":5488,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2062,"timestamp":7385798777814,"id":5539,"parentId":5489,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2098,"timestamp":7385798777817,"id":5540,"parentId":5490,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2129,"timestamp":7385798777820,"id":5541,"parentId":5491,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2160,"timestamp":7385798777823,"id":5542,"parentId":5492,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2209,"timestamp":7385798777826,"id":5543,"parentId":5493,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2241,"timestamp":7385798777830,"id":5544,"parentId":5494,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2267,"timestamp":7385798777836,"id":5545,"parentId":5495,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2296,"timestamp":7385798777839,"id":5546,"parentId":5496,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2324,"timestamp":7385798777842,"id":5547,"parentId":5497,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2353,"timestamp":7385798777844,"id":5548,"parentId":5498,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7730,"timestamp":7385798778167,"id":5549,"parentId":5449,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7690,"timestamp":7385798778214,"id":5550,"parentId":5450,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7654,"timestamp":7385798778252,"id":5551,"parentId":5451,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7621,"timestamp":7385798778285,"id":5552,"parentId":5452,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7566,"timestamp":7385798778341,"id":5553,"parentId":5453,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7525,"timestamp":7385798778383,"id":5554,"parentId":5454,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7496,"timestamp":7385798778414,"id":5555,"parentId":5455,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7297,"timestamp":7385798778615,"id":5556,"parentId":5456,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7252,"timestamp":7385798778660,"id":5557,"parentId":5457,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7212,"timestamp":7385798778702,"id":5558,"parentId":5458,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7184,"timestamp":7385798778732,"id":5559,"parentId":5459,"tags":{},"startTime":1776992744965,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7150,"timestamp":7385798778766,"id":5560,"parentId":5460,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7120,"timestamp":7385798778798,"id":5561,"parentId":5461,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7078,"timestamp":7385798778840,"id":5562,"parentId":5462,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7046,"timestamp":7385798778873,"id":5563,"parentId":5463,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6992,"timestamp":7385798778928,"id":5564,"parentId":5464,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6950,"timestamp":7385798778971,"id":5565,"parentId":5465,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6921,"timestamp":7385798779001,"id":5566,"parentId":5466,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6850,"timestamp":7385798779072,"id":5567,"parentId":5467,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6815,"timestamp":7385798779109,"id":5568,"parentId":5468,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6783,"timestamp":7385798779141,"id":5569,"parentId":5469,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6751,"timestamp":7385798779175,"id":5570,"parentId":5470,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6711,"timestamp":7385798779215,"id":5571,"parentId":5471,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6680,"timestamp":7385798779247,"id":5572,"parentId":5472,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6650,"timestamp":7385798779279,"id":5573,"parentId":5473,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6618,"timestamp":7385798779312,"id":5574,"parentId":5474,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6567,"timestamp":7385798779363,"id":5575,"parentId":5475,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6532,"timestamp":7385798779400,"id":5576,"parentId":5476,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6503,"timestamp":7385798779430,"id":5577,"parentId":5477,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6475,"timestamp":7385798779459,"id":5578,"parentId":5478,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6421,"timestamp":7385798779514,"id":5579,"parentId":5479,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6363,"timestamp":7385798779573,"id":5580,"parentId":5480,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6333,"timestamp":7385798779605,"id":5581,"parentId":5481,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6304,"timestamp":7385798779635,"id":5582,"parentId":5482,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6267,"timestamp":7385798779673,"id":5583,"parentId":5483,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6234,"timestamp":7385798779707,"id":5584,"parentId":5484,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6190,"timestamp":7385798779753,"id":5585,"parentId":5485,"tags":{},"startTime":1776992744966,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6156,"timestamp":7385798779788,"id":5586,"parentId":5486,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6127,"timestamp":7385798779817,"id":5587,"parentId":5487,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6099,"timestamp":7385798779846,"id":5588,"parentId":5488,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6067,"timestamp":7385798779880,"id":5589,"parentId":5489,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6029,"timestamp":7385798779918,"id":5590,"parentId":5490,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5997,"timestamp":7385798779951,"id":5591,"parentId":5491,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5964,"timestamp":7385798779986,"id":5592,"parentId":5492,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5911,"timestamp":7385798780040,"id":5593,"parentId":5493,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5879,"timestamp":7385798780073,"id":5594,"parentId":5494,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5847,"timestamp":7385798780106,"id":5595,"parentId":5495,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5816,"timestamp":7385798780138,"id":5596,"parentId":5496,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5786,"timestamp":7385798780169,"id":5597,"parentId":5497,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5755,"timestamp":7385798780200,"id":5598,"parentId":5498,"tags":{},"startTime":1776992744967,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12638,"timestamp":7385798773750,"id":5449,"parentId":4927,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"app-pages-browser"},"startTime":1776992744960,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13106,"timestamp":7385798773898,"id":5450,"parentId":4927,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13750,"timestamp":7385798774024,"id":5451,"parentId":4927,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13941,"timestamp":7385798774077,"id":5452,"parentId":4927,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16201,"timestamp":7385798774140,"id":5453,"parentId":4928,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16377,"timestamp":7385798774185,"id":5454,"parentId":4928,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16544,"timestamp":7385798774229,"id":5455,"parentId":4928,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16664,"timestamp":7385798774283,"id":5456,"parentId":4928,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17733,"timestamp":7385798774333,"id":5457,"parentId":4928,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":18069,"timestamp":7385798774373,"id":5458,"parentId":4929,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18309,"timestamp":7385798774427,"id":5459,"parentId":4929,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18647,"timestamp":7385798774540,"id":5460,"parentId":4930,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19900,"timestamp":7385798774671,"id":5461,"parentId":4930,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21162,"timestamp":7385798774720,"id":5462,"parentId":4930,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21308,"timestamp":7385798774762,"id":5463,"parentId":4930,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"app-pages-browser"},"startTime":1776992744961,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22545,"timestamp":7385798774810,"id":5464,"parentId":4931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22631,"timestamp":7385798775217,"id":5465,"parentId":4931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26768,"timestamp":7385798775265,"id":5466,"parentId":4932,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26999,"timestamp":7385798775308,"id":5467,"parentId":4932,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27339,"timestamp":7385798775349,"id":5468,"parentId":4933,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27724,"timestamp":7385798775410,"id":5469,"parentId":4933,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30971,"timestamp":7385798775452,"id":5470,"parentId":4903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31156,"timestamp":7385798775530,"id":5471,"parentId":4936,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31741,"timestamp":7385798775592,"id":5472,"parentId":4933,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32368,"timestamp":7385798775638,"id":5473,"parentId":4934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32690,"timestamp":7385798775681,"id":5474,"parentId":4934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33020,"timestamp":7385798775720,"id":5475,"parentId":4934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"app-pages-browser"},"startTime":1776992744962,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33094,"timestamp":7385798775779,"id":5476,"parentId":4934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"app-pages-browser"},"startTime":1776992744963,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33043,"timestamp":7385798776002,"id":5477,"parentId":4934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"app-pages-browser"},"startTime":1776992744963,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33129,"timestamp":7385798776061,"id":5478,"parentId":4935,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"app-pages-browser"},"startTime":1776992744963,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36624,"timestamp":7385798776106,"id":5479,"parentId":4935,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"app-pages-browser"},"startTime":1776992744963,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36699,"timestamp":7385798776201,"id":5480,"parentId":4936,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"app-pages-browser"},"startTime":1776992744963,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36750,"timestamp":7385798776278,"id":5481,"parentId":4936,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"app-pages-browser"},"startTime":1776992744963,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37571,"timestamp":7385798776377,"id":5482,"parentId":4936,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"app-pages-browser"},"startTime":1776992744963,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37878,"timestamp":7385798776788,"id":5483,"parentId":4936,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38029,"timestamp":7385798776838,"id":5484,"parentId":4938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38277,"timestamp":7385798776882,"id":5485,"parentId":4938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38335,"timestamp":7385798776922,"id":5486,"parentId":4938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38366,"timestamp":7385798777023,"id":5487,"parentId":4938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38994,"timestamp":7385798777062,"id":5488,"parentId":4938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39625,"timestamp":7385798777124,"id":5489,"parentId":4938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40488,"timestamp":7385798777179,"id":5490,"parentId":4938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40955,"timestamp":7385798777219,"id":5491,"parentId":4938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41879,"timestamp":7385798777288,"id":5492,"parentId":4949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42418,"timestamp":7385798777345,"id":5493,"parentId":4949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42729,"timestamp":7385798777385,"id":5494,"parentId":4939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43586,"timestamp":7385798777426,"id":5495,"parentId":4939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44154,"timestamp":7385798777479,"id":5496,"parentId":4939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44401,"timestamp":7385798777530,"id":5497,"parentId":4940,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44821,"timestamp":7385798777569,"id":5498,"parentId":4940,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"app-pages-browser"},"startTime":1776992744964,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":466,"timestamp":7385798870990,"id":5643,"parentId":5599,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":510,"timestamp":7385798871001,"id":5644,"parentId":5600,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":541,"timestamp":7385798871005,"id":5645,"parentId":5601,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":569,"timestamp":7385798871009,"id":5646,"parentId":5602,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":594,"timestamp":7385798871014,"id":5647,"parentId":5603,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":618,"timestamp":7385798871019,"id":5648,"parentId":5604,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":701,"timestamp":7385798871022,"id":5649,"parentId":5605,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":750,"timestamp":7385798871027,"id":5650,"parentId":5606,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":778,"timestamp":7385798871031,"id":5651,"parentId":5607,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":803,"timestamp":7385798871035,"id":5652,"parentId":5608,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":828,"timestamp":7385798871040,"id":5653,"parentId":5609,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":856,"timestamp":7385798871044,"id":5654,"parentId":5610,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":885,"timestamp":7385798871047,"id":5655,"parentId":5611,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":909,"timestamp":7385798871051,"id":5656,"parentId":5612,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":934,"timestamp":7385798871055,"id":5657,"parentId":5613,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":979,"timestamp":7385798871059,"id":5658,"parentId":5614,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1011,"timestamp":7385798871063,"id":5659,"parentId":5615,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1040,"timestamp":7385798871066,"id":5660,"parentId":5616,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1073,"timestamp":7385798871069,"id":5661,"parentId":5617,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1099,"timestamp":7385798871073,"id":5662,"parentId":5618,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1138,"timestamp":7385798871077,"id":5663,"parentId":5619,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1192,"timestamp":7385798871080,"id":5664,"parentId":5620,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1228,"timestamp":7385798871084,"id":5665,"parentId":5621,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1258,"timestamp":7385798871087,"id":5666,"parentId":5622,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1306,"timestamp":7385798871090,"id":5667,"parentId":5623,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1334,"timestamp":7385798871093,"id":5668,"parentId":5624,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1374,"timestamp":7385798871097,"id":5669,"parentId":5625,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1537,"timestamp":7385798871100,"id":5670,"parentId":5626,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1718,"timestamp":7385798871104,"id":5671,"parentId":5627,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1754,"timestamp":7385798871106,"id":5672,"parentId":5628,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1780,"timestamp":7385798871109,"id":5673,"parentId":5629,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1807,"timestamp":7385798871112,"id":5674,"parentId":5630,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1834,"timestamp":7385798871115,"id":5675,"parentId":5631,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1882,"timestamp":7385798871118,"id":5676,"parentId":5632,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1918,"timestamp":7385798871120,"id":5677,"parentId":5633,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1959,"timestamp":7385798871124,"id":5678,"parentId":5634,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1985,"timestamp":7385798871127,"id":5679,"parentId":5635,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2022,"timestamp":7385798871129,"id":5680,"parentId":5636,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2053,"timestamp":7385798871131,"id":5681,"parentId":5637,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2089,"timestamp":7385798871134,"id":5682,"parentId":5638,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2116,"timestamp":7385798871137,"id":5683,"parentId":5639,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2148,"timestamp":7385798871139,"id":5684,"parentId":5640,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2177,"timestamp":7385798871142,"id":5685,"parentId":5641,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2206,"timestamp":7385798871144,"id":5686,"parentId":5642,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6917,"timestamp":7385798871470,"id":5687,"parentId":5599,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6878,"timestamp":7385798871513,"id":5688,"parentId":5600,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6843,"timestamp":7385798871550,"id":5689,"parentId":5601,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6813,"timestamp":7385798871581,"id":5690,"parentId":5602,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6786,"timestamp":7385798871609,"id":5691,"parentId":5603,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6758,"timestamp":7385798871638,"id":5692,"parentId":5604,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6665,"timestamp":7385798871746,"id":5693,"parentId":5605,"tags":{},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6632,"timestamp":7385798871780,"id":5694,"parentId":5606,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6603,"timestamp":7385798871811,"id":5695,"parentId":5607,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6573,"timestamp":7385798871841,"id":5696,"parentId":5608,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6546,"timestamp":7385798871870,"id":5697,"parentId":5609,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6515,"timestamp":7385798871902,"id":5698,"parentId":5610,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6483,"timestamp":7385798871935,"id":5699,"parentId":5611,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6458,"timestamp":7385798871962,"id":5700,"parentId":5612,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6430,"timestamp":7385798871992,"id":5701,"parentId":5613,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6384,"timestamp":7385798872040,"id":5702,"parentId":5614,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":6730,"timestamp":7385798872076,"id":5703,"parentId":5615,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6701,"timestamp":7385798872108,"id":5704,"parentId":5616,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6665,"timestamp":7385798872144,"id":5705,"parentId":5617,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6636,"timestamp":7385798872174,"id":5706,"parentId":5618,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6593,"timestamp":7385798872218,"id":5707,"parentId":5619,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6534,"timestamp":7385798872279,"id":5708,"parentId":5620,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6499,"timestamp":7385798872315,"id":5709,"parentId":5621,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6467,"timestamp":7385798872348,"id":5710,"parentId":5622,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6417,"timestamp":7385798872399,"id":5711,"parentId":5623,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6386,"timestamp":7385798872430,"id":5712,"parentId":5624,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6344,"timestamp":7385798872474,"id":5713,"parentId":5625,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6134,"timestamp":7385798872685,"id":5714,"parentId":5626,"tags":{},"startTime":1776992745059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5994,"timestamp":7385798872826,"id":5715,"parentId":5627,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5958,"timestamp":7385798872863,"id":5716,"parentId":5628,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5930,"timestamp":7385798872891,"id":5717,"parentId":5629,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5902,"timestamp":7385798872921,"id":5718,"parentId":5630,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5872,"timestamp":7385798872951,"id":5719,"parentId":5631,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5822,"timestamp":7385798873002,"id":5720,"parentId":5632,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5784,"timestamp":7385798873041,"id":5721,"parentId":5633,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5741,"timestamp":7385798873085,"id":5722,"parentId":5634,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5713,"timestamp":7385798873114,"id":5723,"parentId":5635,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5675,"timestamp":7385798873153,"id":5724,"parentId":5636,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5642,"timestamp":7385798873187,"id":5725,"parentId":5637,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5604,"timestamp":7385798873225,"id":5726,"parentId":5638,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5574,"timestamp":7385798873257,"id":5727,"parentId":5639,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5542,"timestamp":7385798873289,"id":5728,"parentId":5640,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5511,"timestamp":7385798873321,"id":5729,"parentId":5641,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5481,"timestamp":7385798873353,"id":5730,"parentId":5642,"tags":{},"startTime":1776992745060,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12128,"timestamp":7385798868419,"id":5599,"parentId":4940,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"app-pages-browser"},"startTime":1776992745055,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12584,"timestamp":7385798868537,"id":5600,"parentId":4940,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"app-pages-browser"},"startTime":1776992745055,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12960,"timestamp":7385798868591,"id":5601,"parentId":4941,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"app-pages-browser"},"startTime":1776992745055,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13187,"timestamp":7385798868636,"id":5602,"parentId":4941,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"app-pages-browser"},"startTime":1776992745055,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13373,"timestamp":7385798868698,"id":5603,"parentId":4941,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"app-pages-browser"},"startTime":1776992745055,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13638,"timestamp":7385798868769,"id":5604,"parentId":4941,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"app-pages-browser"},"startTime":1776992745056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13734,"timestamp":7385798868818,"id":5605,"parentId":4942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"app-pages-browser"},"startTime":1776992745056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13939,"timestamp":7385798868864,"id":5606,"parentId":4942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1776992745056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14070,"timestamp":7385798868905,"id":5607,"parentId":4942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"app-pages-browser"},"startTime":1776992745056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14097,"timestamp":7385798868979,"id":5608,"parentId":4942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"app-pages-browser"},"startTime":1776992745056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13992,"timestamp":7385798869255,"id":5609,"parentId":4942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"app-pages-browser"},"startTime":1776992745056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14377,"timestamp":7385798869300,"id":5610,"parentId":4942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"app-pages-browser"},"startTime":1776992745056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14288,"timestamp":7385798869468,"id":5611,"parentId":4942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"app-pages-browser"},"startTime":1776992745056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14279,"timestamp":7385798869649,"id":5612,"parentId":4943,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"app-pages-browser"},"startTime":1776992745056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15124,"timestamp":7385798869745,"id":5613,"parentId":4943,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"app-pages-browser"},"startTime":1776992745056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16097,"timestamp":7385798869793,"id":5614,"parentId":4943,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16665,"timestamp":7385798869836,"id":5615,"parentId":4944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18251,"timestamp":7385798869876,"id":5616,"parentId":4944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18459,"timestamp":7385798869914,"id":5617,"parentId":4945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18776,"timestamp":7385798869953,"id":5618,"parentId":4945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19691,"timestamp":7385798869991,"id":5619,"parentId":4945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19795,"timestamp":7385798870028,"id":5620,"parentId":4945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19907,"timestamp":7385798870067,"id":5621,"parentId":4946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22119,"timestamp":7385798870105,"id":5622,"parentId":4946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22463,"timestamp":7385798870143,"id":5623,"parentId":4947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22513,"timestamp":7385798870224,"id":5624,"parentId":4947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22611,"timestamp":7385798870263,"id":5625,"parentId":4947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23111,"timestamp":7385798870304,"id":5626,"parentId":4947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24949,"timestamp":7385798870340,"id":5627,"parentId":4947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25486,"timestamp":7385798870376,"id":5628,"parentId":4948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25903,"timestamp":7385798870413,"id":5629,"parentId":4948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26309,"timestamp":7385798870450,"id":5630,"parentId":4948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27215,"timestamp":7385798870488,"id":5631,"parentId":4948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27426,"timestamp":7385798870525,"id":5632,"parentId":4950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28984,"timestamp":7385798870561,"id":5633,"parentId":4950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29286,"timestamp":7385798870599,"id":5634,"parentId":4950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29720,"timestamp":7385798870636,"id":5635,"parentId":4945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30055,"timestamp":7385798870674,"id":5636,"parentId":4945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30860,"timestamp":7385798870711,"id":5637,"parentId":4945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30941,"timestamp":7385798870748,"id":5638,"parentId":4945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"app-pages-browser"},"startTime":1776992745057,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31661,"timestamp":7385798870787,"id":5639,"parentId":4945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"app-pages-browser"},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32130,"timestamp":7385798870825,"id":5640,"parentId":4948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"app-pages-browser"},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32824,"timestamp":7385798870863,"id":5641,"parentId":4963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"app-pages-browser"},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33108,"timestamp":7385798870899,"id":5642,"parentId":4950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"app-pages-browser"},"startTime":1776992745058,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1546,"timestamp":7385798950024,"id":5818,"parentId":5731,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1599,"timestamp":7385798950031,"id":5819,"parentId":5732,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1625,"timestamp":7385798950035,"id":5820,"parentId":5733,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1683,"timestamp":7385798950039,"id":5821,"parentId":5734,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1777,"timestamp":7385798950042,"id":5822,"parentId":5735,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1832,"timestamp":7385798950046,"id":5823,"parentId":5736,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1860,"timestamp":7385798950049,"id":5824,"parentId":5737,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1908,"timestamp":7385798950053,"id":5825,"parentId":5738,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1968,"timestamp":7385798950056,"id":5826,"parentId":5739,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2010,"timestamp":7385798950060,"id":5827,"parentId":5740,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2041,"timestamp":7385798950064,"id":5828,"parentId":5741,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2072,"timestamp":7385798950067,"id":5829,"parentId":5742,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2111,"timestamp":7385798950070,"id":5830,"parentId":5743,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2140,"timestamp":7385798950073,"id":5831,"parentId":5744,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2260,"timestamp":7385798950076,"id":5832,"parentId":5745,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2347,"timestamp":7385798950079,"id":5833,"parentId":5746,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2504,"timestamp":7385798950082,"id":5834,"parentId":5747,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2673,"timestamp":7385798950084,"id":5835,"parentId":5748,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2703,"timestamp":7385798950087,"id":5836,"parentId":5749,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2730,"timestamp":7385798950091,"id":5837,"parentId":5750,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2841,"timestamp":7385798950094,"id":5838,"parentId":5751,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2895,"timestamp":7385798950098,"id":5839,"parentId":5752,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2982,"timestamp":7385798950100,"id":5840,"parentId":5753,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3010,"timestamp":7385798950103,"id":5841,"parentId":5754,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3060,"timestamp":7385798950106,"id":5842,"parentId":5755,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3095,"timestamp":7385798950109,"id":5843,"parentId":5756,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3123,"timestamp":7385798950112,"id":5844,"parentId":5757,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3152,"timestamp":7385798950115,"id":5845,"parentId":5758,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3180,"timestamp":7385798950118,"id":5846,"parentId":5759,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"}] -[{"name":"read-resource","duration":3371,"timestamp":7385798950121,"id":5847,"parentId":5760,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3409,"timestamp":7385798950123,"id":5848,"parentId":5761,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3440,"timestamp":7385798950126,"id":5849,"parentId":5762,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3469,"timestamp":7385798950129,"id":5850,"parentId":5763,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3501,"timestamp":7385798950132,"id":5851,"parentId":5764,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3535,"timestamp":7385798950134,"id":5852,"parentId":5765,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3564,"timestamp":7385798950138,"id":5853,"parentId":5766,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3591,"timestamp":7385798950141,"id":5854,"parentId":5767,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3689,"timestamp":7385798950144,"id":5855,"parentId":5768,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3721,"timestamp":7385798950146,"id":5856,"parentId":5769,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3762,"timestamp":7385798950150,"id":5857,"parentId":5770,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3820,"timestamp":7385798950152,"id":5858,"parentId":5771,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3863,"timestamp":7385798950155,"id":5859,"parentId":5772,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3900,"timestamp":7385798950157,"id":5860,"parentId":5773,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3926,"timestamp":7385798950160,"id":5861,"parentId":5774,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3953,"timestamp":7385798950163,"id":5862,"parentId":5775,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3982,"timestamp":7385798950166,"id":5863,"parentId":5776,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4009,"timestamp":7385798950168,"id":5864,"parentId":5777,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4035,"timestamp":7385798950171,"id":5865,"parentId":5778,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4073,"timestamp":7385798950174,"id":5866,"parentId":5779,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4110,"timestamp":7385798950177,"id":5867,"parentId":5780,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4141,"timestamp":7385798950179,"id":5868,"parentId":5781,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4181,"timestamp":7385798950182,"id":5869,"parentId":5782,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4208,"timestamp":7385798950184,"id":5870,"parentId":5783,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4233,"timestamp":7385798950187,"id":5871,"parentId":5784,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4261,"timestamp":7385798950189,"id":5872,"parentId":5785,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4296,"timestamp":7385798950192,"id":5873,"parentId":5786,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4324,"timestamp":7385798950195,"id":5874,"parentId":5787,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4351,"timestamp":7385798950197,"id":5875,"parentId":5788,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4379,"timestamp":7385798950200,"id":5876,"parentId":5789,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4407,"timestamp":7385798950203,"id":5877,"parentId":5790,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4432,"timestamp":7385798950206,"id":5878,"parentId":5791,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4457,"timestamp":7385798950208,"id":5879,"parentId":5792,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4483,"timestamp":7385798950210,"id":5880,"parentId":5793,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4533,"timestamp":7385798950213,"id":5881,"parentId":5794,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6010,"timestamp":7385798950216,"id":5882,"parentId":5795,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6049,"timestamp":7385798950218,"id":5883,"parentId":5796,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6074,"timestamp":7385798950221,"id":5884,"parentId":5797,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6100,"timestamp":7385798950223,"id":5885,"parentId":5798,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6123,"timestamp":7385798950226,"id":5886,"parentId":5799,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6148,"timestamp":7385798950228,"id":5887,"parentId":5800,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6173,"timestamp":7385798950231,"id":5888,"parentId":5801,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6201,"timestamp":7385798950233,"id":5889,"parentId":5802,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6245,"timestamp":7385798950235,"id":5890,"parentId":5803,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6279,"timestamp":7385798950237,"id":5891,"parentId":5804,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6312,"timestamp":7385798950240,"id":5892,"parentId":5805,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6336,"timestamp":7385798950242,"id":5893,"parentId":5806,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6362,"timestamp":7385798950244,"id":5894,"parentId":5807,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6391,"timestamp":7385798950247,"id":5895,"parentId":5808,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6422,"timestamp":7385798950249,"id":5896,"parentId":5809,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6449,"timestamp":7385798950251,"id":5897,"parentId":5810,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6476,"timestamp":7385798950254,"id":5898,"parentId":5811,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6508,"timestamp":7385798950256,"id":5899,"parentId":5812,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6540,"timestamp":7385798950258,"id":5900,"parentId":5813,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6567,"timestamp":7385798950260,"id":5901,"parentId":5814,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6595,"timestamp":7385798950262,"id":5902,"parentId":5815,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6625,"timestamp":7385798950265,"id":5903,"parentId":5816,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6653,"timestamp":7385798950267,"id":5904,"parentId":5817,"tags":{},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5381,"timestamp":7385798951587,"id":5905,"parentId":5731,"tags":{},"startTime":1776992745138,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5336,"timestamp":7385798951633,"id":5906,"parentId":5732,"tags":{},"startTime":1776992745138,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5306,"timestamp":7385798951663,"id":5907,"parentId":5733,"tags":{},"startTime":1776992745138,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5187,"timestamp":7385798951782,"id":5908,"parentId":5734,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5145,"timestamp":7385798951824,"id":5909,"parentId":5735,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5088,"timestamp":7385798951881,"id":5910,"parentId":5736,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5058,"timestamp":7385798951912,"id":5911,"parentId":5737,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5002,"timestamp":7385798951969,"id":5912,"parentId":5738,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4943,"timestamp":7385798952028,"id":5913,"parentId":5739,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4897,"timestamp":7385798952073,"id":5914,"parentId":5740,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4863,"timestamp":7385798952108,"id":5915,"parentId":5741,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4829,"timestamp":7385798952142,"id":5916,"parentId":5742,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4788,"timestamp":7385798952184,"id":5917,"parentId":5743,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4757,"timestamp":7385798952215,"id":5918,"parentId":5744,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4614,"timestamp":7385798952358,"id":5919,"parentId":5745,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4435,"timestamp":7385798952537,"id":5920,"parentId":5746,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4335,"timestamp":7385798952637,"id":5921,"parentId":5747,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4211,"timestamp":7385798952762,"id":5922,"parentId":5748,"tags":{},"startTime":1776992745139,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4180,"timestamp":7385798952793,"id":5923,"parentId":5749,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4150,"timestamp":7385798952824,"id":5924,"parentId":5750,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4025,"timestamp":7385798952948,"id":5925,"parentId":5751,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3977,"timestamp":7385798952997,"id":5926,"parentId":5752,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3889,"timestamp":7385798953085,"id":5927,"parentId":5753,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3859,"timestamp":7385798953116,"id":5928,"parentId":5754,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3805,"timestamp":7385798953169,"id":5929,"parentId":5755,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3767,"timestamp":7385798953208,"id":5930,"parentId":5756,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3737,"timestamp":7385798953238,"id":5931,"parentId":5757,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3705,"timestamp":7385798953270,"id":5932,"parentId":5758,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3524,"timestamp":7385798953453,"id":5933,"parentId":5759,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3480,"timestamp":7385798953498,"id":5934,"parentId":5760,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3442,"timestamp":7385798953536,"id":5935,"parentId":5761,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3404,"timestamp":7385798953574,"id":5936,"parentId":5762,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3376,"timestamp":7385798953602,"id":5937,"parentId":5763,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3342,"timestamp":7385798953636,"id":5938,"parentId":5764,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3306,"timestamp":7385798953672,"id":5939,"parentId":5765,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3274,"timestamp":7385798953705,"id":5940,"parentId":5766,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3244,"timestamp":7385798953735,"id":5941,"parentId":5767,"tags":{},"startTime":1776992745140,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3142,"timestamp":7385798953837,"id":5942,"parentId":5768,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3109,"timestamp":7385798953871,"id":5943,"parentId":5769,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3064,"timestamp":7385798953915,"id":5944,"parentId":5770,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3003,"timestamp":7385798953976,"id":5945,"parentId":5771,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2959,"timestamp":7385798954021,"id":5946,"parentId":5772,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2920,"timestamp":7385798954060,"id":5947,"parentId":5773,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":3013,"timestamp":7385798954090,"id":5948,"parentId":5774,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2986,"timestamp":7385798954119,"id":5949,"parentId":5775,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2954,"timestamp":7385798954151,"id":5950,"parentId":5776,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2925,"timestamp":7385798954181,"id":5951,"parentId":5777,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2897,"timestamp":7385798954209,"id":5952,"parentId":5778,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2852,"timestamp":7385798954254,"id":5953,"parentId":5779,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2817,"timestamp":7385798954290,"id":5954,"parentId":5780,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2784,"timestamp":7385798954323,"id":5955,"parentId":5781,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2741,"timestamp":7385798954367,"id":5956,"parentId":5782,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2713,"timestamp":7385798954395,"id":5957,"parentId":5783,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2685,"timestamp":7385798954423,"id":5958,"parentId":5784,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2655,"timestamp":7385798954454,"id":5959,"parentId":5785,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2618,"timestamp":7385798954491,"id":5960,"parentId":5786,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2587,"timestamp":7385798954522,"id":5961,"parentId":5787,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2559,"timestamp":7385798954551,"id":5962,"parentId":5788,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2526,"timestamp":7385798954584,"id":5963,"parentId":5789,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2497,"timestamp":7385798954613,"id":5964,"parentId":5790,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2470,"timestamp":7385798954640,"id":5965,"parentId":5791,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2443,"timestamp":7385798954668,"id":5966,"parentId":5792,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2391,"timestamp":7385798954720,"id":5967,"parentId":5793,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2362,"timestamp":7385798954749,"id":5968,"parentId":5794,"tags":{},"startTime":1776992745141,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":875,"timestamp":7385798956237,"id":5969,"parentId":5795,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":842,"timestamp":7385798956270,"id":5970,"parentId":5796,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":816,"timestamp":7385798956297,"id":5971,"parentId":5797,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":788,"timestamp":7385798956326,"id":5972,"parentId":5798,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":763,"timestamp":7385798956351,"id":5973,"parentId":5799,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":736,"timestamp":7385798956378,"id":5974,"parentId":5800,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":709,"timestamp":7385798956406,"id":5975,"parentId":5801,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":679,"timestamp":7385798956437,"id":5976,"parentId":5802,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":634,"timestamp":7385798956482,"id":5977,"parentId":5803,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":597,"timestamp":7385798956519,"id":5978,"parentId":5804,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":564,"timestamp":7385798956554,"id":5979,"parentId":5805,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":538,"timestamp":7385798956580,"id":5980,"parentId":5806,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":509,"timestamp":7385798956609,"id":5981,"parentId":5807,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":478,"timestamp":7385798956640,"id":5982,"parentId":5808,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":446,"timestamp":7385798956673,"id":5983,"parentId":5809,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":418,"timestamp":7385798956702,"id":5984,"parentId":5810,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":388,"timestamp":7385798956732,"id":5985,"parentId":5811,"tags":{},"startTime":1776992745143,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":354,"timestamp":7385798956766,"id":5986,"parentId":5812,"tags":{},"startTime":1776992745144,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":320,"timestamp":7385798956800,"id":5987,"parentId":5813,"tags":{},"startTime":1776992745144,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":292,"timestamp":7385798956829,"id":5988,"parentId":5814,"tags":{},"startTime":1776992745144,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":262,"timestamp":7385798956859,"id":5989,"parentId":5815,"tags":{},"startTime":1776992745144,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":230,"timestamp":7385798956892,"id":5990,"parentId":5816,"tags":{},"startTime":1776992745144,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":201,"timestamp":7385798956921,"id":5991,"parentId":5817,"tags":{},"startTime":1776992745144,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10839,"timestamp":7385798946665,"id":5731,"parentId":4951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"app-pages-browser"},"startTime":1776992745133,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10983,"timestamp":7385798946778,"id":5732,"parentId":4951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11391,"timestamp":7385798946827,"id":5733,"parentId":4951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11466,"timestamp":7385798946869,"id":5734,"parentId":4952,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12190,"timestamp":7385798946908,"id":5735,"parentId":4952,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12272,"timestamp":7385798946947,"id":5736,"parentId":4953,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12963,"timestamp":7385798946985,"id":5737,"parentId":4953,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13118,"timestamp":7385798947023,"id":5738,"parentId":4955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13946,"timestamp":7385798947061,"id":5739,"parentId":4955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14030,"timestamp":7385798947098,"id":5740,"parentId":4955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14434,"timestamp":7385798947158,"id":5741,"parentId":4956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15602,"timestamp":7385798947197,"id":5742,"parentId":4956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15679,"timestamp":7385798947234,"id":5743,"parentId":4956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15812,"timestamp":7385798947270,"id":5744,"parentId":4956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16260,"timestamp":7385798947307,"id":5745,"parentId":4958,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16803,"timestamp":7385798947347,"id":5746,"parentId":4958,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17164,"timestamp":7385798947384,"id":5747,"parentId":4958,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17207,"timestamp":7385798947419,"id":5748,"parentId":4958,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17285,"timestamp":7385798947468,"id":5749,"parentId":4959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18931,"timestamp":7385798947510,"id":5750,"parentId":4959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20474,"timestamp":7385798947547,"id":5751,"parentId":4961,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22103,"timestamp":7385798947588,"id":5752,"parentId":4961,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22180,"timestamp":7385798947623,"id":5753,"parentId":4961,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22930,"timestamp":7385798947660,"id":5754,"parentId":4962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23278,"timestamp":7385798947699,"id":5755,"parentId":4962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23317,"timestamp":7385798947735,"id":5756,"parentId":4963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"app-pages-browser"},"startTime":1776992745134,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23687,"timestamp":7385798947771,"id":5757,"parentId":4964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23927,"timestamp":7385798947811,"id":5758,"parentId":4964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23971,"timestamp":7385798947848,"id":5759,"parentId":4965,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24583,"timestamp":7385798947883,"id":5760,"parentId":5092,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24834,"timestamp":7385798947921,"id":5761,"parentId":5092,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24884,"timestamp":7385798947955,"id":5762,"parentId":5092,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25092,"timestamp":7385798947988,"id":5763,"parentId":5092,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25687,"timestamp":7385798948024,"id":5764,"parentId":5092,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25842,"timestamp":7385798948062,"id":5765,"parentId":5094,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25923,"timestamp":7385798948098,"id":5766,"parentId":5094,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26721,"timestamp":7385798948133,"id":5767,"parentId":5099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26828,"timestamp":7385798948167,"id":5768,"parentId":5116,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26901,"timestamp":7385798948206,"id":5769,"parentId":5116,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27589,"timestamp":7385798948240,"id":5770,"parentId":5118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28176,"timestamp":7385798948274,"id":5771,"parentId":5094,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28695,"timestamp":7385798948313,"id":5772,"parentId":5098,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28755,"timestamp":7385798948354,"id":5773,"parentId":5105,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28806,"timestamp":7385798948391,"id":5774,"parentId":5105,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28845,"timestamp":7385798948426,"id":5775,"parentId":5105,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28874,"timestamp":7385798948461,"id":5776,"parentId":5122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28966,"timestamp":7385798948500,"id":5777,"parentId":5122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30611,"timestamp":7385798948536,"id":5778,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31494,"timestamp":7385798948569,"id":5779,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31755,"timestamp":7385798948611,"id":5780,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32889,"timestamp":7385798948646,"id":5781,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33002,"timestamp":7385798948680,"id":5782,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33046,"timestamp":7385798948715,"id":5783,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33081,"timestamp":7385798948753,"id":5784,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"app-pages-browser"},"startTime":1776992745135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33457,"timestamp":7385798948788,"id":5785,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33667,"timestamp":7385798948847,"id":5786,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33869,"timestamp":7385798948882,"id":5787,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":34126,"timestamp":7385798948923,"id":5788,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34176,"timestamp":7385798948958,"id":5789,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34251,"timestamp":7385798948998,"id":5790,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34306,"timestamp":7385798949036,"id":5791,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34363,"timestamp":7385798949071,"id":5792,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34426,"timestamp":7385798949104,"id":5793,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34470,"timestamp":7385798949138,"id":5794,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34550,"timestamp":7385798949173,"id":5795,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34640,"timestamp":7385798949211,"id":5796,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34829,"timestamp":7385798949244,"id":5797,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35040,"timestamp":7385798949284,"id":5798,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35213,"timestamp":7385798949319,"id":5799,"parentId":5100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35263,"timestamp":7385798949358,"id":5800,"parentId":5124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35727,"timestamp":7385798949393,"id":5801,"parentId":5124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37339,"timestamp":7385798949428,"id":5802,"parentId":5124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37878,"timestamp":7385798949477,"id":5803,"parentId":5125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39245,"timestamp":7385798949513,"id":5804,"parentId":5132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39441,"timestamp":7385798949547,"id":5805,"parentId":5132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40059,"timestamp":7385798949582,"id":5806,"parentId":5132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40824,"timestamp":7385798949616,"id":5807,"parentId":5135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41482,"timestamp":7385798949650,"id":5808,"parentId":5124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41697,"timestamp":7385798949685,"id":5809,"parentId":5124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41977,"timestamp":7385798949720,"id":5810,"parentId":5124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42242,"timestamp":7385798949756,"id":5811,"parentId":5126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"app-pages-browser"},"startTime":1776992745136,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42810,"timestamp":7385798949792,"id":5812,"parentId":5131,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"app-pages-browser"},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43044,"timestamp":7385798949828,"id":5813,"parentId":5132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"app-pages-browser"},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43224,"timestamp":7385798949864,"id":5814,"parentId":5132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"app-pages-browser"},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43686,"timestamp":7385798949900,"id":5815,"parentId":5132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"app-pages-browser"},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44176,"timestamp":7385798949935,"id":5816,"parentId":5133,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"app-pages-browser"},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45985,"timestamp":7385798949970,"id":5817,"parentId":5143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"app-pages-browser"},"startTime":1776992745137,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":323,"timestamp":7385799039317,"id":6005,"parentId":5992,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":351,"timestamp":7385799039337,"id":6006,"parentId":5993,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":389,"timestamp":7385799039340,"id":6007,"parentId":5994,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":412,"timestamp":7385799039342,"id":6008,"parentId":5995,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":438,"timestamp":7385799039345,"id":6009,"parentId":5996,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":460,"timestamp":7385799039347,"id":6010,"parentId":5997,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":480,"timestamp":7385799039350,"id":6011,"parentId":5998,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":540,"timestamp":7385799039352,"id":6012,"parentId":5999,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":569,"timestamp":7385799039354,"id":6013,"parentId":6000,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":596,"timestamp":7385799039357,"id":6014,"parentId":6001,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":618,"timestamp":7385799039359,"id":6015,"parentId":6002,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":639,"timestamp":7385799039361,"id":6016,"parentId":6003,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":687,"timestamp":7385799039363,"id":6017,"parentId":6004,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8976,"timestamp":7385799039652,"id":6018,"parentId":5992,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8942,"timestamp":7385799039690,"id":6019,"parentId":5993,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8902,"timestamp":7385799039731,"id":6020,"parentId":5994,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8878,"timestamp":7385799039755,"id":6021,"parentId":5995,"tags":{},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8849,"timestamp":7385799039785,"id":6022,"parentId":5996,"tags":{},"startTime":1776992745227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8825,"timestamp":7385799039809,"id":6023,"parentId":5997,"tags":{},"startTime":1776992745227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8803,"timestamp":7385799039831,"id":6024,"parentId":5998,"tags":{},"startTime":1776992745227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8741,"timestamp":7385799039894,"id":6025,"parentId":5999,"tags":{},"startTime":1776992745227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8709,"timestamp":7385799039926,"id":6026,"parentId":6000,"tags":{},"startTime":1776992745227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8681,"timestamp":7385799039954,"id":6027,"parentId":6001,"tags":{},"startTime":1776992745227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8657,"timestamp":7385799039978,"id":6028,"parentId":6002,"tags":{},"startTime":1776992745227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8626,"timestamp":7385799040010,"id":6029,"parentId":6003,"tags":{},"startTime":1776992745227,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8585,"timestamp":7385799040051,"id":6030,"parentId":6004,"tags":{},"startTime":1776992745227,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10402,"timestamp":7385799038706,"id":5992,"parentId":5146,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"app-pages-browser"},"startTime":1776992745225,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11700,"timestamp":7385799038817,"id":5993,"parentId":5147,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13329,"timestamp":7385799038861,"id":5994,"parentId":5147,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13622,"timestamp":7385799038902,"id":5995,"parentId":5147,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13737,"timestamp":7385799038939,"id":5996,"parentId":5147,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13761,"timestamp":7385799038976,"id":5997,"parentId":5147,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15041,"timestamp":7385799039013,"id":5998,"parentId":5148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15593,"timestamp":7385799039051,"id":5999,"parentId":5148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15736,"timestamp":7385799039087,"id":6000,"parentId":5152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15893,"timestamp":7385799039122,"id":6001,"parentId":5147,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15904,"timestamp":7385799039162,"id":6002,"parentId":5148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18088,"timestamp":7385799039200,"id":6003,"parentId":5149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20845,"timestamp":7385799039238,"id":6004,"parentId":5292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"app-pages-browser"},"startTime":1776992745226,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":515,"timestamp":7385799066109,"id":6093,"parentId":6031,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":549,"timestamp":7385799066117,"id":6094,"parentId":6032,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":575,"timestamp":7385799066121,"id":6095,"parentId":6033,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":601,"timestamp":7385799066125,"id":6096,"parentId":6034,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":628,"timestamp":7385799066128,"id":6097,"parentId":6035,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":619,"timestamp":7385799066164,"id":6098,"parentId":6036,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":617,"timestamp":7385799066192,"id":6099,"parentId":6037,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":641,"timestamp":7385799066199,"id":6100,"parentId":6038,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":665,"timestamp":7385799066203,"id":6101,"parentId":6039,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":693,"timestamp":7385799066207,"id":6102,"parentId":6040,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":716,"timestamp":7385799066218,"id":6103,"parentId":6041,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":742,"timestamp":7385799066224,"id":6104,"parentId":6042,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":770,"timestamp":7385799066228,"id":6105,"parentId":6043,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":794,"timestamp":7385799066232,"id":6106,"parentId":6044,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":820,"timestamp":7385799066236,"id":6107,"parentId":6045,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":838,"timestamp":7385799066245,"id":6108,"parentId":6046,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":862,"timestamp":7385799066250,"id":6109,"parentId":6047,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":885,"timestamp":7385799066254,"id":6110,"parentId":6048,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":903,"timestamp":7385799066262,"id":6111,"parentId":6049,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":936,"timestamp":7385799066267,"id":6112,"parentId":6050,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":959,"timestamp":7385799066271,"id":6113,"parentId":6051,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":987,"timestamp":7385799066275,"id":6114,"parentId":6052,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1013,"timestamp":7385799066279,"id":6115,"parentId":6053,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1785,"timestamp":7385799066283,"id":6116,"parentId":6054,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1825,"timestamp":7385799066292,"id":6117,"parentId":6055,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1862,"timestamp":7385799066296,"id":6118,"parentId":6056,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1889,"timestamp":7385799066300,"id":6119,"parentId":6057,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1916,"timestamp":7385799066303,"id":6120,"parentId":6058,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1938,"timestamp":7385799066307,"id":6121,"parentId":6059,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1961,"timestamp":7385799066311,"id":6122,"parentId":6060,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1967,"timestamp":7385799066332,"id":6123,"parentId":6061,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1990,"timestamp":7385799066338,"id":6124,"parentId":6062,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"}] -[{"name":"read-resource","duration":2249,"timestamp":7385799066342,"id":6125,"parentId":6063,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2275,"timestamp":7385799066345,"id":6126,"parentId":6064,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2311,"timestamp":7385799066348,"id":6127,"parentId":6065,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2335,"timestamp":7385799066351,"id":6128,"parentId":6066,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2361,"timestamp":7385799066354,"id":6129,"parentId":6067,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2386,"timestamp":7385799066357,"id":6130,"parentId":6068,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2414,"timestamp":7385799066360,"id":6131,"parentId":6069,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2445,"timestamp":7385799066363,"id":6132,"parentId":6070,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2473,"timestamp":7385799066366,"id":6133,"parentId":6071,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2498,"timestamp":7385799066368,"id":6134,"parentId":6072,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2536,"timestamp":7385799066370,"id":6135,"parentId":6073,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2567,"timestamp":7385799066373,"id":6136,"parentId":6074,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2593,"timestamp":7385799066376,"id":6137,"parentId":6075,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2622,"timestamp":7385799066379,"id":6138,"parentId":6076,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2656,"timestamp":7385799066382,"id":6139,"parentId":6077,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2681,"timestamp":7385799066385,"id":6140,"parentId":6078,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2701,"timestamp":7385799066389,"id":6141,"parentId":6079,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2730,"timestamp":7385799066392,"id":6142,"parentId":6080,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2756,"timestamp":7385799066394,"id":6143,"parentId":6081,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2783,"timestamp":7385799066397,"id":6144,"parentId":6082,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2811,"timestamp":7385799066399,"id":6145,"parentId":6083,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2845,"timestamp":7385799066401,"id":6146,"parentId":6084,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2869,"timestamp":7385799066404,"id":6147,"parentId":6085,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2898,"timestamp":7385799066406,"id":6148,"parentId":6086,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2927,"timestamp":7385799066408,"id":6149,"parentId":6087,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2957,"timestamp":7385799066411,"id":6150,"parentId":6088,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2987,"timestamp":7385799066413,"id":6151,"parentId":6089,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3021,"timestamp":7385799066416,"id":6152,"parentId":6090,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3047,"timestamp":7385799066418,"id":6153,"parentId":6091,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3076,"timestamp":7385799066421,"id":6154,"parentId":6092,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7063,"timestamp":7385799066631,"id":6155,"parentId":6031,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7029,"timestamp":7385799066668,"id":6156,"parentId":6032,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7000,"timestamp":7385799066698,"id":6157,"parentId":6033,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6971,"timestamp":7385799066728,"id":6158,"parentId":6034,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6941,"timestamp":7385799066758,"id":6159,"parentId":6035,"tags":{},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6915,"timestamp":7385799066785,"id":6160,"parentId":6036,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6889,"timestamp":7385799066811,"id":6161,"parentId":6037,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6859,"timestamp":7385799066842,"id":6162,"parentId":6038,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6830,"timestamp":7385799066870,"id":6163,"parentId":6039,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6799,"timestamp":7385799066903,"id":6164,"parentId":6040,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6765,"timestamp":7385799066936,"id":6165,"parentId":6041,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6734,"timestamp":7385799066967,"id":6166,"parentId":6042,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6702,"timestamp":7385799067000,"id":6167,"parentId":6043,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6674,"timestamp":7385799067028,"id":6168,"parentId":6044,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6645,"timestamp":7385799067059,"id":6169,"parentId":6045,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6618,"timestamp":7385799067086,"id":6170,"parentId":6046,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6590,"timestamp":7385799067114,"id":6171,"parentId":6047,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6564,"timestamp":7385799067141,"id":6172,"parentId":6048,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6538,"timestamp":7385799067167,"id":6173,"parentId":6049,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6501,"timestamp":7385799067204,"id":6174,"parentId":6050,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6473,"timestamp":7385799067232,"id":6175,"parentId":6051,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6441,"timestamp":7385799067264,"id":6176,"parentId":6052,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6412,"timestamp":7385799067294,"id":6177,"parentId":6053,"tags":{},"startTime":1776992745254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5633,"timestamp":7385799068074,"id":6178,"parentId":6054,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5589,"timestamp":7385799068119,"id":6179,"parentId":6055,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5549,"timestamp":7385799068160,"id":6180,"parentId":6056,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5519,"timestamp":7385799068190,"id":6181,"parentId":6057,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5489,"timestamp":7385799068221,"id":6182,"parentId":6058,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5464,"timestamp":7385799068247,"id":6183,"parentId":6059,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5438,"timestamp":7385799068273,"id":6184,"parentId":6060,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5412,"timestamp":7385799068301,"id":6185,"parentId":6061,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5161,"timestamp":7385799068554,"id":6186,"parentId":6062,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5121,"timestamp":7385799068594,"id":6187,"parentId":6063,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5095,"timestamp":7385799068621,"id":6188,"parentId":6064,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5057,"timestamp":7385799068660,"id":6189,"parentId":6065,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5030,"timestamp":7385799068688,"id":6190,"parentId":6066,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5001,"timestamp":7385799068717,"id":6191,"parentId":6067,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4975,"timestamp":7385799068745,"id":6192,"parentId":6068,"tags":{},"startTime":1776992745255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4945,"timestamp":7385799068776,"id":6193,"parentId":6069,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4912,"timestamp":7385799068809,"id":6194,"parentId":6070,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4882,"timestamp":7385799068840,"id":6195,"parentId":6071,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4855,"timestamp":7385799068868,"id":6196,"parentId":6072,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4816,"timestamp":7385799068908,"id":6197,"parentId":6073,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4784,"timestamp":7385799068942,"id":6198,"parentId":6074,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4755,"timestamp":7385799068971,"id":6199,"parentId":6075,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4724,"timestamp":7385799069003,"id":6200,"parentId":6076,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4688,"timestamp":7385799069040,"id":6201,"parentId":6077,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4662,"timestamp":7385799069067,"id":6202,"parentId":6078,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4634,"timestamp":7385799069096,"id":6203,"parentId":6079,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4606,"timestamp":7385799069124,"id":6204,"parentId":6080,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4580,"timestamp":7385799069152,"id":6205,"parentId":6081,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4550,"timestamp":7385799069182,"id":6206,"parentId":6082,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4521,"timestamp":7385799069212,"id":6207,"parentId":6083,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4490,"timestamp":7385799069248,"id":6208,"parentId":6084,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4464,"timestamp":7385799069274,"id":6209,"parentId":6085,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4433,"timestamp":7385799069306,"id":6210,"parentId":6086,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4403,"timestamp":7385799069337,"id":6211,"parentId":6087,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4371,"timestamp":7385799069370,"id":6212,"parentId":6088,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4340,"timestamp":7385799069402,"id":6213,"parentId":6089,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4304,"timestamp":7385799069439,"id":6214,"parentId":6090,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4277,"timestamp":7385799069467,"id":6215,"parentId":6091,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4247,"timestamp":7385799069498,"id":6216,"parentId":6092,"tags":{},"startTime":1776992745256,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10996,"timestamp":7385799063347,"id":6031,"parentId":5292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"app-pages-browser"},"startTime":1776992745250,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12186,"timestamp":7385799063444,"id":6032,"parentId":5292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"app-pages-browser"},"startTime":1776992745250,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12660,"timestamp":7385799063490,"id":6033,"parentId":5292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"app-pages-browser"},"startTime":1776992745250,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13328,"timestamp":7385799063527,"id":6034,"parentId":5293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"app-pages-browser"},"startTime":1776992745250,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13632,"timestamp":7385799063565,"id":6035,"parentId":5293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"app-pages-browser"},"startTime":1776992745250,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13713,"timestamp":7385799063602,"id":6036,"parentId":5282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1776992745250,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14065,"timestamp":7385799063638,"id":6037,"parentId":5284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"app-pages-browser"},"startTime":1776992745250,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14136,"timestamp":7385799063681,"id":6038,"parentId":5287,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"app-pages-browser"},"startTime":1776992745250,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14445,"timestamp":7385799063725,"id":6039,"parentId":5282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"app-pages-browser"},"startTime":1776992745250,"traceId":"27fab7e1c891f919"}] -[{"name":"build-module-js","duration":15088,"timestamp":7385799063764,"id":6040,"parentId":5282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"app-pages-browser"},"startTime":1776992745250,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15328,"timestamp":7385799063809,"id":6041,"parentId":5282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15910,"timestamp":7385799063844,"id":6042,"parentId":5282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16055,"timestamp":7385799063879,"id":6043,"parentId":5282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17180,"timestamp":7385799063954,"id":6044,"parentId":5282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17291,"timestamp":7385799063993,"id":6045,"parentId":5282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17558,"timestamp":7385799064031,"id":6046,"parentId":5283,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17710,"timestamp":7385799064067,"id":6047,"parentId":5284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17763,"timestamp":7385799064101,"id":6048,"parentId":5284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18573,"timestamp":7385799064135,"id":6049,"parentId":5286,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18640,"timestamp":7385799064169,"id":6050,"parentId":5287,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19170,"timestamp":7385799064207,"id":6051,"parentId":5289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19880,"timestamp":7385799064241,"id":6052,"parentId":5294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20615,"timestamp":7385799064279,"id":6053,"parentId":5305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21771,"timestamp":7385799064313,"id":6054,"parentId":5300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22163,"timestamp":7385799064349,"id":6055,"parentId":5304,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22230,"timestamp":7385799064387,"id":6056,"parentId":5304,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22736,"timestamp":7385799064426,"id":6057,"parentId":5304,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22778,"timestamp":7385799064467,"id":6058,"parentId":5304,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22885,"timestamp":7385799064508,"id":6059,"parentId":5305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22849,"timestamp":7385799064647,"id":6060,"parentId":5306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23132,"timestamp":7385799064699,"id":6061,"parentId":5304,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24099,"timestamp":7385799064738,"id":6062,"parentId":5143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1776992745251,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24196,"timestamp":7385799064778,"id":6063,"parentId":5311,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24840,"timestamp":7385799064913,"id":6064,"parentId":5312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24887,"timestamp":7385799064967,"id":6065,"parentId":5310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25190,"timestamp":7385799065006,"id":6066,"parentId":5311,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25265,"timestamp":7385799065049,"id":6067,"parentId":5317,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25553,"timestamp":7385799065088,"id":6068,"parentId":5318,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25766,"timestamp":7385799065164,"id":6069,"parentId":5319,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26813,"timestamp":7385799065205,"id":6070,"parentId":5319,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27337,"timestamp":7385799065250,"id":6071,"parentId":5321,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27690,"timestamp":7385799065284,"id":6072,"parentId":5321,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27739,"timestamp":7385799065322,"id":6073,"parentId":5321,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27885,"timestamp":7385799065357,"id":6074,"parentId":5322,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27988,"timestamp":7385799065393,"id":6075,"parentId":5323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28079,"timestamp":7385799065428,"id":6076,"parentId":5471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28194,"timestamp":7385799065466,"id":6077,"parentId":5471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28204,"timestamp":7385799065502,"id":6078,"parentId":5471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28375,"timestamp":7385799065536,"id":6079,"parentId":5449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28469,"timestamp":7385799065578,"id":6080,"parentId":5452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28775,"timestamp":7385799065612,"id":6081,"parentId":5458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29245,"timestamp":7385799065656,"id":6082,"parentId":5460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30085,"timestamp":7385799065690,"id":6083,"parentId":5460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30230,"timestamp":7385799065723,"id":6084,"parentId":5460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30418,"timestamp":7385799065757,"id":6085,"parentId":5460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"app-pages-browser"},"startTime":1776992745252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30835,"timestamp":7385799065791,"id":6086,"parentId":5460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"app-pages-browser"},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31043,"timestamp":7385799065830,"id":6087,"parentId":5464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"app-pages-browser"},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31442,"timestamp":7385799065866,"id":6088,"parentId":5479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"app-pages-browser"},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32520,"timestamp":7385799065900,"id":6089,"parentId":5479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"app-pages-browser"},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32778,"timestamp":7385799065935,"id":6090,"parentId":5479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"app-pages-browser"},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33025,"timestamp":7385799065972,"id":6091,"parentId":5482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"app-pages-browser"},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33260,"timestamp":7385799066013,"id":6092,"parentId":5482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"app-pages-browser"},"startTime":1776992745253,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":979,"timestamp":7385799133262,"id":6295,"parentId":6217,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1028,"timestamp":7385799133282,"id":6296,"parentId":6218,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1056,"timestamp":7385799133286,"id":6297,"parentId":6219,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1083,"timestamp":7385799133291,"id":6298,"parentId":6220,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1108,"timestamp":7385799133295,"id":6299,"parentId":6221,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1135,"timestamp":7385799133298,"id":6300,"parentId":6222,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1160,"timestamp":7385799133302,"id":6301,"parentId":6223,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1190,"timestamp":7385799133305,"id":6302,"parentId":6224,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1217,"timestamp":7385799133308,"id":6303,"parentId":6225,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1246,"timestamp":7385799133312,"id":6304,"parentId":6226,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1548,"timestamp":7385799133315,"id":6305,"parentId":6227,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1654,"timestamp":7385799133319,"id":6306,"parentId":6228,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1751,"timestamp":7385799133322,"id":6307,"parentId":6229,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1840,"timestamp":7385799133326,"id":6308,"parentId":6230,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1899,"timestamp":7385799133329,"id":6309,"parentId":6231,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1926,"timestamp":7385799133333,"id":6310,"parentId":6232,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1958,"timestamp":7385799133336,"id":6311,"parentId":6233,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1985,"timestamp":7385799133340,"id":6312,"parentId":6234,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2034,"timestamp":7385799133343,"id":6313,"parentId":6235,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2068,"timestamp":7385799133347,"id":6314,"parentId":6236,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2132,"timestamp":7385799133350,"id":6315,"parentId":6237,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2168,"timestamp":7385799133354,"id":6316,"parentId":6238,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2345,"timestamp":7385799133357,"id":6317,"parentId":6239,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2449,"timestamp":7385799133360,"id":6318,"parentId":6240,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2497,"timestamp":7385799133363,"id":6319,"parentId":6241,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2570,"timestamp":7385799133374,"id":6320,"parentId":6242,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2618,"timestamp":7385799133377,"id":6321,"parentId":6243,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2647,"timestamp":7385799133381,"id":6322,"parentId":6244,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2674,"timestamp":7385799133384,"id":6323,"parentId":6245,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2766,"timestamp":7385799133387,"id":6324,"parentId":6246,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2802,"timestamp":7385799133391,"id":6325,"parentId":6247,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2927,"timestamp":7385799133394,"id":6326,"parentId":6248,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3040,"timestamp":7385799133397,"id":6327,"parentId":6249,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3110,"timestamp":7385799133400,"id":6328,"parentId":6250,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3163,"timestamp":7385799133404,"id":6329,"parentId":6251,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3154,"timestamp":7385799133461,"id":6330,"parentId":6252,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3173,"timestamp":7385799133477,"id":6331,"parentId":6253,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3321,"timestamp":7385799133482,"id":6332,"parentId":6254,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3359,"timestamp":7385799133486,"id":6333,"parentId":6255,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3506,"timestamp":7385799133491,"id":6334,"parentId":6256,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3560,"timestamp":7385799133495,"id":6335,"parentId":6257,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3673,"timestamp":7385799133499,"id":6336,"parentId":6258,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3752,"timestamp":7385799133502,"id":6337,"parentId":6259,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3798,"timestamp":7385799133506,"id":6338,"parentId":6260,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3839,"timestamp":7385799133510,"id":6339,"parentId":6261,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3880,"timestamp":7385799133514,"id":6340,"parentId":6262,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3923,"timestamp":7385799133518,"id":6341,"parentId":6263,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4006,"timestamp":7385799133522,"id":6342,"parentId":6264,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"}] -[{"name":"read-resource","duration":4229,"timestamp":7385799133525,"id":6343,"parentId":6265,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4265,"timestamp":7385799133528,"id":6344,"parentId":6266,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4291,"timestamp":7385799133532,"id":6345,"parentId":6267,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4327,"timestamp":7385799133535,"id":6346,"parentId":6268,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4355,"timestamp":7385799133539,"id":6347,"parentId":6269,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4384,"timestamp":7385799133542,"id":6348,"parentId":6270,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4414,"timestamp":7385799133546,"id":6349,"parentId":6271,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4439,"timestamp":7385799133549,"id":6350,"parentId":6272,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4464,"timestamp":7385799133553,"id":6351,"parentId":6273,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4489,"timestamp":7385799133557,"id":6352,"parentId":6274,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4532,"timestamp":7385799133560,"id":6353,"parentId":6275,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4557,"timestamp":7385799133564,"id":6354,"parentId":6276,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4582,"timestamp":7385799133567,"id":6355,"parentId":6277,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4612,"timestamp":7385799133571,"id":6356,"parentId":6278,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4658,"timestamp":7385799133575,"id":6357,"parentId":6279,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4686,"timestamp":7385799133578,"id":6358,"parentId":6280,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4712,"timestamp":7385799133582,"id":6359,"parentId":6281,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4738,"timestamp":7385799133585,"id":6360,"parentId":6282,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4767,"timestamp":7385799133588,"id":6361,"parentId":6283,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4793,"timestamp":7385799133591,"id":6362,"parentId":6284,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4816,"timestamp":7385799133595,"id":6363,"parentId":6285,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4838,"timestamp":7385799133599,"id":6364,"parentId":6286,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4863,"timestamp":7385799133603,"id":6365,"parentId":6287,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4891,"timestamp":7385799133606,"id":6366,"parentId":6288,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4921,"timestamp":7385799133609,"id":6367,"parentId":6289,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4950,"timestamp":7385799133612,"id":6368,"parentId":6290,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4978,"timestamp":7385799133615,"id":6369,"parentId":6291,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":5008,"timestamp":7385799133618,"id":6370,"parentId":6292,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":5032,"timestamp":7385799133621,"id":6371,"parentId":6293,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":5058,"timestamp":7385799133624,"id":6372,"parentId":6294,"tags":{},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6450,"timestamp":7385799134258,"id":6373,"parentId":6217,"tags":{},"startTime":1776992745321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6397,"timestamp":7385799134314,"id":6374,"parentId":6218,"tags":{},"startTime":1776992745321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6366,"timestamp":7385799134346,"id":6375,"parentId":6219,"tags":{},"startTime":1776992745321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6336,"timestamp":7385799134376,"id":6376,"parentId":6220,"tags":{},"startTime":1776992745321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6308,"timestamp":7385799134406,"id":6377,"parentId":6221,"tags":{},"startTime":1776992745321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6278,"timestamp":7385799134436,"id":6378,"parentId":6222,"tags":{},"startTime":1776992745321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6251,"timestamp":7385799134464,"id":6379,"parentId":6223,"tags":{},"startTime":1776992745321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6218,"timestamp":7385799134499,"id":6380,"parentId":6224,"tags":{},"startTime":1776992745321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6188,"timestamp":7385799134529,"id":6381,"parentId":6225,"tags":{},"startTime":1776992745321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6034,"timestamp":7385799134683,"id":6382,"parentId":6226,"tags":{},"startTime":1776992745321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5842,"timestamp":7385799134877,"id":6383,"parentId":6227,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5739,"timestamp":7385799134980,"id":6384,"parentId":6228,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5623,"timestamp":7385799135098,"id":6385,"parentId":6229,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5528,"timestamp":7385799135193,"id":6386,"parentId":6230,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5491,"timestamp":7385799135232,"id":6387,"parentId":6231,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5462,"timestamp":7385799135262,"id":6388,"parentId":6232,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5428,"timestamp":7385799135297,"id":6389,"parentId":6233,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5398,"timestamp":7385799135327,"id":6390,"parentId":6234,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5346,"timestamp":7385799135381,"id":6391,"parentId":6235,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5310,"timestamp":7385799135418,"id":6392,"parentId":6236,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5243,"timestamp":7385799135486,"id":6393,"parentId":6237,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5193,"timestamp":7385799135537,"id":6394,"parentId":6238,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4995,"timestamp":7385799135736,"id":6395,"parentId":6239,"tags":{},"startTime":1776992745322,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4918,"timestamp":7385799135813,"id":6396,"parentId":6240,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4862,"timestamp":7385799135871,"id":6397,"parentId":6241,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4783,"timestamp":7385799135950,"id":6398,"parentId":6242,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4735,"timestamp":7385799135999,"id":6399,"parentId":6243,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4705,"timestamp":7385799136030,"id":6400,"parentId":6244,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4675,"timestamp":7385799136062,"id":6401,"parentId":6245,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4580,"timestamp":7385799136158,"id":6402,"parentId":6246,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4542,"timestamp":7385799136196,"id":6403,"parentId":6247,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4394,"timestamp":7385799136345,"id":6404,"parentId":6248,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4295,"timestamp":7385799136445,"id":6405,"parentId":6249,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4227,"timestamp":7385799136514,"id":6406,"parentId":6250,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4171,"timestamp":7385799136571,"id":6407,"parentId":6251,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4124,"timestamp":7385799136619,"id":6408,"parentId":6252,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4090,"timestamp":7385799136653,"id":6409,"parentId":6253,"tags":{},"startTime":1776992745323,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3934,"timestamp":7385799136811,"id":6410,"parentId":6254,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3896,"timestamp":7385799136849,"id":6411,"parentId":6255,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3733,"timestamp":7385799137013,"id":6412,"parentId":6256,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3688,"timestamp":7385799137060,"id":6413,"parentId":6257,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3563,"timestamp":7385799137185,"id":6414,"parentId":6258,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3477,"timestamp":7385799137272,"id":6415,"parentId":6259,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3441,"timestamp":7385799137309,"id":6416,"parentId":6260,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3399,"timestamp":7385799137352,"id":6417,"parentId":6261,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3353,"timestamp":7385799137399,"id":6418,"parentId":6262,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3301,"timestamp":7385799137451,"id":6419,"parentId":6263,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3041,"timestamp":7385799137714,"id":6420,"parentId":6264,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2996,"timestamp":7385799137759,"id":6421,"parentId":6265,"tags":{},"startTime":1776992745324,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2961,"timestamp":7385799137796,"id":6422,"parentId":6266,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2932,"timestamp":7385799137825,"id":6423,"parentId":6267,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2894,"timestamp":7385799137865,"id":6424,"parentId":6268,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2863,"timestamp":7385799137896,"id":6425,"parentId":6269,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2831,"timestamp":7385799137929,"id":6426,"parentId":6270,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2799,"timestamp":7385799137962,"id":6427,"parentId":6271,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2771,"timestamp":7385799137991,"id":6428,"parentId":6272,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2743,"timestamp":7385799138021,"id":6429,"parentId":6273,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2715,"timestamp":7385799138049,"id":6430,"parentId":6274,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2671,"timestamp":7385799138095,"id":6431,"parentId":6275,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2643,"timestamp":7385799138123,"id":6432,"parentId":6276,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2615,"timestamp":7385799138152,"id":6433,"parentId":6277,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2582,"timestamp":7385799138186,"id":6434,"parentId":6278,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2533,"timestamp":7385799138236,"id":6435,"parentId":6279,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2502,"timestamp":7385799138267,"id":6436,"parentId":6280,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2474,"timestamp":7385799138297,"id":6437,"parentId":6281,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2445,"timestamp":7385799138326,"id":6438,"parentId":6282,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2414,"timestamp":7385799138358,"id":6439,"parentId":6283,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2385,"timestamp":7385799138387,"id":6440,"parentId":6284,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2360,"timestamp":7385799138414,"id":6441,"parentId":6285,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2334,"timestamp":7385799138440,"id":6442,"parentId":6286,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2307,"timestamp":7385799138468,"id":6443,"parentId":6287,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":2353,"timestamp":7385799138499,"id":6444,"parentId":6288,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2320,"timestamp":7385799138533,"id":6445,"parentId":6289,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2289,"timestamp":7385799138565,"id":6446,"parentId":6290,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2258,"timestamp":7385799138596,"id":6447,"parentId":6291,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2226,"timestamp":7385799138629,"id":6448,"parentId":6292,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2199,"timestamp":7385799138656,"id":6449,"parentId":6293,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2172,"timestamp":7385799138684,"id":6450,"parentId":6294,"tags":{},"startTime":1776992745325,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13246,"timestamp":7385799128462,"id":6217,"parentId":5473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"app-pages-browser"},"startTime":1776992745315,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13298,"timestamp":7385799128579,"id":6218,"parentId":5479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776992745315,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13364,"timestamp":7385799128626,"id":6219,"parentId":5479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776992745315,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13452,"timestamp":7385799128667,"id":6220,"parentId":5479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776992745315,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13562,"timestamp":7385799128708,"id":6221,"parentId":5479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776992745315,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13594,"timestamp":7385799128751,"id":6222,"parentId":5479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776992745315,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14138,"timestamp":7385799128791,"id":6223,"parentId":5482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14283,"timestamp":7385799128829,"id":6224,"parentId":5482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14806,"timestamp":7385799128872,"id":6225,"parentId":5482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16036,"timestamp":7385799128911,"id":6226,"parentId":5483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16319,"timestamp":7385799128947,"id":6227,"parentId":5483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16898,"timestamp":7385799128985,"id":6228,"parentId":5485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18508,"timestamp":7385799129024,"id":6229,"parentId":5485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18963,"timestamp":7385799129062,"id":6230,"parentId":5488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19022,"timestamp":7385799129097,"id":6231,"parentId":5493,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19418,"timestamp":7385799129135,"id":6232,"parentId":5496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19461,"timestamp":7385799129171,"id":6233,"parentId":5496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19819,"timestamp":7385799129207,"id":6234,"parentId":5498,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20057,"timestamp":7385799129245,"id":6235,"parentId":5493,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21251,"timestamp":7385799129280,"id":6236,"parentId":5493,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21588,"timestamp":7385799129318,"id":6237,"parentId":5600,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21779,"timestamp":7385799129353,"id":6238,"parentId":5600,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21872,"timestamp":7385799129389,"id":6239,"parentId":5601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22151,"timestamp":7385799129424,"id":6240,"parentId":5603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22976,"timestamp":7385799129495,"id":6241,"parentId":5608,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24146,"timestamp":7385799129596,"id":6242,"parentId":5610,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24215,"timestamp":7385799129649,"id":6243,"parentId":5610,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24246,"timestamp":7385799129689,"id":6244,"parentId":5617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24267,"timestamp":7385799129732,"id":6245,"parentId":5617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"app-pages-browser"},"startTime":1776992745316,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24360,"timestamp":7385799129772,"id":6246,"parentId":5619,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25081,"timestamp":7385799129813,"id":6247,"parentId":5622,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25348,"timestamp":7385799129857,"id":6248,"parentId":5622,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25454,"timestamp":7385799129895,"id":6249,"parentId":5622,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25741,"timestamp":7385799129939,"id":6250,"parentId":5619,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26015,"timestamp":7385799129978,"id":6251,"parentId":5630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26268,"timestamp":7385799130015,"id":6252,"parentId":5633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28275,"timestamp":7385799130052,"id":6253,"parentId":5633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28449,"timestamp":7385799130089,"id":6254,"parentId":5622,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28564,"timestamp":7385799130125,"id":6255,"parentId":5622,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28743,"timestamp":7385799130165,"id":6256,"parentId":5631,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29387,"timestamp":7385799130211,"id":6257,"parentId":5631,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29705,"timestamp":7385799130254,"id":6258,"parentId":5632,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29743,"timestamp":7385799130299,"id":6259,"parentId":5633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29790,"timestamp":7385799130335,"id":6260,"parentId":5633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29911,"timestamp":7385799130377,"id":6261,"parentId":5638,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30045,"timestamp":7385799130416,"id":6262,"parentId":5639,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30311,"timestamp":7385799130451,"id":6263,"parentId":5637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30546,"timestamp":7385799130491,"id":6264,"parentId":5732,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":30957,"timestamp":7385799130527,"id":6265,"parentId":5733,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31116,"timestamp":7385799130561,"id":6266,"parentId":5733,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31737,"timestamp":7385799130600,"id":6267,"parentId":5745,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31793,"timestamp":7385799130636,"id":6268,"parentId":5746,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32332,"timestamp":7385799130679,"id":6269,"parentId":5747,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"app-pages-browser"},"startTime":1776992745317,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32530,"timestamp":7385799130771,"id":6270,"parentId":5748,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"app-pages-browser"},"startTime":1776992745318,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32610,"timestamp":7385799130827,"id":6271,"parentId":5748,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"app-pages-browser"},"startTime":1776992745318,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32948,"timestamp":7385799130874,"id":6272,"parentId":5760,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"app-pages-browser"},"startTime":1776992745318,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33173,"timestamp":7385799130936,"id":6273,"parentId":5760,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"app-pages-browser"},"startTime":1776992745318,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34462,"timestamp":7385799130987,"id":6274,"parentId":5763,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"app-pages-browser"},"startTime":1776992745318,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34621,"timestamp":7385799131034,"id":6275,"parentId":5778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"app-pages-browser"},"startTime":1776992745318,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34675,"timestamp":7385799131088,"id":6276,"parentId":5754,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"app-pages-browser"},"startTime":1776992745318,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35114,"timestamp":7385799131130,"id":6277,"parentId":5757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"app-pages-browser"},"startTime":1776992745318,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34878,"timestamp":7385799132039,"id":6278,"parentId":5751,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"app-pages-browser"},"startTime":1776992745319,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35147,"timestamp":7385799132090,"id":6279,"parentId":5752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"app-pages-browser"},"startTime":1776992745319,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35285,"timestamp":7385799132130,"id":6280,"parentId":5752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"app-pages-browser"},"startTime":1776992745319,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35293,"timestamp":7385799132188,"id":6281,"parentId":5753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"app-pages-browser"},"startTime":1776992745319,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35423,"timestamp":7385799132228,"id":6282,"parentId":5753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"app-pages-browser"},"startTime":1776992745319,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35492,"timestamp":7385799132268,"id":6283,"parentId":5753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"app-pages-browser"},"startTime":1776992745319,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35571,"timestamp":7385799132307,"id":6284,"parentId":5770,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"app-pages-browser"},"startTime":1776992745319,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35610,"timestamp":7385799132344,"id":6285,"parentId":5783,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"app-pages-browser"},"startTime":1776992745319,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35694,"timestamp":7385799132384,"id":6286,"parentId":5804,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"app-pages-browser"},"startTime":1776992745319,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36034,"timestamp":7385799132420,"id":6287,"parentId":5804,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"app-pages-browser"},"startTime":1776992745319,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37200,"timestamp":7385799132459,"id":6288,"parentId":5804,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"app-pages-browser"},"startTime":1776992745319,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37902,"timestamp":7385799132958,"id":6289,"parentId":5797,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"app-pages-browser"},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38304,"timestamp":7385799133022,"id":6290,"parentId":5813,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"app-pages-browser"},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38825,"timestamp":7385799133073,"id":6291,"parentId":5791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"app-pages-browser"},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38963,"timestamp":7385799133114,"id":6292,"parentId":5793,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"app-pages-browser"},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39087,"timestamp":7385799133153,"id":6293,"parentId":5795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"app-pages-browser"},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39152,"timestamp":7385799133191,"id":6294,"parentId":5816,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"app-pages-browser"},"startTime":1776992745320,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":220,"timestamp":7385799207106,"id":6467,"parentId":6451,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":268,"timestamp":7385799207113,"id":6468,"parentId":6452,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":298,"timestamp":7385799207116,"id":6469,"parentId":6453,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":321,"timestamp":7385799207119,"id":6470,"parentId":6454,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":345,"timestamp":7385799207122,"id":6471,"parentId":6455,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":375,"timestamp":7385799207125,"id":6472,"parentId":6456,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":408,"timestamp":7385799207128,"id":6473,"parentId":6457,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":432,"timestamp":7385799207131,"id":6474,"parentId":6458,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":454,"timestamp":7385799207133,"id":6475,"parentId":6459,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":475,"timestamp":7385799207136,"id":6476,"parentId":6460,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":498,"timestamp":7385799207138,"id":6477,"parentId":6461,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":570,"timestamp":7385799207140,"id":6478,"parentId":6462,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":623,"timestamp":7385799207142,"id":6479,"parentId":6463,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":736,"timestamp":7385799207145,"id":6480,"parentId":6464,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":766,"timestamp":7385799207147,"id":6481,"parentId":6465,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":793,"timestamp":7385799207149,"id":6482,"parentId":6466,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"}] -[{"name":"next-swc-loader","duration":4513,"timestamp":7385799207337,"id":6483,"parentId":6451,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4471,"timestamp":7385799207383,"id":6484,"parentId":6452,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4439,"timestamp":7385799207416,"id":6485,"parentId":6453,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4413,"timestamp":7385799207442,"id":6486,"parentId":6454,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4387,"timestamp":7385799207468,"id":6487,"parentId":6455,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4354,"timestamp":7385799207502,"id":6488,"parentId":6456,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4318,"timestamp":7385799207539,"id":6489,"parentId":6457,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4292,"timestamp":7385799207565,"id":6490,"parentId":6458,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4269,"timestamp":7385799207588,"id":6491,"parentId":6459,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4245,"timestamp":7385799207613,"id":6492,"parentId":6460,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4220,"timestamp":7385799207638,"id":6493,"parentId":6461,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4140,"timestamp":7385799207718,"id":6494,"parentId":6462,"tags":{},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4090,"timestamp":7385799207769,"id":6495,"parentId":6463,"tags":{},"startTime":1776992745395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3975,"timestamp":7385799207884,"id":6496,"parentId":6464,"tags":{},"startTime":1776992745395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3944,"timestamp":7385799207915,"id":6497,"parentId":6465,"tags":{},"startTime":1776992745395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3665,"timestamp":7385799208195,"id":6498,"parentId":6466,"tags":{},"startTime":1776992745395,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6569,"timestamp":7385799206359,"id":6451,"parentId":6003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"app-pages-browser"},"startTime":1776992745393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7360,"timestamp":7385799206458,"id":6452,"parentId":6003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"app-pages-browser"},"startTime":1776992745393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7696,"timestamp":7385799206502,"id":6453,"parentId":6004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"app-pages-browser"},"startTime":1776992745393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7892,"timestamp":7385799206541,"id":6454,"parentId":6004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"app-pages-browser"},"startTime":1776992745393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8410,"timestamp":7385799206579,"id":6455,"parentId":6004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"app-pages-browser"},"startTime":1776992745393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8535,"timestamp":7385799206616,"id":6456,"parentId":6004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"app-pages-browser"},"startTime":1776992745393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8606,"timestamp":7385799206660,"id":6457,"parentId":6033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"app-pages-browser"},"startTime":1776992745393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8653,"timestamp":7385799206696,"id":6458,"parentId":6052,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"app-pages-browser"},"startTime":1776992745393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8700,"timestamp":7385799206735,"id":6459,"parentId":6052,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"app-pages-browser"},"startTime":1776992745393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8741,"timestamp":7385799206771,"id":6460,"parentId":6052,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"app-pages-browser"},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8810,"timestamp":7385799206807,"id":6461,"parentId":6052,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"app-pages-browser"},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8854,"timestamp":7385799206841,"id":6462,"parentId":6052,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"app-pages-browser"},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9543,"timestamp":7385799206877,"id":6463,"parentId":6074,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"app-pages-browser"},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9726,"timestamp":7385799206912,"id":6464,"parentId":6053,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"app-pages-browser"},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9797,"timestamp":7385799206950,"id":6465,"parentId":6057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"app-pages-browser"},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9923,"timestamp":7385799206990,"id":6466,"parentId":6083,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"app-pages-browser"},"startTime":1776992745394,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":122,"timestamp":7385799220181,"id":6510,"parentId":6499,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":151,"timestamp":7385799220186,"id":6511,"parentId":6500,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":175,"timestamp":7385799220189,"id":6512,"parentId":6501,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":198,"timestamp":7385799220192,"id":6513,"parentId":6502,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":224,"timestamp":7385799220194,"id":6514,"parentId":6503,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":247,"timestamp":7385799220197,"id":6515,"parentId":6504,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":279,"timestamp":7385799220199,"id":6516,"parentId":6505,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":307,"timestamp":7385799220202,"id":6517,"parentId":6506,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":330,"timestamp":7385799220204,"id":6518,"parentId":6507,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":356,"timestamp":7385799220206,"id":6519,"parentId":6508,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":394,"timestamp":7385799220209,"id":6520,"parentId":6509,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1893,"timestamp":7385799220308,"id":6521,"parentId":6499,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1864,"timestamp":7385799220339,"id":6522,"parentId":6500,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1838,"timestamp":7385799220365,"id":6523,"parentId":6501,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1813,"timestamp":7385799220391,"id":6524,"parentId":6502,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1785,"timestamp":7385799220420,"id":6525,"parentId":6503,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1759,"timestamp":7385799220446,"id":6526,"parentId":6504,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1725,"timestamp":7385799220480,"id":6527,"parentId":6505,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1696,"timestamp":7385799220510,"id":6528,"parentId":6506,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1670,"timestamp":7385799220536,"id":6529,"parentId":6507,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1643,"timestamp":7385799220564,"id":6530,"parentId":6508,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1603,"timestamp":7385799220604,"id":6531,"parentId":6509,"tags":{},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3729,"timestamp":7385799219691,"id":6499,"parentId":6235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"app-pages-browser"},"startTime":1776992745406,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3943,"timestamp":7385799219760,"id":6500,"parentId":6223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"app-pages-browser"},"startTime":1776992745406,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4156,"timestamp":7385799219799,"id":6501,"parentId":6230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"app-pages-browser"},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4337,"timestamp":7385799219836,"id":6502,"parentId":6230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"app-pages-browser"},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4402,"timestamp":7385799219873,"id":6503,"parentId":6240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"app-pages-browser"},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4438,"timestamp":7385799219909,"id":6504,"parentId":6241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"app-pages-browser"},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4630,"timestamp":7385799219944,"id":6505,"parentId":6238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"app-pages-browser"},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4670,"timestamp":7385799219979,"id":6506,"parentId":6238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"app-pages-browser"},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4692,"timestamp":7385799220023,"id":6507,"parentId":6238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"app-pages-browser"},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6177,"timestamp":7385799220065,"id":6508,"parentId":6237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"app-pages-browser"},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6219,"timestamp":7385799220106,"id":6509,"parentId":6237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"app-pages-browser"},"startTime":1776992745407,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":98,"timestamp":7385799228257,"id":6537,"parentId":6532,"tags":{},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":133,"timestamp":7385799228261,"id":6538,"parentId":6533,"tags":{},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":158,"timestamp":7385799228264,"id":6539,"parentId":6534,"tags":{},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":180,"timestamp":7385799228266,"id":6540,"parentId":6535,"tags":{},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":230,"timestamp":7385799228268,"id":6541,"parentId":6536,"tags":{},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2289,"timestamp":7385799228361,"id":6542,"parentId":6532,"tags":{},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2254,"timestamp":7385799228396,"id":6543,"parentId":6533,"tags":{},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2228,"timestamp":7385799228423,"id":6544,"parentId":6534,"tags":{},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2200,"timestamp":7385799228451,"id":6545,"parentId":6535,"tags":{},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2152,"timestamp":7385799228500,"id":6546,"parentId":6536,"tags":{},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2858,"timestamp":7385799227999,"id":6532,"parentId":6274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"app-pages-browser"},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3126,"timestamp":7385799228064,"id":6533,"parentId":6274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"app-pages-browser"},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3204,"timestamp":7385799228106,"id":6534,"parentId":6274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"app-pages-browser"},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3692,"timestamp":7385799228143,"id":6535,"parentId":6270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"app-pages-browser"},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3924,"timestamp":7385799228183,"id":6536,"parentId":6292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"app-pages-browser"},"startTime":1776992745415,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26,"timestamp":7385799233113,"id":6548,"parentId":6547,"tags":{},"startTime":1776992745420,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":520,"timestamp":7385799233142,"id":6549,"parentId":6547,"tags":{},"startTime":1776992745420,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":653,"timestamp":7385799233060,"id":6547,"parentId":6455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"app-pages-browser"},"startTime":1776992745420,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":270,"timestamp":7385799236502,"id":6551,"parentId":6550,"tags":{},"startTime":1776992745423,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":51,"timestamp":7385799236781,"id":6552,"parentId":6550,"tags":{},"startTime":1776992745424,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3768,"timestamp":7385799236397,"id":6550,"parentId":6032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/buffer/index.js","layer":"app-pages-browser"},"startTime":1776992745423,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":857677,"timestamp":7385798382551,"id":4869,"parentId":4851,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992744569,"traceId":"27fab7e1c891f919"},{"name":"make","duration":875336,"timestamp":7385798364916,"id":4851,"parentId":4850,"tags":{},"startTime":1776992744552,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":5022,"timestamp":7385799261806,"id":6554,"parentId":6553,"tags":{},"startTime":1776992745449,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7385799266847,"id":6556,"parentId":6553,"tags":{},"startTime":1776992745454,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":47,"timestamp":7385799266859,"id":6557,"parentId":6553,"tags":{},"startTime":1776992745454,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":4,"timestamp":7385799266918,"id":6558,"parentId":6553,"tags":{},"startTime":1776992745454,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385799266934,"id":6559,"parentId":6553,"tags":{},"startTime":1776992745454,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":2178,"timestamp":7385799266841,"id":6555,"parentId":6553,"tags":{},"startTime":1776992745454,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":5172,"timestamp":7385799276909,"id":6560,"parentId":6553,"tags":{},"startTime":1776992745464,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":46492,"timestamp":7385799282095,"id":6561,"parentId":6553,"tags":{},"startTime":1776992745469,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":17730,"timestamp":7385799330822,"id":6562,"parentId":6553,"tags":{},"startTime":1776992745518,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":195,"timestamp":7385799348551,"id":6563,"parentId":6553,"tags":{},"startTime":1776992745535,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":135,"timestamp":7385799348736,"id":6564,"parentId":6553,"tags":{},"startTime":1776992745535,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":111498,"timestamp":7385799348874,"id":6565,"parentId":6553,"tags":{},"startTime":1776992745536,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":155,"timestamp":7385799461568,"id":6567,"parentId":4850,"tags":{},"startTime":1776992745648,"traceId":"27fab7e1c891f919"}] -[{"name":"NextJsBuildManifest-createassets","duration":402,"timestamp":7385799461504,"id":6566,"parentId":4850,"tags":{},"startTime":1776992745648,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":208551,"timestamp":7385799255971,"id":6553,"parentId":4850,"tags":{},"startTime":1776992745443,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1100715,"timestamp":7385798363848,"id":4850,"parentId":3156,"tags":{"name":"client"},"startTime":1776992744551,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":38161,"timestamp":7385799464593,"id":6568,"parentId":3156,"tags":{},"startTime":1776992745651,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":2518339,"timestamp":7385796986323,"id":3108,"tags":{"trigger":"/sectors","isTurbopack":false},"startTime":1776992743173,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":2475924,"timestamp":7385797029497,"id":3156,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992743216,"traceId":"27fab7e1c891f919"}] -[{"name":"client-success","duration":15,"timestamp":7385799517312,"id":6569,"parentId":3,"tags":{},"startTime":1776992745704,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":1,"timestamp":7385799517382,"id":6570,"parentId":3,"tags":{},"startTime":1776992745704,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":2553366,"timestamp":7385796983617,"id":3106,"tags":{"url":"/sectors?_rsc=opwvn","isTurbopack":false},"startTime":1776992743170,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":4,"timestamp":7385799537057,"id":6571,"parentId":3106,"tags":{"url":"/sectors?_rsc=opwvn","memory.rss":"589660160","memory.heapUsed":"437611472","memory.heapTotal":"472399872"},"startTime":1776992745724,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":2509000,"timestamp":7385797030671,"id":6572,"parentId":3,"tags":{"updatedModules":[],"page":"/strategy","isPageHidden":false},"startTime":1776992745727,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":2515000,"timestamp":7385797029617,"id":6574,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1776992745731,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":11648,"timestamp":7385799541369,"id":6573,"tags":{"url":"/sectors?_rsc=b5e9m","isTurbopack":false},"startTime":1776992745728,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385799553039,"id":6575,"parentId":6573,"tags":{"url":"/sectors?_rsc=b5e9m","memory.rss":"589889536","memory.heapUsed":"440697648","memory.heapTotal":"472662016"},"startTime":1776992745740,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":25042,"timestamp":7385847808284,"id":6586,"parentId":6580,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%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":1776992793995,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":25074,"timestamp":7385847808290,"id":6588,"parentId":6580,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%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":1776992793995,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":25081,"timestamp":7385847808292,"id":6589,"parentId":6580,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%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":1776992793995,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":25086,"timestamp":7385847808295,"id":6590,"parentId":6580,"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":1776992793995,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26091,"timestamp":7385847808282,"id":6585,"parentId":6580,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776992793995,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":30017,"timestamp":7385847808275,"id":6583,"parentId":6580,"tags":{"request":"next/dist/pages/_document"},"startTime":1776992793995,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":32113,"timestamp":7385847808270,"id":6582,"parentId":6580,"tags":{"request":"next/dist/pages/_app"},"startTime":1776992793995,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":32113,"timestamp":7385847808278,"id":6584,"parentId":6580,"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":1776992793995,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":32349,"timestamp":7385847808049,"id":6581,"parentId":6580,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776992793995,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":28986,"timestamp":7385847830560,"id":6591,"parentId":6587,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%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":1776992794017,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5345,"timestamp":7385847864015,"id":6594,"parentId":6593,"tags":{},"startTime":1776992794051,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5519,"timestamp":7385847863846,"id":6593,"parentId":6592,"tags":{},"startTime":1776992794050,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":7507,"timestamp":7385847863544,"id":6592,"parentId":6591,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"rsc"},"startTime":1776992794050,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":64812,"timestamp":7385847808287,"id":6587,"parentId":6580,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%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":1776992793995,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":728,"timestamp":7385847897816,"id":6622,"parentId":6579,"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(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992794084,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11729,"timestamp":7385847903272,"id":6625,"parentId":6624,"tags":{},"startTime":1776992794090,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11817,"timestamp":7385847903192,"id":6624,"parentId":6623,"tags":{},"startTime":1776992794090,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":31568,"timestamp":7385847902965,"id":6623,"parentId":6622,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"ssr"},"startTime":1776992794090,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3746,"timestamp":7385847959326,"id":6629,"parentId":6628,"tags":{},"startTime":1776992794146,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3812,"timestamp":7385847959269,"id":6628,"parentId":6626,"tags":{},"startTime":1776992794146,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":5391,"timestamp":7385847959100,"id":6626,"parentId":6623,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"ssr"},"startTime":1776992794146,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5430,"timestamp":7385847959365,"id":6631,"parentId":6630,"tags":{},"startTime":1776992794146,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5463,"timestamp":7385847959335,"id":6630,"parentId":6627,"tags":{},"startTime":1776992794146,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":6781,"timestamp":7385847959209,"id":6627,"parentId":6623,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"ssr"},"startTime":1776992794146,"traceId":"27fab7e1c891f919"},{"name":"make","duration":172601,"timestamp":7385847800514,"id":6580,"parentId":6579,"tags":{},"startTime":1776992793987,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":6136,"timestamp":7385847993720,"id":6633,"parentId":6632,"tags":{},"startTime":1776992794180,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":4,"timestamp":7385847999876,"id":6635,"parentId":6632,"tags":{},"startTime":1776992794187,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":3971,"timestamp":7385847999889,"id":6636,"parentId":6632,"tags":{},"startTime":1776992794187,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":5,"timestamp":7385848003886,"id":6637,"parentId":6632,"tags":{},"startTime":1776992794191,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":8,"timestamp":7385848003901,"id":6638,"parentId":6632,"tags":{},"startTime":1776992794191,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":6393,"timestamp":7385847999870,"id":6634,"parentId":6632,"tags":{},"startTime":1776992794187,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":1168,"timestamp":7385848009312,"id":6639,"parentId":6632,"tags":{},"startTime":1776992794196,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":8534,"timestamp":7385848010501,"id":6640,"parentId":6632,"tags":{},"startTime":1776992794197,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":1254,"timestamp":7385848020525,"id":6641,"parentId":6632,"tags":{},"startTime":1776992794207,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":65,"timestamp":7385848021779,"id":6642,"parentId":6632,"tags":{},"startTime":1776992794208,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":76,"timestamp":7385848021838,"id":6643,"parentId":6632,"tags":{},"startTime":1776992794208,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":4597,"timestamp":7385848021918,"id":6644,"parentId":6632,"tags":{},"startTime":1776992794209,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":51346,"timestamp":7385847978948,"id":6632,"parentId":6579,"tags":{},"startTime":1776992794166,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":237565,"timestamp":7385847799295,"id":6579,"parentId":6577,"tags":{"name":"server"},"startTime":1776992793986,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":20040,"timestamp":7385848036888,"id":6645,"parentId":6577,"tags":{},"startTime":1776992794224,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":278052,"timestamp":7385847779354,"id":6577,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992793966,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":2745,"timestamp":7385848075735,"id":6656,"parentId":6647,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":966,"timestamp":7385848078768,"id":6668,"parentId":6666,"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(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992794265,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":4555,"timestamp":7385848075774,"id":6667,"parentId":6647,"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":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":5282,"timestamp":7385848075755,"id":6662,"parentId":6647,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":5393,"timestamp":7385848075762,"id":6664,"parentId":6647,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":13166,"timestamp":7385848075668,"id":6648,"parentId":6647,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":13133,"timestamp":7385848075712,"id":6650,"parentId":6647,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14100,"timestamp":7385848075745,"id":6659,"parentId":6647,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14163,"timestamp":7385848075748,"id":6660,"parentId":6647,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14173,"timestamp":7385848075751,"id":6661,"parentId":6647,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14223,"timestamp":7385848075759,"id":6663,"parentId":6647,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":14893,"timestamp":7385848075725,"id":6653,"parentId":6647,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":16324,"timestamp":7385848075738,"id":6657,"parentId":6647,"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":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17507,"timestamp":7385848075720,"id":6652,"parentId":6647,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":25644,"timestamp":7385848075728,"id":6654,"parentId":6647,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":28194,"timestamp":7385848075742,"id":6658,"parentId":6647,"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":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":35393,"timestamp":7385848075717,"id":6651,"parentId":6647,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":35387,"timestamp":7385848075731,"id":6655,"parentId":6647,"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":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15437,"timestamp":7385848096194,"id":6671,"parentId":6670,"tags":{},"startTime":1776992794283,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15534,"timestamp":7385848096100,"id":6670,"parentId":6669,"tags":{},"startTime":1776992794283,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":34113,"timestamp":7385848095228,"id":6669,"parentId":6668,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"app-pages-browser"},"startTime":1776992794282,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":54396,"timestamp":7385848075765,"id":6665,"parentId":6647,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":58616,"timestamp":7385848075706,"id":6649,"parentId":6647,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3650,"timestamp":7385848134168,"id":6677,"parentId":6676,"tags":{},"startTime":1776992794321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3693,"timestamp":7385848134128,"id":6676,"parentId":6673,"tags":{},"startTime":1776992794321,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":6590,"timestamp":7385848133961,"id":6673,"parentId":6669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"app-pages-browser"},"startTime":1776992794321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12198,"timestamp":7385848134116,"id":6675,"parentId":6674,"tags":{},"startTime":1776992794321,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12273,"timestamp":7385848134046,"id":6674,"parentId":6672,"tags":{},"startTime":1776992794321,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":14279,"timestamp":7385848133827,"id":6672,"parentId":6669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"app-pages-browser"},"startTime":1776992794320,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":74777,"timestamp":7385848075771,"id":6666,"parentId":6647,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992794262,"traceId":"27fab7e1c891f919"},{"name":"make","duration":90127,"timestamp":7385848060469,"id":6647,"parentId":6646,"tags":{},"startTime":1776992794247,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":7618,"timestamp":7385848167792,"id":6679,"parentId":6678,"tags":{},"startTime":1776992794354,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":2,"timestamp":7385848175442,"id":6681,"parentId":6678,"tags":{},"startTime":1776992794362,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":447,"timestamp":7385848175458,"id":6682,"parentId":6678,"tags":{},"startTime":1776992794362,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":4,"timestamp":7385848175928,"id":6683,"parentId":6678,"tags":{},"startTime":1776992794363,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385848175942,"id":6684,"parentId":6678,"tags":{},"startTime":1776992794363,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":2846,"timestamp":7385848175430,"id":6680,"parentId":6678,"tags":{},"startTime":1776992794362,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":1269,"timestamp":7385848186922,"id":6685,"parentId":6678,"tags":{},"startTime":1776992794374,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":5910,"timestamp":7385848188206,"id":6686,"parentId":6678,"tags":{},"startTime":1776992794375,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":17992,"timestamp":7385848196034,"id":6687,"parentId":6678,"tags":{},"startTime":1776992794383,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":257,"timestamp":7385848214023,"id":6688,"parentId":6678,"tags":{},"startTime":1776992794401,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":141,"timestamp":7385848214258,"id":6689,"parentId":6678,"tags":{},"startTime":1776992794401,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":5591,"timestamp":7385848214402,"id":6690,"parentId":6678,"tags":{},"startTime":1776992794401,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":89,"timestamp":7385848221217,"id":6692,"parentId":6646,"tags":{},"startTime":1776992794408,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":146,"timestamp":7385848221163,"id":6691,"parentId":6646,"tags":{},"startTime":1776992794408,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":66267,"timestamp":7385848157554,"id":6678,"parentId":6646,"tags":{},"startTime":1776992794344,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":163611,"timestamp":7385848060238,"id":6646,"parentId":6621,"tags":{"name":"client"},"startTime":1776992794247,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":5808,"timestamp":7385848223881,"id":6693,"parentId":6621,"tags":{},"startTime":1776992794411,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":450253,"timestamp":7385847779782,"id":6578,"tags":{"trigger":"/stock/[code]","isTurbopack":false},"startTime":1776992793966,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":354286,"timestamp":7385847876015,"id":6621,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992794063,"traceId":"27fab7e1c891f919"}] -[{"name":"client-success","duration":3,"timestamp":7385848232919,"id":6694,"parentId":3,"tags":{},"startTime":1776992794420,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":0,"timestamp":7385848232958,"id":6695,"parentId":3,"tags":{},"startTime":1776992794420,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":376000,"timestamp":7385847877854,"id":6696,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":false},"startTime":1776992794442,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":378000,"timestamp":7385847878767,"id":6697,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1776992794444,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":996951,"timestamp":7385847758477,"id":6576,"tags":{"url":"/stock/603198.SH","isTurbopack":false},"startTime":1776992793945,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385848755476,"id":6698,"parentId":6576,"tags":{"url":"/stock/603198.SH","memory.rss":"435699712","memory.heapUsed":"387090736","memory.heapTotal":"430161920"},"startTime":1776992794942,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":2,"timestamp":7385849279160,"id":6699,"parentId":3,"tags":{},"startTime":1776992795466,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":3,"timestamp":7385849303363,"id":6700,"parentId":3,"tags":{},"startTime":1776992795490,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":105615,"timestamp":7386160142163,"id":6709,"parentId":6704,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1776993106328,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":105680,"timestamp":7386160142167,"id":6710,"parentId":6704,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%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":1776993106328,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":105682,"timestamp":7386160142174,"id":6711,"parentId":6704,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%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":1776993106328,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":105688,"timestamp":7386160142177,"id":6712,"parentId":6704,"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":1776993106328,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":125441,"timestamp":7386160142160,"id":6708,"parentId":6704,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%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":1776993106328,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":125557,"timestamp":7386160142138,"id":6706,"parentId":6704,"tags":{"request":"next/dist/pages/_app"},"startTime":1776993106328,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":126428,"timestamp":7386160142156,"id":6707,"parentId":6704,"tags":{"request":"next/dist/pages/_document"},"startTime":1776993106328,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":135220,"timestamp":7386160141228,"id":6705,"parentId":6704,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776993106327,"traceId":"27fab7e1c891f919"},{"name":"make","duration":343052,"timestamp":7386160082354,"id":6704,"parentId":6703,"tags":{},"startTime":1776993106268,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":14593,"timestamp":7386160558361,"id":6734,"parentId":6733,"tags":{},"startTime":1776993106744,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":4,"timestamp":7386160572988,"id":6736,"parentId":6733,"tags":{},"startTime":1776993106759,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":8987,"timestamp":7386160573002,"id":6737,"parentId":6733,"tags":{},"startTime":1776993106759,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":7,"timestamp":7386160582022,"id":6738,"parentId":6733,"tags":{},"startTime":1776993106768,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":11,"timestamp":7386160582041,"id":6739,"parentId":6733,"tags":{},"startTime":1776993106768,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":24889,"timestamp":7386160572979,"id":6735,"parentId":6733,"tags":{},"startTime":1776993106759,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":4791,"timestamp":7386160607705,"id":6740,"parentId":6733,"tags":{},"startTime":1776993106794,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":7293,"timestamp":7386160612582,"id":6741,"parentId":6733,"tags":{},"startTime":1776993106799,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":7310,"timestamp":7386160623957,"id":6742,"parentId":6733,"tags":{},"startTime":1776993106810,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":120,"timestamp":7386160631266,"id":6743,"parentId":6733,"tags":{},"startTime":1776993106817,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":143,"timestamp":7386160631377,"id":6744,"parentId":6733,"tags":{},"startTime":1776993106817,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":1752,"timestamp":7386160631539,"id":6745,"parentId":6733,"tags":{},"startTime":1776993106818,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":197829,"timestamp":7386160441432,"id":6733,"parentId":6703,"tags":{},"startTime":1776993106628,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":577959,"timestamp":7386160072205,"id":6703,"parentId":6701,"tags":{"name":"server"},"startTime":1776993106258,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":15691,"timestamp":7386160650320,"id":6746,"parentId":6701,"tags":{},"startTime":1776993106836,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":729527,"timestamp":7386159937349,"id":6701,"parentId":3,"tags":{"trigger":"package.json"},"startTime":1776993106123,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":9035,"timestamp":7386160697303,"id":6757,"parentId":6748,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12304,"timestamp":7386160697321,"id":6763,"parentId":6748,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12706,"timestamp":7386160697325,"id":6765,"parentId":6748,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17023,"timestamp":7386160697311,"id":6760,"parentId":6748,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17228,"timestamp":7386160697313,"id":6761,"parentId":6748,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17263,"timestamp":7386160697316,"id":6762,"parentId":6748,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17368,"timestamp":7386160697323,"id":6764,"parentId":6748,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":18128,"timestamp":7386160697331,"id":6767,"parentId":6748,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":23636,"timestamp":7386160697306,"id":6758,"parentId":6748,"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":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":48293,"timestamp":7386160697301,"id":6756,"parentId":6748,"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":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":48685,"timestamp":7386160697308,"id":6759,"parentId":6748,"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":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":48676,"timestamp":7386160697327,"id":6766,"parentId":6748,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":50463,"timestamp":7386160697296,"id":6754,"parentId":6748,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":55878,"timestamp":7386160697290,"id":6752,"parentId":6748,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":57727,"timestamp":7386160697228,"id":6749,"parentId":6748,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":57680,"timestamp":7386160697286,"id":6751,"parentId":6748,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":58758,"timestamp":7386160697299,"id":6755,"parentId":6748,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":59328,"timestamp":7386160697292,"id":6753,"parentId":6748,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":59876,"timestamp":7386160697281,"id":6750,"parentId":6748,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776993106883,"traceId":"27fab7e1c891f919"},{"name":"make","duration":81550,"timestamp":7386160675631,"id":6748,"parentId":6747,"tags":{},"startTime":1776993106862,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":50795,"timestamp":7386160899676,"id":6769,"parentId":6768,"tags":{},"startTime":1776993107086,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7386160950509,"id":6771,"parentId":6768,"tags":{},"startTime":1776993107137,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":5409,"timestamp":7386160950538,"id":6772,"parentId":6768,"tags":{},"startTime":1776993107137,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":15,"timestamp":7386160956019,"id":6773,"parentId":6768,"tags":{},"startTime":1776993107142,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":8,"timestamp":7386160956076,"id":6774,"parentId":6768,"tags":{},"startTime":1776993107142,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":11404,"timestamp":7386160950497,"id":6770,"parentId":6768,"tags":{},"startTime":1776993107137,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":9225,"timestamp":7386160996828,"id":6775,"parentId":6768,"tags":{},"startTime":1776993107183,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":157681,"timestamp":7386161006158,"id":6776,"parentId":6768,"tags":{},"startTime":1776993107192,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":85584,"timestamp":7386161173346,"id":6777,"parentId":6768,"tags":{},"startTime":1776993107359,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":2481,"timestamp":7386161258929,"id":6778,"parentId":6768,"tags":{},"startTime":1776993107445,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":1546,"timestamp":7386161261378,"id":6779,"parentId":6768,"tags":{},"startTime":1776993107447,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":1897,"timestamp":7386161263016,"id":6780,"parentId":6768,"tags":{},"startTime":1776993107449,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":190,"timestamp":7386161267634,"id":6782,"parentId":6747,"tags":{},"startTime":1776993107454,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":337,"timestamp":7386161267501,"id":6781,"parentId":6747,"tags":{},"startTime":1776993107454,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":416362,"timestamp":7386160867104,"id":6768,"parentId":6747,"tags":{},"startTime":1776993107053,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":608412,"timestamp":7386160675136,"id":6747,"parentId":6702,"tags":{"name":"client"},"startTime":1776993106861,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":18951,"timestamp":7386161283601,"id":6783,"parentId":6702,"tags":{},"startTime":1776993107470,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":1358853,"timestamp":7386159946801,"id":6702,"parentId":3,"tags":{"trigger":"package.json"},"startTime":1776993106133,"traceId":"27fab7e1c891f919"}] +[{"name":"hot-reloader","duration":34,"timestamp":1489305128632,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1779982273945,"traceId":"05a116f03e4ce418"},{"name":"start","duration":0,"timestamp":1489305129165,"id":4,"parentId":3,"tags":{},"startTime":1779982273946,"traceId":"05a116f03e4ce418"},{"name":"get-version-info","duration":523313,"timestamp":1489305129317,"id":5,"parentId":4,"tags":{},"startTime":1779982273946,"traceId":"05a116f03e4ce418"},{"name":"clean","duration":498,"timestamp":1489305652661,"id":6,"parentId":4,"tags":{},"startTime":1779982274469,"traceId":"05a116f03e4ce418"},{"name":"create-pages-mapping","duration":90,"timestamp":1489305654367,"id":8,"parentId":7,"tags":{},"startTime":1779982274471,"traceId":"05a116f03e4ce418"},{"name":"create-entrypoints","duration":273799,"timestamp":1489305654470,"id":9,"parentId":7,"tags":{},"startTime":1779982274471,"traceId":"05a116f03e4ce418"},{"name":"generate-webpack-config","duration":72512,"timestamp":1489305928301,"id":10,"parentId":7,"tags":{},"startTime":1779982274745,"traceId":"05a116f03e4ce418"},{"name":"get-webpack-config","duration":346517,"timestamp":1489305654307,"id":7,"parentId":4,"tags":{},"startTime":1779982274471,"traceId":"05a116f03e4ce418"},{"name":"make","duration":556,"timestamp":1489306042932,"id":12,"parentId":11,"tags":{},"startTime":1779982274860,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":340,"timestamp":1489306044504,"id":14,"parentId":13,"tags":{},"startTime":1779982274861,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":9,"timestamp":1489306044895,"id":16,"parentId":13,"tags":{},"startTime":1779982274862,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":57,"timestamp":1489306044979,"id":17,"parentId":13,"tags":{},"startTime":1779982274862,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":9,"timestamp":1489306045060,"id":18,"parentId":13,"tags":{},"startTime":1779982274862,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":10,"timestamp":1489306045142,"id":19,"parentId":13,"tags":{},"startTime":1779982274862,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":318,"timestamp":1489306044876,"id":15,"parentId":13,"tags":{},"startTime":1779982274862,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":43,"timestamp":1489306045460,"id":20,"parentId":13,"tags":{},"startTime":1779982274862,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":67,"timestamp":1489306045512,"id":21,"parentId":13,"tags":{},"startTime":1779982274862,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":207,"timestamp":1489306045687,"id":22,"parentId":13,"tags":{},"startTime":1779982274862,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":25,"timestamp":1489306045893,"id":23,"parentId":13,"tags":{},"startTime":1779982274863,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":32,"timestamp":1489306045908,"id":24,"parentId":13,"tags":{},"startTime":1779982274863,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":127,"timestamp":1489306045944,"id":25,"parentId":13,"tags":{},"startTime":1779982274863,"traceId":"05a116f03e4ce418"},{"name":"NextJsBuildManifest-generateClientManifest","duration":584,"timestamp":1489306049181,"id":27,"parentId":11,"tags":{},"startTime":1779982274866,"traceId":"05a116f03e4ce418"},{"name":"NextJsBuildManifest-createassets","duration":773,"timestamp":1489306048997,"id":26,"parentId":11,"tags":{},"startTime":1779982274866,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":5830,"timestamp":1489306044406,"id":13,"parentId":11,"tags":{},"startTime":1779982274861,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":9787,"timestamp":1489306040563,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1779982274857,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":2831,"timestamp":1489306050509,"id":28,"parentId":3,"tags":{},"startTime":1779982274867,"traceId":"05a116f03e4ce418"},{"name":"make","duration":712,"timestamp":1489306057516,"id":30,"parentId":29,"tags":{},"startTime":1779982274874,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":17,"timestamp":1489306058408,"id":32,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":3,"timestamp":1489306058435,"id":34,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":35,"timestamp":1489306058466,"id":35,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":4,"timestamp":1489306058518,"id":36,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":2,"timestamp":1489306058544,"id":37,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":137,"timestamp":1489306058432,"id":33,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":4,"timestamp":1489306058631,"id":38,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":3,"timestamp":1489306058640,"id":39,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":30,"timestamp":1489306058662,"id":40,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":16,"timestamp":1489306058692,"id":41,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":5,"timestamp":1489306058705,"id":42,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":7,"timestamp":1489306058714,"id":43,"parentId":31,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":710,"timestamp":1489306058389,"id":31,"parentId":29,"tags":{},"startTime":1779982274875,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":2220,"timestamp":1489306056945,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1779982274874,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":3219,"timestamp":1489306059192,"id":44,"parentId":3,"tags":{},"startTime":1779982274876,"traceId":"05a116f03e4ce418"},{"name":"make","duration":94,"timestamp":1489306065422,"id":46,"parentId":45,"tags":{},"startTime":1779982274882,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":20,"timestamp":1489306065906,"id":48,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":3,"timestamp":1489306065943,"id":50,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":7,"timestamp":1489306065996,"id":51,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":4,"timestamp":1489306066018,"id":52,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":3,"timestamp":1489306066035,"id":53,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":111,"timestamp":1489306065939,"id":49,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":6,"timestamp":1489306066121,"id":54,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":5,"timestamp":1489306066133,"id":55,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":56,"timestamp":1489306066198,"id":56,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":15,"timestamp":1489306066253,"id":57,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":5,"timestamp":1489306066265,"id":58,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":8,"timestamp":1489306066273,"id":59,"parentId":47,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":915,"timestamp":1489306065880,"id":47,"parentId":45,"tags":{},"startTime":1779982274883,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":2280,"timestamp":1489306064538,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1779982274881,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":1153,"timestamp":1489306066843,"id":60,"parentId":3,"tags":{},"startTime":1779982274884,"traceId":"05a116f03e4ce418"}] +[{"name":"make","duration":164,"timestamp":1489306293772,"id":65,"parentId":64,"tags":{},"startTime":1779982275110,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":14,"timestamp":1489306294027,"id":67,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":2,"timestamp":1489306294049,"id":69,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":4,"timestamp":1489306294058,"id":70,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":2,"timestamp":1489306294067,"id":71,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":2,"timestamp":1489306294081,"id":72,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":49,"timestamp":1489306294046,"id":68,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":4,"timestamp":1489306294146,"id":73,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":3,"timestamp":1489306294153,"id":74,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":23,"timestamp":1489306294172,"id":75,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":8,"timestamp":1489306294195,"id":76,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":4,"timestamp":1489306294201,"id":77,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":6,"timestamp":1489306294207,"id":78,"parentId":66,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"NextJsBuildManifest-generateClientManifest","duration":163,"timestamp":1489306294401,"id":80,"parentId":64,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"NextJsBuildManifest-createassets","duration":228,"timestamp":1489306294338,"id":79,"parentId":64,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":632,"timestamp":1489306294006,"id":66,"parentId":64,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":1326,"timestamp":1489306293365,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1779982275110,"traceId":"05a116f03e4ce418"},{"name":"setup-dev-bundler","duration":1309255,"timestamp":1489305007117,"id":2,"parentId":1,"tags":{},"startTime":1779982273824,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":22272,"timestamp":1489306294702,"id":81,"parentId":61,"tags":{},"startTime":1779982275111,"traceId":"05a116f03e4ce418"},{"name":"webpack-invalidated-client","duration":26980,"timestamp":1489306290762,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1779982275107,"traceId":"05a116f03e4ce418"},{"name":"make","duration":216,"timestamp":1489306318864,"id":83,"parentId":82,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":20,"timestamp":1489306319170,"id":85,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":2,"timestamp":1489306319198,"id":87,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":80,"timestamp":1489306319231,"id":88,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":2,"timestamp":1489306319321,"id":89,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":2,"timestamp":1489306319332,"id":90,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":155,"timestamp":1489306319195,"id":86,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":4,"timestamp":1489306319474,"id":91,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":4,"timestamp":1489306319482,"id":92,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":30,"timestamp":1489306319500,"id":93,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":8,"timestamp":1489306319530,"id":94,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":3,"timestamp":1489306319536,"id":95,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":11,"timestamp":1489306319542,"id":96,"parentId":84,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":637,"timestamp":1489306319150,"id":84,"parentId":82,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":1335,"timestamp":1489306318470,"id":82,"parentId":62,"tags":{"name":"server"},"startTime":1779982275135,"traceId":"05a116f03e4ce418"},{"name":"run-instrumentation-hook","duration":26,"timestamp":1489306337649,"id":98,"parentId":1,"tags":{},"startTime":1779982275154,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":27542,"timestamp":1489306319812,"id":97,"parentId":62,"tags":{},"startTime":1779982275136,"traceId":"05a116f03e4ce418"},{"name":"webpack-invalidated-server","duration":56900,"timestamp":1489306290851,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1779982275108,"traceId":"05a116f03e4ce418"},{"name":"make","duration":116,"timestamp":1489306348889,"id":100,"parentId":99,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":14,"timestamp":1489306349140,"id":102,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":2,"timestamp":1489306349162,"id":104,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":5,"timestamp":1489306349172,"id":105,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":3,"timestamp":1489306349196,"id":106,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":2,"timestamp":1489306349209,"id":107,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":60,"timestamp":1489306349159,"id":103,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":4,"timestamp":1489306349265,"id":108,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":3,"timestamp":1489306349273,"id":109,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":28,"timestamp":1489306349290,"id":110,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":8,"timestamp":1489306349319,"id":111,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":4,"timestamp":1489306349325,"id":112,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":6,"timestamp":1489306349331,"id":113,"parentId":101,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":449,"timestamp":1489306349125,"id":101,"parentId":99,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":1045,"timestamp":1489306348550,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1779982275165,"traceId":"05a116f03e4ce418"},{"name":"start-dev-server","duration":1631076,"timestamp":1489304720899,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"179945472","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"238403584","memory.heapTotal":"106446848","memory.heapUsed":"75000768"},"startTime":1779982273538,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":5093,"timestamp":1489306349605,"id":114,"parentId":63,"tags":{},"startTime":1779982275166,"traceId":"05a116f03e4ce418"},{"name":"webpack-invalidated-edge-server","duration":64347,"timestamp":1489306290869,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1779982275108,"traceId":"05a116f03e4ce418"}] +[{"name":"build-module","duration":53491,"timestamp":1489337432608,"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(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1779982306249,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":55162,"timestamp":1489337504522,"id":134,"parentId":133,"tags":{},"startTime":1779982306321,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":56066,"timestamp":1489337503630,"id":133,"parentId":122,"tags":{},"startTime":1779982306320,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":63702,"timestamp":1489337499357,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1779982306316,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":58310,"timestamp":1489337504795,"id":136,"parentId":135,"tags":{},"startTime":1779982306321,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":58551,"timestamp":1489337504555,"id":135,"parentId":123,"tags":{},"startTime":1779982306321,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":62386,"timestamp":1489337501514,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"rsc"},"startTime":1779982306318,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":60490,"timestamp":1489337505170,"id":140,"parentId":139,"tags":{},"startTime":1779982306322,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":60759,"timestamp":1489337504904,"id":139,"parentId":128,"tags":{},"startTime":1779982306322,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":64147,"timestamp":1489337502676,"id":128,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1779982306319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":61971,"timestamp":1489337504899,"id":138,"parentId":137,"tags":{},"startTime":1779982306322,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":62070,"timestamp":1489337504802,"id":137,"parentId":124,"tags":{},"startTime":1779982306321,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":66864,"timestamp":1489337501733,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/layout.tsx","layer":"rsc"},"startTime":1779982306318,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":63217,"timestamp":1489337505408,"id":142,"parentId":141,"tags":{},"startTime":1779982306322,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":63427,"timestamp":1489337505199,"id":141,"parentId":129,"tags":{},"startTime":1779982306322,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":68436,"timestamp":1489337502744,"id":129,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1779982306319,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":71200,"timestamp":1489337503610,"id":131,"parentId":126,"tags":{},"startTime":1779982306320,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":98,"timestamp":1489337574854,"id":143,"parentId":126,"tags":{},"startTime":1779982306392,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":76225,"timestamp":1489337502415,"id":126,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1779982306319,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":75100,"timestamp":1489337503578,"id":130,"parentId":125,"tags":{},"startTime":1779982306320,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":81,"timestamp":1489337578694,"id":144,"parentId":125,"tags":{},"startTime":1779982306395,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":77588,"timestamp":1489337501845,"id":125,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1779982306319,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":75873,"timestamp":1489337503622,"id":132,"parentId":127,"tags":{},"startTime":1779982306320,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":46,"timestamp":1489337579506,"id":145,"parentId":127,"tags":{},"startTime":1779982306396,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":78135,"timestamp":1489337502570,"id":127,"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":1779982306319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":444,"timestamp":1489337588346,"id":146,"parentId":127,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1779982306405,"traceId":"05a116f03e4ce418"},{"name":"build-module-external","duration":14,"timestamp":1489337592963,"id":152,"parentId":126,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"build-module-external","duration":6,"timestamp":1489337593050,"id":155,"parentId":126,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"build-module-external","duration":4,"timestamp":1489337593060,"id":156,"parentId":126,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5894,"timestamp":1489337593359,"id":164,"parentId":163,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5933,"timestamp":1489337593327,"id":163,"parentId":151,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6844,"timestamp":1489337592927,"id":151,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6179,"timestamp":1489337593680,"id":166,"parentId":165,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6408,"timestamp":1489337593454,"id":165,"parentId":153,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7086,"timestamp":1489337592990,"id":153,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6765,"timestamp":1489337593324,"id":162,"parentId":161,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6804,"timestamp":1489337593288,"id":161,"parentId":150,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7356,"timestamp":1489337592885,"id":150,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7097,"timestamp":1489337593205,"id":160,"parentId":159,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7173,"timestamp":1489337593130,"id":159,"parentId":149,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7694,"timestamp":1489337592787,"id":149,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1779982306409,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7593,"timestamp":1489337593756,"id":168,"parentId":167,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7662,"timestamp":1489337593693,"id":167,"parentId":154,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9550,"timestamp":1489337593022,"id":154,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8789,"timestamp":1489337593804,"id":172,"parentId":171,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8804,"timestamp":1489337593791,"id":171,"parentId":158,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9658,"timestamp":1489337593099,"id":158,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8982,"timestamp":1489337593787,"id":170,"parentId":169,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9009,"timestamp":1489337593762,"id":169,"parentId":157,"tags":{},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11622,"timestamp":1489337593067,"id":157,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1779982306410,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":14976,"timestamp":1489337592067,"id":148,"parentId":147,"tags":{},"startTime":1779982306409,"traceId":"05a116f03e4ce418"},{"name":"build-module-css","duration":16291,"timestamp":1489337591391,"id":147,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1779982306408,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":4007,"timestamp":1489337606286,"id":177,"parentId":173,"tags":{},"startTime":1779982306423,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":67,"timestamp":1489337610304,"id":181,"parentId":173,"tags":{},"startTime":1779982306427,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":19114,"timestamp":1489337605813,"id":173,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1779982306423,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":18882,"timestamp":1489337606316,"id":180,"parentId":176,"tags":{},"startTime":1779982306423,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":55,"timestamp":1489337625213,"id":182,"parentId":176,"tags":{},"startTime":1779982306442,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":19882,"timestamp":1489337606062,"id":176,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1779982306423,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":19822,"timestamp":1489337606304,"id":178,"parentId":174,"tags":{},"startTime":1779982306423,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":57,"timestamp":1489337626145,"id":183,"parentId":174,"tags":{},"startTime":1779982306443,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":20492,"timestamp":1489337605946,"id":174,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1779982306423,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":21883,"timestamp":1489337606310,"id":179,"parentId":175,"tags":{},"startTime":1779982306423,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":37,"timestamp":1489337628203,"id":186,"parentId":175,"tags":{},"startTime":1779982306445,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":23356,"timestamp":1489337606008,"id":175,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1779982306423,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":6915,"timestamp":1489337626981,"id":185,"parentId":184,"tags":{},"startTime":1779982306444,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":40,"timestamp":1489337633905,"id":189,"parentId":184,"tags":{},"startTime":1779982306451,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8848,"timestamp":1489337626815,"id":184,"parentId":154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1779982306444,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":9084,"timestamp":1489337631559,"id":188,"parentId":187,"tags":{},"startTime":1779982306448,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":44,"timestamp":1489337640662,"id":204,"parentId":187,"tags":{},"startTime":1779982306457,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9568,"timestamp":1489337631443,"id":187,"parentId":128,"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":1779982306448,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":8042,"timestamp":1489337636073,"id":192,"parentId":190,"tags":{},"startTime":1779982306453,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":41,"timestamp":1489337644129,"id":205,"parentId":190,"tags":{},"startTime":1779982306461,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9480,"timestamp":1489337635875,"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":1779982306453,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":9270,"timestamp":1489337636094,"id":193,"parentId":191,"tags":{},"startTime":1779982306453,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":35,"timestamp":1489337645371,"id":206,"parentId":191,"tags":{},"startTime":1779982306462,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9686,"timestamp":1489337635996,"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":1779982306453,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":8730,"timestamp":1489337639067,"id":195,"parentId":194,"tags":{},"startTime":1779982306456,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":63,"timestamp":1489337647815,"id":216,"parentId":194,"tags":{},"startTime":1779982306465,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9573,"timestamp":1489337638876,"id":194,"parentId":154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1779982306456,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2583,"timestamp":1489337647004,"id":215,"parentId":214,"tags":{},"startTime":1779982306464,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2618,"timestamp":1489337646972,"id":214,"parentId":210,"tags":{},"startTime":1779982306464,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3754,"timestamp":1489337646773,"id":210,"parentId":184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1779982306463,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":11133,"timestamp":1489337639880,"id":202,"parentId":198,"tags":{},"startTime":1779982306457,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":36,"timestamp":1489337651022,"id":233,"parentId":198,"tags":{},"startTime":1779982306468,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12509,"timestamp":1489337639745,"id":198,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1779982306456,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":12374,"timestamp":1489337639888,"id":203,"parentId":199,"tags":{},"startTime":1779982306457,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":81,"timestamp":1489337652268,"id":234,"parentId":199,"tags":{},"startTime":1779982306469,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13361,"timestamp":1489337639797,"id":199,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1779982306456,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":13311,"timestamp":1489337639858,"id":200,"parentId":196,"tags":{},"startTime":1779982306457,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":41,"timestamp":1489337653176,"id":235,"parentId":196,"tags":{},"startTime":1779982306470,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":16584,"timestamp":1489337639546,"id":196,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1779982306456,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":16274,"timestamp":1489337639873,"id":201,"parentId":197,"tags":{},"startTime":1779982306457,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":45,"timestamp":1489337656157,"id":236,"parentId":197,"tags":{},"startTime":1779982306473,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":20620,"timestamp":1489337639677,"id":197,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1779982306456,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11435,"timestamp":1489337649192,"id":226,"parentId":225,"tags":{},"startTime":1779982306466,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11471,"timestamp":1489337649159,"id":225,"parentId":220,"tags":{},"startTime":1779982306466,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":12010,"timestamp":1489337649010,"id":220,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1779982306466,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11886,"timestamp":1489337649157,"id":224,"parentId":223,"tags":{},"startTime":1779982306466,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11935,"timestamp":1489337649109,"id":223,"parentId":219,"tags":{},"startTime":1779982306466,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":12299,"timestamp":1489337648955,"id":219,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1779982306466,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12271,"timestamp":1489337650939,"id":230,"parentId":229,"tags":{},"startTime":1779982306468,"traceId":"05a116f03e4ce418"}] +[{"name":"next-swc-loader","duration":12483,"timestamp":1489337650893,"id":229,"parentId":227,"tags":{},"startTime":1779982306468,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":12982,"timestamp":1489337650601,"id":227,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1779982306467,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12658,"timestamp":1489337650972,"id":232,"parentId":231,"tags":{},"startTime":1779982306468,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12691,"timestamp":1489337650941,"id":231,"parentId":228,"tags":{},"startTime":1779982306468,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":13123,"timestamp":1489337650807,"id":228,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1779982306467,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":17191,"timestamp":1489337646815,"id":211,"parentId":207,"tags":{},"startTime":1779982306464,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":49,"timestamp":1489337664014,"id":239,"parentId":207,"tags":{},"startTime":1779982306481,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":17642,"timestamp":1489337646573,"id":207,"parentId":126,"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":1779982306463,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":17393,"timestamp":1489337646831,"id":213,"parentId":209,"tags":{},"startTime":1779982306464,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":35,"timestamp":1489337664229,"id":240,"parentId":209,"tags":{},"startTime":1779982306481,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":18336,"timestamp":1489337646726,"id":209,"parentId":184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1779982306463,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":18247,"timestamp":1489337646826,"id":212,"parentId":208,"tags":{},"startTime":1779982306464,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":47,"timestamp":1489337665079,"id":241,"parentId":208,"tags":{},"startTime":1779982306482,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":18624,"timestamp":1489337646669,"id":208,"parentId":129,"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":1779982306463,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":18606,"timestamp":1489337649077,"id":222,"parentId":218,"tags":{},"startTime":1779982306466,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":64,"timestamp":1489337667691,"id":242,"parentId":218,"tags":{},"startTime":1779982306484,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":19076,"timestamp":1489337648895,"id":218,"parentId":129,"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":1779982306466,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":18922,"timestamp":1489337649066,"id":221,"parentId":217,"tags":{},"startTime":1779982306466,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":7215,"timestamp":1489337661795,"id":238,"parentId":237,"tags":{},"startTime":1779982306478,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":30,"timestamp":1489337669017,"id":245,"parentId":237,"tags":{},"startTime":1779982306486,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7607,"timestamp":1489337661574,"id":237,"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":1779982306478,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":1610,"timestamp":1489337668052,"id":244,"parentId":243,"tags":{},"startTime":1779982306485,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":1671,"timestamp":1489337667994,"id":243,"parentId":217,"tags":{},"startTime":1779982306485,"traceId":"05a116f03e4ce418"},{"name":"build-module-mjs","duration":21945,"timestamp":1489337648516,"id":217,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1779982306465,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":4385,"timestamp":1489337669487,"id":247,"parentId":246,"tags":{},"startTime":1779982306486,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":36,"timestamp":1489337673887,"id":250,"parentId":246,"tags":{},"startTime":1779982306491,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6040,"timestamp":1489337669384,"id":246,"parentId":199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1779982306486,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":3002,"timestamp":1489337673832,"id":249,"parentId":248,"tags":{},"startTime":1779982306491,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":34,"timestamp":1489337676843,"id":253,"parentId":248,"tags":{},"startTime":1779982306494,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3440,"timestamp":1489337673637,"id":248,"parentId":176,"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":1779982306490,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":1976,"timestamp":1489337676823,"id":252,"parentId":251,"tags":{},"startTime":1779982306494,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":65,"timestamp":1489337678818,"id":256,"parentId":251,"tags":{},"startTime":1779982306496,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14204,"timestamp":1489337676725,"id":251,"parentId":197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1779982306493,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":13211,"timestamp":1489337677762,"id":255,"parentId":254,"tags":{},"startTime":1779982306494,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":54,"timestamp":1489337690986,"id":257,"parentId":254,"tags":{},"startTime":1779982306508,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13807,"timestamp":1489337677660,"id":254,"parentId":129,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1779982306494,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":290879,"timestamp":1489337400734,"id":120,"parentId":119,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1779982306217,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":2062,"timestamp":1489337708215,"id":263,"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(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1779982306525,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":1168,"timestamp":1489337710313,"id":264,"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%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=true!","layer":"ssr"},"startTime":1779982306527,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":1012,"timestamp":1489337711496,"id":265,"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":1779982306528,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":1529,"timestamp":1489337712524,"id":266,"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":1779982306529,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2477,"timestamp":1489337721435,"id":279,"parentId":278,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2544,"timestamp":1489337721377,"id":278,"parentId":270,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":5381,"timestamp":1489337719802,"id":270,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1779982306536,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":71,"timestamp":1489337726398,"id":301,"parentId":300,"tags":{},"startTime":1779982306543,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5769,"timestamp":1489337721501,"id":283,"parentId":282,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5803,"timestamp":1489337721471,"id":282,"parentId":272,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":8163,"timestamp":1489337719968,"id":272,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1779982306537,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6742,"timestamp":1489337721470,"id":281,"parentId":280,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6776,"timestamp":1489337721438,"id":280,"parentId":271,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":12184,"timestamp":1489337719913,"id":271,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1779982306537,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10607,"timestamp":1489337721532,"id":285,"parentId":284,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10638,"timestamp":1489337721503,"id":284,"parentId":273,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":12407,"timestamp":1489337720294,"id":273,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1779982306537,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11232,"timestamp":1489337721583,"id":291,"parentId":290,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11244,"timestamp":1489337721575,"id":290,"parentId":276,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12084,"timestamp":1489337721303,"id":276,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":17580,"timestamp":1489337718140,"id":269,"parentId":268,"tags":{},"startTime":1779982306535,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":17706,"timestamp":1489337718019,"id":268,"parentId":267,"tags":{},"startTime":1779982306535,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":34232,"timestamp":1489337717041,"id":267,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"ssr"},"startTime":1779982306534,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":29776,"timestamp":1489337721560,"id":287,"parentId":286,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":29805,"timestamp":1489337721533,"id":286,"parentId":274,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":31568,"timestamp":1489337720709,"id":274,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1779982306537,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":30115,"timestamp":1489337722198,"id":297,"parentId":296,"tags":{},"startTime":1779982306539,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":30215,"timestamp":1489337722099,"id":296,"parentId":294,"tags":{},"startTime":1779982306539,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":30886,"timestamp":1489337721954,"id":294,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1779982306539,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":32395,"timestamp":1489337722316,"id":299,"parentId":298,"tags":{},"startTime":1779982306539,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":32500,"timestamp":1489337722221,"id":298,"parentId":295,"tags":{},"startTime":1779982306539,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":33192,"timestamp":1489337722055,"id":295,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1779982306539,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":28783,"timestamp":1489337726541,"id":303,"parentId":302,"tags":{},"startTime":1779982306543,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":28846,"timestamp":1489337726480,"id":302,"parentId":300,"tags":{},"startTime":1779982306543,"traceId":"05a116f03e4ce418"},{"name":"build-module-mjs","duration":31055,"timestamp":1489337726047,"id":300,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1779982306543,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":35580,"timestamp":1489337721574,"id":289,"parentId":288,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":35593,"timestamp":1489337721563,"id":288,"parentId":275,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":39083,"timestamp":1489337721243,"id":275,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":38780,"timestamp":1489337721592,"id":293,"parentId":292,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":38790,"timestamp":1489337721585,"id":292,"parentId":277,"tags":{},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":41133,"timestamp":1489337721329,"id":277,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1779982306538,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5654,"timestamp":1489337784956,"id":306,"parentId":305,"tags":{},"startTime":1779982306602,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5709,"timestamp":1489337784914,"id":305,"parentId":304,"tags":{},"startTime":1779982306602,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7224,"timestamp":1489337784646,"id":304,"parentId":276,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1779982306601,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":64,"timestamp":1489337792799,"id":308,"parentId":307,"tags":{},"startTime":1779982306609,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":327,"timestamp":1489337792872,"id":309,"parentId":307,"tags":{},"startTime":1779982306610,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":1096,"timestamp":1489337792528,"id":307,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1779982306609,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":363,"timestamp":1489337810761,"id":324,"parentId":310,"tags":{},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":448,"timestamp":1489337810769,"id":325,"parentId":311,"tags":{},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":120,"timestamp":1489337811137,"id":350,"parentId":310,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":31,"timestamp":1489337811226,"id":351,"parentId":311,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2371,"timestamp":1489337810233,"id":310,"parentId":304,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2461,"timestamp":1489337810393,"id":311,"parentId":304,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4356,"timestamp":1489337810824,"id":327,"parentId":326,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4410,"timestamp":1489337810775,"id":326,"parentId":312,"tags":{},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5227,"timestamp":1489337810463,"id":312,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4855,"timestamp":1489337810853,"id":331,"parentId":330,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4867,"timestamp":1489337810842,"id":330,"parentId":314,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5519,"timestamp":1489337810538,"id":314,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5250,"timestamp":1489337810840,"id":329,"parentId":328,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5265,"timestamp":1489337810827,"id":328,"parentId":313,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5961,"timestamp":1489337810508,"id":313,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7325,"timestamp":1489337810884,"id":337,"parentId":336,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7334,"timestamp":1489337810877,"id":336,"parentId":317,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"}] +[{"name":"build-module-js","duration":8127,"timestamp":1489337810618,"id":317,"parentId":294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7908,"timestamp":1489337810865,"id":333,"parentId":332,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7919,"timestamp":1489337810856,"id":332,"parentId":315,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8866,"timestamp":1489337810561,"id":315,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8563,"timestamp":1489337810876,"id":335,"parentId":334,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8574,"timestamp":1489337810867,"id":334,"parentId":316,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9047,"timestamp":1489337810595,"id":316,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8734,"timestamp":1489337810918,"id":345,"parentId":344,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8742,"timestamp":1489337810911,"id":344,"parentId":321,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9200,"timestamp":1489337810692,"id":321,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9022,"timestamp":1489337810892,"id":339,"parentId":338,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9030,"timestamp":1489337810885,"id":338,"parentId":318,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10562,"timestamp":1489337810637,"id":318,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10322,"timestamp":1489337810910,"id":343,"parentId":342,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10338,"timestamp":1489337810903,"id":342,"parentId":320,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11085,"timestamp":1489337810674,"id":320,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10874,"timestamp":1489337810902,"id":341,"parentId":340,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10883,"timestamp":1489337810894,"id":340,"parentId":319,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11628,"timestamp":1489337810656,"id":319,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12902,"timestamp":1489337810926,"id":347,"parentId":346,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12911,"timestamp":1489337810919,"id":346,"parentId":322,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13285,"timestamp":1489337810709,"id":322,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13070,"timestamp":1489337810935,"id":349,"parentId":348,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13077,"timestamp":1489337810928,"id":348,"parentId":323,"tags":{},"startTime":1779982306628,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13516,"timestamp":1489337810728,"id":323,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1779982306627,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":222,"timestamp":1489337830737,"id":379,"parentId":376,"tags":{},"startTime":1779982306647,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":29,"timestamp":1489337830970,"id":384,"parentId":376,"tags":{},"startTime":1779982306648,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":990,"timestamp":1489337830520,"id":376,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1779982306647,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6103,"timestamp":1489337826324,"id":367,"parentId":366,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6115,"timestamp":1489337826315,"id":366,"parentId":355,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7371,"timestamp":1489337825408,"id":355,"parentId":277,"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":1779982306642,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6485,"timestamp":1489337826314,"id":365,"parentId":364,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6496,"timestamp":1489337826305,"id":364,"parentId":354,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7809,"timestamp":1489337825367,"id":354,"parentId":275,"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":1779982306642,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6885,"timestamp":1489337826302,"id":363,"parentId":362,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6898,"timestamp":1489337826290,"id":362,"parentId":353,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8183,"timestamp":1489337825252,"id":353,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1779982306642,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7159,"timestamp":1489337826285,"id":361,"parentId":360,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7197,"timestamp":1489337826248,"id":360,"parentId":352,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8479,"timestamp":1489337825118,"id":352,"parentId":275,"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":1779982306642,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7252,"timestamp":1489337826352,"id":373,"parentId":372,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7261,"timestamp":1489337826344,"id":372,"parentId":358,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8161,"timestamp":1489337825582,"id":358,"parentId":277,"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":1779982306642,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8307,"timestamp":1489337826343,"id":371,"parentId":370,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8319,"timestamp":1489337826334,"id":370,"parentId":357,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9379,"timestamp":1489337825551,"id":357,"parentId":275,"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":1779982306642,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8579,"timestamp":1489337826361,"id":375,"parentId":374,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8588,"timestamp":1489337826354,"id":374,"parentId":359,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9487,"timestamp":1489337825658,"id":359,"parentId":277,"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":1779982306642,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8836,"timestamp":1489337826333,"id":369,"parentId":368,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8845,"timestamp":1489337826325,"id":368,"parentId":356,"tags":{},"startTime":1779982306643,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10198,"timestamp":1489337825491,"id":356,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1779982306642,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4816,"timestamp":1489337830881,"id":383,"parentId":382,"tags":{},"startTime":1779982306648,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4844,"timestamp":1489337830855,"id":382,"parentId":378,"tags":{},"startTime":1779982306648,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5222,"timestamp":1489337830698,"id":378,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1779982306647,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5080,"timestamp":1489337830849,"id":381,"parentId":380,"tags":{},"startTime":1779982306648,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5129,"timestamp":1489337830800,"id":380,"parentId":377,"tags":{},"startTime":1779982306647,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5455,"timestamp":1489337830654,"id":377,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1779982306647,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5072,"timestamp":1489337837155,"id":395,"parentId":394,"tags":{},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5087,"timestamp":1489337837147,"id":394,"parentId":387,"tags":{},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6452,"timestamp":1489337836940,"id":387,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6282,"timestamp":1489337837133,"id":391,"parentId":390,"tags":{},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6311,"timestamp":1489337837105,"id":390,"parentId":385,"tags":{},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6914,"timestamp":1489337836788,"id":385,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1779982306653,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6570,"timestamp":1489337837146,"id":393,"parentId":392,"tags":{},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6582,"timestamp":1489337837135,"id":392,"parentId":386,"tags":{},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6984,"timestamp":1489337836907,"id":386,"parentId":294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6736,"timestamp":1489337837165,"id":397,"parentId":396,"tags":{},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6746,"timestamp":1489337837156,"id":396,"parentId":388,"tags":{},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7084,"timestamp":1489337836965,"id":388,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9292,"timestamp":1489337837186,"id":399,"parentId":398,"tags":{},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9316,"timestamp":1489337837166,"id":398,"parentId":389,"tags":{},"startTime":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11440,"timestamp":1489337836988,"id":389,"parentId":275,"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":1779982306654,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7199,"timestamp":1489337844506,"id":406,"parentId":405,"tags":{},"startTime":1779982306661,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7216,"timestamp":1489337844492,"id":405,"parentId":401,"tags":{},"startTime":1779982306661,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7546,"timestamp":1489337844349,"id":401,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1779982306661,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7407,"timestamp":1489337844518,"id":408,"parentId":407,"tags":{},"startTime":1779982306661,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7418,"timestamp":1489337844508,"id":407,"parentId":402,"tags":{},"startTime":1779982306661,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7661,"timestamp":1489337844378,"id":402,"parentId":314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1779982306661,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7559,"timestamp":1489337844490,"id":404,"parentId":403,"tags":{},"startTime":1779982306661,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7587,"timestamp":1489337844463,"id":403,"parentId":400,"tags":{},"startTime":1779982306661,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8196,"timestamp":1489337844279,"id":400,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1779982306661,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3111,"timestamp":1489337855291,"id":420,"parentId":419,"tags":{},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3135,"timestamp":1489337855281,"id":419,"parentId":412,"tags":{},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4074,"timestamp":1489337855008,"id":412,"parentId":315,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4086,"timestamp":1489337855278,"id":418,"parentId":417,"tags":{},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4119,"timestamp":1489337855247,"id":417,"parentId":411,"tags":{},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4977,"timestamp":1489337854882,"id":411,"parentId":315,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4906,"timestamp":1489337855302,"id":422,"parentId":421,"tags":{},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4919,"timestamp":1489337855292,"id":421,"parentId":413,"tags":{},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5847,"timestamp":1489337855046,"id":413,"parentId":316,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5717,"timestamp":1489337855310,"id":424,"parentId":423,"tags":{},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5726,"timestamp":1489337855303,"id":423,"parentId":414,"tags":{},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7882,"timestamp":1489337855095,"id":414,"parentId":318,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7432,"timestamp":1489337858161,"id":437,"parentId":436,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7444,"timestamp":1489337858151,"id":436,"parentId":427,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8131,"timestamp":1489337857769,"id":427,"parentId":356,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1779982306674,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7779,"timestamp":1489337858132,"id":433,"parentId":432,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7828,"timestamp":1489337858084,"id":432,"parentId":425,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8553,"timestamp":1489337857657,"id":425,"parentId":356,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1779982306674,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8057,"timestamp":1489337858172,"id":439,"parentId":438,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"}] +[{"name":"next-swc-loader","duration":8155,"timestamp":1489337858163,"id":438,"parentId":428,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9038,"timestamp":1489337857793,"id":428,"parentId":354,"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":1779982306674,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8691,"timestamp":1489337858150,"id":435,"parentId":434,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8704,"timestamp":1489337858138,"id":434,"parentId":426,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9408,"timestamp":1489337857740,"id":426,"parentId":356,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1779982306674,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":17341,"timestamp":1489337850156,"id":410,"parentId":409,"tags":{},"startTime":1779982306667,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":39,"timestamp":1489337867502,"id":452,"parentId":409,"tags":{},"startTime":1779982306684,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":17617,"timestamp":1489337850006,"id":409,"parentId":274,"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":1779982306667,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9472,"timestamp":1489337858183,"id":441,"parentId":440,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9482,"timestamp":1489337858174,"id":440,"parentId":429,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10499,"timestamp":1489337857814,"id":429,"parentId":354,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10138,"timestamp":1489337858192,"id":443,"parentId":442,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10147,"timestamp":1489337858184,"id":442,"parentId":430,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10985,"timestamp":1489337857833,"id":430,"parentId":354,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10639,"timestamp":1489337858203,"id":445,"parentId":444,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10649,"timestamp":1489337858195,"id":444,"parentId":431,"tags":{},"startTime":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11352,"timestamp":1489337857858,"id":431,"parentId":354,"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":1779982306675,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":21164,"timestamp":1489337855176,"id":416,"parentId":415,"tags":{},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":33,"timestamp":1489337876359,"id":461,"parentId":415,"tags":{},"startTime":1779982306693,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":21697,"timestamp":1489337855118,"id":415,"parentId":323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1779982306672,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4349,"timestamp":1489337872722,"id":458,"parentId":457,"tags":{},"startTime":1779982306689,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4401,"timestamp":1489337872679,"id":457,"parentId":454,"tags":{},"startTime":1779982306689,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5864,"timestamp":1489337872060,"id":454,"parentId":389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1779982306689,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5214,"timestamp":1489337872743,"id":460,"parentId":459,"tags":{},"startTime":1779982306689,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5228,"timestamp":1489337872731,"id":459,"parentId":455,"tags":{},"startTime":1779982306689,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6558,"timestamp":1489337872117,"id":455,"parentId":389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1779982306689,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":283,"timestamp":1489337881959,"id":469,"parentId":462,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":32,"timestamp":1489337882250,"id":480,"parentId":462,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":956,"timestamp":1489337881550,"id":462,"parentId":409,"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":1779982306698,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":19679,"timestamp":1489337864083,"id":451,"parentId":448,"tags":{},"startTime":1779982306681,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":29,"timestamp":1489337883769,"id":481,"parentId":448,"tags":{},"startTime":1779982306700,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":19935,"timestamp":1489337863950,"id":448,"parentId":270,"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":1779982306681,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":19830,"timestamp":1489337864061,"id":449,"parentId":446,"tags":{},"startTime":1779982306681,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":26,"timestamp":1489337883898,"id":482,"parentId":446,"tags":{},"startTime":1779982306701,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":20198,"timestamp":1489337863790,"id":446,"parentId":276,"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":1779982306680,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":19917,"timestamp":1489337864076,"id":450,"parentId":447,"tags":{},"startTime":1779982306681,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":25,"timestamp":1489337883996,"id":483,"parentId":447,"tags":{},"startTime":1779982306701,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":20176,"timestamp":1489337863889,"id":447,"parentId":277,"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":1779982306681,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2649,"timestamp":1489337882150,"id":477,"parentId":476,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2661,"timestamp":1489337882140,"id":476,"parentId":465,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3316,"timestamp":1489337881820,"id":465,"parentId":400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3186,"timestamp":1489337882160,"id":479,"parentId":478,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3203,"timestamp":1489337882151,"id":478,"parentId":466,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3775,"timestamp":1489337881845,"id":466,"parentId":400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3514,"timestamp":1489337882139,"id":475,"parentId":474,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3559,"timestamp":1489337882095,"id":474,"parentId":464,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":5250,"timestamp":1489337881768,"id":464,"parentId":273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1779982306698,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5630,"timestamp":1489337882092,"id":473,"parentId":472,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5736,"timestamp":1489337881990,"id":472,"parentId":463,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":6758,"timestamp":1489337881675,"id":463,"parentId":273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1779982306698,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":16353,"timestamp":1489337872173,"id":456,"parentId":453,"tags":{},"startTime":1779982306689,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":43,"timestamp":1489337888537,"id":490,"parentId":453,"tags":{},"startTime":1779982306705,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":17310,"timestamp":1489337871909,"id":453,"parentId":359,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1779982306689,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7681,"timestamp":1489337884637,"id":487,"parentId":486,"tags":{},"startTime":1779982306701,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7703,"timestamp":1489337884619,"id":486,"parentId":484,"tags":{},"startTime":1779982306701,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8281,"timestamp":1489337884301,"id":484,"parentId":413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1779982306701,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7951,"timestamp":1489337884648,"id":489,"parentId":488,"tags":{},"startTime":1779982306701,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7963,"timestamp":1489337884639,"id":488,"parentId":485,"tags":{},"startTime":1779982306701,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8607,"timestamp":1489337884338,"id":485,"parentId":414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1779982306701,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2697,"timestamp":1489337890320,"id":506,"parentId":505,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2707,"timestamp":1489337890311,"id":505,"parentId":494,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3495,"timestamp":1489337889676,"id":494,"parentId":389,"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":1779982306706,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6783,"timestamp":1489337890298,"id":502,"parentId":501,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6797,"timestamp":1489337890288,"id":501,"parentId":492,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7978,"timestamp":1489337889600,"id":492,"parentId":389,"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":1779982306706,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7320,"timestamp":1489337890286,"id":500,"parentId":499,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7347,"timestamp":1489337890260,"id":499,"parentId":491,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9587,"timestamp":1489337889514,"id":491,"parentId":389,"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":1779982306706,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8835,"timestamp":1489337890310,"id":504,"parentId":503,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8847,"timestamp":1489337890300,"id":503,"parentId":493,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9864,"timestamp":1489337889653,"id":493,"parentId":389,"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":1779982306706,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9193,"timestamp":1489337890338,"id":510,"parentId":509,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9203,"timestamp":1489337890329,"id":509,"parentId":496,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10659,"timestamp":1489337889741,"id":496,"parentId":389,"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":1779982306706,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":20151,"timestamp":1489337881963,"id":470,"parentId":467,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":39,"timestamp":1489337902121,"id":521,"parentId":467,"tags":{},"startTime":1779982306719,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":20461,"timestamp":1489337881866,"id":467,"parentId":389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":20363,"timestamp":1489337881969,"id":471,"parentId":468,"tags":{},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":29,"timestamp":1489337902337,"id":522,"parentId":468,"tags":{},"startTime":1779982306719,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":20631,"timestamp":1489337881910,"id":468,"parentId":389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1779982306699,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12191,"timestamp":1489337890363,"id":514,"parentId":513,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12200,"timestamp":1489337890355,"id":513,"parentId":498,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13021,"timestamp":1489337889782,"id":498,"parentId":429,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1779982306706,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12491,"timestamp":1489337890329,"id":508,"parentId":507,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12500,"timestamp":1489337890321,"id":507,"parentId":495,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13554,"timestamp":1489337889698,"id":495,"parentId":389,"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":1779982306706,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12915,"timestamp":1489337890354,"id":512,"parentId":511,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12931,"timestamp":1489337890340,"id":511,"parentId":497,"tags":{},"startTime":1779982306707,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13738,"timestamp":1489337889761,"id":497,"parentId":431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1779982306706,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11731,"timestamp":1489337895843,"id":518,"parentId":517,"tags":{},"startTime":1779982306713,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11790,"timestamp":1489337895794,"id":517,"parentId":515,"tags":{},"startTime":1779982306712,"traceId":"05a116f03e4ce418"},{"name":"build-module-ts","duration":12866,"timestamp":1489337895487,"id":515,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1779982306712,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12528,"timestamp":1489337895859,"id":520,"parentId":519,"tags":{},"startTime":1779982306713,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12544,"timestamp":1489337895846,"id":519,"parentId":516,"tags":{},"startTime":1779982306713,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13561,"timestamp":1489337895578,"id":516,"parentId":412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1779982306712,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6491,"timestamp":1489337911301,"id":533,"parentId":532,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6528,"timestamp":1489337911270,"id":532,"parentId":525,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7655,"timestamp":1489337910891,"id":525,"parentId":455,"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":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7236,"timestamp":1489337911333,"id":539,"parentId":538,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7246,"timestamp":1489337911325,"id":538,"parentId":528,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7900,"timestamp":1489337911013,"id":528,"parentId":455,"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":1779982306728,"traceId":"05a116f03e4ce418"}] +[{"name":"next-swc-transform","duration":7714,"timestamp":1489337911315,"id":535,"parentId":534,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7726,"timestamp":1489337911304,"id":534,"parentId":526,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8459,"timestamp":1489337910961,"id":526,"parentId":455,"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":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8089,"timestamp":1489337911342,"id":541,"parentId":540,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8098,"timestamp":1489337911334,"id":540,"parentId":529,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8587,"timestamp":1489337911034,"id":529,"parentId":455,"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":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9025,"timestamp":1489337911350,"id":543,"parentId":542,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9036,"timestamp":1489337911343,"id":542,"parentId":530,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10154,"timestamp":1489337911054,"id":530,"parentId":455,"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":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9918,"timestamp":1489337911358,"id":545,"parentId":544,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9927,"timestamp":1489337911351,"id":544,"parentId":531,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10933,"timestamp":1489337911074,"id":531,"parentId":455,"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":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11681,"timestamp":1489337911325,"id":537,"parentId":536,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11693,"timestamp":1489337911316,"id":536,"parentId":527,"tags":{},"startTime":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13449,"timestamp":1489337910991,"id":527,"parentId":455,"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":1779982306728,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":28190,"timestamp":1489337904885,"id":524,"parentId":523,"tags":{},"startTime":1779982306722,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":39,"timestamp":1489337933087,"id":575,"parentId":523,"tags":{},"startTime":1779982306750,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":28790,"timestamp":1489337904516,"id":523,"parentId":356,"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":1779982306721,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6632,"timestamp":1489337926718,"id":562,"parentId":561,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6667,"timestamp":1489337926685,"id":561,"parentId":552,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7902,"timestamp":1489337925949,"id":552,"parentId":453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7131,"timestamp":1489337926744,"id":566,"parentId":565,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7142,"timestamp":1489337926735,"id":565,"parentId":555,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8342,"timestamp":1489337926172,"id":555,"parentId":485,"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":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7776,"timestamp":1489337926753,"id":568,"parentId":567,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7785,"timestamp":1489337926745,"id":567,"parentId":556,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8645,"timestamp":1489337926196,"id":556,"parentId":485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8094,"timestamp":1489337926762,"id":570,"parentId":569,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8102,"timestamp":1489337926755,"id":569,"parentId":557,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9021,"timestamp":1489337926216,"id":557,"parentId":485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8713,"timestamp":1489337926733,"id":564,"parentId":563,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8727,"timestamp":1489337926721,"id":563,"parentId":554,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10261,"timestamp":1489337926137,"id":554,"parentId":485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10236,"timestamp":1489337926770,"id":572,"parentId":571,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10246,"timestamp":1489337926763,"id":571,"parentId":558,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11703,"timestamp":1489337926238,"id":558,"parentId":485,"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":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11201,"timestamp":1489337926779,"id":574,"parentId":573,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11210,"timestamp":1489337926771,"id":573,"parentId":559,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14372,"timestamp":1489337926259,"id":559,"parentId":485,"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":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":31995,"timestamp":1489337917629,"id":551,"parentId":548,"tags":{},"startTime":1779982306734,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":44,"timestamp":1489337949645,"id":598,"parentId":548,"tags":{},"startTime":1779982306766,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":32450,"timestamp":1489337917473,"id":548,"parentId":315,"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":1779982306734,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":32409,"timestamp":1489337917527,"id":549,"parentId":546,"tags":{},"startTime":1779982306734,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":32,"timestamp":1489337949942,"id":599,"parentId":546,"tags":{},"startTime":1779982306767,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":32733,"timestamp":1489337917331,"id":546,"parentId":294,"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":1779982306734,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4328,"timestamp":1489337948108,"id":593,"parentId":592,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4340,"timestamp":1489337948100,"id":592,"parentId":581,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5138,"timestamp":1489337947726,"id":581,"parentId":493,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1779982306764,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4795,"timestamp":1489337948088,"id":589,"parentId":588,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4813,"timestamp":1489337948073,"id":588,"parentId":579,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5674,"timestamp":1489337947669,"id":579,"parentId":497,"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":1779982306764,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5275,"timestamp":1489337948099,"id":591,"parentId":590,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5285,"timestamp":1489337948090,"id":590,"parentId":580,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6349,"timestamp":1489337947700,"id":580,"parentId":498,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1779982306764,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":36476,"timestamp":1489337917624,"id":550,"parentId":547,"tags":{},"startTime":1779982306734,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":77,"timestamp":1489337954108,"id":600,"parentId":547,"tags":{},"startTime":1779982306771,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":37052,"timestamp":1489337917422,"id":547,"parentId":275,"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":1779982306734,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":28073,"timestamp":1489337926463,"id":560,"parentId":553,"tags":{},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":33,"timestamp":1489337954541,"id":601,"parentId":553,"tags":{},"startTime":1779982306771,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":28857,"timestamp":1489337926073,"id":553,"parentId":294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1779982306743,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7178,"timestamp":1489337948117,"id":595,"parentId":594,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7187,"timestamp":1489337948109,"id":594,"parentId":582,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7973,"timestamp":1489337947754,"id":582,"parentId":493,"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":1779982306764,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7619,"timestamp":1489337948126,"id":597,"parentId":596,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7628,"timestamp":1489337948118,"id":596,"parentId":583,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8300,"timestamp":1489337947775,"id":583,"parentId":495,"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":1779982306764,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10528,"timestamp":1489337948070,"id":587,"parentId":586,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10595,"timestamp":1489337948012,"id":586,"parentId":576,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"build-module-ts","duration":13179,"timestamp":1489337947468,"id":576,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1779982306764,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4299,"timestamp":1489337963522,"id":608,"parentId":607,"tags":{},"startTime":1779982306780,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4322,"timestamp":1489337963504,"id":607,"parentId":603,"tags":{},"startTime":1779982306780,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5326,"timestamp":1489337962912,"id":603,"parentId":526,"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":1779982306780,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4753,"timestamp":1489337963500,"id":606,"parentId":605,"tags":{},"startTime":1779982306780,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4788,"timestamp":1489337963467,"id":605,"parentId":602,"tags":{},"startTime":1779982306780,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5696,"timestamp":1489337962815,"id":602,"parentId":527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1779982306780,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4990,"timestamp":1489337963533,"id":610,"parentId":609,"tags":{},"startTime":1779982306780,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4999,"timestamp":1489337963524,"id":609,"parentId":604,"tags":{},"startTime":1779982306780,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5832,"timestamp":1489337962957,"id":604,"parentId":527,"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":1779982306780,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":21296,"timestamp":1489337947818,"id":585,"parentId":578,"tags":{},"startTime":1779982306765,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":30,"timestamp":1489337969122,"id":635,"parentId":578,"tags":{},"startTime":1779982306786,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":21695,"timestamp":1489337947624,"id":578,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1779982306764,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":21518,"timestamp":1489337947807,"id":584,"parentId":577,"tags":{},"startTime":1779982306764,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":24,"timestamp":1489337969328,"id":636,"parentId":577,"tags":{},"startTime":1779982306786,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":21839,"timestamp":1489337947575,"id":577,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1779982306764,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7129,"timestamp":1489337967614,"id":626,"parentId":625,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7146,"timestamp":1489337967606,"id":625,"parentId":614,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7975,"timestamp":1489337967412,"id":614,"parentId":555,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7819,"timestamp":1489337967605,"id":624,"parentId":623,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7828,"timestamp":1489337967597,"id":623,"parentId":613,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8698,"timestamp":1489337967388,"id":613,"parentId":555,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8554,"timestamp":1489337967583,"id":620,"parentId":619,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8582,"timestamp":1489337967557,"id":619,"parentId":611,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9727,"timestamp":1489337967262,"id":611,"parentId":555,"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":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9424,"timestamp":1489337967596,"id":622,"parentId":621,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9435,"timestamp":1489337967586,"id":621,"parentId":612,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9992,"timestamp":1489337967331,"id":612,"parentId":555,"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":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9720,"timestamp":1489337967630,"id":630,"parentId":629,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9739,"timestamp":1489337967623,"id":629,"parentId":616,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10181,"timestamp":1489337967459,"id":616,"parentId":554,"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":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11519,"timestamp":1489337967638,"id":632,"parentId":631,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11530,"timestamp":1489337967631,"id":631,"parentId":617,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"}] +[{"name":"build-module-js","duration":12077,"timestamp":1489337967477,"id":617,"parentId":554,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11924,"timestamp":1489337967646,"id":634,"parentId":633,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11932,"timestamp":1489337967639,"id":633,"parentId":618,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12333,"timestamp":1489337967505,"id":618,"parentId":554,"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":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8173,"timestamp":1489337971674,"id":644,"parentId":643,"tags":{},"startTime":1779982306788,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8298,"timestamp":1489337971550,"id":643,"parentId":637,"tags":{},"startTime":1779982306788,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9923,"timestamp":1489337970131,"id":637,"parentId":531,"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":1779982306787,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8220,"timestamp":1489337971843,"id":648,"parentId":647,"tags":{},"startTime":1779982306789,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8260,"timestamp":1489337971803,"id":647,"parentId":639,"tags":{},"startTime":1779982306788,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10006,"timestamp":1489337970207,"id":639,"parentId":531,"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":1779982306787,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8425,"timestamp":1489337971796,"id":646,"parentId":645,"tags":{},"startTime":1779982306788,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8534,"timestamp":1489337971687,"id":645,"parentId":638,"tags":{},"startTime":1779982306788,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10179,"timestamp":1489337970179,"id":638,"parentId":531,"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":1779982306787,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12783,"timestamp":1489337967622,"id":628,"parentId":627,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12791,"timestamp":1489337967615,"id":627,"parentId":615,"tags":{},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14205,"timestamp":1489337967441,"id":615,"parentId":556,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1779982306784,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10004,"timestamp":1489337971872,"id":650,"parentId":649,"tags":{},"startTime":1779982306789,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10030,"timestamp":1489337971848,"id":649,"parentId":640,"tags":{},"startTime":1779982306789,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11533,"timestamp":1489337970526,"id":640,"parentId":531,"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":1779982306787,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13134,"timestamp":1489337971896,"id":652,"parentId":651,"tags":{},"startTime":1779982306789,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13160,"timestamp":1489337971876,"id":651,"parentId":641,"tags":{},"startTime":1779982306789,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14500,"timestamp":1489337970960,"id":641,"parentId":527,"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":1779982306788,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13572,"timestamp":1489337971919,"id":654,"parentId":653,"tags":{},"startTime":1779982306789,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13592,"timestamp":1489337971900,"id":653,"parentId":642,"tags":{},"startTime":1779982306789,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":15113,"timestamp":1489337971174,"id":642,"parentId":527,"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":1779982306788,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3235,"timestamp":1489337983551,"id":657,"parentId":656,"tags":{},"startTime":1779982306800,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3268,"timestamp":1489337983521,"id":656,"parentId":655,"tags":{},"startTime":1779982306800,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4107,"timestamp":1489337982895,"id":655,"parentId":552,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1779982306800,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3779,"timestamp":1489337989364,"id":665,"parentId":664,"tags":{},"startTime":1779982306806,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3795,"timestamp":1489337989354,"id":664,"parentId":660,"tags":{},"startTime":1779982306806,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4411,"timestamp":1489337989183,"id":660,"parentId":583,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1779982306806,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4262,"timestamp":1489337989350,"id":663,"parentId":662,"tags":{},"startTime":1779982306806,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4301,"timestamp":1489337989311,"id":662,"parentId":659,"tags":{},"startTime":1779982306806,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4771,"timestamp":1489337989114,"id":659,"parentId":579,"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":1779982306806,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":7003,"timestamp":1489337989257,"id":661,"parentId":658,"tags":{},"startTime":1779982306806,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":32,"timestamp":1489337996267,"id":675,"parentId":658,"tags":{},"startTime":1779982306813,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7579,"timestamp":1489337988985,"id":658,"parentId":581,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1779982306806,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":1625,"timestamp":1489337995400,"id":674,"parentId":673,"tags":{},"startTime":1779982306812,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":1654,"timestamp":1489337995373,"id":673,"parentId":672,"tags":{},"startTime":1779982306812,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":1996,"timestamp":1489337995309,"id":672,"parentId":389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1779982306812,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2693,"timestamp":1489337994635,"id":671,"parentId":670,"tags":{},"startTime":1779982306811,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2704,"timestamp":1489337994625,"id":670,"parentId":667,"tags":{},"startTime":1779982306811,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3396,"timestamp":1489337994563,"id":667,"parentId":604,"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":1779982306811,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2962,"timestamp":1489337996715,"id":678,"parentId":677,"tags":{},"startTime":1779982306813,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2996,"timestamp":1489337996696,"id":677,"parentId":676,"tags":{},"startTime":1779982306813,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3292,"timestamp":1489337996633,"id":676,"parentId":642,"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":1779982306813,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5547,"timestamp":1489337994623,"id":669,"parentId":668,"tags":{},"startTime":1779982306811,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5572,"timestamp":1489337994600,"id":668,"parentId":666,"tags":{},"startTime":1779982306811,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7471,"timestamp":1489337994515,"id":666,"parentId":578,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1779982306811,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3854,"timestamp":1489337998149,"id":686,"parentId":685,"tags":{},"startTime":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3864,"timestamp":1489337998140,"id":685,"parentId":680,"tags":{},"startTime":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4130,"timestamp":1489337998048,"id":680,"parentId":526,"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":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4076,"timestamp":1489337998139,"id":684,"parentId":683,"tags":{},"startTime":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4095,"timestamp":1489337998121,"id":683,"parentId":679,"tags":{},"startTime":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4363,"timestamp":1489337998008,"id":679,"parentId":528,"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":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4302,"timestamp":1489337998166,"id":690,"parentId":689,"tags":{},"startTime":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4310,"timestamp":1489337998159,"id":689,"parentId":682,"tags":{},"startTime":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4515,"timestamp":1489337998099,"id":682,"parentId":527,"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":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4471,"timestamp":1489337998158,"id":688,"parentId":687,"tags":{},"startTime":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4479,"timestamp":1489337998150,"id":687,"parentId":681,"tags":{},"startTime":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4949,"timestamp":1489337998077,"id":681,"parentId":531,"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":1779982306815,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7131,"timestamp":1489338005542,"id":701,"parentId":700,"tags":{},"startTime":1779982306822,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7146,"timestamp":1489338005533,"id":700,"parentId":693,"tags":{},"startTime":1779982306822,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8720,"timestamp":1489338004410,"id":693,"parentId":531,"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":1779982306821,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7649,"timestamp":1489338005531,"id":699,"parentId":698,"tags":{},"startTime":1779982306822,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7662,"timestamp":1489338005520,"id":698,"parentId":692,"tags":{},"startTime":1779982306822,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9350,"timestamp":1489338004383,"id":692,"parentId":528,"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":1779982306821,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8449,"timestamp":1489338005516,"id":697,"parentId":696,"tags":{},"startTime":1779982306822,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8496,"timestamp":1489338005471,"id":696,"parentId":691,"tags":{},"startTime":1779982306822,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9848,"timestamp":1489338004314,"id":691,"parentId":528,"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":1779982306821,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8617,"timestamp":1489338005555,"id":703,"parentId":702,"tags":{},"startTime":1779982306822,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8629,"timestamp":1489338005544,"id":702,"parentId":694,"tags":{},"startTime":1779982306822,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9924,"timestamp":1489338004433,"id":694,"parentId":528,"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":1779982306821,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8804,"timestamp":1489338005565,"id":705,"parentId":704,"tags":{},"startTime":1779982306822,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8813,"timestamp":1489338005557,"id":704,"parentId":695,"tags":{},"startTime":1779982306822,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10019,"timestamp":1489338004458,"id":695,"parentId":495,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1779982306821,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2502,"timestamp":1489338016830,"id":708,"parentId":707,"tags":{},"startTime":1779982306834,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2533,"timestamp":1489338016802,"id":707,"parentId":706,"tags":{},"startTime":1779982306833,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2827,"timestamp":1489338016735,"id":706,"parentId":658,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1779982306833,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":1665,"timestamp":1489338022212,"id":724,"parentId":723,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":1682,"timestamp":1489338022202,"id":723,"parentId":710,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2543,"timestamp":1489338021837,"id":710,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2383,"timestamp":1489338022233,"id":728,"parentId":727,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2393,"timestamp":1489338022225,"id":727,"parentId":712,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3020,"timestamp":1489338021926,"id":712,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2928,"timestamp":1489338022199,"id":722,"parentId":721,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2966,"timestamp":1489338022162,"id":721,"parentId":709,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4287,"timestamp":1489338021696,"id":709,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1779982306838,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4301,"timestamp":1489338022249,"id":732,"parentId":731,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4413,"timestamp":1489338022242,"id":731,"parentId":714,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5043,"timestamp":1489338021973,"id":714,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4838,"timestamp":1489338022224,"id":726,"parentId":725,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4850,"timestamp":1489338022213,"id":725,"parentId":711,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5812,"timestamp":1489338021896,"id":711,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5491,"timestamp":1489338022241,"id":730,"parentId":729,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5499,"timestamp":1489338022234,"id":729,"parentId":713,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6341,"timestamp":1489338021949,"id":713,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6060,"timestamp":1489338022257,"id":734,"parentId":733,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6068,"timestamp":1489338022250,"id":733,"parentId":715,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6726,"timestamp":1489338021992,"id":715,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10393,"timestamp":1489338022265,"id":736,"parentId":735,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"}] +[{"name":"next-swc-loader","duration":10531,"timestamp":1489338022258,"id":735,"parentId":716,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11120,"timestamp":1489338022011,"id":716,"parentId":681,"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":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10878,"timestamp":1489338022281,"id":740,"parentId":739,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10887,"timestamp":1489338022274,"id":739,"parentId":718,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11366,"timestamp":1489338022048,"id":718,"parentId":679,"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":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11255,"timestamp":1489338022273,"id":738,"parentId":737,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11263,"timestamp":1489338022266,"id":737,"parentId":717,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12363,"timestamp":1489338022030,"id":717,"parentId":680,"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":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12116,"timestamp":1489338022297,"id":744,"parentId":743,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12124,"timestamp":1489338022290,"id":743,"parentId":720,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12728,"timestamp":1489338022086,"id":720,"parentId":681,"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":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12546,"timestamp":1489338022289,"id":742,"parentId":741,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12554,"timestamp":1489338022282,"id":741,"parentId":719,"tags":{},"startTime":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13196,"timestamp":1489338022068,"id":719,"parentId":682,"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":1779982306839,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11928,"timestamp":1489338023346,"id":760,"parentId":759,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11938,"timestamp":1489338023337,"id":759,"parentId":747,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12338,"timestamp":1489338023090,"id":747,"parentId":693,"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":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12101,"timestamp":1489338023336,"id":758,"parentId":757,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12111,"timestamp":1489338023326,"id":757,"parentId":746,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12526,"timestamp":1489338023061,"id":746,"parentId":693,"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":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12239,"timestamp":1489338023354,"id":762,"parentId":761,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12247,"timestamp":1489338023347,"id":761,"parentId":748,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12594,"timestamp":1489338023118,"id":748,"parentId":691,"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":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12397,"timestamp":1489338023324,"id":756,"parentId":755,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12425,"timestamp":1489338023297,"id":755,"parentId":745,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12970,"timestamp":1489338022998,"id":745,"parentId":692,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12608,"timestamp":1489338023370,"id":766,"parentId":765,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12616,"timestamp":1489338023363,"id":765,"parentId":750,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13104,"timestamp":1489338023163,"id":750,"parentId":691,"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":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12918,"timestamp":1489338023362,"id":764,"parentId":763,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12926,"timestamp":1489338023355,"id":763,"parentId":749,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13543,"timestamp":1489338023141,"id":749,"parentId":694,"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":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13311,"timestamp":1489338023385,"id":770,"parentId":769,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13321,"timestamp":1489338023378,"id":769,"parentId":752,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13717,"timestamp":1489338023213,"id":752,"parentId":694,"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":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13654,"timestamp":1489338023393,"id":772,"parentId":771,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13663,"timestamp":1489338023386,"id":771,"parentId":753,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14080,"timestamp":1489338023234,"id":753,"parentId":694,"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":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13938,"timestamp":1489338023403,"id":774,"parentId":773,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13948,"timestamp":1489338023394,"id":773,"parentId":754,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14600,"timestamp":1489338023251,"id":754,"parentId":694,"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":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":14493,"timestamp":1489338023377,"id":768,"parentId":767,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":14500,"timestamp":1489338023370,"id":767,"parentId":751,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14904,"timestamp":1489338023185,"id":751,"parentId":694,"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":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":28479,"timestamp":1489338023629,"id":776,"parentId":775,"tags":{},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":36,"timestamp":1489338052115,"id":779,"parentId":775,"tags":{},"startTime":1779982306869,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":29173,"timestamp":1489338023574,"id":775,"parentId":492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1779982306840,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":1643,"timestamp":1489338054205,"id":791,"parentId":790,"tags":{},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":1656,"timestamp":1489338054196,"id":790,"parentId":783,"tags":{},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2153,"timestamp":1489338054072,"id":783,"parentId":711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2760,"timestamp":1489338054171,"id":785,"parentId":784,"tags":{},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2795,"timestamp":1489338054137,"id":784,"parentId":780,"tags":{},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3118,"timestamp":1489338053950,"id":780,"parentId":709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2895,"timestamp":1489338054185,"id":787,"parentId":786,"tags":{},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2906,"timestamp":1489338054175,"id":786,"parentId":781,"tags":{},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3311,"timestamp":1489338054019,"id":781,"parentId":709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3147,"timestamp":1489338054195,"id":789,"parentId":788,"tags":{},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3156,"timestamp":1489338054186,"id":788,"parentId":782,"tags":{},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3569,"timestamp":1489338054047,"id":782,"parentId":709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3126,"timestamp":1489338054915,"id":802,"parentId":801,"tags":{},"startTime":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3136,"timestamp":1489338054908,"id":801,"parentId":794,"tags":{},"startTime":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3488,"timestamp":1489338054822,"id":794,"parentId":718,"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":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3406,"timestamp":1489338054923,"id":804,"parentId":803,"tags":{},"startTime":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3414,"timestamp":1489338054916,"id":803,"parentId":795,"tags":{},"startTime":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3757,"timestamp":1489338054844,"id":795,"parentId":717,"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":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4040,"timestamp":1489338054898,"id":798,"parentId":797,"tags":{},"startTime":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4056,"timestamp":1489338054884,"id":797,"parentId":792,"tags":{},"startTime":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4681,"timestamp":1489338054531,"id":792,"parentId":720,"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":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4997,"timestamp":1489338054931,"id":806,"parentId":805,"tags":{},"startTime":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5006,"timestamp":1489338054924,"id":805,"parentId":796,"tags":{},"startTime":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5527,"timestamp":1489338054863,"id":796,"parentId":720,"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":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":8451,"timestamp":1489338051947,"id":778,"parentId":777,"tags":{},"startTime":1779982306869,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":28,"timestamp":1489338060402,"id":814,"parentId":777,"tags":{},"startTime":1779982306877,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8879,"timestamp":1489338051855,"id":777,"parentId":526,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1779982306869,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3456,"timestamp":1489338059819,"id":813,"parentId":812,"tags":{},"startTime":1779982306877,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3489,"timestamp":1489338059788,"id":812,"parentId":811,"tags":{},"startTime":1779982306876,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4132,"timestamp":1489338059411,"id":811,"parentId":749,"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":1779982306876,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3986,"timestamp":1489338061428,"id":817,"parentId":816,"tags":{},"startTime":1779982306878,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4010,"timestamp":1489338061406,"id":816,"parentId":815,"tags":{},"startTime":1779982306878,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4322,"timestamp":1489338061256,"id":815,"parentId":681,"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":1779982306878,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":7702,"timestamp":1489338057914,"id":810,"parentId":808,"tags":{},"startTime":1779982306875,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":28,"timestamp":1489338065621,"id":818,"parentId":808,"tags":{},"startTime":1779982306882,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7932,"timestamp":1489338057839,"id":808,"parentId":580,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1779982306875,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":8521,"timestamp":1489338057896,"id":809,"parentId":807,"tags":{},"startTime":1779982306875,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":27,"timestamp":1489338066421,"id":827,"parentId":807,"tags":{},"startTime":1779982306883,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8800,"timestamp":1489338057738,"id":807,"parentId":580,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1779982306874,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":1560,"timestamp":1489338066013,"id":824,"parentId":823,"tags":{},"startTime":1779982306883,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":1594,"timestamp":1489338065986,"id":823,"parentId":820,"tags":{},"startTime":1779982306883,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2104,"timestamp":1489338065903,"id":820,"parentId":781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1779982306883,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2980,"timestamp":1489338066024,"id":826,"parentId":825,"tags":{},"startTime":1779982306883,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2991,"timestamp":1489338066015,"id":825,"parentId":821,"tags":{},"startTime":1779982306883,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3961,"timestamp":1489338065939,"id":821,"parentId":781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1779982306883,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":4113,"timestamp":1489338065965,"id":822,"parentId":819,"tags":{},"startTime":1779982306883,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":175,"timestamp":1489338070107,"id":834,"parentId":819,"tags":{},"startTime":1779982306887,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4586,"timestamp":1489338065832,"id":819,"parentId":666,"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":1779982306883,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3091,"timestamp":1489338067341,"id":833,"parentId":832,"tags":{},"startTime":1779982306884,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3111,"timestamp":1489338067321,"id":832,"parentId":831,"tags":{},"startTime":1779982306884,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3388,"timestamp":1489338067276,"id":831,"parentId":709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1779982306884,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3555,"timestamp":1489338067159,"id":830,"parentId":829,"tags":{},"startTime":1779982306884,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3681,"timestamp":1489338067035,"id":829,"parentId":828,"tags":{},"startTime":1779982306884,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4551,"timestamp":1489338066892,"id":828,"parentId":795,"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":1779982306884,"traceId":"05a116f03e4ce418"}] +[{"name":"read-resource","duration":3,"timestamp":1489338073738,"id":839,"parentId":838,"tags":{},"startTime":1779982306890,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":34,"timestamp":1489338073749,"id":840,"parentId":838,"tags":{},"startTime":1779982306890,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":641,"timestamp":1489338073639,"id":838,"parentId":821,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1779982306890,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":2588,"timestamp":1489338072388,"id":837,"parentId":836,"tags":{},"startTime":1779982306889,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2634,"timestamp":1489338072345,"id":836,"parentId":835,"tags":{},"startTime":1779982306889,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3742,"timestamp":1489338071949,"id":835,"parentId":815,"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":1779982306889,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":23757,"timestamp":1489338054907,"id":800,"parentId":799,"tags":{},"startTime":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":23767,"timestamp":1489338054899,"id":799,"parentId":793,"tags":{},"startTime":1779982306872,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":31929,"timestamp":1489338054793,"id":793,"parentId":718,"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":1779982306871,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":741,"timestamp":1489338088575,"id":851,"parentId":850,"tags":{},"startTime":1779982306905,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":44,"timestamp":1489338089328,"id":852,"parentId":850,"tags":{},"startTime":1779982306906,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2383,"timestamp":1489338088492,"id":850,"parentId":717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1779982306905,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3599,"timestamp":1489338087411,"id":845,"parentId":844,"tags":{},"startTime":1779982306904,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3638,"timestamp":1489338087374,"id":844,"parentId":841,"tags":{},"startTime":1779982306904,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4153,"timestamp":1489338087032,"id":841,"parentId":821,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1779982306904,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3759,"timestamp":1489338087436,"id":849,"parentId":848,"tags":{},"startTime":1779982306904,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3768,"timestamp":1489338087427,"id":848,"parentId":843,"tags":{},"startTime":1779982306904,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4189,"timestamp":1489338087145,"id":843,"parentId":831,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1779982306904,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3947,"timestamp":1489338087426,"id":847,"parentId":846,"tags":{},"startTime":1779982306904,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3959,"timestamp":1489338087415,"id":846,"parentId":842,"tags":{},"startTime":1779982306904,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4823,"timestamp":1489338087118,"id":842,"parentId":831,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1779982306904,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":552,"timestamp":1489338093962,"id":856,"parentId":854,"tags":{},"startTime":1779982306911,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":54,"timestamp":1489338094534,"id":857,"parentId":854,"tags":{},"startTime":1779982306911,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":1080,"timestamp":1489338093890,"id":854,"parentId":793,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1779982306911,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":1051,"timestamp":1489338093950,"id":855,"parentId":853,"tags":{},"startTime":1779982306911,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":71,"timestamp":1489338095005,"id":858,"parentId":853,"tags":{},"startTime":1779982306912,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4038,"timestamp":1489338093803,"id":853,"parentId":793,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1779982306910,"traceId":"05a116f03e4ce418"},{"name":"make","duration":702433,"timestamp":1489337397341,"id":119,"parentId":118,"tags":{},"startTime":1779982306214,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":5641,"timestamp":1489338108626,"id":860,"parentId":859,"tags":{},"startTime":1779982306925,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":13,"timestamp":1489338114308,"id":862,"parentId":859,"tags":{},"startTime":1779982306931,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":3789,"timestamp":1489338114361,"id":863,"parentId":859,"tags":{},"startTime":1779982306931,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":13,"timestamp":1489338118196,"id":864,"parentId":859,"tags":{},"startTime":1779982306935,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":6,"timestamp":1489338118243,"id":865,"parentId":859,"tags":{},"startTime":1779982306935,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":4761,"timestamp":1489338114294,"id":861,"parentId":859,"tags":{},"startTime":1779982306931,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":5605,"timestamp":1489338122064,"id":866,"parentId":859,"tags":{},"startTime":1779982306939,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":28147,"timestamp":1489338127699,"id":867,"parentId":859,"tags":{},"startTime":1779982306944,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":5159,"timestamp":1489338159945,"id":868,"parentId":859,"tags":{},"startTime":1779982306977,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":218,"timestamp":1489338165103,"id":869,"parentId":859,"tags":{},"startTime":1779982306982,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":197,"timestamp":1489338165280,"id":870,"parentId":859,"tags":{},"startTime":1779982306982,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":62133,"timestamp":1489338165484,"id":871,"parentId":859,"tags":{},"startTime":1779982306982,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":129033,"timestamp":1489338107664,"id":859,"parentId":118,"tags":{},"startTime":1779982306924,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":844692,"timestamp":1489337396855,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1779982306214,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":42468,"timestamp":1489338242430,"id":872,"parentId":116,"tags":{},"startTime":1779982307059,"traceId":"05a116f03e4ce418"},{"name":"webpack-invalidated-server","duration":897571,"timestamp":1489337394334,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1779982306211,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":1115,"timestamp":1489338323346,"id":881,"parentId":877,"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(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1779982307140,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":1135,"timestamp":1489338324515,"id":882,"parentId":878,"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%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1779982307141,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":968,"timestamp":1489338325663,"id":883,"parentId":879,"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":1779982307142,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":2636,"timestamp":1489338326646,"id":884,"parentId":880,"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":1779982307143,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":12,"timestamp":1489338349025,"id":886,"parentId":885,"tags":{},"startTime":1779982307166,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4609,"timestamp":1489338355507,"id":902,"parentId":901,"tags":{},"startTime":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4869,"timestamp":1489338355266,"id":901,"parentId":889,"tags":{},"startTime":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12064,"timestamp":1489338350727,"id":889,"parentId":876,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1779982307167,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8782,"timestamp":1489338355678,"id":904,"parentId":903,"tags":{},"startTime":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8947,"timestamp":1489338355525,"id":903,"parentId":890,"tags":{},"startTime":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":12598,"timestamp":1489338353033,"id":890,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1779982307170,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":16329,"timestamp":1489338349352,"id":888,"parentId":887,"tags":{},"startTime":1779982307166,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":16609,"timestamp":1489338349073,"id":887,"parentId":885,"tags":{},"startTime":1779982307166,"traceId":"05a116f03e4ce418"},{"name":"build-module-mjs","duration":18904,"timestamp":1489338347837,"id":885,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1779982307165,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11022,"timestamp":1489338355774,"id":906,"parentId":905,"tags":{},"startTime":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11107,"timestamp":1489338355690,"id":905,"parentId":891,"tags":{},"startTime":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":15091,"timestamp":1489338353416,"id":891,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1779982307170,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12562,"timestamp":1489338355983,"id":910,"parentId":909,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12651,"timestamp":1489338355895,"id":909,"parentId":893,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":14932,"timestamp":1489338354222,"id":893,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1779982307171,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13120,"timestamp":1489338356053,"id":914,"parentId":913,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13147,"timestamp":1489338356027,"id":913,"parentId":895,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14787,"timestamp":1489338354750,"id":895,"parentId":884,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1779982307171,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13682,"timestamp":1489338355887,"id":908,"parentId":907,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13787,"timestamp":1489338355783,"id":907,"parentId":892,"tags":{},"startTime":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":16604,"timestamp":1489338353484,"id":892,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1779982307170,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":18473,"timestamp":1489338356127,"id":920,"parentId":919,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":18498,"timestamp":1489338356107,"id":919,"parentId":898,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":20699,"timestamp":1489338354885,"id":898,"parentId":884,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":19555,"timestamp":1489338356079,"id":916,"parentId":915,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":19579,"timestamp":1489338356057,"id":915,"parentId":896,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":21655,"timestamp":1489338354813,"id":896,"parentId":884,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":20504,"timestamp":1489338356022,"id":912,"parentId":911,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":20538,"timestamp":1489338355989,"id":911,"parentId":894,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":23838,"timestamp":1489338354682,"id":894,"parentId":884,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1779982307171,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":22829,"timestamp":1489338356151,"id":922,"parentId":921,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":22851,"timestamp":1489338356131,"id":921,"parentId":899,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":24469,"timestamp":1489338354919,"id":899,"parentId":884,"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":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":23328,"timestamp":1489338356103,"id":918,"parentId":917,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":23351,"timestamp":1489338356082,"id":917,"parentId":897,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":26974,"timestamp":1489338354845,"id":897,"parentId":884,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":26103,"timestamp":1489338356227,"id":924,"parentId":923,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":26177,"timestamp":1489338356156,"id":923,"parentId":900,"tags":{},"startTime":1779982307173,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":33994,"timestamp":1489338354975,"id":900,"parentId":881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"app-pages-browser"},"startTime":1779982307172,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":271,"timestamp":1489338399606,"id":929,"parentId":926,"tags":{},"startTime":1779982307216,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":304,"timestamp":1489338399611,"id":930,"parentId":927,"tags":{},"startTime":1779982307216,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":51,"timestamp":1489338399888,"id":934,"parentId":926,"tags":{},"startTime":1779982307217,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":22,"timestamp":1489338399917,"id":935,"parentId":927,"tags":{},"startTime":1779982307217,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":943,"timestamp":1489338399378,"id":926,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1779982307216,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":1005,"timestamp":1489338399471,"id":927,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1779982307216,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5092,"timestamp":1489338399819,"id":933,"parentId":932,"tags":{},"startTime":1779982307217,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5152,"timestamp":1489338399763,"id":932,"parentId":925,"tags":{},"startTime":1779982307216,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6668,"timestamp":1489338399279,"id":925,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1779982307216,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3649,"timestamp":1489338402607,"id":968,"parentId":967,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3661,"timestamp":1489338402597,"id":967,"parentId":937,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4880,"timestamp":1489338401902,"id":937,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4179,"timestamp":1489338402615,"id":970,"parentId":969,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"}] +[{"name":"next-swc-loader","duration":4292,"timestamp":1489338402608,"id":969,"parentId":938,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5272,"timestamp":1489338401928,"id":938,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4616,"timestamp":1489338402595,"id":966,"parentId":965,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4645,"timestamp":1489338402567,"id":965,"parentId":936,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5631,"timestamp":1489338401837,"id":936,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6475,"timestamp":1489338402631,"id":974,"parentId":973,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6484,"timestamp":1489338402624,"id":973,"parentId":940,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8439,"timestamp":1489338401974,"id":940,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7865,"timestamp":1489338402646,"id":978,"parentId":977,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7882,"timestamp":1489338402640,"id":977,"parentId":942,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9126,"timestamp":1489338402029,"id":942,"parentId":896,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8557,"timestamp":1489338402623,"id":972,"parentId":971,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8565,"timestamp":1489338402616,"id":971,"parentId":939,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10038,"timestamp":1489338401951,"id":939,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9368,"timestamp":1489338402639,"id":976,"parentId":975,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9376,"timestamp":1489338402632,"id":975,"parentId":941,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10665,"timestamp":1489338402006,"id":941,"parentId":898,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10029,"timestamp":1489338402654,"id":980,"parentId":979,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10037,"timestamp":1489338402647,"id":979,"parentId":943,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10895,"timestamp":1489338402049,"id":943,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10294,"timestamp":1489338402662,"id":982,"parentId":981,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10302,"timestamp":1489338402655,"id":981,"parentId":944,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11109,"timestamp":1489338402068,"id":944,"parentId":894,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10506,"timestamp":1489338402684,"id":988,"parentId":987,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10513,"timestamp":1489338402677,"id":987,"parentId":947,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11435,"timestamp":1489338402148,"id":947,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10923,"timestamp":1489338402676,"id":986,"parentId":985,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10930,"timestamp":1489338402670,"id":985,"parentId":946,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11892,"timestamp":1489338402130,"id":946,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11338,"timestamp":1489338402691,"id":990,"parentId":989,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11345,"timestamp":1489338402685,"id":989,"parentId":948,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12066,"timestamp":1489338402167,"id":948,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11577,"timestamp":1489338402669,"id":984,"parentId":983,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11585,"timestamp":1489338402662,"id":983,"parentId":945,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12640,"timestamp":1489338402110,"id":945,"parentId":894,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12055,"timestamp":1489338402706,"id":994,"parentId":993,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12062,"timestamp":1489338402699,"id":993,"parentId":950,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12747,"timestamp":1489338402202,"id":950,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12243,"timestamp":1489338402713,"id":996,"parentId":995,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12250,"timestamp":1489338402706,"id":995,"parentId":951,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13003,"timestamp":1489338402221,"id":951,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12534,"timestamp":1489338402698,"id":992,"parentId":991,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12540,"timestamp":1489338402692,"id":991,"parentId":949,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13288,"timestamp":1489338402185,"id":949,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12762,"timestamp":1489338402720,"id":998,"parentId":997,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12769,"timestamp":1489338402713,"id":997,"parentId":952,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13420,"timestamp":1489338402238,"id":952,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12931,"timestamp":1489338402735,"id":1002,"parentId":1001,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12938,"timestamp":1489338402728,"id":1001,"parentId":954,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13586,"timestamp":1489338402275,"id":954,"parentId":894,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13142,"timestamp":1489338402727,"id":1000,"parentId":999,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13149,"timestamp":1489338402721,"id":999,"parentId":953,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13924,"timestamp":1489338402256,"id":953,"parentId":894,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13451,"timestamp":1489338402742,"id":1004,"parentId":1003,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13458,"timestamp":1489338402736,"id":1003,"parentId":955,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14263,"timestamp":1489338402293,"id":955,"parentId":894,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13820,"timestamp":1489338402749,"id":1006,"parentId":1005,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13827,"timestamp":1489338402743,"id":1005,"parentId":956,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":16652,"timestamp":1489338402310,"id":956,"parentId":897,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":16252,"timestamp":1489338402764,"id":1010,"parentId":1009,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":16261,"timestamp":1489338402757,"id":1009,"parentId":958,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":17342,"timestamp":1489338402344,"id":958,"parentId":894,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":17027,"timestamp":1489338402771,"id":1012,"parentId":1011,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":17060,"timestamp":1489338402764,"id":1011,"parentId":959,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":18473,"timestamp":1489338402363,"id":959,"parentId":894,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":332,"timestamp":1489338423268,"id":1043,"parentId":1040,"tags":{},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":367,"timestamp":1489338423276,"id":1044,"parentId":1041,"tags":{},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2979,"timestamp":1489338423612,"id":1051,"parentId":1040,"tags":{},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2949,"timestamp":1489338423645,"id":1052,"parentId":1041,"tags":{},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3927,"timestamp":1489338423108,"id":1040,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3957,"timestamp":1489338423175,"id":1041,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":24449,"timestamp":1489338402757,"id":1008,"parentId":1007,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":24457,"timestamp":1489338402750,"id":1007,"parentId":957,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":25214,"timestamp":1489338402327,"id":957,"parentId":897,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":24769,"timestamp":1489338402785,"id":1016,"parentId":1015,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":24777,"timestamp":1489338402779,"id":1015,"parentId":961,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":25386,"timestamp":1489338402397,"id":961,"parentId":897,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":24999,"timestamp":1489338402793,"id":1018,"parentId":1017,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":25006,"timestamp":1489338402786,"id":1017,"parentId":962,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":25718,"timestamp":1489338402414,"id":962,"parentId":897,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":25659,"timestamp":1489338402800,"id":1020,"parentId":1019,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":25669,"timestamp":1489338402793,"id":1019,"parentId":963,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":26392,"timestamp":1489338402431,"id":963,"parentId":897,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":26084,"timestamp":1489338402778,"id":1014,"parentId":1013,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":26092,"timestamp":1489338402772,"id":1013,"parentId":960,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":27905,"timestamp":1489338402379,"id":960,"parentId":894,"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":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":22145,"timestamp":1489338408206,"id":1029,"parentId":1028,"tags":{},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":22219,"timestamp":1489338408144,"id":1028,"parentId":1023,"tags":{},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":23082,"timestamp":1489338407818,"id":1023,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":28114,"timestamp":1489338402833,"id":1022,"parentId":1021,"tags":{},"startTime":1779982307220,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":28147,"timestamp":1489338402800,"id":1021,"parentId":964,"tags":{},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":29016,"timestamp":1489338402450,"id":964,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1779982307219,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":23227,"timestamp":1489338408252,"id":1033,"parentId":1032,"tags":{},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":23240,"timestamp":1489338408240,"id":1032,"parentId":1025,"tags":{},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":23873,"timestamp":1489338407981,"id":1025,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":23586,"timestamp":1489338408286,"id":1035,"parentId":1034,"tags":{},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":23620,"timestamp":1489338408253,"id":1034,"parentId":1026,"tags":{},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":24197,"timestamp":1489338408006,"id":1026,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":24064,"timestamp":1489338408238,"id":1031,"parentId":1030,"tags":{},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":24093,"timestamp":1489338408210,"id":1030,"parentId":1024,"tags":{},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"build-module-ts","duration":25493,"timestamp":1489338407927,"id":1024,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1779982307225,"traceId":"05a116f03e4ce418"}] +[{"name":"next-swc-transform","duration":25254,"timestamp":1489338408295,"id":1037,"parentId":1036,"tags":{},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":25263,"timestamp":1489338408288,"id":1036,"parentId":1027,"tags":{},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":26401,"timestamp":1489338408029,"id":1027,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1779982307225,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11038,"timestamp":1489338423508,"id":1050,"parentId":1049,"tags":{},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11049,"timestamp":1489338423498,"id":1049,"parentId":1042,"tags":{},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11629,"timestamp":1489338423220,"id":1042,"parentId":894,"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":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11376,"timestamp":1489338423497,"id":1048,"parentId":1047,"tags":{},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11414,"timestamp":1489338423460,"id":1047,"parentId":1039,"tags":{},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"build-module-ts","duration":12241,"timestamp":1489338423046,"id":1039,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":425,"timestamp":1489338439961,"id":1058,"parentId":1054,"tags":{},"startTime":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":498,"timestamp":1489338439968,"id":1059,"parentId":1057,"tags":{},"startTime":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5633,"timestamp":1489338440408,"id":1066,"parentId":1054,"tags":{},"startTime":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5577,"timestamp":1489338440470,"id":1067,"parentId":1057,"tags":{},"startTime":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7024,"timestamp":1489338439768,"id":1054,"parentId":925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1779982307256,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7063,"timestamp":1489338439881,"id":1057,"parentId":925,"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":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":23562,"timestamp":1489338423457,"id":1046,"parentId":1045,"tags":{},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":23598,"timestamp":1489338423421,"id":1045,"parentId":1038,"tags":{},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":25324,"timestamp":1489338422945,"id":1038,"parentId":927,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1779982307240,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":49262,"timestamp":1489338399613,"id":931,"parentId":928,"tags":{},"startTime":1779982307216,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":51,"timestamp":1489338448897,"id":1068,"parentId":928,"tags":{},"startTime":1779982307266,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":49857,"timestamp":1489338399528,"id":928,"parentId":875,"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":1779982307216,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9363,"timestamp":1489338440204,"id":1063,"parentId":1062,"tags":{},"startTime":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9375,"timestamp":1489338440193,"id":1062,"parentId":1055,"tags":{},"startTime":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10073,"timestamp":1489338439826,"id":1055,"parentId":938,"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":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9699,"timestamp":1489338440213,"id":1065,"parentId":1064,"tags":{},"startTime":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9708,"timestamp":1489338440205,"id":1064,"parentId":1056,"tags":{},"startTime":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10336,"timestamp":1489338439856,"id":1056,"parentId":936,"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":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10072,"timestamp":1489338440190,"id":1061,"parentId":1060,"tags":{},"startTime":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10106,"timestamp":1489338440156,"id":1060,"parentId":1053,"tags":{},"startTime":1779982307257,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11139,"timestamp":1489338439649,"id":1053,"parentId":936,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1779982307256,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":450,"timestamp":1489338452544,"id":1080,"parentId":1075,"tags":{},"startTime":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4673,"timestamp":1489338453001,"id":1101,"parentId":1075,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5763,"timestamp":1489338452296,"id":1075,"parentId":951,"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":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6179,"timestamp":1489338452819,"id":1086,"parentId":1085,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6190,"timestamp":1489338452810,"id":1085,"parentId":1071,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7609,"timestamp":1489338452130,"id":1071,"parentId":942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6988,"timestamp":1489338452796,"id":1082,"parentId":1081,"tags":{},"startTime":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7020,"timestamp":1489338452768,"id":1081,"parentId":1069,"tags":{},"startTime":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8385,"timestamp":1489338451960,"id":1069,"parentId":956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7536,"timestamp":1489338452827,"id":1088,"parentId":1087,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7544,"timestamp":1489338452820,"id":1087,"parentId":1072,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8497,"timestamp":1489338452213,"id":1072,"parentId":939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7914,"timestamp":1489338452809,"id":1084,"parentId":1083,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7925,"timestamp":1489338452799,"id":1083,"parentId":1070,"tags":{},"startTime":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9025,"timestamp":1489338452026,"id":1070,"parentId":956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8215,"timestamp":1489338452845,"id":1092,"parentId":1091,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8223,"timestamp":1489338452837,"id":1091,"parentId":1074,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9018,"timestamp":1489338452271,"id":1074,"parentId":939,"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":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8447,"timestamp":1489338452852,"id":1094,"parentId":1093,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8463,"timestamp":1489338452845,"id":1093,"parentId":1076,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9249,"timestamp":1489338452356,"id":1076,"parentId":956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8779,"timestamp":1489338452836,"id":1090,"parentId":1089,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8788,"timestamp":1489338452829,"id":1089,"parentId":1073,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9603,"timestamp":1489338452246,"id":1073,"parentId":939,"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":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9094,"timestamp":1489338452860,"id":1096,"parentId":1095,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9102,"timestamp":1489338452853,"id":1095,"parentId":1077,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9940,"timestamp":1489338452420,"id":1077,"parentId":945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9513,"timestamp":1489338452868,"id":1098,"parentId":1097,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9520,"timestamp":1489338452861,"id":1097,"parentId":1078,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10374,"timestamp":1489338452462,"id":1078,"parentId":955,"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":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9974,"timestamp":1489338452876,"id":1100,"parentId":1099,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9981,"timestamp":1489338452869,"id":1099,"parentId":1079,"tags":{},"startTime":1779982307270,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10809,"timestamp":1489338452490,"id":1079,"parentId":955,"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":1779982307269,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":372,"timestamp":1489338464739,"id":1117,"parentId":1104,"tags":{},"startTime":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":410,"timestamp":1489338464743,"id":1118,"parentId":1106,"tags":{},"startTime":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":434,"timestamp":1489338464745,"id":1119,"parentId":1108,"tags":{},"startTime":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2091,"timestamp":1489338465125,"id":1144,"parentId":1104,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2062,"timestamp":1489338465156,"id":1145,"parentId":1106,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2038,"timestamp":1489338465181,"id":1146,"parentId":1108,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2989,"timestamp":1489338464389,"id":1104,"parentId":1027,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3119,"timestamp":1489338464458,"id":1106,"parentId":960,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3335,"timestamp":1489338464518,"id":1108,"parentId":963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3635,"timestamp":1489338464909,"id":1125,"parentId":1124,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3644,"timestamp":1489338464901,"id":1124,"parentId":1105,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4517,"timestamp":1489338464436,"id":1105,"parentId":1027,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4066,"timestamp":1489338464900,"id":1123,"parentId":1122,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4076,"timestamp":1489338464890,"id":1122,"parentId":1103,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5047,"timestamp":1489338464362,"id":1103,"parentId":955,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4507,"timestamp":1489338464917,"id":1127,"parentId":1126,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4514,"timestamp":1489338464910,"id":1126,"parentId":1107,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5392,"timestamp":1489338464498,"id":1107,"parentId":1027,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5026,"timestamp":1489338464889,"id":1121,"parentId":1120,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5052,"timestamp":1489338464863,"id":1120,"parentId":1102,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6382,"timestamp":1489338464297,"id":1102,"parentId":955,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5764,"timestamp":1489338464933,"id":1131,"parentId":1130,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5773,"timestamp":1489338464926,"id":1130,"parentId":1110,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6487,"timestamp":1489338464577,"id":1110,"parentId":1027,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6157,"timestamp":1489338464925,"id":1129,"parentId":1128,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6164,"timestamp":1489338464918,"id":1128,"parentId":1109,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6905,"timestamp":1489338464557,"id":1109,"parentId":1027,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6514,"timestamp":1489338464961,"id":1135,"parentId":1134,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6522,"timestamp":1489338464953,"id":1134,"parentId":1112,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7304,"timestamp":1489338464620,"id":1112,"parentId":960,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7002,"timestamp":1489338464952,"id":1133,"parentId":1132,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7021,"timestamp":1489338464934,"id":1132,"parentId":1111,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10103,"timestamp":1489338464596,"id":1111,"parentId":960,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":443,"timestamp":1489338479569,"id":1163,"parentId":1152,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":2742,"timestamp":1489338480020,"id":1192,"parentId":1152,"tags":{},"startTime":1779982307297,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6761,"timestamp":1489338476267,"id":1152,"parentId":1054,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":18090,"timestamp":1489338464968,"id":1137,"parentId":1136,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":18098,"timestamp":1489338464961,"id":1136,"parentId":1113,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"}] +[{"name":"build-module-js","duration":19215,"timestamp":1489338464639,"id":1113,"parentId":960,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":19034,"timestamp":1489338464975,"id":1139,"parentId":1138,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":19045,"timestamp":1489338464969,"id":1138,"parentId":1114,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":19653,"timestamp":1489338464667,"id":1114,"parentId":960,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":19592,"timestamp":1489338464983,"id":1141,"parentId":1140,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":19600,"timestamp":1489338464976,"id":1140,"parentId":1115,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":20400,"timestamp":1489338464686,"id":1115,"parentId":960,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":20171,"timestamp":1489338464990,"id":1143,"parentId":1142,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":20179,"timestamp":1489338464984,"id":1142,"parentId":1116,"tags":{},"startTime":1779982307282,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":20994,"timestamp":1489338464704,"id":1116,"parentId":960,"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":1779982307281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5965,"timestamp":1489338479750,"id":1169,"parentId":1168,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5974,"timestamp":1489338479742,"id":1168,"parentId":1149,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9869,"timestamp":1489338476176,"id":1149,"parentId":1038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6333,"timestamp":1489338479726,"id":1165,"parentId":1164,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6378,"timestamp":1489338479697,"id":1164,"parentId":1147,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10322,"timestamp":1489338476015,"id":1147,"parentId":960,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6615,"timestamp":1489338479740,"id":1167,"parentId":1166,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6626,"timestamp":1489338479729,"id":1166,"parentId":1148,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10650,"timestamp":1489338476134,"id":1148,"parentId":1038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7039,"timestamp":1489338479763,"id":1171,"parentId":1170,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7051,"timestamp":1489338479751,"id":1170,"parentId":1150,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11551,"timestamp":1489338476207,"id":1150,"parentId":1038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8008,"timestamp":1489338479790,"id":1177,"parentId":1176,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8017,"timestamp":1489338479782,"id":1176,"parentId":1154,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11845,"timestamp":1489338476342,"id":1154,"parentId":1038,"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":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8436,"timestamp":1489338479772,"id":1173,"parentId":1172,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8445,"timestamp":1489338479764,"id":1172,"parentId":1151,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12400,"timestamp":1489338476240,"id":1151,"parentId":1038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8858,"timestamp":1489338479799,"id":1179,"parentId":1178,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8866,"timestamp":1489338479791,"id":1178,"parentId":1155,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12618,"timestamp":1489338476367,"id":1155,"parentId":1054,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9231,"timestamp":1489338479781,"id":1175,"parentId":1174,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9240,"timestamp":1489338479773,"id":1174,"parentId":1153,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13581,"timestamp":1489338476317,"id":1153,"parentId":1038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10099,"timestamp":1489338479815,"id":1183,"parentId":1182,"tags":{},"startTime":1779982307297,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10107,"timestamp":1489338479809,"id":1182,"parentId":1157,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13768,"timestamp":1489338476413,"id":1157,"parentId":1038,"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":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10384,"timestamp":1489338479807,"id":1181,"parentId":1180,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10391,"timestamp":1489338479800,"id":1180,"parentId":1156,"tags":{},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14088,"timestamp":1489338476390,"id":1156,"parentId":1054,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10656,"timestamp":1489338479832,"id":1187,"parentId":1186,"tags":{},"startTime":1779982307297,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10664,"timestamp":1489338479825,"id":1186,"parentId":1159,"tags":{},"startTime":1779982307297,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14225,"timestamp":1489338476456,"id":1159,"parentId":1053,"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":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10851,"timestamp":1489338479840,"id":1189,"parentId":1188,"tags":{},"startTime":1779982307297,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10859,"timestamp":1489338479833,"id":1188,"parentId":1160,"tags":{},"startTime":1779982307297,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14417,"timestamp":1489338476476,"id":1160,"parentId":1053,"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":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11082,"timestamp":1489338479823,"id":1185,"parentId":1184,"tags":{},"startTime":1779982307297,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11090,"timestamp":1489338479817,"id":1184,"parentId":1158,"tags":{},"startTime":1779982307297,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14871,"timestamp":1489338476433,"id":1158,"parentId":1038,"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":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":18674,"timestamp":1489338479860,"id":1191,"parentId":1190,"tags":{},"startTime":1779982307297,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":18695,"timestamp":1489338479841,"id":1190,"parentId":1162,"tags":{},"startTime":1779982307297,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":19647,"timestamp":1489338479268,"id":1162,"parentId":943,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1779982307296,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4649,"timestamp":1489338494617,"id":1210,"parentId":1209,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4657,"timestamp":1489338494610,"id":1209,"parentId":1196,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5271,"timestamp":1489338494247,"id":1196,"parentId":1074,"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":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4917,"timestamp":1489338494609,"id":1208,"parentId":1207,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4925,"timestamp":1489338494601,"id":1207,"parentId":1195,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5531,"timestamp":1489338494223,"id":1195,"parentId":1071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5160,"timestamp":1489338494600,"id":1206,"parentId":1205,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5171,"timestamp":1489338494590,"id":1205,"parentId":1194,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5768,"timestamp":1489338494184,"id":1194,"parentId":1071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5371,"timestamp":1489338494588,"id":1204,"parentId":1203,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5402,"timestamp":1489338494557,"id":1203,"parentId":1193,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6074,"timestamp":1489338494115,"id":1193,"parentId":1071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5573,"timestamp":1489338494626,"id":1212,"parentId":1211,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5581,"timestamp":1489338494618,"id":1211,"parentId":1197,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6227,"timestamp":1489338494268,"id":1197,"parentId":1077,"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":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5853,"timestamp":1489338494648,"id":1218,"parentId":1217,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5860,"timestamp":1489338494642,"id":1217,"parentId":1201,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6321,"timestamp":1489338494375,"id":1201,"parentId":1027,"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":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6062,"timestamp":1489338494641,"id":1216,"parentId":1215,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6069,"timestamp":1489338494634,"id":1215,"parentId":1200,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6564,"timestamp":1489338494356,"id":1200,"parentId":1027,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6301,"timestamp":1489338494633,"id":1214,"parentId":1213,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6308,"timestamp":1489338494627,"id":1213,"parentId":1199,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6940,"timestamp":1489338494327,"id":1199,"parentId":1027,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":375,"timestamp":1489338502442,"id":1231,"parentId":1230,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":1608,"timestamp":1489338502824,"id":1254,"parentId":1230,"tags":{},"startTime":1779982307320,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2762,"timestamp":1489338502393,"id":1230,"parentId":1112,"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":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3046,"timestamp":1489338502625,"id":1235,"parentId":1234,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3057,"timestamp":1489338502615,"id":1234,"parentId":1220,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":3836,"timestamp":1489338502197,"id":1220,"parentId":1110,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3410,"timestamp":1489338502641,"id":1239,"parentId":1238,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3419,"timestamp":1489338502634,"id":1238,"parentId":1222,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4184,"timestamp":1489338502243,"id":1222,"parentId":1102,"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":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3806,"timestamp":1489338502633,"id":1237,"parentId":1236,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3814,"timestamp":1489338502626,"id":1236,"parentId":1221,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":4489,"timestamp":1489338502222,"id":1221,"parentId":1108,"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":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4110,"timestamp":1489338502613,"id":1233,"parentId":1232,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4134,"timestamp":1489338502590,"id":1232,"parentId":1219,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5000,"timestamp":1489338502142,"id":1219,"parentId":1103,"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":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":279,"timestamp":1489338512174,"id":1261,"parentId":1260,"tags":{},"startTime":1779982307329,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":27755,"timestamp":1489338502659,"id":1243,"parentId":1242,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":27769,"timestamp":1489338502650,"id":1242,"parentId":1224,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":28829,"timestamp":1489338502282,"id":1224,"parentId":1107,"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":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":28462,"timestamp":1489338502675,"id":1247,"parentId":1246,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":28472,"timestamp":1489338502668,"id":1246,"parentId":1226,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":29219,"timestamp":1489338502319,"id":1226,"parentId":1107,"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":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":28905,"timestamp":1489338502649,"id":1241,"parentId":1240,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":28915,"timestamp":1489338502642,"id":1240,"parentId":1223,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":29631,"timestamp":1489338502263,"id":1223,"parentId":1107,"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":1779982307319,"traceId":"05a116f03e4ce418"}] +[{"name":"next-swc-transform","duration":29319,"timestamp":1489338502683,"id":1249,"parentId":1248,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":29327,"timestamp":1489338502676,"id":1248,"parentId":1227,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":29953,"timestamp":1489338502337,"id":1227,"parentId":1107,"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":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":29885,"timestamp":1489338502690,"id":1251,"parentId":1250,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":29893,"timestamp":1489338502683,"id":1250,"parentId":1228,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":30523,"timestamp":1489338502354,"id":1228,"parentId":1107,"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":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":30242,"timestamp":1489338502668,"id":1245,"parentId":1244,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":30250,"timestamp":1489338502660,"id":1244,"parentId":1225,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":31395,"timestamp":1489338502301,"id":1225,"parentId":1107,"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":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":31009,"timestamp":1489338502698,"id":1253,"parentId":1252,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":31017,"timestamp":1489338502691,"id":1252,"parentId":1229,"tags":{},"startTime":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":31711,"timestamp":1489338502375,"id":1229,"parentId":1107,"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":1779982307319,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13429,"timestamp":1489338529409,"id":1270,"parentId":1269,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13452,"timestamp":1489338529394,"id":1269,"parentId":1256,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":34664,"timestamp":1489338508830,"id":1256,"parentId":1113,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1779982307326,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":14106,"timestamp":1489338529420,"id":1272,"parentId":1271,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":14117,"timestamp":1489338529411,"id":1271,"parentId":1257,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":35134,"timestamp":1489338508856,"id":1257,"parentId":1148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1779982307326,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":14579,"timestamp":1489338529430,"id":1274,"parentId":1273,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":14589,"timestamp":1489338529422,"id":1273,"parentId":1258,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":35382,"timestamp":1489338508878,"id":1258,"parentId":1148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1779982307326,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":14889,"timestamp":1489338529388,"id":1268,"parentId":1267,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":14930,"timestamp":1489338529347,"id":1267,"parentId":1255,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":37568,"timestamp":1489338508768,"id":1255,"parentId":1150,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1779982307325,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":16904,"timestamp":1489338529450,"id":1278,"parentId":1277,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":16914,"timestamp":1489338529442,"id":1277,"parentId":1262,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":34506,"timestamp":1489338512194,"id":1262,"parentId":1148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1779982307329,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":17276,"timestamp":1489338529440,"id":1276,"parentId":1275,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":17286,"timestamp":1489338529432,"id":1275,"parentId":1259,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":38135,"timestamp":1489338508897,"id":1259,"parentId":1148,"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":1779982307326,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":17593,"timestamp":1489338529459,"id":1280,"parentId":1279,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":17602,"timestamp":1489338529451,"id":1279,"parentId":1263,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":34920,"timestamp":1489338512335,"id":1263,"parentId":1115,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1779982307329,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":53328,"timestamp":1489338494408,"id":1202,"parentId":1198,"tags":{},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":37,"timestamp":1489338547744,"id":1281,"parentId":1198,"tags":{},"startTime":1779982307364,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":53625,"timestamp":1489338494288,"id":1198,"parentId":1025,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1779982307311,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":27144,"timestamp":1489338529188,"id":1266,"parentId":1264,"tags":{},"startTime":1779982307346,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":35,"timestamp":1489338556348,"id":1317,"parentId":1264,"tags":{},"startTime":1779982307373,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":44674,"timestamp":1489338512397,"id":1264,"parentId":1027,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1779982307329,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":226,"timestamp":1489338557432,"id":1329,"parentId":1326,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":27,"timestamp":1489338557662,"id":1350,"parentId":1326,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":522,"timestamp":1489338557338,"id":1326,"parentId":1224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3167,"timestamp":1489338554720,"id":1300,"parentId":1299,"tags":{},"startTime":1779982307371,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3560,"timestamp":1489338554327,"id":1299,"parentId":1284,"tags":{},"startTime":1779982307371,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5206,"timestamp":1489338553096,"id":1284,"parentId":1197,"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":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3994,"timestamp":1489338554323,"id":1298,"parentId":1297,"tags":{},"startTime":1779982307371,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4066,"timestamp":1489338554252,"id":1297,"parentId":1283,"tags":{},"startTime":1779982307371,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5695,"timestamp":1489338553065,"id":1283,"parentId":1197,"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":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5070,"timestamp":1489338554848,"id":1302,"parentId":1301,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5195,"timestamp":1489338554724,"id":1301,"parentId":1285,"tags":{},"startTime":1779982307371,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7809,"timestamp":1489338553120,"id":1285,"parentId":1197,"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":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5912,"timestamp":1489338555083,"id":1304,"parentId":1303,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6145,"timestamp":1489338554853,"id":1303,"parentId":1286,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":8514,"timestamp":1489338553142,"id":1286,"parentId":1197,"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":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7460,"timestamp":1489338554240,"id":1296,"parentId":1295,"tags":{},"startTime":1779982307371,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7617,"timestamp":1489338554083,"id":1295,"parentId":1282,"tags":{},"startTime":1779982307371,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":9740,"timestamp":1489338552965,"id":1282,"parentId":1197,"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":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":7625,"timestamp":1489338555105,"id":1306,"parentId":1305,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":7643,"timestamp":1489338555087,"id":1305,"parentId":1287,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10185,"timestamp":1489338553163,"id":1287,"parentId":1197,"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":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8217,"timestamp":1489338555140,"id":1312,"parentId":1311,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8226,"timestamp":1489338555132,"id":1311,"parentId":1291,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10158,"timestamp":1489338553383,"id":1291,"parentId":1221,"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":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8400,"timestamp":1489338555150,"id":1314,"parentId":1313,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8409,"timestamp":1489338555142,"id":1313,"parentId":1292,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10378,"timestamp":1489338553410,"id":1292,"parentId":1224,"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":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11777,"timestamp":1489338555159,"id":1316,"parentId":1315,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11786,"timestamp":1489338555151,"id":1315,"parentId":1293,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":13902,"timestamp":1489338553436,"id":1293,"parentId":1227,"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":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12467,"timestamp":1489338555130,"id":1310,"parentId":1309,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12482,"timestamp":1489338555118,"id":1309,"parentId":1290,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14749,"timestamp":1489338553346,"id":1290,"parentId":1219,"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":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10625,"timestamp":1489338557491,"id":1331,"parentId":1330,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10649,"timestamp":1489338557468,"id":1330,"parentId":1318,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11263,"timestamp":1489338557117,"id":1318,"parentId":1227,"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":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":13278,"timestamp":1489338555116,"id":1308,"parentId":1307,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":13288,"timestamp":1489338555107,"id":1307,"parentId":1289,"tags":{},"startTime":1779982307372,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":15561,"timestamp":1489338553289,"id":1289,"parentId":1222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11357,"timestamp":1489338557502,"id":1333,"parentId":1332,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11366,"timestamp":1489338557492,"id":1332,"parentId":1319,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11905,"timestamp":1489338557171,"id":1319,"parentId":1227,"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":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11557,"timestamp":1489338557527,"id":1339,"parentId":1338,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11566,"timestamp":1489338557519,"id":1338,"parentId":1322,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12012,"timestamp":1489338557257,"id":1322,"parentId":1224,"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":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11759,"timestamp":1489338557519,"id":1337,"parentId":1336,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11767,"timestamp":1489338557511,"id":1336,"parentId":1321,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12328,"timestamp":1489338557224,"id":1321,"parentId":1224,"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":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12029,"timestamp":1489338557534,"id":1341,"parentId":1340,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12036,"timestamp":1489338557528,"id":1340,"parentId":1323,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":12902,"timestamp":1489338557277,"id":1323,"parentId":1224,"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":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":12685,"timestamp":1489338557510,"id":1335,"parentId":1334,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":12695,"timestamp":1489338557503,"id":1334,"parentId":1320,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14372,"timestamp":1489338557201,"id":1320,"parentId":1227,"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":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":14070,"timestamp":1489338557542,"id":1343,"parentId":1342,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":14078,"timestamp":1489338557535,"id":1342,"parentId":1324,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14686,"timestamp":1489338557298,"id":1324,"parentId":1224,"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":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":14448,"timestamp":1489338557550,"id":1345,"parentId":1344,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":14456,"timestamp":1489338557543,"id":1344,"parentId":1325,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14918,"timestamp":1489338557318,"id":1325,"parentId":1227,"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":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":14693,"timestamp":1489338557557,"id":1347,"parentId":1346,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":14701,"timestamp":1489338557550,"id":1346,"parentId":1327,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"}] +[{"name":"build-module-js","duration":15278,"timestamp":1489338557378,"id":1327,"parentId":1225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":15103,"timestamp":1489338557565,"id":1349,"parentId":1348,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":15111,"timestamp":1489338557558,"id":1348,"parentId":1328,"tags":{},"startTime":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":15550,"timestamp":1489338557398,"id":1328,"parentId":1225,"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":1779982307374,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":1032,"timestamp":1489338581798,"id":1364,"parentId":1359,"tags":{},"startTime":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8332,"timestamp":1489338582840,"id":1389,"parentId":1359,"tags":{},"startTime":1779982307400,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10151,"timestamp":1489338581574,"id":1359,"parentId":1256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":365222,"timestamp":1489338582556,"id":1366,"parentId":1365,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":365277,"timestamp":1489338582511,"id":1365,"parentId":1351,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":367740,"timestamp":1489338581017,"id":1351,"parentId":1225,"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":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":366191,"timestamp":1489338582593,"id":1372,"parentId":1371,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":366201,"timestamp":1489338582585,"id":1371,"parentId":1354,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":368084,"timestamp":1489338581175,"id":1354,"parentId":1225,"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":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":366707,"timestamp":1489338582583,"id":1370,"parentId":1369,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":366717,"timestamp":1489338582574,"id":1369,"parentId":1353,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":369170,"timestamp":1489338581151,"id":1353,"parentId":1227,"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":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":367745,"timestamp":1489338582603,"id":1374,"parentId":1373,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":367754,"timestamp":1489338582595,"id":1373,"parentId":1355,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":370097,"timestamp":1489338581196,"id":1355,"parentId":1225,"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":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":368690,"timestamp":1489338582620,"id":1378,"parentId":1377,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":368698,"timestamp":1489338582613,"id":1377,"parentId":1357,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":370099,"timestamp":1489338581527,"id":1357,"parentId":1193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":369011,"timestamp":1489338582629,"id":1380,"parentId":1379,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":369020,"timestamp":1489338582621,"id":1379,"parentId":1358,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":370391,"timestamp":1489338581553,"id":1358,"parentId":1162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":369394,"timestamp":1489338582573,"id":1368,"parentId":1367,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":369406,"timestamp":1489338582561,"id":1367,"parentId":1352,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":371594,"timestamp":1489338581120,"id":1352,"parentId":1225,"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":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":370113,"timestamp":1489338582612,"id":1376,"parentId":1375,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":370122,"timestamp":1489338582604,"id":1375,"parentId":1356,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":371767,"timestamp":1489338581219,"id":1356,"parentId":1194,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":370349,"timestamp":1489338582646,"id":1384,"parentId":1383,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":370357,"timestamp":1489338582639,"id":1383,"parentId":1361,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":371682,"timestamp":1489338581639,"id":1361,"parentId":1262,"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":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":370681,"timestamp":1489338582654,"id":1386,"parentId":1385,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":370689,"timestamp":1489338582647,"id":1385,"parentId":1362,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":373140,"timestamp":1489338581659,"id":1362,"parentId":1259,"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":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":372192,"timestamp":1489338582637,"id":1382,"parentId":1381,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":372200,"timestamp":1489338582630,"id":1381,"parentId":1360,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":374241,"timestamp":1489338581617,"id":1360,"parentId":1262,"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":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":373229,"timestamp":1489338582662,"id":1388,"parentId":1387,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":373239,"timestamp":1489338582655,"id":1387,"parentId":1363,"tags":{},"startTime":1779982307399,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":375366,"timestamp":1489338581689,"id":1363,"parentId":1259,"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":1779982307398,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":420967,"timestamp":1489338553481,"id":1294,"parentId":1288,"tags":{},"startTime":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":49,"timestamp":1489338974471,"id":1410,"parentId":1288,"tags":{},"startTime":1779982307791,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":422184,"timestamp":1489338553211,"id":1288,"parentId":928,"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":1779982307370,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":15332,"timestamp":1489338960794,"id":1403,"parentId":1402,"tags":{},"startTime":1779982307777,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":15347,"timestamp":1489338960782,"id":1402,"parentId":1392,"tags":{},"startTime":1779982307777,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":18737,"timestamp":1489338958470,"id":1392,"parentId":1283,"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":1779982307775,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":16429,"timestamp":1489338960816,"id":1407,"parentId":1406,"tags":{},"startTime":1779982307778,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":16439,"timestamp":1489338960807,"id":1406,"parentId":1394,"tags":{},"startTime":1779982307777,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":19162,"timestamp":1489338958546,"id":1394,"parentId":1283,"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":1779982307775,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":16927,"timestamp":1489338960806,"id":1405,"parentId":1404,"tags":{},"startTime":1779982307777,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":16937,"timestamp":1489338960796,"id":1404,"parentId":1393,"tags":{},"startTime":1779982307777,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":19508,"timestamp":1489338958514,"id":1393,"parentId":1283,"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":1779982307775,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":17208,"timestamp":1489338960825,"id":1409,"parentId":1408,"tags":{},"startTime":1779982307778,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":17217,"timestamp":1489338960817,"id":1408,"parentId":1395,"tags":{},"startTime":1779982307778,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":19673,"timestamp":1489338958612,"id":1395,"parentId":1283,"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":1779982307775,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":17571,"timestamp":1489338960776,"id":1401,"parentId":1400,"tags":{},"startTime":1779982307777,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":17615,"timestamp":1489338960733,"id":1400,"parentId":1391,"tags":{},"startTime":1779982307777,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":21719,"timestamp":1489338958326,"id":1391,"parentId":1284,"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":1779982307775,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":442,"timestamp":1489338981800,"id":1431,"parentId":1427,"tags":{},"startTime":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":478,"timestamp":1489338981803,"id":1432,"parentId":1428,"tags":{},"startTime":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":262,"timestamp":1489338982251,"id":1465,"parentId":1427,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":230,"timestamp":1489338982284,"id":1466,"parentId":1428,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":1215,"timestamp":1489338981645,"id":1427,"parentId":1289,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":1700,"timestamp":1489338981706,"id":1428,"parentId":1289,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":180,"timestamp":1489338985400,"id":1476,"parentId":1468,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":33,"timestamp":1489338985587,"id":1493,"parentId":1468,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5950,"timestamp":1489338985192,"id":1468,"parentId":1363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9298,"timestamp":1489338981916,"id":1434,"parentId":1433,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9341,"timestamp":1489338981874,"id":1433,"parentId":1411,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10662,"timestamp":1489338981166,"id":1411,"parentId":1290,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9904,"timestamp":1489338981943,"id":1438,"parentId":1437,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9914,"timestamp":1489338981934,"id":1437,"parentId":1413,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":10920,"timestamp":1489338981295,"id":1413,"parentId":1282,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10280,"timestamp":1489338981951,"id":1440,"parentId":1439,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10289,"timestamp":1489338981944,"id":1439,"parentId":1414,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11452,"timestamp":1489338981320,"id":1414,"parentId":1282,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":10865,"timestamp":1489338981933,"id":1436,"parentId":1435,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":10880,"timestamp":1489338981920,"id":1435,"parentId":1412,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11964,"timestamp":1489338981263,"id":1412,"parentId":1282,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":11289,"timestamp":1489338981968,"id":1444,"parentId":1443,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":11299,"timestamp":1489338981961,"id":1443,"parentId":1416,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":14797,"timestamp":1489338981365,"id":1416,"parentId":1322,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":14344,"timestamp":1489338981960,"id":1442,"parentId":1441,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":14357,"timestamp":1489338981953,"id":1441,"parentId":1415,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":17352,"timestamp":1489338981343,"id":1415,"parentId":1328,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":16845,"timestamp":1489338981976,"id":1446,"parentId":1445,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":16864,"timestamp":1489338981969,"id":1445,"parentId":1417,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":19215,"timestamp":1489338981386,"id":1417,"parentId":1321,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":28394,"timestamp":1489338981993,"id":1450,"parentId":1449,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":28411,"timestamp":1489338981985,"id":1449,"parentId":1419,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":29911,"timestamp":1489338981426,"id":1419,"parentId":1321,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":29450,"timestamp":1489338981984,"id":1448,"parentId":1447,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":29462,"timestamp":1489338981977,"id":1447,"parentId":1418,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":30948,"timestamp":1489338981406,"id":1418,"parentId":1321,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":30370,"timestamp":1489338982010,"id":1454,"parentId":1453,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":30379,"timestamp":1489338982003,"id":1453,"parentId":1421,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":31271,"timestamp":1489338981468,"id":1421,"parentId":1321,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":30751,"timestamp":1489338982002,"id":1452,"parentId":1451,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"}] +[{"name":"next-swc-loader","duration":30887,"timestamp":1489338981994,"id":1451,"parentId":1420,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":31725,"timestamp":1489338981449,"id":1420,"parentId":1321,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":31189,"timestamp":1489338982018,"id":1456,"parentId":1455,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":31197,"timestamp":1489338982011,"id":1455,"parentId":1422,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":32728,"timestamp":1489338981487,"id":1422,"parentId":1323,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":32239,"timestamp":1489338982026,"id":1458,"parentId":1457,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":32248,"timestamp":1489338982019,"id":1457,"parentId":1423,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":33603,"timestamp":1489338981507,"id":1423,"parentId":1324,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":33130,"timestamp":1489338982034,"id":1460,"parentId":1459,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":33138,"timestamp":1489338982027,"id":1459,"parentId":1424,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":34107,"timestamp":1489338981527,"id":1424,"parentId":1324,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":33852,"timestamp":1489338982049,"id":1464,"parentId":1463,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":33860,"timestamp":1489338982043,"id":1463,"parentId":1426,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":34644,"timestamp":1489338981566,"id":1426,"parentId":1325,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":34245,"timestamp":1489338982042,"id":1462,"parentId":1461,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":34255,"timestamp":1489338982035,"id":1461,"parentId":1425,"tags":{},"startTime":1779982307799,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":36132,"timestamp":1489338981547,"id":1425,"parentId":1325,"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":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":32858,"timestamp":1489338985441,"id":1480,"parentId":1479,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":32872,"timestamp":1489338985431,"id":1479,"parentId":1469,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":33825,"timestamp":1489338985241,"id":1469,"parentId":1363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":33631,"timestamp":1489338985459,"id":1484,"parentId":1483,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":33640,"timestamp":1489338985452,"id":1483,"parentId":1471,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":34182,"timestamp":1489338985291,"id":1471,"parentId":1353,"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":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":34059,"timestamp":1489338985430,"id":1478,"parentId":1477,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":34084,"timestamp":1489338985405,"id":1477,"parentId":1467,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":34674,"timestamp":1489338985120,"id":1467,"parentId":1359,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":34342,"timestamp":1489338985467,"id":1486,"parentId":1485,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":34352,"timestamp":1489338985460,"id":1485,"parentId":1472,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":36357,"timestamp":1489338985314,"id":1472,"parentId":1352,"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":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":36242,"timestamp":1489338985451,"id":1482,"parentId":1481,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":36251,"timestamp":1489338985442,"id":1481,"parentId":1470,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":37202,"timestamp":1489338985267,"id":1470,"parentId":1355,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":36999,"timestamp":1489338985489,"id":1492,"parentId":1491,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":37007,"timestamp":1489338985483,"id":1491,"parentId":1475,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":37770,"timestamp":1489338985375,"id":1475,"parentId":1353,"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":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":37750,"timestamp":1489338985475,"id":1488,"parentId":1487,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":37761,"timestamp":1489338985468,"id":1487,"parentId":1473,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":38604,"timestamp":1489338985335,"id":1473,"parentId":1354,"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":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":38481,"timestamp":1489338985482,"id":1490,"parentId":1489,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":38488,"timestamp":1489338985475,"id":1489,"parentId":1474,"tags":{},"startTime":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":38971,"timestamp":1489338985355,"id":1474,"parentId":1353,"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":1779982307802,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":143274,"timestamp":1489338959028,"id":1397,"parentId":1396,"tags":{},"startTime":1779982307776,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":143982,"timestamp":1489338958637,"id":1396,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1779982307775,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":143583,"timestamp":1489338959066,"id":1399,"parentId":1398,"tags":{},"startTime":1779982307776,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":143772,"timestamp":1489338959056,"id":1398,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1779982307776,"traceId":"05a116f03e4ce418"},{"name":"postcss-process","duration":411931,"timestamp":1489338819144,"id":1390,"parentId":1265,"tags":{},"startTime":1779982307636,"traceId":"05a116f03e4ce418"},{"name":"postcss-loader","duration":719835,"timestamp":1489338512570,"id":1265,"parentId":1260,"tags":{},"startTime":1779982307329,"traceId":"05a116f03e4ce418"},{"name":"css-loader","duration":37467,"timestamp":1489339232520,"id":1495,"parentId":1260,"tags":{"astUsed":"true"},"startTime":1779982308049,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":292617,"timestamp":1489338981763,"id":1430,"parentId":1429,"tags":{},"startTime":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":292843,"timestamp":1489338981750,"id":1429,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1779982307798,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":166,"timestamp":1489339275034,"id":1516,"parentId":1509,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":79,"timestamp":1489339275206,"id":1525,"parentId":1509,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2162,"timestamp":1489339274939,"id":1509,"parentId":1422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4875,"timestamp":1489339272588,"id":1500,"parentId":1499,"tags":{},"startTime":1779982308089,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4925,"timestamp":1489339272541,"id":1499,"parentId":1496,"tags":{},"startTime":1779982308089,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5833,"timestamp":1489339272127,"id":1496,"parentId":1417,"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":1779982308089,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5371,"timestamp":1489339272611,"id":1504,"parentId":1503,"tags":{},"startTime":1779982308089,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5378,"timestamp":1489339272604,"id":1503,"parentId":1498,"tags":{},"startTime":1779982308089,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6014,"timestamp":1489339272338,"id":1498,"parentId":1416,"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":1779982308089,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4856,"timestamp":1489339275104,"id":1520,"parentId":1519,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4867,"timestamp":1489339275095,"id":1519,"parentId":1506,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5538,"timestamp":1489339274863,"id":1506,"parentId":1422,"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":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5316,"timestamp":1489339275112,"id":1522,"parentId":1521,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":5324,"timestamp":1489339275105,"id":1521,"parentId":1507,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6080,"timestamp":1489339274890,"id":1507,"parentId":1475,"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":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6159,"timestamp":1489339275093,"id":1518,"parentId":1517,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6183,"timestamp":1489339275070,"id":1517,"parentId":1505,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":6799,"timestamp":1489339274810,"id":1505,"parentId":1474,"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":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6527,"timestamp":1489339275119,"id":1524,"parentId":1523,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6534,"timestamp":1489339275113,"id":1523,"parentId":1508,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":7041,"timestamp":1489339274919,"id":1508,"parentId":1474,"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":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":72519,"timestamp":1489339274989,"id":1511,"parentId":1510,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":73448,"timestamp":1489339274979,"id":1510,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":73425,"timestamp":1489339275023,"id":1515,"parentId":1514,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":73527,"timestamp":1489339275015,"id":1514,"parentId":956,"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":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":73542,"timestamp":1489339275008,"id":1513,"parentId":1512,"tags":{},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":76951,"timestamp":1489339275001,"id":1512,"parentId":1027,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1779982308092,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":99249,"timestamp":1489339278953,"id":1527,"parentId":1526,"tags":{},"startTime":1779982308096,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":68,"timestamp":1489339379235,"id":1537,"parentId":1526,"tags":{},"startTime":1779982308196,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":100979,"timestamp":1489339278848,"id":1526,"parentId":928,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1779982308096,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":107700,"timestamp":1489339272602,"id":1502,"parentId":1501,"tags":{},"startTime":1779982308089,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":107719,"timestamp":1489339272593,"id":1501,"parentId":1497,"tags":{},"startTime":1779982308089,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":119233,"timestamp":1489339272297,"id":1497,"parentId":1416,"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":1779982308089,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":41271,"timestamp":1489339356936,"id":1536,"parentId":1535,"tags":{},"startTime":1779982308174,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":41330,"timestamp":1489339356898,"id":1535,"parentId":1528,"tags":{},"startTime":1779982308174,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":43725,"timestamp":1489339356149,"id":1528,"parentId":1506,"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":1779982308173,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":44,"timestamp":1489339405988,"id":1540,"parentId":1538,"tags":{},"startTime":1779982308223,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":115,"timestamp":1489339405996,"id":1541,"parentId":1539,"tags":{},"startTime":1779982308223,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":95,"timestamp":1489339406045,"id":1542,"parentId":1538,"tags":{},"startTime":1779982308223,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":26,"timestamp":1489339406115,"id":1543,"parentId":1539,"tags":{},"startTime":1779982308223,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5007,"timestamp":1489339405648,"id":1538,"parentId":1497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1779982308222,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":5248,"timestamp":1489339405873,"id":1539,"parentId":1497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1779982308223,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":55165,"timestamp":1489339356276,"id":1530,"parentId":1529,"tags":{},"startTime":1779982308173,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":57534,"timestamp":1489339356257,"id":1529,"parentId":1396,"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":1779982308173,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":57016,"timestamp":1489339356789,"id":1532,"parentId":1531,"tags":{},"startTime":1779982308173,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":66261,"timestamp":1489339356760,"id":1531,"parentId":1398,"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":1779982308173,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":66375,"timestamp":1489339356821,"id":1534,"parentId":1533,"tags":{},"startTime":1779982308174,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":74071,"timestamp":1489339356808,"id":1533,"parentId":1429,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1779982308173,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":1130486,"timestamp":1489338303078,"id":877,"parentId":874,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1779982307120,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":1130469,"timestamp":1489338303151,"id":878,"parentId":874,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1779982307120,"traceId":"05a116f03e4ce418"},{"name":"build-module-css","duration":925400,"timestamp":1489338508921,"id":1260,"parentId":1161,"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":1779982307326,"traceId":"05a116f03e4ce418"}] +[{"name":"read-resource","duration":2218,"timestamp":1489339432773,"id":1545,"parentId":1544,"tags":{},"startTime":1779982308249,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2498,"timestamp":1489339432725,"id":1544,"parentId":1514,"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":1779982308249,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":968,"timestamp":1489339434727,"id":1549,"parentId":1548,"tags":{},"startTime":1779982308251,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":71,"timestamp":1489339435705,"id":1550,"parentId":1548,"tags":{},"startTime":1779982308252,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":2321,"timestamp":1489339434601,"id":1548,"parentId":1526,"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":1779982308251,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":1134078,"timestamp":1489338302994,"id":875,"parentId":874,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1779982307120,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":5233,"timestamp":1489339434005,"id":1547,"parentId":1546,"tags":{},"startTime":1779982308251,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":87960,"timestamp":1489339433981,"id":1546,"parentId":1510,"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":1779982308251,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":84872,"timestamp":1489339439073,"id":1552,"parentId":1551,"tags":{},"startTime":1779982308256,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":85807,"timestamp":1489339438742,"id":1551,"parentId":1260,"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":1779982308255,"traceId":"05a116f03e4ce418"},{"name":"build-module-css","duration":1053936,"timestamp":1489338476499,"id":1161,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1779982307293,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":8385,"timestamp":1489339522273,"id":1554,"parentId":1553,"tags":{},"startTime":1779982308339,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":11147,"timestamp":1489339522194,"id":1553,"parentId":1544,"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":1779982308339,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":65,"timestamp":1489339534934,"id":1555,"parentId":1161,"tags":{},"startTime":1779982308352,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":1232923,"timestamp":1489338303179,"id":879,"parentId":874,"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":1779982307120,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":767,"timestamp":1489339537184,"id":1557,"parentId":1556,"tags":{},"startTime":1779982308354,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":31,"timestamp":1489339537959,"id":1558,"parentId":1556,"tags":{},"startTime":1779982308355,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":1265,"timestamp":1489339536896,"id":1556,"parentId":1546,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1779982308354,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":715,"timestamp":1489339539537,"id":1560,"parentId":1559,"tags":{},"startTime":1779982308356,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":47,"timestamp":1489339540263,"id":1561,"parentId":1559,"tags":{},"startTime":1779982308357,"traceId":"05a116f03e4ce418"},{"name":"build-module-js","duration":1997,"timestamp":1489339539381,"id":1559,"parentId":1556,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1779982308356,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":1238556,"timestamp":1489338303062,"id":876,"parentId":874,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1779982307120,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":1238373,"timestamp":1489338303254,"id":880,"parentId":874,"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":1779982307120,"traceId":"05a116f03e4ce418"},{"name":"make","duration":1245591,"timestamp":1489338296131,"id":874,"parentId":873,"tags":{},"startTime":1779982307113,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":1996,"timestamp":1489339546262,"id":1563,"parentId":1562,"tags":{},"startTime":1779982308363,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":3,"timestamp":1489339548278,"id":1565,"parentId":1562,"tags":{},"startTime":1779982308365,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":121,"timestamp":1489339548321,"id":1566,"parentId":1562,"tags":{},"startTime":1779982308365,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":4,"timestamp":1489339548491,"id":1567,"parentId":1562,"tags":{},"startTime":1779982308365,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":3,"timestamp":1489339548505,"id":1568,"parentId":1562,"tags":{},"startTime":1779982308365,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":906,"timestamp":1489339548270,"id":1564,"parentId":1562,"tags":{},"startTime":1779982308365,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":4361,"timestamp":1489339550569,"id":1569,"parentId":1562,"tags":{},"startTime":1779982308367,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":10315,"timestamp":1489339554946,"id":1570,"parentId":1562,"tags":{},"startTime":1779982308372,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":8841,"timestamp":1489339566931,"id":1571,"parentId":1562,"tags":{},"startTime":1779982308384,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":375,"timestamp":1489339575771,"id":1572,"parentId":1562,"tags":{},"startTime":1779982308392,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":82,"timestamp":1489339576130,"id":1573,"parentId":1562,"tags":{},"startTime":1779982308393,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":91238,"timestamp":1489339576216,"id":1574,"parentId":1562,"tags":{},"startTime":1779982308393,"traceId":"05a116f03e4ce418"},{"name":"NextJsBuildManifest-generateClientManifest","duration":234,"timestamp":1489339668706,"id":1576,"parentId":873,"tags":{},"startTime":1779982308485,"traceId":"05a116f03e4ce418"},{"name":"NextJsBuildManifest-createassets","duration":570,"timestamp":1489339668374,"id":1575,"parentId":873,"tags":{},"startTime":1779982308485,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":126886,"timestamp":1489339545552,"id":1562,"parentId":873,"tags":{},"startTime":1779982308362,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":1377499,"timestamp":1489338295031,"id":873,"parentId":262,"tags":{"name":"client"},"startTime":1779982307112,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":40662,"timestamp":1489339672576,"id":1577,"parentId":262,"tags":{},"startTime":1779982308489,"traceId":"05a116f03e4ce418"},{"name":"compile-path","duration":2319696,"timestamp":1489337394369,"id":117,"tags":{"trigger":"/dashboard","isTurbopack":false},"startTime":1779982306211,"traceId":"05a116f03e4ce418"},{"name":"webpack-invalidated-client","duration":2012211,"timestamp":1489337702191,"id":262,"parentId":3,"tags":{"trigger":"manual"},"startTime":1779982306519,"traceId":"05a116f03e4ce418"}] +[{"name":"handle-request","duration":2446589,"timestamp":1489337374824,"id":115,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1779982306192,"traceId":"05a116f03e4ce418"},{"name":"memory-usage","duration":0,"timestamp":1489339821472,"id":1578,"parentId":115,"tags":{"url":"/dashboard","memory.rss":"474824704","memory.heapUsed":"280760608","memory.heapTotal":"312262656"},"startTime":1779982308638,"traceId":"05a116f03e4ce418"},{"name":"handle-request","duration":734669,"timestamp":1489339100279,"id":1494,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1779982307917,"traceId":"05a116f03e4ce418"},{"name":"memory-usage","duration":0,"timestamp":1489339834977,"id":1579,"parentId":1494,"tags":{"url":"/dashboard","memory.rss":"475348992","memory.heapUsed":"282959784","memory.heapTotal":"312786944"},"startTime":1779982308652,"traceId":"05a116f03e4ce418"},{"name":"client-success","duration":102,"timestamp":1489342112214,"id":1580,"parentId":3,"tags":{},"startTime":1779982310929,"traceId":"05a116f03e4ce418"},{"name":"handle-request","duration":40970,"timestamp":1489354927734,"id":1581,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1779982323744,"traceId":"05a116f03e4ce418"},{"name":"memory-usage","duration":0,"timestamp":1489354968800,"id":1582,"parentId":1581,"tags":{"url":"/dashboard","memory.rss":"123404288","memory.heapUsed":"292366232","memory.heapTotal":"321699840"},"startTime":1779982323785,"traceId":"05a116f03e4ce418"},{"name":"client-success","duration":8,"timestamp":1489355766069,"id":1583,"parentId":3,"tags":{},"startTime":1779982324583,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":22169,"timestamp":1489360137856,"id":1590,"parentId":1588,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1779982328955,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":25226,"timestamp":1489360152072,"id":1591,"parentId":1589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%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":1779982328969,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":4392,"timestamp":1489360182000,"id":1594,"parentId":1593,"tags":{},"startTime":1779982328999,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":4579,"timestamp":1489360181820,"id":1593,"parentId":1592,"tags":{},"startTime":1779982328999,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":5806,"timestamp":1489360181520,"id":1592,"parentId":1591,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1779982328998,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":52096,"timestamp":1489360137289,"id":1589,"parentId":1588,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%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":1779982328954,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":666,"timestamp":1489360207540,"id":1604,"parentId":1587,"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(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1779982329024,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9353,"timestamp":1489360213191,"id":1607,"parentId":1606,"tags":{},"startTime":1779982329030,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9519,"timestamp":1489360213033,"id":1606,"parentId":1605,"tags":{},"startTime":1779982329030,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":21540,"timestamp":1489360212621,"id":1605,"parentId":1604,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1779982329029,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":5788,"timestamp":1489360252204,"id":1610,"parentId":1609,"tags":{},"startTime":1779982329069,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6025,"timestamp":1489360252002,"id":1609,"parentId":1608,"tags":{},"startTime":1779982329069,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":9482,"timestamp":1489360251854,"id":1608,"parentId":1605,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1779982329069,"traceId":"05a116f03e4ce418"},{"name":"make","duration":142863,"timestamp":1489360126762,"id":1588,"parentId":1587,"tags":{},"startTime":1779982328943,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":2092,"timestamp":1489360276169,"id":1612,"parentId":1611,"tags":{},"startTime":1779982329093,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":11,"timestamp":1489360278407,"id":1614,"parentId":1611,"tags":{},"startTime":1779982329095,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":2520,"timestamp":1489360278457,"id":1615,"parentId":1611,"tags":{},"startTime":1779982329095,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":5,"timestamp":1489360281011,"id":1616,"parentId":1611,"tags":{},"startTime":1779982329098,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":3,"timestamp":1489360281031,"id":1617,"parentId":1611,"tags":{},"startTime":1779982329098,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":3589,"timestamp":1489360278366,"id":1613,"parentId":1611,"tags":{},"startTime":1779982329095,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":884,"timestamp":1489360283688,"id":1618,"parentId":1611,"tags":{},"startTime":1779982329100,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":7331,"timestamp":1489360284640,"id":1619,"parentId":1611,"tags":{},"startTime":1779982329101,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":3725,"timestamp":1489360295990,"id":1620,"parentId":1611,"tags":{},"startTime":1779982329113,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":573,"timestamp":1489360299713,"id":1621,"parentId":1611,"tags":{},"startTime":1779982329116,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":61,"timestamp":1489360300273,"id":1622,"parentId":1611,"tags":{},"startTime":1779982329117,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":7062,"timestamp":1489360300338,"id":1623,"parentId":1611,"tags":{},"startTime":1779982329117,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":34320,"timestamp":1489360275418,"id":1611,"parentId":1587,"tags":{},"startTime":1779982329092,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":187033,"timestamp":1489360124410,"id":1587,"parentId":1585,"tags":{"name":"server"},"startTime":1779982328941,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":9031,"timestamp":1489360311558,"id":1624,"parentId":1585,"tags":{},"startTime":1779982329128,"traceId":"05a116f03e4ce418"},{"name":"webpack-invalidated-server","duration":209054,"timestamp":1489360111964,"id":1585,"parentId":3,"tags":{"trigger":"manual"},"startTime":1779982328929,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":15188,"timestamp":1489360338001,"id":1627,"parentId":1626,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1779982329155,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":19878,"timestamp":1489360338066,"id":1629,"parentId":1626,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1779982329155,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":1555,"timestamp":1489360361744,"id":1637,"parentId":1633,"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(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1779982329178,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":30017,"timestamp":1489360338080,"id":1632,"parentId":1626,"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":1779982329155,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":31374,"timestamp":1489360338052,"id":1628,"parentId":1626,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1779982329155,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":31363,"timestamp":1489360338073,"id":1630,"parentId":1626,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1779982329155,"traceId":"05a116f03e4ce418"},{"name":"read-resource","duration":11776,"timestamp":1489360358666,"id":1636,"parentId":1635,"tags":{},"startTime":1779982329175,"traceId":"05a116f03e4ce418"},{"name":"postcss-process","duration":68363,"timestamp":1489360370660,"id":1639,"parentId":1638,"tags":{},"startTime":1779982329187,"traceId":"05a116f03e4ce418"},{"name":"postcss-loader","duration":69024,"timestamp":1489360370620,"id":1638,"parentId":1635,"tags":{},"startTime":1779982329187,"traceId":"05a116f03e4ce418"},{"name":"css-loader","duration":13133,"timestamp":1489360439673,"id":1640,"parentId":1635,"tags":{"astUsed":"true"},"startTime":1779982329256,"traceId":"05a116f03e4ce418"},{"name":"build-module-css","duration":95490,"timestamp":1489360358550,"id":1635,"parentId":1634,"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":1779982329175,"traceId":"05a116f03e4ce418"},{"name":"build-module-css","duration":112338,"timestamp":1489360345543,"id":1634,"parentId":1625,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1779982329162,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":24,"timestamp":1489360458023,"id":1644,"parentId":1634,"tags":{},"startTime":1779982329275,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":120045,"timestamp":1489360338076,"id":1631,"parentId":1626,"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":1779982329155,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":9178,"timestamp":1489360454891,"id":1643,"parentId":1642,"tags":{},"startTime":1779982329272,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":9254,"timestamp":1489360454822,"id":1642,"parentId":1641,"tags":{},"startTime":1779982329272,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":18317,"timestamp":1489360454662,"id":1641,"parentId":1637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1779982329271,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3899,"timestamp":1489360474798,"id":1647,"parentId":1646,"tags":{},"startTime":1779982329291,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3958,"timestamp":1489360474745,"id":1646,"parentId":1645,"tags":{},"startTime":1779982329291,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":5082,"timestamp":1489360474617,"id":1645,"parentId":1641,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1779982329291,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":141975,"timestamp":1489360338083,"id":1633,"parentId":1626,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1779982329155,"traceId":"05a116f03e4ce418"},{"name":"make","duration":153734,"timestamp":1489360326447,"id":1626,"parentId":1625,"tags":{},"startTime":1779982329143,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":1322,"timestamp":1489360482772,"id":1649,"parentId":1648,"tags":{},"startTime":1779982329299,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":3,"timestamp":1489360484111,"id":1651,"parentId":1648,"tags":{},"startTime":1779982329301,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":52,"timestamp":1489360484123,"id":1652,"parentId":1648,"tags":{},"startTime":1779982329301,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":11,"timestamp":1489360484190,"id":1653,"parentId":1648,"tags":{},"startTime":1779982329301,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":3,"timestamp":1489360484214,"id":1654,"parentId":1648,"tags":{},"startTime":1779982329301,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":817,"timestamp":1489360484106,"id":1650,"parentId":1648,"tags":{},"startTime":1779982329301,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":370,"timestamp":1489360485751,"id":1655,"parentId":1648,"tags":{},"startTime":1779982329302,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":2220,"timestamp":1489360486133,"id":1656,"parentId":1648,"tags":{},"startTime":1779982329303,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":2649,"timestamp":1489360489367,"id":1657,"parentId":1648,"tags":{},"startTime":1779982329306,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":109,"timestamp":1489360492015,"id":1658,"parentId":1648,"tags":{},"startTime":1779982329309,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":66,"timestamp":1489360492114,"id":1659,"parentId":1648,"tags":{},"startTime":1779982329309,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":7652,"timestamp":1489360492184,"id":1660,"parentId":1648,"tags":{},"startTime":1779982329309,"traceId":"05a116f03e4ce418"},{"name":"NextJsBuildManifest-generateClientManifest","duration":66,"timestamp":1489360501141,"id":1662,"parentId":1625,"tags":{},"startTime":1779982329318,"traceId":"05a116f03e4ce418"},{"name":"NextJsBuildManifest-createassets","duration":123,"timestamp":1489360501088,"id":1661,"parentId":1625,"tags":{},"startTime":1779982329318,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":20579,"timestamp":1489360481978,"id":1648,"parentId":1625,"tags":{},"startTime":1779982329299,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":177406,"timestamp":1489360325195,"id":1625,"parentId":1603,"tags":{"name":"client"},"startTime":1779982329142,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":4150,"timestamp":1489360502679,"id":1663,"parentId":1603,"tags":{},"startTime":1779982329319,"traceId":"05a116f03e4ce418"},{"name":"compile-path","duration":395416,"timestamp":1489360112048,"id":1586,"tags":{"trigger":"/recommendations","isTurbopack":false},"startTime":1779982328929,"traceId":"05a116f03e4ce418"},{"name":"webpack-invalidated-client","duration":308461,"timestamp":1489360199233,"id":1603,"parentId":3,"tags":{"trigger":"manual"},"startTime":1779982329016,"traceId":"05a116f03e4ce418"}] +[{"name":"client-success","duration":4,"timestamp":1489360510911,"id":1664,"parentId":3,"tags":{},"startTime":1779982329328,"traceId":"05a116f03e4ce418"},{"name":"handle-request","duration":429416,"timestamp":1489360100941,"id":1584,"tags":{"url":"/recommendations?_rsc=fd642","isTurbopack":false},"startTime":1779982328918,"traceId":"05a116f03e4ce418"},{"name":"memory-usage","duration":0,"timestamp":1489360530398,"id":1665,"parentId":1584,"tags":{"url":"/recommendations?_rsc=fd642","memory.rss":"373538816","memory.heapUsed":"216691968","memory.heapTotal":"300138496"},"startTime":1779982329347,"traceId":"05a116f03e4ce418"},{"name":"client-hmr-latency","duration":342000,"timestamp":1489360200088,"id":1667,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/dashboard","isPageHidden":false},"startTime":1779982329361,"traceId":"05a116f03e4ce418"},{"name":"handle-request","duration":12865,"timestamp":1489360536175,"id":1666,"tags":{"url":"/recommendations?_rsc=ksdvm","isTurbopack":false},"startTime":1779982329353,"traceId":"05a116f03e4ce418"},{"name":"memory-usage","duration":0,"timestamp":1489360549092,"id":1668,"parentId":1666,"tags":{"url":"/recommendations?_rsc=ksdvm","memory.rss":"373604352","memory.heapUsed":"218743088","memory.heapTotal":"300138496"},"startTime":1779982329366,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":11514,"timestamp":1489365420857,"id":1675,"parentId":1673,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%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":1779982334238,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":13939,"timestamp":1489365420759,"id":1674,"parentId":1673,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%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":1779982334237,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":13530,"timestamp":1489365431256,"id":1677,"parentId":1676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%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":1779982334248,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":3506,"timestamp":1489365447994,"id":1680,"parentId":1679,"tags":{},"startTime":1779982334265,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":3597,"timestamp":1489365447911,"id":1679,"parentId":1678,"tags":{},"startTime":1779982334265,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":4279,"timestamp":1489365447756,"id":1678,"parentId":1677,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"rsc"},"startTime":1779982334264,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":32973,"timestamp":1489365420875,"id":1676,"parentId":1673,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%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":1779982334238,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":647,"timestamp":1489365464015,"id":1694,"parentId":1672,"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(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1779982334281,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":8271,"timestamp":1489365466998,"id":1697,"parentId":1696,"tags":{},"startTime":1779982334284,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":8376,"timestamp":1489365466905,"id":1696,"parentId":1695,"tags":{},"startTime":1779982334284,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":12546,"timestamp":1489365466654,"id":1695,"parentId":1694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"ssr"},"startTime":1779982334283,"traceId":"05a116f03e4ce418"},{"name":"make","duration":66647,"timestamp":1489365418784,"id":1673,"parentId":1672,"tags":{},"startTime":1779982334235,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":1081,"timestamp":1489365487916,"id":1699,"parentId":1698,"tags":{},"startTime":1779982334305,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":3,"timestamp":1489365489021,"id":1701,"parentId":1698,"tags":{},"startTime":1779982334306,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":1076,"timestamp":1489365489035,"id":1702,"parentId":1698,"tags":{},"startTime":1779982334306,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":6,"timestamp":1489365490142,"id":1703,"parentId":1698,"tags":{},"startTime":1779982334307,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":4,"timestamp":1489365490164,"id":1704,"parentId":1698,"tags":{},"startTime":1779982334307,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":1609,"timestamp":1489365489016,"id":1700,"parentId":1698,"tags":{},"startTime":1779982334306,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":377,"timestamp":1489365491442,"id":1705,"parentId":1698,"tags":{},"startTime":1779982334308,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":4267,"timestamp":1489365491825,"id":1706,"parentId":1698,"tags":{},"startTime":1779982334309,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":577,"timestamp":1489365496857,"id":1707,"parentId":1698,"tags":{},"startTime":1779982334314,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":43,"timestamp":1489365497434,"id":1708,"parentId":1698,"tags":{},"startTime":1779982334314,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":35,"timestamp":1489365497471,"id":1709,"parentId":1698,"tags":{},"startTime":1779982334314,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":2612,"timestamp":1489365497509,"id":1710,"parentId":1698,"tags":{},"startTime":1779982334314,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":14273,"timestamp":1489365487239,"id":1698,"parentId":1672,"tags":{},"startTime":1779982334304,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":84318,"timestamp":1489365418465,"id":1672,"parentId":1670,"tags":{"name":"server"},"startTime":1779982334235,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":2290,"timestamp":1489365502805,"id":1711,"parentId":1670,"tags":{},"startTime":1779982334320,"traceId":"05a116f03e4ce418"},{"name":"webpack-invalidated-server","duration":89763,"timestamp":1489365415779,"id":1670,"parentId":3,"tags":{"trigger":"manual"},"startTime":1779982334232,"traceId":"05a116f03e4ce418"},{"name":"build-module","duration":944,"timestamp":1489365516358,"id":1722,"parentId":1721,"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(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1779982334333,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":7607,"timestamp":1489365511345,"id":1714,"parentId":1713,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1779982334328,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":8076,"timestamp":1489365511453,"id":1720,"parentId":1713,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1779982334328,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":9165,"timestamp":1489365511438,"id":1716,"parentId":1713,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1779982334328,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":9378,"timestamp":1489365511444,"id":1718,"parentId":1713,"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":1779982334328,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":10532,"timestamp":1489365511447,"id":1719,"parentId":1713,"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":1779982334328,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":10589,"timestamp":1489365511425,"id":1715,"parentId":1713,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1779982334328,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":10576,"timestamp":1489365511442,"id":1717,"parentId":1713,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1779982334328,"traceId":"05a116f03e4ce418"},{"name":"next-swc-transform","duration":6618,"timestamp":1489365521571,"id":1725,"parentId":1724,"tags":{},"startTime":1779982334338,"traceId":"05a116f03e4ce418"},{"name":"next-swc-loader","duration":6677,"timestamp":1489365521515,"id":1724,"parentId":1723,"tags":{},"startTime":1779982334338,"traceId":"05a116f03e4ce418"},{"name":"build-module-tsx","duration":10904,"timestamp":1489365521360,"id":1723,"parentId":1722,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"app-pages-browser"},"startTime":1779982334338,"traceId":"05a116f03e4ce418"},{"name":"add-entry","duration":26645,"timestamp":1489365511455,"id":1721,"parentId":1713,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1779982334328,"traceId":"05a116f03e4ce418"},{"name":"make","duration":31093,"timestamp":1489365507050,"id":1713,"parentId":1712,"tags":{},"startTime":1779982334324,"traceId":"05a116f03e4ce418"},{"name":"chunk-graph","duration":694,"timestamp":1489365539718,"id":1727,"parentId":1726,"tags":{},"startTime":1779982334356,"traceId":"05a116f03e4ce418"},{"name":"optimize-modules","duration":4,"timestamp":1489365540434,"id":1729,"parentId":1726,"tags":{},"startTime":1779982334357,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunks","duration":29,"timestamp":1489365540448,"id":1730,"parentId":1726,"tags":{},"startTime":1779982334357,"traceId":"05a116f03e4ce418"},{"name":"optimize-tree","duration":5,"timestamp":1489365540490,"id":1731,"parentId":1726,"tags":{},"startTime":1779982334357,"traceId":"05a116f03e4ce418"},{"name":"optimize-chunk-modules","duration":2,"timestamp":1489365540507,"id":1732,"parentId":1726,"tags":{},"startTime":1779982334357,"traceId":"05a116f03e4ce418"},{"name":"optimize","duration":481,"timestamp":1489365540423,"id":1728,"parentId":1726,"tags":{},"startTime":1779982334357,"traceId":"05a116f03e4ce418"},{"name":"module-hash","duration":244,"timestamp":1489365541531,"id":1733,"parentId":1726,"tags":{},"startTime":1779982334358,"traceId":"05a116f03e4ce418"},{"name":"code-generation","duration":1236,"timestamp":1489365541783,"id":1734,"parentId":1726,"tags":{},"startTime":1779982334358,"traceId":"05a116f03e4ce418"},{"name":"hash","duration":2608,"timestamp":1489365543905,"id":1735,"parentId":1726,"tags":{},"startTime":1779982334361,"traceId":"05a116f03e4ce418"},{"name":"code-generation-jobs","duration":100,"timestamp":1489365546513,"id":1736,"parentId":1726,"tags":{},"startTime":1779982334363,"traceId":"05a116f03e4ce418"},{"name":"module-assets","duration":41,"timestamp":1489365546606,"id":1737,"parentId":1726,"tags":{},"startTime":1779982334363,"traceId":"05a116f03e4ce418"},{"name":"create-chunk-assets","duration":2808,"timestamp":1489365546650,"id":1738,"parentId":1726,"tags":{},"startTime":1779982334363,"traceId":"05a116f03e4ce418"},{"name":"NextJsBuildManifest-generateClientManifest","duration":49,"timestamp":1489365549892,"id":1740,"parentId":1712,"tags":{},"startTime":1779982334367,"traceId":"05a116f03e4ce418"},{"name":"NextJsBuildManifest-createassets","duration":108,"timestamp":1489365549836,"id":1739,"parentId":1712,"tags":{},"startTime":1779982334367,"traceId":"05a116f03e4ce418"},{"name":"seal","duration":11864,"timestamp":1489365539026,"id":1726,"parentId":1712,"tags":{},"startTime":1779982334356,"traceId":"05a116f03e4ce418"},{"name":"webpack-compilation","duration":44313,"timestamp":1489365506607,"id":1712,"parentId":1693,"tags":{"name":"client"},"startTime":1779982334323,"traceId":"05a116f03e4ce418"},{"name":"emit","duration":4700,"timestamp":1489365550939,"id":1741,"parentId":1693,"tags":{},"startTime":1779982334368,"traceId":"05a116f03e4ce418"},{"name":"compile-path","duration":140120,"timestamp":1489365416041,"id":1671,"tags":{"trigger":"/strategy","isTurbopack":false},"startTime":1779982334233,"traceId":"05a116f03e4ce418"},{"name":"webpack-invalidated-client","duration":101221,"timestamp":1489365455259,"id":1693,"parentId":3,"tags":{"trigger":"manual"},"startTime":1779982334272,"traceId":"05a116f03e4ce418"}] diff --git a/frontend/src/app/(auth)/dashboard/page.tsx b/frontend/src/app/(auth)/dashboard/page.tsx index b383e523..a1296969 100644 --- a/frontend/src/app/(auth)/dashboard/page.tsx +++ b/frontend/src/app/(auth)/dashboard/page.tsx @@ -250,21 +250,28 @@ export default function DashboardPage() {
- - +
+ + +
); @@ -359,32 +366,89 @@ function DecisionHero({ ); } -function MarketSnapshot({ +function OpportunityBoard({ + sectors, + focusQueue, + actionableCount, + watchCount, +}: { + sectors: SectorData[]; + focusQueue: RecommendationData[]; + actionableCount: number; + watchCount: number; +}) { + const leadingSectors = sectors.slice(0, 5); + + return ( +
+
+
+
Opportunity
+

今天优先看的方向

+
+
+ + +
+
+ +
+
+
+
重点板块
+ 查看全部 +
+
+ {leadingSectors.length ? leadingSectors.map((sector, index) => ( + + )) : ( +
暂无主线板块
+ )} +
+
+ +
+
+
重点标的
+ 进入推荐池 +
+
+ {focusQueue.length ? focusQueue.map((rec) => ( + + )) : ( +
暂无重点标的
+ )} +
+
+
+
+ ); +} + +function CompactMarketEvidence({ marketTemperature, indices, - sectors, summary, }: { marketTemperature: MarketTemperatureData | null; indices: IndexOverview[]; - sectors: SectorData[]; summary: ReturnType; }) { - const leadingSectors = sectors.slice(0, 4); const majorIndices = indices.slice(0, 3); return ( -
+

盘面依据

+

用于校验仓位和风险,不作为主视图。

温度 {Math.round(marketTemperature?.temperature ?? 0)}
-
+
@@ -392,49 +456,19 @@ function MarketSnapshot({
{majorIndices.length ? ( -
+
{majorIndices.map((item) => ( -
-
{item.name}
-
- {item.close.toFixed(2)} - = 0 ? "text-red-400" : "text-emerald-400"}`}> - {item.pct_chg >= 0 ? "+" : ""}{item.pct_chg.toFixed(2)}% - -
+
+ {item.name} + = 0 ? "text-red-400" : "text-emerald-400"}`}> + {item.pct_chg >= 0 ? "+" : ""}{item.pct_chg.toFixed(2)}% +
))}
) : null} - {leadingSectors.length ? ( -
-
-
今日盯住的板块
-
主线优先
-
-
- {leadingSectors.map((sector) => { - const pct = sector.realtime_pct_change ?? sector.pct_change; - return ( -
-
-
{sector.sector_name}
-
- {sector.limit_up_count > 0 ? `${sector.limit_up_count} 涨停` : "无涨停"} · {sector.stage || "mid"} -
-
- = 0 ? "text-red-400" : "text-emerald-400"}`}> - {pct >= 0 ? "+" : ""}{pct.toFixed(2)}% - -
- ); - })} -
-
- ) : null} - -
+
结论:{summary.headline}
@@ -564,6 +598,38 @@ function SectorChip({ sector }: { sector: SectorData }) { ); } +function PrioritySectorCard({ sector, rank }: { sector: SectorData; rank: number }) { + const pct = sector.realtime_pct_change ?? sector.pct_change; + const leaders = (sector.leading_stocks_realtime ?? sector.leading_stocks ?? []).slice(0, 3); + return ( + +
+
+
+ + {rank} + +
{sector.sector_name}
+
+
+ {sector.stage || "mid"} + {sector.limit_up_count || 0} 涨停 + {sector.member_count || 0} 成员 +
+
+
= 0 ? "text-red-400" : "text-emerald-400"}`}> + {pct >= 0 ? "+" : ""}{pct.toFixed(2)}% +
+
+ {leaders.length ? ( +
+ 前排:{leaders.map((item) => item.name).join("、")} +
+ ) : null} +
+ ); +} + function FocusStockCard({ rec }: { rec: RecommendationData }) { const stripeClass = rec.action_plan === "可操作" @@ -619,6 +685,46 @@ function FocusStockCard({ rec }: { rec: RecommendationData }) { ); } +function LargeFocusStockCard({ rec }: { rec: RecommendationData }) { + const isActionable = rec.action_plan === "可操作"; + const badgeClass = isActionable + ? "border-red-500/15 bg-red-500/[0.08] text-red-400" + : rec.action_plan === "重点关注" + ? "border-amber-500/15 bg-amber-500/[0.08] text-amber-400" + : "border-border-subtle bg-surface-2 text-text-muted"; + return ( + +
+
+
{rec.name}
+
{rec.ts_code}
+
+ + {rec.action_plan ?? "观察"} + +
+
+ + + +
+
+ {rec.decision_trace?.headline ?? rec.trigger_condition ?? rec.entry_timing ?? rec.reasons?.[0] ?? "等待新的触发条件。"} +
+ {rec.sector ?
{rec.sector}
: null} +
+ ); +} + +function TinyInfo({ label, value }: { label: string; value: string | number }) { + return ( +
+
{label}
+
{value}
+
+ ); +} + function EvidenceStat({ label, value, tone }: { label: string; value: number; tone: string }) { return (
diff --git a/frontend/src/app/(auth)/layout.tsx b/frontend/src/app/(auth)/layout.tsx index ce959a90..80a70f1b 100644 --- a/frontend/src/app/(auth)/layout.tsx +++ b/frontend/src/app/(auth)/layout.tsx @@ -1,47 +1,37 @@ import { AuthGuard } from "@/components/auth-guard"; import { UserMenu } from "@/components/user-menu"; -import { SidebarNav, MobileBottomNav } from "@/components/nav"; +import { SidebarNav } from "@/components/nav"; export default function AuthLayout({ children }: { children: React.ReactNode }) { return ( - {/* Desktop: sidebar + main */}
- {/* Desktop sidebar */} -
@@ -176,9 +184,9 @@ export default function OpsLogsPage() {
- {[ - { key: "funnel", label: "筛选漏斗" }, + {[ { key: "errors", label: "系统错误" }, + { key: "funnel", label: "筛选漏斗" }, ].map((item) => ( - -
- - +
+ {inviteCodes.length ? inviteCodes.map((item) => ( + handleToggleInvite(item.id)} + /> + )) : ( +
暂无邀请码
)}
+ +
+
+ ) : ( +
+
+
+

数据资产

+

这里管理的是系统运行产生的业务数据,不管理用户账号本身。

- )} +
+ + + + +
+
+ 当前推荐记录日期范围:{dataStats?.earliest_date || "-"} 到 {dataStats?.latest_date || "-"} +
+
- {resetResult && ( -
-
setResetResult(null)} /> -
-

密码已重置

-
-
- 邮箱 - {resetResult.email} +
+

维护动作

+
+ {RESET_OPTIONS.map((item) => ( +
-

请妥善保管新密码,此密码仅显示一次

-
- + ))} +
+ + {resetMode === "date_range" ? ( +
+ + setBeforeDate(event.target.value)} + className="w-full rounded-xl border border-border-default bg-surface-2 px-3 py-2 text-sm text-text-primary focus:outline-none focus:ring-1 focus:ring-amber-500/30" + /> +
+ ) : null} + +
+ 将执行:{selectedReset.scope} +
+ + {confirmReset ? ( +
+
确认执行这个数据维护动作?
+
+ -
-
- )} + ) : ( + + )} +
)} - {tab === "data" && dataStats && ( -
-

数据统计 & 重置

-
-
推荐记录
{dataStats.recommendations}
-
跟踪数据
{dataStats.tracking}
-
低分记录
{dataStats.low_score_count}
-
板块热度
{dataStats.sector_heat}
-
市场温度
{dataStats.market_temperature}
-
日期范围
{dataStats.earliest_date || "-"} ~ {dataStats.latest_date || "-"}
-
-
- {[ - { key: "low_score", label: "清理低分 (<60)" }, - { key: "date_range", label: "按日期清除" }, - { key: "recommendations", label: "清除推荐" }, - { key: "all", label: "全部重置" }, - ].map(({ key, label }) => ( - - ))} -
- {resetMode === "date_range" && ( -
- - setBeforeDate(e.target.value)} className="w-full sm:w-auto bg-surface-2 border border-border-default rounded-lg px-3 py-1.5 text-sm text-text-primary focus:outline-none focus:ring-1 focus:ring-amber-500/30" /> -
- )} - {resetResultMsg && ( -
{resetResultMsg}
- )} - {confirmReset ? ( -
-

- {resetMode === "all" ? "确认清除所有数据?此操作不可撤销!" : resetMode === "recommendations" ? "确认清除推荐和跟踪数据?" : resetMode === "date_range" ? `确认清除 ${beforeDate} 之前的数据?` : "确认删除评分<60的推荐?"} -

- - + {showInviteDialog ? ( + setShowInviteDialog(false)}> + {createdInviteCode ? ( +
+

邀请码创建成功

+
+
注册链接
+
{buildInviteLink(createdInviteCode)}
+
+
+ + +
+
) : ( - +
+

新建邀请码

+ setInviteCode(event.target.value)} placeholder="邀请码,例如 ASTOCK-VIP-01" className="w-full rounded-xl border border-border-default bg-surface-2 px-4 py-3 text-sm text-text-primary focus:outline-none focus:ring-1 focus:ring-amber-500/30" /> + setInviteDescription(event.target.value)} placeholder="说明,例如 内测第一批" className="w-full rounded-xl border border-border-default bg-surface-2 px-4 py-3 text-sm text-text-primary focus:outline-none focus:ring-1 focus:ring-amber-500/30" /> + setInviteMaxUses(event.target.value)} placeholder="邀请人数上限" className="w-full rounded-xl border border-border-default bg-surface-2 px-4 py-3 text-sm text-text-primary focus:outline-none focus:ring-1 focus:ring-amber-500/30" /> +
+ + +
+
)} -
- )} + + ) : null} - {tab === "ops" && ( -
- {[ - { href: "/ops-logs", title: "运行日志", desc: "筛选漏斗、系统错误和扫描批次" }, - { href: "/data-health", title: "数据源健康", desc: "东方财富、腾讯、Tushare、AKShare 状态" }, - { href: "/tasks", title: "任务中心", desc: "新闻、扫描、复盘、策略校准任务" }, - ].map((item) => ( - -
{item.title}
-
{item.desc}
-
打开
- - ))} -
- )} + {resetResult ? ( + setResetResult(null)}> +
+

密码已重置

+
+
邮箱{resetResult.email}
+
新密码{resetResult.password}
+
+ +
+
+ ) : null}
); } + +function InviteCard({ + item, + link, + copiedKey, + onCopy, + onToggle, +}: { + item: InviteCodeItem; + link: string; + copiedKey: string; + onCopy: (text: string, key: string) => void; + onToggle: () => void; +}) { + const remaining = Math.max(item.max_uses - item.used_count, 0); + const exhausted = item.max_uses > 0 && item.used_count >= item.max_uses; + return ( +
+
+
+
+ {item.code} + {item.is_active ? "启用" : "停用"} + {exhausted ? 已用完 : null} +
+
{item.description || "无说明"}
+
+ +
+
+ + + +
+
+
注册链接
+
{link}
+
+
+ + +
+
+ ); +} + +function DataBucket({ title, description, stats }: { title: string; description: string; stats: Array<[string, number]> }) { + return ( +
+
{title}
+
{description}
+
+ {stats.map(([label, value]) => ( + + ))} +
+
+ ); +} + +function Metric({ label, value }: { label: string; value: number }) { + return ( +
+
{label}
+
{value}
+
+ ); +} + +function MiniStat({ label, value }: { label: string; value: number }) { + return ( +
+
{label}
+
{value}
+
+ ); +} + +function Badge({ children, tone }: { children: React.ReactNode; tone: "green" | "red" | "amber" | "muted" }) { + const className = + tone === "green" + ? "border-emerald-500/15 bg-emerald-500/10 text-emerald-300" + : tone === "red" + ? "border-red-500/15 bg-red-500/10 text-red-300" + : tone === "amber" + ? "border-amber-500/15 bg-amber-500/10 text-amber-300" + : "border-border-subtle bg-surface-2 text-text-muted"; + return {children}; +} + +function Modal({ children, onClose }: { children: React.ReactNode; onClose: () => void }) { + return ( +
+
+ ); +} + +function formatDateTime(value: string | null) { + if (!value) return "-"; + return new Date(value).toLocaleString("zh-CN"); +} + +function formatDeletedKey(key: string) { + const labels: Record = { + recommendation_tracking: "跟踪记录", + tracking: "跟踪记录", + recommendations: "推荐记录", + sector_heat: "板块热度", + market_temperature: "市场温度", + stock_diagnoses: "单股诊断", + watchlist_analyses: "自选分析", + error_logs: "错误日志", + scan_process_logs: "扫描日志", + research_observations: "候选观察", + }; + return labels[key] ?? key; +} diff --git a/frontend/src/app/(auth)/strategy/page.tsx b/frontend/src/app/(auth)/strategy/page.tsx index 9b0b7741..d0f1c207 100644 --- a/frontend/src/app/(auth)/strategy/page.tsx +++ b/frontend/src/app/(auth)/strategy/page.tsx @@ -140,7 +140,7 @@ export default function StrategyPage() { = 50 ? "up" : "down"} /> 0 ? "+" : ""}${(performance?.avg_return ?? 0).toFixed(2)}%`} tone={(performance?.avg_return ?? 0) >= 0 ? "up" : "down"} /> - +
@@ -550,9 +550,9 @@ function MetricCard({ }: { label: string; value: string | number; - tone?: "up" | "down"; + tone?: "up" | "down" | "risk"; }) { - const color = tone === "up" ? "text-red-400" : tone === "down" ? "text-emerald-400" : "text-text-primary"; + const color = tone === "up" ? "text-red-400" : tone === "down" ? "text-emerald-400" : tone === "risk" ? "text-amber-400" : "text-text-primary"; return (
diff --git a/frontend/src/app/(public)/login/page.tsx b/frontend/src/app/(public)/login/page.tsx index 8ca2f562..e63df452 100644 --- a/frontend/src/app/(public)/login/page.tsx +++ b/frontend/src/app/(public)/login/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { useMemo, useState } from "react"; +import { useEffect, useState } from "react"; import { useRouter } from "next/navigation"; import { useAuth } from "@/hooks/use-auth"; import { registerAPI, sendRegisterCodeAPI } from "@/lib/api"; @@ -28,7 +28,15 @@ export default function LoginPage() { const [sendingCode, setSendingCode] = useState(false); const [cooldown, setCooldown] = useState(0); - useMemo(() => { + useEffect(() => { + const params = new URLSearchParams(window.location.search); + const invitedCode = params.get("invite") || params.get("code"); + if (!invitedCode) return; + setTab("register"); + setInviteCode(invitedCode.trim().toUpperCase()); + }, []); + + useEffect(() => { if (!cooldown) return; const timer = window.setTimeout(() => setCooldown((v) => Math.max(v - 1, 0)), 1000); return () => window.clearTimeout(timer); diff --git a/frontend/src/components/nav.tsx b/frontend/src/components/nav.tsx index 58df1337..7a7008f4 100644 --- a/frontend/src/components/nav.tsx +++ b/frontend/src/components/nav.tsx @@ -141,14 +141,14 @@ function SideNavItem({ href, icon, label }: { href: string; icon: React.ReactNod return ( - {icon} - {label} + {icon} + {label} ); } @@ -157,7 +157,7 @@ export function SidebarNav() { const { user } = useAuth(); return ( -