diff --git a/backend/app/analysis/trend_scanner.py b/backend/app/analysis/trend_scanner.py index 71b84133..7d4d7e85 100644 --- a/backend/app/analysis/trend_scanner.py +++ b/backend/app/analysis/trend_scanner.py @@ -41,6 +41,7 @@ async def scan_trend_breakout( """ if not trade_date: trade_date = tushare_client.get_latest_trade_date() + trade_date = _resolve_daily_basic_trade_date(trade_date) logger.info(f"=== 趋势突破扫描 (trade_date={trade_date}) ===") @@ -80,8 +81,9 @@ def _bulk_pre_filter(trade_date: str) -> pd.DataFrame: logger.warning("Phase 1: 无法获取交易日历") return pd.DataFrame() - # 取最近 5 个交易日(含当日) - recent_dates = dates[-5:] if len(dates) >= 5 else dates + # 取目标日之前最近 5 个交易日,避免早盘把尚无日频行情的当天纳入窗口。 + eligible_dates = [d for d in dates if d <= trade_date] + recent_dates = eligible_dates[-5:] if len(eligible_dates) >= 5 else eligible_dates if trade_date not in recent_dates: recent_dates = recent_dates[-4:] + [trade_date] if len(recent_dates) >= 4 else [trade_date] @@ -198,6 +200,22 @@ def _bulk_pre_filter(trade_date: str) -> pd.DataFrame: return _filter_daily_basic(candidates, trade_date) +def _resolve_daily_basic_trade_date(preferred: str) -> str: + """盘中当日日频数据未更新时,回退到最近可用交易日。""" + dates = tushare_client.get_trade_dates() + if preferred and preferred not in dates: + dates = sorted([*dates, preferred]) + candidates = [d for d in dates if d <= preferred] if dates else [preferred] + for date in reversed(candidates[-8:]): + basic = tushare_client.get_daily_basic(date) + daily = tushare_client.get_daily_all(date) + if not basic.empty and not daily.empty: + if date != preferred: + logger.info("趋势扫描日频数据回退: %s -> %s", preferred, date) + return date + return preferred + + def _filter_daily_basic(candidates: pd.DataFrame, trade_date: str) -> pd.DataFrame: """使用 daily_basic 过滤市值、换手率,排除 ST 和次新""" basic = tushare_client.get_daily_basic(trade_date) diff --git a/backend/app/engine/screener.py b/backend/app/engine/screener.py index 5c95cccf..58d577b5 100644 --- a/backend/app/engine/screener.py +++ b/backend/app/engine/screener.py @@ -64,6 +64,7 @@ async def run_screening(trade_date: str = None, scan_session: str = "manual") -> latest_trade_date = tushare_client.get_latest_trade_date() intraday = should_prefer_realtime_today(latest_trade_date) scan_mode = "realtime_today" if intraday else "post_market" + analysis_trade_date = _resolve_daily_basic_trade_date(trade_date or latest_trade_date) logger.info(f"=== 筛选模式: {'今日实时' if intraday else '历史收盘'} ===") # ── 市场温度 ── @@ -103,8 +104,11 @@ async def run_screening(trade_date: str = None, scan_session: str = "manual") -> # ── Step 1: 主线主题定位 ── logger.info("=== Step 1: 主线主题定位 ===") all_themes = await get_today_realtime_sector_board(limit=30) if intraday else [] + if intraday: + daily_themes = merge_sectors_to_themes(scan_hot_sectors(analysis_trade_date), limit=30) + all_themes = _merge_realtime_and_daily_themes(all_themes, daily_themes) if not all_themes: - all_themes = merge_sectors_to_themes(scan_hot_sectors(trade_date), limit=30) + all_themes = merge_sectors_to_themes(scan_hot_sectors(analysis_trade_date), limit=30) # 前置过滤:只保留有资金或实时强度支撑、且非尾声的主题 hot_sectors = [ @@ -116,7 +120,7 @@ async def run_screening(trade_date: str = None, scan_session: str = "manual") -> logger.info("无合格主线主题(需要资金/实时强度+非尾声),回退到全部主题") hot_sectors = all_themes[:settings.top_sector_count] - hot_sectors = await _apply_catalyst_scores(hot_sectors) + hot_sectors = _calibrate_theme_lifecycle(await _apply_catalyst_scores(hot_sectors)) await log_scan_stage( scan_session=scan_session, scan_mode=scan_mode, @@ -148,7 +152,9 @@ async def run_screening(trade_date: str = None, scan_session: str = "manual") -> # 如果主题来自 Tushare 快照,盘中用实时行情更新后再次归一到主题。 if intraday and hot_sectors and not hot_sectors[0].is_realtime: - hot_sectors = merge_sectors_to_themes(await intraday_sector_scan(hot_sectors), limit=settings.top_sector_count) + hot_sectors = _calibrate_theme_lifecycle( + merge_sectors_to_themes(await intraday_sector_scan(hot_sectors), limit=settings.top_sector_count) + ) strategy_profile = await select_strategy_profile(market_temp, hot_sectors, intraday) logger.info( @@ -172,7 +178,7 @@ async def run_screening(trade_date: str = None, scan_session: str = "manual") -> candidate_metrics: dict = {} candidates = await _build_candidate_pool( hot_sectors=hot_sectors, - trade_date=trade_date, + trade_date=analysis_trade_date, intraday=intraday, market_temp=market_temp, metrics=candidate_metrics, @@ -267,10 +273,15 @@ async def run_screening(trade_date: str = None, scan_session: str = "manual") -> before_final_filter = len(recommendations) final_filter_reasons = _build_final_filter_reasons(recommendations, strategy_profile) - recommendations = [ + strict_recommendations = [ r for r in recommendations if _is_main_theme_recommendation(r) and r.score >= strategy_profile.min_score ] + recommendations = strict_recommendations or _build_empty_pool_fallback( + recommendations=recommendations, + strategy_profile=strategy_profile, + market_temp=market_temp, + ) after_theme_filter = len(recommendations) recommendations = _finalize_battle_plan( @@ -366,6 +377,111 @@ async def _apply_catalyst_scores(sectors: list[SectorInfo]) -> list[SectorInfo]: return sectors +def _calibrate_theme_lifecycle(sectors: list[SectorInfo]) -> list[SectorInfo]: + """校准主线生命周期,避免把高潮/尾声板块当作最佳买点。""" + for sector in sectors: + pct = sector.realtime_pct_change if sector.realtime_pct_change is not None else sector.pct_change + limit_up = sector.realtime_limit_up_count if sector.realtime_limit_up_count is not None else sector.limit_up_count + up = sector.realtime_up_count + down = sector.realtime_down_count + breadth = (up - down) if up is not None and down is not None else 0 + leader_pcts = [ + float(item.get("pct_chg", 0) or 0) + for item in (sector.leading_stocks_realtime or sector.leading_stocks or [])[:5] + if isinstance(item, dict) + ] + max_leader_pct = max(leader_pcts) if leader_pcts else 0 + + if pct < -1.5 or (sector.heat_score < 35 and sector.capital_inflow <= 0 and not sector.is_realtime): + next_stage = "end" + elif sector.days_continuous >= 4 and (pct >= 4 or limit_up >= 6 or max_leader_pct >= 16): + next_stage = "late" + elif sector.days_continuous <= 2 and pct > 0 and sector.heat_score >= 45 and limit_up <= 4: + next_stage = "early" + elif pct > 0 and (limit_up >= 2 or breadth > 0 or sector.heat_score >= 55): + next_stage = "mid" + else: + next_stage = sector.stage or "mid" + + sector.stage = next_stage + if next_stage == "early": + sector.heat_score = round(min(sector.heat_score + 6, 100), 1) + elif next_stage == "mid": + sector.heat_score = round(min(sector.heat_score + 2, 100), 1) + elif next_stage == "late": + sector.heat_score = round(max(sector.heat_score - 8, 0), 1) + elif next_stage == "end": + sector.heat_score = round(max(sector.heat_score - 22, 0), 1) + + lifecycle_note = f"生命周期={next_stage}, 涨幅={pct:.2f}%, 涨停={limit_up}, 连续={sector.days_continuous}" + sector.source_detail = f"{sector.source_detail};{lifecycle_note}" if sector.source_detail else lifecycle_note + + sectors.sort( + key=lambda s: ( + {"early": 3, "mid": 2, "late": 1, "end": 0}.get(s.stage, 1), + s.heat_score, + s.realtime_pct_change if s.realtime_pct_change is not None else s.pct_change, + ), + reverse=True, + ) + return sectors + + +def _merge_realtime_and_daily_themes(realtime: list[SectorInfo], daily: list[SectorInfo]) -> list[SectorInfo]: + """盘中用实时强度排序,同时保留日频主题成分映射作为兜底。""" + if not realtime: + return daily + merged: dict[str, SectorInfo] = {} + for sector in daily: + merged[sector.sector_name] = sector + for sector in realtime: + existing = merged.get(sector.sector_name) + if existing: + existing.realtime_pct_change = sector.realtime_pct_change + existing.realtime_limit_up_count = sector.realtime_limit_up_count + existing.realtime_amount = sector.realtime_amount + existing.realtime_turnover_rate = sector.realtime_turnover_rate + existing.realtime_up_count = sector.realtime_up_count + existing.realtime_down_count = sector.realtime_down_count + existing.leading_stocks_realtime = sector.leading_stocks_realtime + existing.is_realtime = True + existing.data_mode = sector.data_mode + existing.source = sector.source + existing.source_detail = sector.source_detail or existing.source_detail + existing.heat_score = max(existing.heat_score, sector.heat_score) + else: + merged[sector.sector_name] = sector + return list(merged.values()) + + +def _resolve_daily_basic_trade_date(preferred: str | None = None) -> str: + """选择最近一个日频行情和 daily_basic 都可用的交易日。""" + dates = tushare_client.get_trade_dates() + if preferred and preferred not in dates: + dates = sorted([*dates, preferred]) + if not dates: + return preferred or tushare_client.get_latest_trade_date() + + target = preferred or dates[-1] + candidates = [d for d in dates if d <= target] + if not candidates: + candidates = dates + + for date in reversed(candidates[-8:]): + try: + basic = tushare_client.get_daily_basic(date) + daily = tushare_client.get_daily_all(date) + except Exception as exc: + logger.debug("日频数据探测失败 %s: %s", date, exc) + continue + if not basic.empty and not daily.empty: + if date != target: + logger.info("日频基础数据回退: %s -> %s", target, date) + return date + + return target + + async def _select_from_hot_sectors( hot_sectors: list[SectorInfo], trade_date: str, @@ -773,6 +889,45 @@ def _finalize_battle_plan( return final_list[: settings.top_stock_count] +def _build_empty_pool_fallback( + recommendations: list[Recommendation], + strategy_profile: StrategyProfile, + market_temp: MarketTemperature, +) -> list[Recommendation]: + """强市场/主线早期但严格分数线为空时,保留少量低仓位观察名单。""" + if market_temp.temperature < 55: + return [] + floor = max(48, strategy_profile.min_score - 14) + candidates = [ + rec for rec in recommendations + if _is_main_theme_recommendation(rec) and rec.score >= floor + ] + candidates.sort(key=lambda rec: (rec.score, rec.position_score, rec.sector_score), reverse=True) + kept = candidates[: min(6, max(strategy_profile.watch_limit, 3))] + for rec in kept: + pos_hint = (rec.decision_trace or {}).get("position_adjustment", {}).get("hint", "neutral") + rec.action_plan = "重点关注" if rec.entry_signal_type != "none" else "观察" + rec.lifecycle_status = "candidate" + rec.signal = "HOLD" + rec.suggested_position_pct = 5 if rec.action_plan == "重点关注" and pos_hint != "wait_pullback" else 0 + prefix = "严格分数线下无可操作票,本条仅作主线前排跟踪" + if rec.trigger_condition: + rec.trigger_condition = f"{prefix};{rec.trigger_condition}" + else: + rec.trigger_condition = f"{prefix};等待板块继续扩散、个股放量或回踩承接确认" + if rec.decision_trace is not None: + rec.decision_trace["action_plan"] = rec.action_plan + rec.decision_trace["empty_pool_fallback"] = True + rec.decision_trace["headline"] = _build_decision_headline( + stock={"stock_role_hint": "主线前排", "sector": rec.sector}, + action_plan=rec.action_plan, + entry_signal_type=rec.entry_signal_type, + hot_theme_match=None, + score=rec.score, + ) + return kept + + async def _build_recommendations( candidates: list[dict], market_temp: MarketTemperature, @@ -934,6 +1089,14 @@ async def _build_recommendations( if penalties: final_score *= min(penalties) + position_adjustment = _position_execution_adjustment( + tech=tech_signal, + signal_name=signal_name, + sector_stage=sector_stage, + market_temp=market_temp, + ) + final_score *= position_adjustment["multiplier"] + boosts = [] if sector_limit_up >= 5: final_score *= 1.20 @@ -1093,6 +1256,7 @@ async def _build_recommendations( score=final_score, market_temp=market_temp, sector_stage=sector_stage, + position_hint=position_adjustment["hint"], entry_price=entry_price, target_price=target_price, stop_loss=stop_loss, @@ -1107,6 +1271,7 @@ async def _build_recommendations( market_temp_score=market_temp_score, sector_stage=sector_stage, hot_theme_match=hot_theme_match, + position_adjustment=position_adjustment, ) decision_trace = _build_decision_trace( stock=stock, @@ -1133,6 +1298,7 @@ async def _build_recommendations( penalties=penalty_notes, risk_tags=risk_tags, hot_theme_match=hot_theme_match, + position_adjustment=position_adjustment, ) rec = Recommendation( @@ -1832,11 +1998,60 @@ def _generate_entry_timing(signal_type: str, intraday: bool) -> str: return timing_map.get(signal_type, "盘中观察量价配合,确认信号后进场") +def _position_execution_adjustment( + tech: TechnicalSignal | None, + signal_name: str, + sector_stage: str, + market_temp: MarketTemperature, +) -> dict: + """根据位置安全把强势候选转成可交易/等待回踩/只观察。""" + if not tech: + return {"multiplier": 1.0, "hint": "neutral", "notes": []} + + notes: list[str] = [] + multiplier = 1.0 + hint = "neutral" + + if tech.position_score < 25 or tech.rally_pct_5d >= 18: + multiplier *= 0.72 + hint = "wait_pullback" + notes.append(f"5日涨幅{tech.rally_pct_5d}%,位置偏高,避免追高") + elif tech.position_score < 35 or tech.rally_pct_10d >= 24: + multiplier *= 0.84 + hint = "wait_confirm" + notes.append(f"10日涨幅{tech.rally_pct_10d}%,需要承接确认") + + if signal_name in {"breakout", "launch", "flow_momentum"} and tech.position_score < 40: + multiplier *= 0.90 + hint = "wait_pullback" + notes.append("突破/启动信号叠加高位,优先等回踩") + elif signal_name == "pullback" and tech.position_score >= 45 and sector_stage in {"early", "mid"}: + multiplier *= 1.06 + hint = "actionable_pullback" + notes.append("回踩型买点且位置安全,优先级上调") + + if sector_stage == "late" and hint != "actionable_pullback": + multiplier *= 0.92 + hint = "wait_confirm" if hint == "neutral" else hint + notes.append("板块后段,降低追涨容忍度") + + if market_temp.temperature < 50 and hint.startswith("wait"): + multiplier *= 0.94 + notes.append("市场温度一般,等待信号要求提高") + + return { + "multiplier": round(max(0.55, min(multiplier, 1.12)), 3), + "hint": hint, + "notes": notes[:4], + } + + def _build_trade_plan( signal_type: str, score: float, market_temp: MarketTemperature, sector_stage: str, + position_hint: str, entry_price: float | None, target_price: float | None, stop_loss: float | None, @@ -1856,9 +2071,14 @@ def _build_trade_plan( "flow_momentum": "资金顺势确认", }.get(signal_type, "资金与量价信号") + wait_position = position_hint in {"wait_pullback", "wait_confirm"} + if market_temp.temperature < 40 or sector_stage in ("end",): action_plan = "观察" lifecycle_status = "candidate" + elif wait_position and score >= 70: + action_plan = "重点关注" + lifecycle_status = "candidate" elif score >= 84 and market_temp.temperature >= 62 and sector_stage == "early": action_plan = "可操作" lifecycle_status = "actionable" @@ -1885,11 +2105,18 @@ def _build_trade_plan( base_position -= 5 if sector_stage == "late": base_position -= 5 + if wait_position: + base_position = min(base_position, 8) suggested_position_pct = max(0, min(base_position, 30)) price_part = f"参考价 {entry_price}" if entry_price else "参考当前价" timing_part = entry_timing or "等待量价确认" - trigger_condition = f"{signal_label}成立且不跌破关键价位,{price_part}附近分批关注;{timing_part}" + if position_hint == "wait_pullback": + trigger_condition = f"不追高,等待回踩5日/10日线或分时缩量承接后再看;{signal_label}重新放量确认,{price_part}附近小仓试错" + elif position_hint == "wait_confirm": + trigger_condition = f"等待次日承接确认,板块前排不退潮且{signal_label}延续后再分批;{price_part}附近关注" + else: + trigger_condition = f"{signal_label}成立且不跌破关键价位,{price_part}附近分批关注;{timing_part}" invalid_parts = [] if stop_loss: @@ -2213,6 +2440,7 @@ def _build_penalty_notes( market_temp_score: float, sector_stage: str, hot_theme_match: SectorInfo | None, + position_adjustment: dict | None = None, ) -> list[dict]: notes: list[dict] = [] if trend_penalty < 1: @@ -2228,6 +2456,13 @@ def _build_penalty_notes( if theme_penalty < 1: label = "未匹配主线" if not hot_theme_match else "非前排主线" notes.append({"label": label, "value": f"-{round((1 - theme_penalty) * 100)}%", "reason": "主题地位不足"}) + if position_adjustment and position_adjustment.get("multiplier", 1) < 1: + reason = ";".join(position_adjustment.get("notes", [])[:2]) or "位置偏高" + notes.append({ + "label": "位置/买点折扣", + "value": f"-{round((1 - float(position_adjustment.get('multiplier', 1))) * 100)}%", + "reason": reason, + }) if not notes and penalties: notes.append({"label": "风险折扣", "value": f"-{round((1 - min(penalties)) * 100)}%", "reason": "存在风险项"}) return notes[:4] @@ -2258,6 +2493,7 @@ def _build_decision_trace( penalties: list[dict], risk_tags: list[str], hot_theme_match: SectorInfo | None, + position_adjustment: dict | None = None, ) -> dict: tags = stock.get("recall_tags", []) or [] headline = _build_decision_headline( @@ -2334,6 +2570,7 @@ def _build_decision_trace( "sector_limit_up": sector_limit_up, "theme_matched": bool(hot_theme_match), "theme_name": hot_theme_match.sector_name if hot_theme_match else "", + "position_hint": (position_adjustment or {}).get("hint", "neutral"), }, "catalyst": { "score": round(catalyst_score, 1), @@ -2341,6 +2578,7 @@ def _build_decision_trace( }, "boosts": boosts[:4], "penalties": penalties[:4], + "position_adjustment": position_adjustment or {"multiplier": 1.0, "hint": "neutral", "notes": []}, "risk_tags": risk_tags, "llm_adjustment": None, } diff --git a/backend/astock.db b/backend/astock.db index cc46e3af..8eaad2ca 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 8d8d3ec8..f34cfec7 100644 --- a/frontend/.next/app-build-manifest.json +++ b/frontend/.next/app-build-manifest.json @@ -1,9 +1,9 @@ { "pages": { - "/(auth)/dashboard/page": [ + "/(auth)/recommendations/page": [ "static/chunks/webpack.js", "static/chunks/main-app.js", - "static/chunks/app/(auth)/dashboard/page.js" + "static/chunks/app/(auth)/recommendations/page.js" ], "/(auth)/layout": [ "static/chunks/webpack.js", @@ -15,16 +15,6 @@ "static/chunks/main-app.js", "static/css/app/layout.css", "static/chunks/app/layout.js" - ], - "/(auth)/recommendations/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/(auth)/recommendations/page.js" - ], - "/(auth)/strategy/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/(auth)/strategy/page.js" ] } } \ 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 4cf375f6..e54f38f5 100644 --- a/frontend/.next/server/app-paths-manifest.json +++ b/frontend/.next/server/app-paths-manifest.json @@ -1,5 +1,3 @@ { - "/(auth)/dashboard/page": "app/(auth)/dashboard/page.js", - "/(auth)/recommendations/page": "app/(auth)/recommendations/page.js", - "/(auth)/strategy/page": "app/(auth)/strategy/page.js" + "/(auth)/recommendations/page": "app/(auth)/recommendations/page.js" } \ 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 12c660b1..60ec25d0 100644 --- a/frontend/.next/server/server-reference-manifest.json +++ b/frontend/.next/server/server-reference-manifest.json @@ -1,5 +1,5 @@ { "node": {}, "edge": {}, - "encryptionKey": "s0qcbsgwKrVRZ+Vvkywm9IM+ti0wNq5+7QtEBPqabTc=" + "encryptionKey": "d4VN2R1pidVsk7vdfLIPEMxazAw72u3gfaTtAbGckJc=" } \ No newline at end of file diff --git a/frontend/.next/trace b/frontend/.next/trace index 9af59f32..a32f58b7 100644 --- a/frontend/.next/trace +++ b/frontend/.next/trace @@ -1,19 +1,17 @@ -[{"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"}] +[{"name":"hot-reloader","duration":27,"timestamp":1524909917575,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1780017878740,"traceId":"70f8f15c9247bbcb"},{"name":"start","duration":0,"timestamp":1524909918052,"id":4,"parentId":3,"tags":{},"startTime":1780017878741,"traceId":"70f8f15c9247bbcb"},{"name":"get-version-info","duration":972165,"timestamp":1524909918171,"id":5,"parentId":4,"tags":{},"startTime":1780017878741,"traceId":"70f8f15c9247bbcb"},{"name":"clean","duration":334,"timestamp":1524910890370,"id":6,"parentId":4,"tags":{},"startTime":1780017879713,"traceId":"70f8f15c9247bbcb"},{"name":"create-pages-mapping","duration":99,"timestamp":1524910891610,"id":8,"parentId":7,"tags":{},"startTime":1780017879714,"traceId":"70f8f15c9247bbcb"},{"name":"create-entrypoints","duration":274814,"timestamp":1524910891771,"id":9,"parentId":7,"tags":{},"startTime":1780017879714,"traceId":"70f8f15c9247bbcb"},{"name":"generate-webpack-config","duration":70360,"timestamp":1524911166624,"id":10,"parentId":7,"tags":{},"startTime":1780017879989,"traceId":"70f8f15c9247bbcb"},{"name":"get-webpack-config","duration":345428,"timestamp":1524910891567,"id":7,"parentId":4,"tags":{},"startTime":1780017879714,"traceId":"70f8f15c9247bbcb"},{"name":"make","duration":660,"timestamp":1524911278511,"id":12,"parentId":11,"tags":{},"startTime":1780017880101,"traceId":"70f8f15c9247bbcb"},{"name":"chunk-graph","duration":331,"timestamp":1524911280329,"id":14,"parentId":13,"tags":{},"startTime":1780017880103,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-modules","duration":11,"timestamp":1524911280710,"id":16,"parentId":13,"tags":{},"startTime":1780017880103,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunks","duration":56,"timestamp":1524911280857,"id":17,"parentId":13,"tags":{},"startTime":1780017880103,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-tree","duration":10,"timestamp":1524911280937,"id":18,"parentId":13,"tags":{},"startTime":1780017880103,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunk-modules","duration":11,"timestamp":1524911281026,"id":19,"parentId":13,"tags":{},"startTime":1780017880104,"traceId":"70f8f15c9247bbcb"},{"name":"optimize","duration":394,"timestamp":1524911280691,"id":15,"parentId":13,"tags":{},"startTime":1780017880103,"traceId":"70f8f15c9247bbcb"},{"name":"module-hash","duration":46,"timestamp":1524911281364,"id":20,"parentId":13,"tags":{},"startTime":1780017880104,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation","duration":67,"timestamp":1524911281419,"id":21,"parentId":13,"tags":{},"startTime":1780017880104,"traceId":"70f8f15c9247bbcb"},{"name":"hash","duration":235,"timestamp":1524911281600,"id":22,"parentId":13,"tags":{},"startTime":1780017880104,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation-jobs","duration":27,"timestamp":1524911281834,"id":23,"parentId":13,"tags":{},"startTime":1780017880104,"traceId":"70f8f15c9247bbcb"},{"name":"module-assets","duration":34,"timestamp":1524911281850,"id":24,"parentId":13,"tags":{},"startTime":1780017880104,"traceId":"70f8f15c9247bbcb"},{"name":"create-chunk-assets","duration":121,"timestamp":1524911281891,"id":25,"parentId":13,"tags":{},"startTime":1780017880104,"traceId":"70f8f15c9247bbcb"},{"name":"NextJsBuildManifest-generateClientManifest","duration":593,"timestamp":1524911284835,"id":27,"parentId":11,"tags":{},"startTime":1780017880107,"traceId":"70f8f15c9247bbcb"},{"name":"NextJsBuildManifest-createassets","duration":788,"timestamp":1524911284645,"id":26,"parentId":11,"tags":{},"startTime":1780017880107,"traceId":"70f8f15c9247bbcb"},{"name":"seal","duration":5689,"timestamp":1524911280236,"id":13,"parentId":11,"tags":{},"startTime":1780017880103,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-compilation","duration":9566,"timestamp":1524911276484,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1780017880099,"traceId":"70f8f15c9247bbcb"},{"name":"emit","duration":3151,"timestamp":1524911286233,"id":28,"parentId":3,"tags":{},"startTime":1780017880109,"traceId":"70f8f15c9247bbcb"},{"name":"make","duration":647,"timestamp":1524911293622,"id":30,"parentId":29,"tags":{},"startTime":1780017880116,"traceId":"70f8f15c9247bbcb"},{"name":"chunk-graph","duration":14,"timestamp":1524911294441,"id":32,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-modules","duration":2,"timestamp":1524911294467,"id":34,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunks","duration":27,"timestamp":1524911294497,"id":35,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-tree","duration":3,"timestamp":1524911294542,"id":36,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunk-modules","duration":3,"timestamp":1524911294566,"id":37,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"optimize","duration":133,"timestamp":1524911294462,"id":33,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"module-hash","duration":4,"timestamp":1524911294652,"id":38,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation","duration":3,"timestamp":1524911294660,"id":39,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"hash","duration":28,"timestamp":1524911294680,"id":40,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation-jobs","duration":17,"timestamp":1524911294708,"id":41,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"module-assets","duration":4,"timestamp":1524911294722,"id":42,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"create-chunk-assets","duration":8,"timestamp":1524911294732,"id":43,"parentId":31,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"seal","duration":700,"timestamp":1524911294425,"id":31,"parentId":29,"tags":{},"startTime":1780017880117,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-compilation","duration":2119,"timestamp":1524911293071,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1780017880116,"traceId":"70f8f15c9247bbcb"},{"name":"emit","duration":3587,"timestamp":1524911295222,"id":44,"parentId":3,"tags":{},"startTime":1780017880118,"traceId":"70f8f15c9247bbcb"},{"name":"make","duration":125,"timestamp":1524911301901,"id":46,"parentId":45,"tags":{},"startTime":1780017880124,"traceId":"70f8f15c9247bbcb"},{"name":"chunk-graph","duration":15,"timestamp":1524911302313,"id":48,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-modules","duration":2,"timestamp":1524911302340,"id":50,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunks","duration":6,"timestamp":1524911302383,"id":51,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-tree","duration":3,"timestamp":1524911302396,"id":52,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunk-modules","duration":3,"timestamp":1524911302408,"id":53,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"optimize","duration":84,"timestamp":1524911302336,"id":49,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"module-hash","duration":5,"timestamp":1524911302476,"id":54,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation","duration":4,"timestamp":1524911302487,"id":55,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"hash","duration":38,"timestamp":1524911302516,"id":56,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation-jobs","duration":10,"timestamp":1524911302554,"id":57,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"module-assets","duration":5,"timestamp":1524911302561,"id":58,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"create-chunk-assets","duration":7,"timestamp":1524911302569,"id":59,"parentId":47,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"seal","duration":573,"timestamp":1524911302293,"id":47,"parentId":45,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-compilation","duration":2107,"timestamp":1524911300779,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1780017880123,"traceId":"70f8f15c9247bbcb"},{"name":"emit","duration":2159,"timestamp":1524911302908,"id":60,"parentId":3,"tags":{},"startTime":1780017880125,"traceId":"70f8f15c9247bbcb"}] +[{"name":"make","duration":186,"timestamp":1524911527553,"id":65,"parentId":64,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"chunk-graph","duration":13,"timestamp":1524911527837,"id":67,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-modules","duration":2,"timestamp":1524911527859,"id":69,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunks","duration":4,"timestamp":1524911527869,"id":70,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-tree","duration":2,"timestamp":1524911527878,"id":71,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunk-modules","duration":2,"timestamp":1524911527893,"id":72,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"optimize","duration":50,"timestamp":1524911527856,"id":68,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"module-hash","duration":4,"timestamp":1524911527954,"id":73,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation","duration":3,"timestamp":1524911527961,"id":74,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"hash","duration":24,"timestamp":1524911527979,"id":75,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation-jobs","duration":8,"timestamp":1524911528003,"id":76,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"module-assets","duration":3,"timestamp":1524911528009,"id":77,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"create-chunk-assets","duration":5,"timestamp":1524911528015,"id":78,"parentId":66,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"NextJsBuildManifest-generateClientManifest","duration":156,"timestamp":1524911528209,"id":80,"parentId":64,"tags":{},"startTime":1780017880351,"traceId":"70f8f15c9247bbcb"},{"name":"NextJsBuildManifest-createassets","duration":219,"timestamp":1524911528148,"id":79,"parentId":64,"tags":{},"startTime":1780017880351,"traceId":"70f8f15c9247bbcb"},{"name":"seal","duration":622,"timestamp":1524911527819,"id":66,"parentId":64,"tags":{},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-compilation","duration":1312,"timestamp":1524911527178,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1780017880350,"traceId":"70f8f15c9247bbcb"},{"name":"setup-dev-bundler","duration":1761651,"timestamp":1524909790445,"id":2,"parentId":1,"tags":{},"startTime":1780017878613,"traceId":"70f8f15c9247bbcb"},{"name":"run-instrumentation-hook","duration":23,"timestamp":1524911569501,"id":82,"parentId":1,"tags":{},"startTime":1780017880392,"traceId":"70f8f15c9247bbcb"},{"name":"emit","duration":41381,"timestamp":1524911528502,"id":81,"parentId":61,"tags":{},"startTime":1780017880351,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-invalidated-client","duration":46547,"timestamp":1524911523928,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1780017880346,"traceId":"70f8f15c9247bbcb"},{"name":"make","duration":191,"timestamp":1524911571757,"id":84,"parentId":83,"tags":{},"startTime":1780017880394,"traceId":"70f8f15c9247bbcb"},{"name":"chunk-graph","duration":17,"timestamp":1524911572049,"id":86,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-modules","duration":3,"timestamp":1524911572074,"id":88,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunks","duration":28,"timestamp":1524911572114,"id":89,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-tree","duration":2,"timestamp":1524911572149,"id":90,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunk-modules","duration":2,"timestamp":1524911572165,"id":91,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"optimize","duration":108,"timestamp":1524911572071,"id":87,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"module-hash","duration":6,"timestamp":1524911572333,"id":92,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation","duration":3,"timestamp":1524911572344,"id":93,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"hash","duration":32,"timestamp":1524911572362,"id":94,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation-jobs","duration":9,"timestamp":1524911572395,"id":95,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"module-assets","duration":3,"timestamp":1524911572401,"id":96,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"create-chunk-assets","duration":7,"timestamp":1524911572410,"id":97,"parentId":85,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"seal","duration":620,"timestamp":1524911572032,"id":85,"parentId":83,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-compilation","duration":1349,"timestamp":1524911571323,"id":83,"parentId":62,"tags":{"name":"server"},"startTime":1780017880394,"traceId":"70f8f15c9247bbcb"},{"name":"start-dev-server","duration":2083386,"timestamp":1524909494719,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"125648896","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"212959232","memory.heapTotal":"105922560","memory.heapUsed":"79602184"},"startTime":1780017878317,"traceId":"70f8f15c9247bbcb"},{"name":"emit","duration":5589,"timestamp":1524911572685,"id":98,"parentId":62,"tags":{},"startTime":1780017880395,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-invalidated-server","duration":54474,"timestamp":1524911524057,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1780017880347,"traceId":"70f8f15c9247bbcb"},{"name":"make","duration":182,"timestamp":1524911579652,"id":100,"parentId":99,"tags":{},"startTime":1780017880402,"traceId":"70f8f15c9247bbcb"},{"name":"chunk-graph","duration":13,"timestamp":1524911579978,"id":102,"parentId":101,"tags":{},"startTime":1780017880402,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-modules","duration":3,"timestamp":1524911580001,"id":104,"parentId":101,"tags":{},"startTime":1780017880402,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunks","duration":5,"timestamp":1524911580013,"id":105,"parentId":101,"tags":{},"startTime":1780017880402,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-tree","duration":2,"timestamp":1524911580025,"id":106,"parentId":101,"tags":{},"startTime":1780017880403,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunk-modules","duration":2,"timestamp":1524911580037,"id":107,"parentId":101,"tags":{},"startTime":1780017880403,"traceId":"70f8f15c9247bbcb"},{"name":"optimize","duration":51,"timestamp":1524911579998,"id":103,"parentId":101,"tags":{},"startTime":1780017880402,"traceId":"70f8f15c9247bbcb"},{"name":"module-hash","duration":3,"timestamp":1524911580096,"id":108,"parentId":101,"tags":{},"startTime":1780017880403,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation","duration":3,"timestamp":1524911580105,"id":109,"parentId":101,"tags":{},"startTime":1780017880403,"traceId":"70f8f15c9247bbcb"},{"name":"hash","duration":23,"timestamp":1524911580123,"id":110,"parentId":101,"tags":{},"startTime":1780017880403,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation-jobs","duration":8,"timestamp":1524911580146,"id":111,"parentId":101,"tags":{},"startTime":1780017880403,"traceId":"70f8f15c9247bbcb"},{"name":"module-assets","duration":3,"timestamp":1524911580153,"id":112,"parentId":101,"tags":{},"startTime":1780017880403,"traceId":"70f8f15c9247bbcb"},{"name":"create-chunk-assets","duration":5,"timestamp":1524911580158,"id":113,"parentId":101,"tags":{},"startTime":1780017880403,"traceId":"70f8f15c9247bbcb"},{"name":"seal","duration":368,"timestamp":1524911579962,"id":101,"parentId":99,"tags":{},"startTime":1780017880402,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-compilation","duration":1048,"timestamp":1524911579296,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1780017880402,"traceId":"70f8f15c9247bbcb"},{"name":"emit","duration":2751,"timestamp":1524911580355,"id":114,"parentId":63,"tags":{},"startTime":1780017880403,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-invalidated-edge-server","duration":59520,"timestamp":1524911524074,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1780017880347,"traceId":"70f8f15c9247bbcb"}] +[{"name":"build-module","duration":45739,"timestamp":1525878300340,"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)%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":1780018847123,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":61162,"timestamp":1525878373515,"id":136,"parentId":135,"tags":{},"startTime":1780018847196,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":61342,"timestamp":1525878373351,"id":135,"parentId":123,"tags":{},"startTime":1780018847196,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":69045,"timestamp":1525878369800,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/layout.tsx","layer":"rsc"},"startTime":1780018847192,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":65300,"timestamp":1525878373609,"id":138,"parentId":137,"tags":{},"startTime":1780018847196,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":65387,"timestamp":1525878373524,"id":137,"parentId":124,"tags":{},"startTime":1780018847196,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":69741,"timestamp":1525878370021,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1780018847193,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":66484,"timestamp":1525878373315,"id":134,"parentId":133,"tags":{},"startTime":1780018847196,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":67610,"timestamp":1525878372191,"id":133,"parentId":122,"tags":{},"startTime":1780018847195,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":73296,"timestamp":1525878367730,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1780018847190,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":67222,"timestamp":1525878373824,"id":140,"parentId":139,"tags":{},"startTime":1780018847196,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":67431,"timestamp":1525878373615,"id":139,"parentId":128,"tags":{},"startTime":1780018847196,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":70507,"timestamp":1525878371632,"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":1780018847194,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":71205,"timestamp":1525878373887,"id":142,"parentId":141,"tags":{},"startTime":1780018847196,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":71269,"timestamp":1525878373830,"id":141,"parentId":129,"tags":{},"startTime":1780018847196,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":76087,"timestamp":1525878371701,"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":1780018847194,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":76610,"timestamp":1525878372181,"id":132,"parentId":127,"tags":{},"startTime":1780018847195,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":91,"timestamp":1525878448825,"id":143,"parentId":127,"tags":{},"startTime":1780018847271,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":78965,"timestamp":1525878371435,"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":1780018847194,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":78241,"timestamp":1525878372172,"id":131,"parentId":126,"tags":{},"startTime":1780018847195,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":48,"timestamp":1525878450424,"id":144,"parentId":126,"tags":{},"startTime":1780018847273,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":82586,"timestamp":1525878371261,"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":1780018847194,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":81726,"timestamp":1525878372140,"id":130,"parentId":125,"tags":{},"startTime":1780018847195,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":45,"timestamp":1525878453880,"id":145,"parentId":125,"tags":{},"startTime":1780018847276,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":84376,"timestamp":1525878370130,"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":1780018847193,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":292,"timestamp":1525878459419,"id":146,"parentId":127,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1780018847282,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-external","duration":24,"timestamp":1525878465936,"id":152,"parentId":126,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1780018847288,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-external","duration":6,"timestamp":1525878465980,"id":153,"parentId":126,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1780018847288,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-external","duration":4,"timestamp":1525878465990,"id":154,"parentId":126,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1780018847288,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5474,"timestamp":1525878466384,"id":164,"parentId":163,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5513,"timestamp":1525878466352,"id":163,"parentId":151,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6928,"timestamp":1525878465893,"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":1780018847288,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6250,"timestamp":1525878466596,"id":166,"parentId":165,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6396,"timestamp":1525878466451,"id":165,"parentId":155,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7283,"timestamp":1525878465997,"id":155,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7097,"timestamp":1525878466224,"id":160,"parentId":159,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7180,"timestamp":1525878466144,"id":159,"parentId":149,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7906,"timestamp":1525878465722,"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":1780018847288,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7949,"timestamp":1525878466350,"id":162,"parentId":161,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7989,"timestamp":1525878466312,"id":161,"parentId":150,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8735,"timestamp":1525878465843,"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":1780018847288,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8929,"timestamp":1525878466647,"id":168,"parentId":167,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8982,"timestamp":1525878466600,"id":167,"parentId":156,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10912,"timestamp":1525878466035,"id":156,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10250,"timestamp":1525878466726,"id":172,"parentId":171,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10299,"timestamp":1525878466680,"id":171,"parentId":158,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11061,"timestamp":1525878466105,"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":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10503,"timestamp":1525878466675,"id":170,"parentId":169,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10527,"timestamp":1525878466651,"id":169,"parentId":157,"tags":{},"startTime":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12372,"timestamp":1525878466068,"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":1780018847289,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":16872,"timestamp":1525878465687,"id":148,"parentId":147,"tags":{},"startTime":1780018847288,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-css","duration":18036,"timestamp":1525878464923,"id":147,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1780018847287,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":10368,"timestamp":1525878474170,"id":177,"parentId":173,"tags":{},"startTime":1780018847297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":63,"timestamp":1525878484552,"id":181,"parentId":173,"tags":{},"startTime":1780018847307,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":23535,"timestamp":1525878473785,"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":1780018847296,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":23402,"timestamp":1525878474202,"id":179,"parentId":175,"tags":{},"startTime":1780018847297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":44,"timestamp":1525878497617,"id":182,"parentId":175,"tags":{},"startTime":1780018847320,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":24125,"timestamp":1525878473995,"id":175,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1780018847297,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":23940,"timestamp":1525878474189,"id":178,"parentId":174,"tags":{},"startTime":1780018847297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":31,"timestamp":1525878498135,"id":183,"parentId":174,"tags":{},"startTime":1780018847321,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":24382,"timestamp":1525878473932,"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":1780018847296,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":24149,"timestamp":1525878474207,"id":180,"parentId":176,"tags":{},"startTime":1780018847297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":29,"timestamp":1525878498360,"id":184,"parentId":176,"tags":{},"startTime":1780018847321,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":25034,"timestamp":1525878474048,"id":176,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1780018847297,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":5862,"timestamp":1525878499767,"id":186,"parentId":185,"tags":{},"startTime":1780018847322,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":39,"timestamp":1525878505639,"id":193,"parentId":185,"tags":{},"startTime":1780018847328,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7894,"timestamp":1525878499587,"id":185,"parentId":156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1780018847322,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":6100,"timestamp":1525878505585,"id":190,"parentId":187,"tags":{},"startTime":1780018847328,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":41,"timestamp":1525878511697,"id":204,"parentId":187,"tags":{},"startTime":1780018847334,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6618,"timestamp":1525878505354,"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":1780018847328,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":9063,"timestamp":1525878505607,"id":192,"parentId":189,"tags":{},"startTime":1780018847328,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":39,"timestamp":1525878514681,"id":211,"parentId":189,"tags":{},"startTime":1780018847337,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9574,"timestamp":1525878505523,"id":189,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1780018847328,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":9510,"timestamp":1525878505600,"id":191,"parentId":188,"tags":{},"startTime":1780018847328,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":38,"timestamp":1525878515115,"id":212,"parentId":188,"tags":{},"startTime":1780018847338,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10587,"timestamp":1525878505466,"id":188,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1780018847328,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":8169,"timestamp":1525878510112,"id":199,"parentId":194,"tags":{},"startTime":1780018847333,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":34,"timestamp":1525878518296,"id":218,"parentId":194,"tags":{},"startTime":1780018847341,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8885,"timestamp":1525878509836,"id":194,"parentId":156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1780018847332,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":8605,"timestamp":1525878510125,"id":200,"parentId":195,"tags":{},"startTime":1780018847333,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":50,"timestamp":1525878518739,"id":219,"parentId":195,"tags":{},"startTime":1780018847341,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10496,"timestamp":1525878509920,"id":195,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1780018847332,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":10295,"timestamp":1525878510132,"id":201,"parentId":196,"tags":{},"startTime":1780018847333,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":80,"timestamp":1525878520437,"id":220,"parentId":196,"tags":{},"startTime":1780018847343,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11252,"timestamp":1525878509970,"id":196,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1780018847332,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":11663,"timestamp":1525878510141,"id":202,"parentId":197,"tags":{},"startTime":1780018847333,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":60,"timestamp":1525878521811,"id":221,"parentId":197,"tags":{},"startTime":1780018847344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12930,"timestamp":1525878510015,"id":197,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1780018847333,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":12812,"timestamp":1525878510149,"id":203,"parentId":198,"tags":{},"startTime":1780018847333,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":48,"timestamp":1525878522969,"id":222,"parentId":198,"tags":{},"startTime":1780018847345,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":15256,"timestamp":1525878510060,"id":198,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1780018847333,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9357,"timestamp":1525878517572,"id":217,"parentId":216,"tags":{},"startTime":1780018847340,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9398,"timestamp":1525878517534,"id":216,"parentId":213,"tags":{},"startTime":1780018847340,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10265,"timestamp":1525878517168,"id":213,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1780018847340,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":15163,"timestamp":1525878512864,"id":210,"parentId":207,"tags":{},"startTime":1780018847335,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":27,"timestamp":1525878528032,"id":233,"parentId":207,"tags":{},"startTime":1780018847351,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16197,"timestamp":1525878512790,"id":207,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1780018847335,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":16150,"timestamp":1525878512849,"id":208,"parentId":205,"tags":{},"startTime":1780018847335,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":37,"timestamp":1525878529006,"id":234,"parentId":205,"tags":{},"startTime":1780018847352,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16589,"timestamp":1525878512588,"id":205,"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":1780018847335,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":16326,"timestamp":1525878512858,"id":209,"parentId":206,"tags":{},"startTime":1780018847335,"traceId":"70f8f15c9247bbcb"}] +[{"name":"next-swc-loader","duration":36,"timestamp":1525878529533,"id":235,"parentId":206,"tags":{},"startTime":1780018847352,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":17015,"timestamp":1525878512668,"id":206,"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":1780018847335,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4313,"timestamp":1525878527878,"id":230,"parentId":229,"tags":{},"startTime":1780018847350,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4376,"timestamp":1525878527823,"id":229,"parentId":226,"tags":{},"startTime":1780018847350,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":5838,"timestamp":1525878527672,"id":226,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1780018847350,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5615,"timestamp":1525878527914,"id":232,"parentId":231,"tags":{},"startTime":1780018847350,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5649,"timestamp":1525878527881,"id":231,"parentId":227,"tags":{},"startTime":1780018847350,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":6034,"timestamp":1525878527741,"id":227,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1780018847350,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":16816,"timestamp":1525878517354,"id":215,"parentId":214,"tags":{},"startTime":1780018847340,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":33,"timestamp":1525878534179,"id":242,"parentId":214,"tags":{},"startTime":1780018847357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":17062,"timestamp":1525878517277,"id":214,"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":1780018847340,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4204,"timestamp":1525878531337,"id":239,"parentId":238,"tags":{},"startTime":1780018847354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4265,"timestamp":1525878531279,"id":238,"parentId":236,"tags":{},"startTime":1780018847354,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":4635,"timestamp":1525878531111,"id":236,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1780018847354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4349,"timestamp":1525878531406,"id":241,"parentId":240,"tags":{},"startTime":1780018847354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4417,"timestamp":1525878531339,"id":240,"parentId":237,"tags":{},"startTime":1780018847354,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":4677,"timestamp":1525878531205,"id":237,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1780018847354,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":9789,"timestamp":1525878526150,"id":224,"parentId":223,"tags":{},"startTime":1780018847349,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":8654,"timestamp":1525878527800,"id":228,"parentId":225,"tags":{},"startTime":1780018847350,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":56,"timestamp":1525878536461,"id":247,"parentId":225,"tags":{},"startTime":1780018847359,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9075,"timestamp":1525878527581,"id":225,"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":1780018847350,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":1485,"timestamp":1525878536390,"id":246,"parentId":245,"tags":{},"startTime":1780018847359,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":33,"timestamp":1525878537880,"id":248,"parentId":245,"tags":{},"startTime":1780018847360,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3559,"timestamp":1525878536096,"id":245,"parentId":196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1780018847359,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3685,"timestamp":1525878535995,"id":244,"parentId":243,"tags":{},"startTime":1780018847359,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3736,"timestamp":1525878535945,"id":243,"parentId":223,"tags":{},"startTime":1780018847358,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-mjs","duration":14337,"timestamp":1525878525781,"id":223,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1780018847348,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":762,"timestamp":1525878541395,"id":250,"parentId":249,"tags":{},"startTime":1780018847364,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":25,"timestamp":1525878542161,"id":253,"parentId":249,"tags":{},"startTime":1780018847365,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":984,"timestamp":1525878541318,"id":249,"parentId":175,"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":1780018847364,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":2088,"timestamp":1525878542141,"id":252,"parentId":251,"tags":{},"startTime":1780018847365,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":57,"timestamp":1525878544247,"id":256,"parentId":251,"tags":{},"startTime":1780018847367,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10159,"timestamp":1525878542079,"id":251,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1780018847365,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":9874,"timestamp":1525878542424,"id":255,"parentId":254,"tags":{},"startTime":1780018847365,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":32,"timestamp":1525878552304,"id":257,"parentId":254,"tags":{},"startTime":1780018847375,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10752,"timestamp":1525878542361,"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":1780018847365,"traceId":"70f8f15c9247bbcb"},{"name":"add-entry","duration":280242,"timestamp":1525878272951,"id":120,"parentId":119,"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":1780018847095,"traceId":"70f8f15c9247bbcb"},{"name":"build-module","duration":1756,"timestamp":1525878577719,"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)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780018847400,"traceId":"70f8f15c9247bbcb"},{"name":"build-module","duration":1055,"timestamp":1525878579496,"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":1780018847402,"traceId":"70f8f15c9247bbcb"},{"name":"build-module","duration":1081,"timestamp":1525878580563,"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":1780018847403,"traceId":"70f8f15c9247bbcb"},{"name":"build-module","duration":1718,"timestamp":1525878581666,"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":1780018847404,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":5,"timestamp":1525878593136,"id":301,"parentId":300,"tags":{},"startTime":1780018847416,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":1269,"timestamp":1525878592001,"id":273,"parentId":272,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":1318,"timestamp":1525878591954,"id":272,"parentId":270,"tags":{},"startTime":1780018847414,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":2622,"timestamp":1525878591610,"id":270,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1780018847414,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3410,"timestamp":1525878592026,"id":275,"parentId":274,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3438,"timestamp":1525878592004,"id":274,"parentId":271,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5126,"timestamp":1525878591697,"id":271,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1780018847414,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4297,"timestamp":1525878592562,"id":286,"parentId":285,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4327,"timestamp":1525878592532,"id":285,"parentId":277,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":5526,"timestamp":1525878592307,"id":277,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11849,"timestamp":1525878588988,"id":269,"parentId":268,"tags":{},"startTime":1780018847411,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12067,"timestamp":1525878588778,"id":268,"parentId":267,"tags":{},"startTime":1780018847411,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":23304,"timestamp":1525878587073,"id":267,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1780018847410,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":17940,"timestamp":1525878592531,"id":284,"parentId":283,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":17978,"timestamp":1525878592495,"id":283,"parentId":276,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":19753,"timestamp":1525878592253,"id":276,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":19456,"timestamp":1525878592590,"id":288,"parentId":287,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":19485,"timestamp":1525878592563,"id":287,"parentId":278,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":20267,"timestamp":1525878592350,"id":278,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":20013,"timestamp":1525878592628,"id":296,"parentId":295,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":20024,"timestamp":1525878592619,"id":295,"parentId":282,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":20535,"timestamp":1525878592453,"id":282,"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":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":20403,"timestamp":1525878592600,"id":290,"parentId":289,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":20413,"timestamp":1525878592591,"id":289,"parentId":279,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":21411,"timestamp":1525878592392,"id":279,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":21215,"timestamp":1525878592609,"id":292,"parentId":291,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":21224,"timestamp":1525878592601,"id":291,"parentId":280,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":21977,"timestamp":1525878592413,"id":280,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":21645,"timestamp":1525878593208,"id":303,"parentId":302,"tags":{},"startTime":1780018847416,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":21696,"timestamp":1525878593159,"id":302,"parentId":300,"tags":{},"startTime":1780018847416,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-mjs","duration":24070,"timestamp":1525878592902,"id":300,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":24778,"timestamp":1525878592618,"id":294,"parentId":293,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":24789,"timestamp":1525878592611,"id":293,"parentId":281,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":28970,"timestamp":1525878592432,"id":281,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":38263,"timestamp":1525878592873,"id":299,"parentId":298,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":38278,"timestamp":1525878592862,"id":298,"parentId":297,"tags":{},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":43899,"timestamp":1525878592820,"id":297,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1780018847415,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":247,"timestamp":1525878639020,"id":305,"parentId":304,"tags":{},"startTime":1780018847462,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":779,"timestamp":1525878639278,"id":306,"parentId":304,"tags":{},"startTime":1780018847462,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":1605,"timestamp":1525878638785,"id":304,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1780018847461,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":81937,"timestamp":1525878653621,"id":313,"parentId":312,"tags":{},"startTime":1780018847476,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":82237,"timestamp":1525878653330,"id":312,"parentId":310,"tags":{},"startTime":1780018847476,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":88909,"timestamp":1525878653150,"id":310,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1780018847476,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":102396,"timestamp":1525878647630,"id":309,"parentId":308,"tags":{},"startTime":1780018847470,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":102443,"timestamp":1525878647591,"id":308,"parentId":307,"tags":{},"startTime":1780018847470,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":103386,"timestamp":1525878647451,"id":307,"parentId":279,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1780018847470,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":97312,"timestamp":1525878653642,"id":315,"parentId":314,"tags":{},"startTime":1780018847476,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":97330,"timestamp":1525878653626,"id":314,"parentId":311,"tags":{},"startTime":1780018847476,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":97980,"timestamp":1525878653244,"id":311,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1780018847476,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12460,"timestamp":1525878743637,"id":323,"parentId":322,"tags":{},"startTime":1780018847566,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12571,"timestamp":1525878743531,"id":322,"parentId":317,"tags":{},"startTime":1780018847566,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16940,"timestamp":1525878742934,"id":317,"parentId":281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1780018847565,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":22587,"timestamp":1525878743703,"id":325,"parentId":324,"tags":{},"startTime":1780018847566,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":22637,"timestamp":1525878743659,"id":324,"parentId":318,"tags":{},"startTime":1780018847566,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":25613,"timestamp":1525878743039,"id":318,"parentId":281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1780018847566,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":25345,"timestamp":1525878743525,"id":321,"parentId":320,"tags":{},"startTime":1780018847566,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":25556,"timestamp":1525878743423,"id":320,"parentId":316,"tags":{},"startTime":1780018847566,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":27716,"timestamp":1525878742558,"id":316,"parentId":280,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1780018847565,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":56554,"timestamp":1525878743735,"id":327,"parentId":326,"tags":{},"startTime":1780018847566,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":56590,"timestamp":1525878743710,"id":326,"parentId":319,"tags":{},"startTime":1780018847566,"traceId":"70f8f15c9247bbcb"}] +[{"name":"build-module-js","duration":113353,"timestamp":1525878743075,"id":319,"parentId":281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1780018847566,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":101591,"timestamp":1525878763921,"id":339,"parentId":338,"tags":{},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":101612,"timestamp":1525878763912,"id":338,"parentId":330,"tags":{},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":105640,"timestamp":1525878763496,"id":330,"parentId":297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":105754,"timestamp":1525878763894,"id":335,"parentId":334,"tags":{},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":105803,"timestamp":1525878763857,"id":334,"parentId":328,"tags":{},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":109026,"timestamp":1525878763235,"id":328,"parentId":297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":108479,"timestamp":1525878763910,"id":337,"parentId":336,"tags":{},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":108499,"timestamp":1525878763899,"id":336,"parentId":329,"tags":{},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":113120,"timestamp":1525878763369,"id":329,"parentId":297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":116646,"timestamp":1525878763931,"id":341,"parentId":340,"tags":{},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":116661,"timestamp":1525878763922,"id":340,"parentId":331,"tags":{},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":119945,"timestamp":1525878763526,"id":331,"parentId":297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":119528,"timestamp":1525878764054,"id":345,"parentId":344,"tags":{},"startTime":1780018847587,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":119716,"timestamp":1525878763942,"id":344,"parentId":333,"tags":{},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":125409,"timestamp":1525878763579,"id":333,"parentId":297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":129368,"timestamp":1525878763940,"id":343,"parentId":342,"tags":{},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":129389,"timestamp":1525878763932,"id":342,"parentId":332,"tags":{},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":131587,"timestamp":1525878763550,"id":332,"parentId":297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1780018847586,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":462,"timestamp":1525878899704,"id":372,"parentId":370,"tags":{},"startTime":1780018847722,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":575,"timestamp":1525878899722,"id":373,"parentId":371,"tags":{},"startTime":1780018847722,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":1305,"timestamp":1525878900195,"id":374,"parentId":370,"tags":{},"startTime":1780018847723,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":1197,"timestamp":1525878900310,"id":375,"parentId":371,"tags":{},"startTime":1780018847723,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5794,"timestamp":1525878899144,"id":370,"parentId":307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1780018847722,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7455,"timestamp":1525878899414,"id":371,"parentId":307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1780018847722,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":47984,"timestamp":1525878863623,"id":357,"parentId":356,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":48080,"timestamp":1525878863535,"id":356,"parentId":347,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":52677,"timestamp":1525878860974,"id":347,"parentId":281,"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":1780018847683,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":50066,"timestamp":1525878863666,"id":361,"parentId":360,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":50081,"timestamp":1525878863655,"id":360,"parentId":349,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":53666,"timestamp":1525878861049,"id":349,"parentId":297,"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":1780018847684,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":51300,"timestamp":1525878863521,"id":355,"parentId":354,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":51642,"timestamp":1525878863185,"id":354,"parentId":346,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":56211,"timestamp":1525878860722,"id":346,"parentId":281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1780018847683,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":53313,"timestamp":1525878863688,"id":365,"parentId":364,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":53325,"timestamp":1525878863679,"id":364,"parentId":351,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":56299,"timestamp":1525878861357,"id":351,"parentId":281,"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":1780018847684,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":54002,"timestamp":1525878863698,"id":367,"parentId":366,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":54012,"timestamp":1525878863690,"id":366,"parentId":352,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":56819,"timestamp":1525878861400,"id":352,"parentId":281,"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":1780018847684,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":55487,"timestamp":1525878863646,"id":359,"parentId":358,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":55518,"timestamp":1525878863629,"id":358,"parentId":348,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":59929,"timestamp":1525878861021,"id":348,"parentId":297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1780018847684,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":57364,"timestamp":1525878863677,"id":363,"parentId":362,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":57379,"timestamp":1525878863668,"id":362,"parentId":350,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":65157,"timestamp":1525878861254,"id":350,"parentId":297,"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":1780018847684,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":62985,"timestamp":1525878863708,"id":369,"parentId":368,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":62998,"timestamp":1525878863700,"id":368,"parentId":353,"tags":{},"startTime":1780018847686,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":66440,"timestamp":1525878861691,"id":353,"parentId":297,"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":1780018847684,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":14948,"timestamp":1525878931898,"id":383,"parentId":382,"tags":{},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":15030,"timestamp":1525878931827,"id":382,"parentId":376,"tags":{},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16425,"timestamp":1525878930953,"id":376,"parentId":297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1780018847753,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":15424,"timestamp":1525878931980,"id":387,"parentId":386,"tags":{},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":15439,"timestamp":1525878931967,"id":386,"parentId":378,"tags":{},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16490,"timestamp":1525878931268,"id":378,"parentId":281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":15781,"timestamp":1525878931991,"id":389,"parentId":388,"tags":{},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":15791,"timestamp":1525878931982,"id":388,"parentId":379,"tags":{},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":17000,"timestamp":1525878931329,"id":379,"parentId":297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":16548,"timestamp":1525878931963,"id":385,"parentId":384,"tags":{},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":16602,"timestamp":1525878931911,"id":384,"parentId":377,"tags":{},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":17609,"timestamp":1525878931225,"id":377,"parentId":280,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":16835,"timestamp":1525878932011,"id":393,"parentId":392,"tags":{},"startTime":1780018847755,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":16844,"timestamp":1525878932002,"id":392,"parentId":381,"tags":{},"startTime":1780018847755,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":18186,"timestamp":1525878931376,"id":381,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":17628,"timestamp":1525878932001,"id":391,"parentId":390,"tags":{},"startTime":1780018847755,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":17637,"timestamp":1525878931992,"id":390,"parentId":380,"tags":{},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":19436,"timestamp":1525878931354,"id":380,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1780018847754,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":1114,"timestamp":1525878964469,"id":402,"parentId":397,"tags":{},"startTime":1780018847787,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":98,"timestamp":1525878965624,"id":410,"parentId":397,"tags":{},"startTime":1780018847788,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4142,"timestamp":1525878963325,"id":397,"parentId":370,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1780018847786,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11710,"timestamp":1525878965145,"id":405,"parentId":404,"tags":{},"startTime":1780018847788,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11940,"timestamp":1525878964929,"id":404,"parentId":398,"tags":{},"startTime":1780018847787,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":19274,"timestamp":1525878963754,"id":398,"parentId":370,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1780018847786,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":17811,"timestamp":1525878965257,"id":407,"parentId":406,"tags":{},"startTime":1780018847788,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":17901,"timestamp":1525878965169,"id":406,"parentId":399,"tags":{},"startTime":1780018847788,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":20283,"timestamp":1525878963956,"id":399,"parentId":370,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1780018847786,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":26677,"timestamp":1525878959505,"id":396,"parentId":395,"tags":{},"startTime":1780018847782,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":27005,"timestamp":1525878959181,"id":395,"parentId":394,"tags":{},"startTime":1780018847782,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":39452,"timestamp":1525878951178,"id":394,"parentId":297,"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":1780018847774,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":25412,"timestamp":1525878965277,"id":409,"parentId":408,"tags":{},"startTime":1780018847788,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":25431,"timestamp":1525878965262,"id":408,"parentId":400,"tags":{},"startTime":1780018847788,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":27239,"timestamp":1525878964140,"id":400,"parentId":311,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1780018847787,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":20792,"timestamp":1525878976312,"id":420,"parentId":419,"tags":{},"startTime":1780018847799,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":20870,"timestamp":1525878976240,"id":419,"parentId":413,"tags":{},"startTime":1780018847799,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":22337,"timestamp":1525878975073,"id":413,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1780018847798,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":21048,"timestamp":1525878976379,"id":424,"parentId":423,"tags":{},"startTime":1780018847799,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":21077,"timestamp":1525878976352,"id":423,"parentId":415,"tags":{},"startTime":1780018847799,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":22976,"timestamp":1525878975296,"id":415,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1780018847798,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":22095,"timestamp":1525878976190,"id":418,"parentId":417,"tags":{},"startTime":1780018847799,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":22678,"timestamp":1525878975608,"id":417,"parentId":412,"tags":{},"startTime":1780018847798,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":23648,"timestamp":1525878974886,"id":412,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1780018847797,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":22212,"timestamp":1525878976348,"id":422,"parentId":421,"tags":{},"startTime":1780018847799,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":22243,"timestamp":1525878976319,"id":421,"parentId":414,"tags":{},"startTime":1780018847799,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":23900,"timestamp":1525878975205,"id":414,"parentId":331,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1780018847798,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6911,"timestamp":1525878994622,"id":433,"parentId":432,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6951,"timestamp":1525878994586,"id":432,"parentId":425,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8118,"timestamp":1525878993940,"id":425,"parentId":346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1780018847816,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7424,"timestamp":1525878994649,"id":437,"parentId":436,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7434,"timestamp":1525878994640,"id":436,"parentId":427,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9687,"timestamp":1525878994064,"id":427,"parentId":346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9157,"timestamp":1525878994638,"id":435,"parentId":434,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"}] +[{"name":"next-swc-loader","duration":9317,"timestamp":1525878994627,"id":434,"parentId":426,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10406,"timestamp":1525878994033,"id":426,"parentId":346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9795,"timestamp":1525878994672,"id":439,"parentId":438,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9818,"timestamp":1525878994650,"id":438,"parentId":428,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11307,"timestamp":1525878994088,"id":428,"parentId":350,"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":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10932,"timestamp":1525878994683,"id":441,"parentId":440,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10943,"timestamp":1525878994673,"id":440,"parentId":429,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12111,"timestamp":1525878994116,"id":429,"parentId":350,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11550,"timestamp":1525878994701,"id":445,"parentId":444,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11559,"timestamp":1525878994693,"id":444,"parentId":431,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13262,"timestamp":1525878994155,"id":431,"parentId":350,"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":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":13061,"timestamp":1525878994692,"id":443,"parentId":442,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":13079,"timestamp":1525878994684,"id":442,"parentId":430,"tags":{},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":15012,"timestamp":1525878994136,"id":430,"parentId":350,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1780018847817,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":44728,"timestamp":1525878964474,"id":403,"parentId":401,"tags":{},"startTime":1780018847787,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":44,"timestamp":1525879009212,"id":452,"parentId":401,"tags":{},"startTime":1780018847832,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":45040,"timestamp":1525878964376,"id":401,"parentId":271,"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":1780018847787,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":39577,"timestamp":1525878975352,"id":416,"parentId":411,"tags":{},"startTime":1780018847798,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":34,"timestamp":1525879014943,"id":455,"parentId":411,"tags":{},"startTime":1780018847837,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":40704,"timestamp":1525878974607,"id":411,"parentId":318,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1780018847797,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":163,"timestamp":1525879018292,"id":458,"parentId":456,"tags":{},"startTime":1780018847841,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":135,"timestamp":1525879018463,"id":461,"parentId":456,"tags":{},"startTime":1780018847841,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":1029,"timestamp":1525879018142,"id":456,"parentId":401,"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":1780018847841,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":21328,"timestamp":1525879000395,"id":449,"parentId":446,"tags":{},"startTime":1780018847823,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":41,"timestamp":1525879021759,"id":462,"parentId":446,"tags":{},"startTime":1780018847844,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":21944,"timestamp":1525879000056,"id":446,"parentId":271,"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":1780018847823,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":22784,"timestamp":1525879000424,"id":451,"parentId":448,"tags":{},"startTime":1780018847823,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":167,"timestamp":1525879023216,"id":487,"parentId":448,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":23517,"timestamp":1525879000246,"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":1780018847823,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":23399,"timestamp":1525879000418,"id":450,"parentId":447,"tags":{},"startTime":1780018847823,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":38,"timestamp":1525879023836,"id":488,"parentId":447,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":23828,"timestamp":1525879000141,"id":447,"parentId":281,"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":1780018847823,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":14048,"timestamp":1525879010702,"id":454,"parentId":453,"tags":{},"startTime":1780018847833,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":35,"timestamp":1525879024763,"id":489,"parentId":453,"tags":{},"startTime":1780018847847,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":15160,"timestamp":1525879010567,"id":453,"parentId":352,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1780018847833,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7344,"timestamp":1525879018412,"id":460,"parentId":459,"tags":{},"startTime":1780018847841,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7380,"timestamp":1525879018378,"id":459,"parentId":457,"tags":{},"startTime":1780018847841,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7941,"timestamp":1525879018247,"id":457,"parentId":381,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1780018847841,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4664,"timestamp":1525879023013,"id":476,"parentId":475,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4679,"timestamp":1525879023001,"id":475,"parentId":465,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5507,"timestamp":1525879022443,"id":465,"parentId":400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1780018847845,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5069,"timestamp":1525879022999,"id":474,"parentId":473,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5123,"timestamp":1525879022963,"id":473,"parentId":464,"tags":{},"startTime":1780018847845,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":6396,"timestamp":1525879022374,"id":464,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1780018847845,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5857,"timestamp":1525879022959,"id":472,"parentId":471,"tags":{},"startTime":1780018847845,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5993,"timestamp":1525879022824,"id":471,"parentId":463,"tags":{},"startTime":1780018847845,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":7567,"timestamp":1525879022204,"id":463,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1780018847845,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6767,"timestamp":1525879023024,"id":478,"parentId":477,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6777,"timestamp":1525879023015,"id":477,"parentId":466,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8155,"timestamp":1525879022472,"id":466,"parentId":394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1780018847845,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11005,"timestamp":1525879023045,"id":482,"parentId":481,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11019,"timestamp":1525879023036,"id":481,"parentId":468,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11892,"timestamp":1525879022523,"id":468,"parentId":415,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1780018847845,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11711,"timestamp":1525879023055,"id":484,"parentId":483,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11722,"timestamp":1525879023046,"id":483,"parentId":469,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12392,"timestamp":1525879022546,"id":469,"parentId":415,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1780018847845,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11923,"timestamp":1525879023034,"id":480,"parentId":479,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11932,"timestamp":1525879023026,"id":479,"parentId":467,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13222,"timestamp":1525879022499,"id":467,"parentId":394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1780018847845,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12679,"timestamp":1525879023065,"id":486,"parentId":485,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12689,"timestamp":1525879023056,"id":485,"parentId":470,"tags":{},"startTime":1780018847846,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13490,"timestamp":1525879022568,"id":470,"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":1780018847845,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8548,"timestamp":1525879027551,"id":496,"parentId":495,"tags":{},"startTime":1780018847850,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8561,"timestamp":1525879027539,"id":495,"parentId":491,"tags":{},"startTime":1780018847850,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9465,"timestamp":1525879027125,"id":491,"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":1780018847850,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9072,"timestamp":1525879027561,"id":498,"parentId":497,"tags":{},"startTime":1780018847850,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9083,"timestamp":1525879027552,"id":497,"parentId":492,"tags":{},"startTime":1780018847850,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9925,"timestamp":1525879027201,"id":492,"parentId":430,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1780018847850,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9701,"timestamp":1525879027536,"id":494,"parentId":493,"tags":{},"startTime":1780018847850,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9762,"timestamp":1525879027478,"id":493,"parentId":490,"tags":{},"startTime":1780018847850,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":12146,"timestamp":1525879026787,"id":490,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1780018847849,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":17864,"timestamp":1525879031189,"id":501,"parentId":499,"tags":{},"startTime":1780018847854,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":32,"timestamp":1525879049066,"id":523,"parentId":499,"tags":{},"startTime":1780018847872,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":18392,"timestamp":1525879030963,"id":499,"parentId":394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1780018847853,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":18151,"timestamp":1525879031211,"id":502,"parentId":500,"tags":{},"startTime":1780018847854,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":28,"timestamp":1525879049366,"id":524,"parentId":500,"tags":{},"startTime":1780018847872,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":18552,"timestamp":1525879031070,"id":500,"parentId":394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1780018847854,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3801,"timestamp":1525879046251,"id":516,"parentId":515,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3812,"timestamp":1525879046241,"id":515,"parentId":507,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4690,"timestamp":1525879046076,"id":507,"parentId":394,"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":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4567,"timestamp":1525879046260,"id":518,"parentId":517,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4579,"timestamp":1525879046252,"id":517,"parentId":508,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5489,"timestamp":1525879046097,"id":508,"parentId":394,"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":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5413,"timestamp":1525879046231,"id":514,"parentId":513,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5428,"timestamp":1525879046220,"id":513,"parentId":506,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6300,"timestamp":1525879046046,"id":506,"parentId":394,"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":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6937,"timestamp":1525879046218,"id":512,"parentId":511,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6971,"timestamp":1525879046188,"id":511,"parentId":505,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8903,"timestamp":1525879045983,"id":505,"parentId":394,"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":1780018847868,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8629,"timestamp":1525879046278,"id":522,"parentId":521,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8638,"timestamp":1525879046270,"id":521,"parentId":510,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9423,"timestamp":1525879046138,"id":510,"parentId":394,"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":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10560,"timestamp":1525879049952,"id":533,"parentId":532,"tags":{},"startTime":1780018847872,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10590,"timestamp":1525879049930,"id":532,"parentId":528,"tags":{},"startTime":1780018847872,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11651,"timestamp":1525879049838,"id":528,"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":1780018847872,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":15247,"timestamp":1525879046269,"id":520,"parentId":519,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":15256,"timestamp":1525879046261,"id":519,"parentId":509,"tags":{},"startTime":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":15906,"timestamp":1525879046119,"id":509,"parentId":394,"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":1780018847869,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8781,"timestamp":1525879057764,"id":545,"parentId":544,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8885,"timestamp":1525879057669,"id":544,"parentId":535,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9909,"timestamp":1525879057276,"id":535,"parentId":491,"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":1780018847880,"traceId":"70f8f15c9247bbcb"}] +[{"name":"next-swc-transform","duration":9492,"timestamp":1525879057824,"id":551,"parentId":550,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9503,"timestamp":1525879057814,"id":550,"parentId":538,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10306,"timestamp":1525879057378,"id":538,"parentId":470,"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":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10043,"timestamp":1525879057799,"id":547,"parentId":546,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10073,"timestamp":1525879057774,"id":546,"parentId":536,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12115,"timestamp":1525879057329,"id":536,"parentId":492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11634,"timestamp":1525879057833,"id":553,"parentId":552,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11644,"timestamp":1525879057825,"id":552,"parentId":539,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13451,"timestamp":1525879057398,"id":539,"parentId":470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":13080,"timestamp":1525879057813,"id":549,"parentId":548,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":13092,"timestamp":1525879057802,"id":548,"parentId":537,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":15049,"timestamp":1525879057356,"id":537,"parentId":470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":27871,"timestamp":1525879044699,"id":504,"parentId":503,"tags":{},"startTime":1780018847867,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":49,"timestamp":1525879072581,"id":567,"parentId":503,"tags":{},"startTime":1780018847895,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":28294,"timestamp":1525879044554,"id":503,"parentId":346,"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":1780018847867,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":15081,"timestamp":1525879057843,"id":555,"parentId":554,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":15091,"timestamp":1525879057835,"id":554,"parentId":540,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16634,"timestamp":1525879057418,"id":540,"parentId":470,"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":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":16401,"timestamp":1525879057852,"id":557,"parentId":556,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":16411,"timestamp":1525879057844,"id":556,"parentId":541,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":18586,"timestamp":1525879057437,"id":541,"parentId":470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":18397,"timestamp":1525879057863,"id":559,"parentId":558,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":18408,"timestamp":1525879057854,"id":558,"parentId":542,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":20214,"timestamp":1525879057455,"id":542,"parentId":470,"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":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":20209,"timestamp":1525879065146,"id":566,"parentId":565,"tags":{},"startTime":1780018847888,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":20261,"timestamp":1525879065100,"id":565,"parentId":562,"tags":{},"startTime":1780018847888,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-ts","duration":23601,"timestamp":1525879064830,"id":562,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1780018847887,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":38688,"timestamp":1525879049866,"id":529,"parentId":525,"tags":{},"startTime":1780018847872,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":40,"timestamp":1525879088563,"id":589,"parentId":525,"tags":{},"startTime":1780018847911,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":39060,"timestamp":1525879049670,"id":525,"parentId":297,"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":1780018847872,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":38860,"timestamp":1525879049878,"id":530,"parentId":526,"tags":{},"startTime":1780018847872,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":67,"timestamp":1525879088743,"id":590,"parentId":526,"tags":{},"startTime":1780018847911,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":39141,"timestamp":1525879049741,"id":526,"parentId":310,"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":1780018847872,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":39004,"timestamp":1525879049884,"id":531,"parentId":527,"tags":{},"startTime":1780018847872,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":32,"timestamp":1525879088893,"id":591,"parentId":527,"tags":{},"startTime":1780018847911,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":39187,"timestamp":1525879049789,"id":527,"parentId":282,"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":1780018847872,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8913,"timestamp":1525879080169,"id":578,"parentId":577,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8926,"timestamp":1525879080157,"id":577,"parentId":569,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10190,"timestamp":1525879079451,"id":569,"parentId":467,"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":1780018847902,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9649,"timestamp":1525879080225,"id":582,"parentId":581,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9703,"timestamp":1525879080180,"id":581,"parentId":571,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10879,"timestamp":1525879079501,"id":571,"parentId":467,"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":1780018847902,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10253,"timestamp":1525879080153,"id":576,"parentId":575,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10292,"timestamp":1525879080116,"id":575,"parentId":568,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11324,"timestamp":1525879079370,"id":568,"parentId":467,"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":1780018847902,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10528,"timestamp":1525879080179,"id":580,"parentId":579,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10538,"timestamp":1525879080170,"id":579,"parentId":570,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11538,"timestamp":1525879079479,"id":570,"parentId":467,"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":1780018847902,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11009,"timestamp":1525879080269,"id":584,"parentId":583,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11045,"timestamp":1525879080234,"id":583,"parentId":572,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12171,"timestamp":1525879079521,"id":572,"parentId":467,"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":1780018847902,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11410,"timestamp":1525879080294,"id":588,"parentId":587,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11420,"timestamp":1525879080285,"id":587,"parentId":574,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12486,"timestamp":1525879079561,"id":574,"parentId":467,"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":1780018847902,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11807,"timestamp":1525879080283,"id":586,"parentId":585,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11820,"timestamp":1525879080272,"id":585,"parentId":573,"tags":{},"startTime":1780018847903,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":14260,"timestamp":1525879079541,"id":573,"parentId":467,"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":1780018847902,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":47169,"timestamp":1525879057552,"id":543,"parentId":534,"tags":{},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":42,"timestamp":1525879104779,"id":592,"parentId":534,"tags":{},"startTime":1780018847927,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":48328,"timestamp":1525879057128,"id":534,"parentId":282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1780018847880,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":41452,"timestamp":1525879064940,"id":563,"parentId":560,"tags":{},"startTime":1780018847887,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":28,"timestamp":1525879106401,"id":593,"parentId":560,"tags":{},"startTime":1780018847929,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":42113,"timestamp":1525879064518,"id":560,"parentId":276,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1780018847887,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":41683,"timestamp":1525879064953,"id":564,"parentId":561,"tags":{},"startTime":1780018847887,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":23,"timestamp":1525879106640,"id":594,"parentId":561,"tags":{},"startTime":1780018847929,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":42004,"timestamp":1525879064779,"id":561,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1780018847887,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3086,"timestamp":1525879109722,"id":599,"parentId":598,"tags":{},"startTime":1780018847932,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3126,"timestamp":1525879109685,"id":598,"parentId":595,"tags":{},"startTime":1780018847932,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3748,"timestamp":1525879109447,"id":595,"parentId":506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1780018847932,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3464,"timestamp":1525879109745,"id":603,"parentId":602,"tags":{},"startTime":1780018847932,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3473,"timestamp":1525879109737,"id":602,"parentId":597,"tags":{},"startTime":1780018847932,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3875,"timestamp":1525879109559,"id":597,"parentId":509,"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":1780018847932,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3711,"timestamp":1525879109735,"id":601,"parentId":600,"tags":{},"startTime":1780018847932,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3723,"timestamp":1525879109725,"id":600,"parentId":596,"tags":{},"startTime":1780018847932,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4207,"timestamp":1525879109529,"id":596,"parentId":506,"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":1780018847932,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3776,"timestamp":1525879112424,"id":614,"parentId":613,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3809,"timestamp":1525879112395,"id":613,"parentId":604,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4409,"timestamp":1525879112086,"id":604,"parentId":535,"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":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4048,"timestamp":1525879112460,"id":618,"parentId":617,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4071,"timestamp":1525879112439,"id":617,"parentId":606,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4530,"timestamp":1525879112187,"id":606,"parentId":538,"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":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4293,"timestamp":1525879112438,"id":616,"parentId":615,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4305,"timestamp":1525879112426,"id":615,"parentId":605,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4945,"timestamp":1525879112149,"id":605,"parentId":538,"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":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4624,"timestamp":1525879112480,"id":622,"parentId":621,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4633,"timestamp":1525879112473,"id":621,"parentId":608,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5044,"timestamp":1525879112231,"id":608,"parentId":538,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4816,"timestamp":1525879112472,"id":620,"parentId":619,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4826,"timestamp":1525879112462,"id":619,"parentId":607,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5321,"timestamp":1525879112210,"id":607,"parentId":538,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5030,"timestamp":1525879112510,"id":628,"parentId":627,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5039,"timestamp":1525879112502,"id":627,"parentId":611,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5404,"timestamp":1525879112297,"id":611,"parentId":537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6742,"timestamp":1525879112501,"id":626,"parentId":625,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6752,"timestamp":1525879112494,"id":625,"parentId":610,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7232,"timestamp":1525879112269,"id":610,"parentId":537,"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":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7023,"timestamp":1525879112518,"id":630,"parentId":629,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7043,"timestamp":1525879112511,"id":629,"parentId":612,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7568,"timestamp":1525879112323,"id":612,"parentId":537,"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":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4810,"timestamp":1525879115977,"id":636,"parentId":635,"tags":{},"startTime":1780018847938,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4848,"timestamp":1525879115943,"id":635,"parentId":631,"tags":{},"startTime":1780018847938,"traceId":"70f8f15c9247bbcb"}] +[{"name":"build-module-js","duration":5540,"timestamp":1525879115649,"id":631,"parentId":528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1780018847938,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5201,"timestamp":1525879116001,"id":640,"parentId":639,"tags":{},"startTime":1780018847939,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5210,"timestamp":1525879115993,"id":639,"parentId":633,"tags":{},"startTime":1780018847938,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5677,"timestamp":1525879115743,"id":633,"parentId":569,"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":1780018847938,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5485,"timestamp":1525879115992,"id":638,"parentId":637,"tags":{},"startTime":1780018847938,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5498,"timestamp":1525879115980,"id":637,"parentId":632,"tags":{},"startTime":1780018847938,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5899,"timestamp":1525879115708,"id":632,"parentId":573,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1780018847938,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5607,"timestamp":1525879116011,"id":642,"parentId":641,"tags":{},"startTime":1780018847939,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5616,"timestamp":1525879116003,"id":641,"parentId":634,"tags":{},"startTime":1780018847939,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6072,"timestamp":1525879115764,"id":634,"parentId":573,"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":1780018847938,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9507,"timestamp":1525879112492,"id":624,"parentId":623,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9520,"timestamp":1525879112481,"id":623,"parentId":609,"tags":{},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11156,"timestamp":1525879112250,"id":609,"parentId":539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1780018847935,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2093,"timestamp":1525879124575,"id":653,"parentId":652,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2111,"timestamp":1525879124560,"id":652,"parentId":644,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":2951,"timestamp":1525879124013,"id":644,"parentId":570,"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":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2425,"timestamp":1525879124554,"id":651,"parentId":650,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2484,"timestamp":1525879124496,"id":650,"parentId":643,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3227,"timestamp":1525879123922,"id":643,"parentId":570,"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":1780018847946,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2571,"timestamp":1525879124587,"id":655,"parentId":654,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2582,"timestamp":1525879124577,"id":654,"parentId":645,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3434,"timestamp":1525879124041,"id":645,"parentId":570,"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":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4984,"timestamp":1525879124597,"id":657,"parentId":656,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4994,"timestamp":1525879124589,"id":656,"parentId":646,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5731,"timestamp":1525879124063,"id":646,"parentId":570,"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":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5792,"timestamp":1525879124621,"id":659,"parentId":658,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5815,"timestamp":1525879124599,"id":658,"parentId":647,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6507,"timestamp":1525879124083,"id":647,"parentId":573,"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":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5977,"timestamp":1525879124632,"id":661,"parentId":660,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5987,"timestamp":1525879124623,"id":660,"parentId":648,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7449,"timestamp":1525879124101,"id":648,"parentId":573,"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":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12348,"timestamp":1525879124640,"id":663,"parentId":662,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12360,"timestamp":1525879124633,"id":662,"parentId":649,"tags":{},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":15015,"timestamp":1525879124120,"id":649,"parentId":560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1780018847947,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3092,"timestamp":1525879140019,"id":668,"parentId":667,"tags":{},"startTime":1780018847963,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3134,"timestamp":1525879139984,"id":667,"parentId":665,"tags":{},"startTime":1780018847962,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3691,"timestamp":1525879139841,"id":665,"parentId":597,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1780018847962,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2746,"timestamp":1525879144412,"id":674,"parentId":673,"tags":{},"startTime":1780018847967,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2761,"timestamp":1525879144400,"id":673,"parentId":670,"tags":{},"startTime":1780018847967,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3191,"timestamp":1525879144331,"id":670,"parentId":394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1780018847967,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":7610,"timestamp":1525879139919,"id":666,"parentId":664,"tags":{},"startTime":1780018847962,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":30,"timestamp":1525879147534,"id":678,"parentId":664,"tags":{},"startTime":1780018847970,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8058,"timestamp":1525879139726,"id":664,"parentId":595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1780018847962,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3427,"timestamp":1525879144398,"id":672,"parentId":671,"tags":{},"startTime":1780018847967,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3455,"timestamp":1525879144371,"id":671,"parentId":669,"tags":{},"startTime":1780018847967,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4225,"timestamp":1525879144266,"id":669,"parentId":634,"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":1780018847967,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3234,"timestamp":1525879146878,"id":677,"parentId":676,"tags":{},"startTime":1780018847969,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3258,"timestamp":1525879146856,"id":676,"parentId":675,"tags":{},"startTime":1780018847969,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3589,"timestamp":1525879146770,"id":675,"parentId":648,"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":1780018847969,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":1627,"timestamp":1525879148943,"id":697,"parentId":696,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":1636,"timestamp":1525879148935,"id":696,"parentId":682,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":2071,"timestamp":1525879148664,"id":682,"parentId":573,"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":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2324,"timestamp":1525879148934,"id":695,"parentId":694,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2333,"timestamp":1525879148926,"id":694,"parentId":681,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":2772,"timestamp":1525879148642,"id":681,"parentId":572,"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":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2532,"timestamp":1525879148899,"id":691,"parentId":690,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2552,"timestamp":1525879148880,"id":690,"parentId":679,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3328,"timestamp":1525879148576,"id":679,"parentId":570,"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":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8712,"timestamp":1525879148924,"id":693,"parentId":692,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8727,"timestamp":1525879148914,"id":692,"parentId":680,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9359,"timestamp":1525879148617,"id":680,"parentId":572,"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":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9053,"timestamp":1525879148951,"id":699,"parentId":698,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9064,"timestamp":1525879148944,"id":698,"parentId":683,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9851,"timestamp":1525879148683,"id":683,"parentId":649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9586,"timestamp":1525879148959,"id":701,"parentId":700,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9594,"timestamp":1525879148952,"id":700,"parentId":684,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10077,"timestamp":1525879148702,"id":684,"parentId":649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9830,"timestamp":1525879148971,"id":703,"parentId":702,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9842,"timestamp":1525879148960,"id":702,"parentId":685,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10521,"timestamp":1525879148722,"id":685,"parentId":649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10275,"timestamp":1525879148988,"id":707,"parentId":706,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10285,"timestamp":1525879148980,"id":706,"parentId":687,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10716,"timestamp":1525879148758,"id":687,"parentId":649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10715,"timestamp":1525879148996,"id":709,"parentId":708,"tags":{},"startTime":1780018847972,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10724,"timestamp":1525879148989,"id":708,"parentId":688,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11428,"timestamp":1525879148776,"id":688,"parentId":649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11289,"timestamp":1525879148979,"id":705,"parentId":704,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11300,"timestamp":1525879148972,"id":704,"parentId":686,"tags":{},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12430,"timestamp":1525879148741,"id":686,"parentId":649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12183,"timestamp":1525879149004,"id":711,"parentId":710,"tags":{},"startTime":1780018847972,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12191,"timestamp":1525879148997,"id":710,"parentId":689,"tags":{},"startTime":1780018847972,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12522,"timestamp":1525879148829,"id":689,"parentId":649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1780018847971,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10400,"timestamp":1525879150960,"id":721,"parentId":720,"tags":{},"startTime":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10409,"timestamp":1525879150952,"id":720,"parentId":714,"tags":{},"startTime":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10648,"timestamp":1525879150867,"id":714,"parentId":570,"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":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10597,"timestamp":1525879150951,"id":719,"parentId":718,"tags":{},"startTime":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10608,"timestamp":1525879150942,"id":718,"parentId":713,"tags":{},"startTime":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10836,"timestamp":1525879150846,"id":713,"parentId":570,"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":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10820,"timestamp":1525879150941,"id":717,"parentId":716,"tags":{},"startTime":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10837,"timestamp":1525879150925,"id":716,"parentId":712,"tags":{},"startTime":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11105,"timestamp":1525879150811,"id":712,"parentId":570,"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":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10959,"timestamp":1525879150968,"id":723,"parentId":722,"tags":{},"startTime":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10967,"timestamp":1525879150961,"id":722,"parentId":715,"tags":{},"startTime":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11508,"timestamp":1525879150886,"id":715,"parentId":574,"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":1780018847973,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2910,"timestamp":1525879167394,"id":726,"parentId":725,"tags":{},"startTime":1780018847990,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2939,"timestamp":1525879167367,"id":725,"parentId":724,"tags":{},"startTime":1780018847990,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3587,"timestamp":1525879167284,"id":724,"parentId":509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1780018847990,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3133,"timestamp":1525879170044,"id":733,"parentId":732,"tags":{},"startTime":1780018847993,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3158,"timestamp":1525879170022,"id":732,"parentId":727,"tags":{},"startTime":1780018847993,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3793,"timestamp":1525879169688,"id":727,"parentId":664,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1780018847992,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3434,"timestamp":1525879170065,"id":737,"parentId":736,"tags":{},"startTime":1780018847993,"traceId":"70f8f15c9247bbcb"}] +[{"name":"next-swc-loader","duration":3552,"timestamp":1525879170056,"id":736,"parentId":729,"tags":{},"startTime":1780018847993,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3923,"timestamp":1525879169902,"id":729,"parentId":679,"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":1780018847992,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4086,"timestamp":1525879170073,"id":739,"parentId":738,"tags":{},"startTime":1780018847993,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4095,"timestamp":1525879170065,"id":738,"parentId":730,"tags":{},"startTime":1780018847993,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4670,"timestamp":1525879169937,"id":730,"parentId":681,"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":1780018847992,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4537,"timestamp":1525879170082,"id":741,"parentId":740,"tags":{},"startTime":1780018847993,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4545,"timestamp":1525879170074,"id":740,"parentId":731,"tags":{},"startTime":1780018847993,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4961,"timestamp":1525879169959,"id":731,"parentId":679,"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":1780018847992,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4888,"timestamp":1525879170056,"id":735,"parentId":734,"tags":{},"startTime":1780018847993,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4899,"timestamp":1525879170045,"id":734,"parentId":728,"tags":{},"startTime":1780018847993,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5622,"timestamp":1525879169779,"id":728,"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":1780018847992,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6351,"timestamp":1525879172811,"id":758,"parentId":757,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6384,"timestamp":1525879172780,"id":757,"parentId":742,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7164,"timestamp":1525879172275,"id":742,"parentId":685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6615,"timestamp":1525879172835,"id":762,"parentId":761,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6624,"timestamp":1525879172826,"id":761,"parentId":744,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7147,"timestamp":1525879172410,"id":744,"parentId":683,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6724,"timestamp":1525879172844,"id":764,"parentId":763,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6732,"timestamp":1525879172836,"id":763,"parentId":745,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7603,"timestamp":1525879172435,"id":745,"parentId":683,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7255,"timestamp":1525879172824,"id":760,"parentId":759,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7267,"timestamp":1525879172813,"id":759,"parentId":743,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8196,"timestamp":1525879172378,"id":743,"parentId":683,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7716,"timestamp":1525879172872,"id":770,"parentId":769,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7725,"timestamp":1525879172864,"id":769,"parentId":748,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8272,"timestamp":1525879172500,"id":748,"parentId":714,"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":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7924,"timestamp":1525879172863,"id":768,"parentId":767,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7933,"timestamp":1525879172854,"id":767,"parentId":747,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8585,"timestamp":1525879172478,"id":747,"parentId":680,"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":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8231,"timestamp":1525879172853,"id":766,"parentId":765,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8240,"timestamp":1525879172845,"id":765,"parentId":746,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8992,"timestamp":1525879172457,"id":746,"parentId":715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8625,"timestamp":1525879172890,"id":774,"parentId":773,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8634,"timestamp":1525879172882,"id":773,"parentId":750,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9205,"timestamp":1525879172543,"id":750,"parentId":713,"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":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8881,"timestamp":1525879172881,"id":772,"parentId":771,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8889,"timestamp":1525879172874,"id":771,"parentId":749,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9602,"timestamp":1525879172520,"id":749,"parentId":714,"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":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9233,"timestamp":1525879172900,"id":776,"parentId":775,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9242,"timestamp":1525879172892,"id":775,"parentId":751,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9723,"timestamp":1525879172583,"id":751,"parentId":713,"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":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9397,"timestamp":1525879172917,"id":780,"parentId":779,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9405,"timestamp":1525879172910,"id":779,"parentId":753,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9823,"timestamp":1525879172626,"id":753,"parentId":712,"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":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9523,"timestamp":1525879172933,"id":784,"parentId":783,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9531,"timestamp":1525879172926,"id":783,"parentId":755,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9850,"timestamp":1525879172725,"id":755,"parentId":712,"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":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9641,"timestamp":1525879172941,"id":786,"parentId":785,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9648,"timestamp":1525879172934,"id":785,"parentId":756,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9963,"timestamp":1525879172750,"id":756,"parentId":712,"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":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10658,"timestamp":1525879172925,"id":782,"parentId":781,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10667,"timestamp":1525879172918,"id":781,"parentId":754,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11149,"timestamp":1525879172687,"id":754,"parentId":712,"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":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10948,"timestamp":1525879172909,"id":778,"parentId":777,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10957,"timestamp":1525879172902,"id":777,"parentId":752,"tags":{},"startTime":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11563,"timestamp":1525879172607,"id":752,"parentId":712,"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":1780018847995,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":1489,"timestamp":1525879195942,"id":805,"parentId":804,"tags":{},"startTime":1780018848018,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":1502,"timestamp":1525879195934,"id":804,"parentId":798,"tags":{},"startTime":1780018848018,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":2105,"timestamp":1525879195840,"id":798,"parentId":731,"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":1780018848018,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3345,"timestamp":1525879195933,"id":803,"parentId":802,"tags":{},"startTime":1780018848018,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3360,"timestamp":1525879195922,"id":802,"parentId":797,"tags":{},"startTime":1780018848018,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3816,"timestamp":1525879195820,"id":797,"parentId":730,"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":1780018848018,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3734,"timestamp":1525879195919,"id":801,"parentId":800,"tags":{},"startTime":1780018848018,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3767,"timestamp":1525879195887,"id":800,"parentId":796,"tags":{},"startTime":1780018848018,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4208,"timestamp":1525879195785,"id":796,"parentId":731,"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":1780018848018,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3626,"timestamp":1525879196379,"id":813,"parentId":812,"tags":{},"startTime":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3635,"timestamp":1525879196372,"id":812,"parentId":807,"tags":{},"startTime":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3922,"timestamp":1525879196297,"id":807,"parentId":745,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":6041,"timestamp":1525879194187,"id":791,"parentId":788,"tags":{},"startTime":1780018848017,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":35,"timestamp":1525879200234,"id":824,"parentId":788,"tags":{},"startTime":1780018848023,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6339,"timestamp":1525879194071,"id":788,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1780018848017,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":6247,"timestamp":1525879194174,"id":790,"parentId":787,"tags":{},"startTime":1780018848017,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":28,"timestamp":1525879200425,"id":825,"parentId":787,"tags":{},"startTime":1780018848023,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6950,"timestamp":1525879193961,"id":787,"parentId":507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1780018848016,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":6723,"timestamp":1525879194192,"id":792,"parentId":789,"tags":{},"startTime":1780018848017,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":25,"timestamp":1525879200919,"id":826,"parentId":789,"tags":{},"startTime":1780018848023,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6897,"timestamp":1525879194126,"id":789,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1780018848017,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4810,"timestamp":1525879196396,"id":817,"parentId":816,"tags":{},"startTime":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4818,"timestamp":1525879196389,"id":816,"parentId":809,"tags":{},"startTime":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5091,"timestamp":1525879196338,"id":809,"parentId":747,"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":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5076,"timestamp":1525879196371,"id":811,"parentId":810,"tags":{},"startTime":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5089,"timestamp":1525879196358,"id":810,"parentId":806,"tags":{},"startTime":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5671,"timestamp":1525879196268,"id":806,"parentId":745,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6754,"timestamp":1525879197142,"id":821,"parentId":820,"tags":{},"startTime":1780018848020,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6781,"timestamp":1525879197129,"id":820,"parentId":818,"tags":{},"startTime":1780018848020,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7330,"timestamp":1525879197076,"id":818,"parentId":679,"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":1780018848020,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7274,"timestamp":1525879197151,"id":823,"parentId":822,"tags":{},"startTime":1780018848020,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7283,"timestamp":1525879197143,"id":822,"parentId":819,"tags":{},"startTime":1780018848020,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7554,"timestamp":1525879197108,"id":819,"parentId":752,"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":1780018848020,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":9700,"timestamp":1525879194974,"id":794,"parentId":793,"tags":{},"startTime":1780018848017,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":39,"timestamp":1525879204680,"id":827,"parentId":793,"tags":{},"startTime":1780018848027,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9969,"timestamp":1525879194922,"id":793,"parentId":569,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1780018848017,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":9136,"timestamp":1525879195863,"id":799,"parentId":795,"tags":{},"startTime":1780018848018,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":34,"timestamp":1525879205010,"id":828,"parentId":795,"tags":{},"startTime":1780018848028,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9398,"timestamp":1525879195729,"id":795,"parentId":649,"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":1780018848018,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2601,"timestamp":1525879209668,"id":831,"parentId":830,"tags":{},"startTime":1780018848032,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2647,"timestamp":1525879209626,"id":830,"parentId":829,"tags":{},"startTime":1780018848032,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3311,"timestamp":1525879209283,"id":829,"parentId":683,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1780018848032,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":28,"timestamp":1525879212802,"id":833,"parentId":832,"tags":{},"startTime":1780018848035,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":567,"timestamp":1525879212835,"id":834,"parentId":832,"tags":{},"startTime":1780018848035,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":1321,"timestamp":1525879212717,"id":832,"parentId":806,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1780018848035,"traceId":"70f8f15c9247bbcb"}] +[{"name":"next-swc-transform","duration":2056,"timestamp":1525879214583,"id":837,"parentId":836,"tags":{},"startTime":1780018848037,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2093,"timestamp":1525879214556,"id":836,"parentId":835,"tags":{},"startTime":1780018848037,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":2774,"timestamp":1525879214493,"id":835,"parentId":798,"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":1780018848037,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2309,"timestamp":1525879215369,"id":840,"parentId":839,"tags":{},"startTime":1780018848038,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2345,"timestamp":1525879215336,"id":839,"parentId":838,"tags":{},"startTime":1780018848038,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":2661,"timestamp":1525879215221,"id":838,"parentId":806,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1780018848038,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":1508,"timestamp":1525879216398,"id":849,"parentId":848,"tags":{},"startTime":1780018848039,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":1518,"timestamp":1525879216389,"id":848,"parentId":845,"tags":{},"startTime":1780018848039,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":1685,"timestamp":1525879216347,"id":845,"parentId":829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1780018848039,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2022,"timestamp":1525879216224,"id":843,"parentId":842,"tags":{},"startTime":1780018848039,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2058,"timestamp":1525879216188,"id":842,"parentId":841,"tags":{},"startTime":1780018848039,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":2598,"timestamp":1525879216079,"id":841,"parentId":818,"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":1780018848039,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":25108,"timestamp":1525879196388,"id":815,"parentId":814,"tags":{},"startTime":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":25117,"timestamp":1525879196380,"id":814,"parentId":808,"tags":{},"startTime":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":32062,"timestamp":1525879196316,"id":808,"parentId":747,"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":1780018848019,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12066,"timestamp":1525879216388,"id":847,"parentId":846,"tags":{},"startTime":1780018848039,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12082,"timestamp":1525879216373,"id":846,"parentId":844,"tags":{},"startTime":1780018848039,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12823,"timestamp":1525879216309,"id":844,"parentId":829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1780018848039,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":356,"timestamp":1525879230901,"id":851,"parentId":850,"tags":{},"startTime":1780018848053,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":38,"timestamp":1525879231281,"id":852,"parentId":850,"tags":{},"startTime":1780018848054,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":2005,"timestamp":1525879230819,"id":850,"parentId":730,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1780018848053,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":314,"timestamp":1525879233626,"id":856,"parentId":855,"tags":{},"startTime":1780018848056,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":62,"timestamp":1525879233948,"id":857,"parentId":855,"tags":{},"startTime":1780018848056,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4471,"timestamp":1525879233556,"id":855,"parentId":808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1780018848056,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":4585,"timestamp":1525879233518,"id":854,"parentId":853,"tags":{},"startTime":1780018848056,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":45,"timestamp":1525879238113,"id":858,"parentId":853,"tags":{},"startTime":1780018848061,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5126,"timestamp":1525879233418,"id":853,"parentId":808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1780018848056,"traceId":"70f8f15c9247bbcb"},{"name":"make","duration":968821,"timestamp":1525878270412,"id":119,"parentId":118,"tags":{},"startTime":1780018847093,"traceId":"70f8f15c9247bbcb"},{"name":"chunk-graph","duration":2966,"timestamp":1525879245657,"id":860,"parentId":859,"tags":{},"startTime":1780018848068,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-modules","duration":3,"timestamp":1525879248643,"id":862,"parentId":859,"tags":{},"startTime":1780018848071,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunks","duration":4004,"timestamp":1525879248655,"id":863,"parentId":859,"tags":{},"startTime":1780018848071,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-tree","duration":4,"timestamp":1525879252679,"id":864,"parentId":859,"tags":{},"startTime":1780018848075,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunk-modules","duration":3,"timestamp":1525879252698,"id":865,"parentId":859,"tags":{},"startTime":1780018848075,"traceId":"70f8f15c9247bbcb"},{"name":"optimize","duration":4913,"timestamp":1525879248636,"id":861,"parentId":859,"tags":{},"startTime":1780018848071,"traceId":"70f8f15c9247bbcb"},{"name":"module-hash","duration":6061,"timestamp":1525879255759,"id":866,"parentId":859,"tags":{},"startTime":1780018848078,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation","duration":14348,"timestamp":1525879261835,"id":867,"parentId":859,"tags":{},"startTime":1780018848084,"traceId":"70f8f15c9247bbcb"},{"name":"hash","duration":3798,"timestamp":1525879278805,"id":868,"parentId":859,"tags":{},"startTime":1780018848101,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation-jobs","duration":239,"timestamp":1525879282602,"id":869,"parentId":859,"tags":{},"startTime":1780018848105,"traceId":"70f8f15c9247bbcb"},{"name":"module-assets","duration":206,"timestamp":1525879282779,"id":870,"parentId":859,"tags":{},"startTime":1780018848105,"traceId":"70f8f15c9247bbcb"},{"name":"create-chunk-assets","duration":72244,"timestamp":1525879283027,"id":871,"parentId":859,"tags":{},"startTime":1780018848106,"traceId":"70f8f15c9247bbcb"},{"name":"seal","duration":113256,"timestamp":1525879244851,"id":859,"parentId":118,"tags":{},"startTime":1780018848067,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-compilation","duration":1090130,"timestamp":1525878269257,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1780018847092,"traceId":"70f8f15c9247bbcb"},{"name":"emit","duration":20068,"timestamp":1525879359440,"id":872,"parentId":116,"tags":{},"startTime":1780018848182,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-invalidated-server","duration":1118531,"timestamp":1525878261775,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1780018847084,"traceId":"70f8f15c9247bbcb"},{"name":"build-module","duration":1011,"timestamp":1525879417688,"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)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780018848240,"traceId":"70f8f15c9247bbcb"},{"name":"build-module","duration":732,"timestamp":1525879418741,"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":1780018848241,"traceId":"70f8f15c9247bbcb"},{"name":"build-module","duration":886,"timestamp":1525879419488,"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":1780018848242,"traceId":"70f8f15c9247bbcb"},{"name":"build-module","duration":1213,"timestamp":1525879420384,"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":1780018848243,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":8,"timestamp":1525879427099,"id":886,"parentId":885,"tags":{},"startTime":1780018848250,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6532,"timestamp":1525879429912,"id":902,"parentId":901,"tags":{},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6579,"timestamp":1525879429870,"id":901,"parentId":889,"tags":{},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9676,"timestamp":1525879427886,"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":1780018848250,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8603,"timestamp":1525879429953,"id":904,"parentId":903,"tags":{},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8648,"timestamp":1525879429914,"id":903,"parentId":890,"tags":{},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":10353,"timestamp":1525879429246,"id":890,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12391,"timestamp":1525879427264,"id":888,"parentId":887,"tags":{},"startTime":1780018848250,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12535,"timestamp":1525879427121,"id":887,"parentId":885,"tags":{},"startTime":1780018848250,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-mjs","duration":14546,"timestamp":1525879426567,"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":1780018848249,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11136,"timestamp":1525879430017,"id":908,"parentId":907,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11164,"timestamp":1525879429990,"id":907,"parentId":892,"tags":{},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":12115,"timestamp":1525879429553,"id":892,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11648,"timestamp":1525879430044,"id":910,"parentId":909,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11675,"timestamp":1525879430018,"id":909,"parentId":893,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":12652,"timestamp":1525879429602,"id":893,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12341,"timestamp":1525879429988,"id":906,"parentId":905,"tags":{},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12377,"timestamp":1525879429954,"id":905,"parentId":891,"tags":{},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":14843,"timestamp":1525879429504,"id":891,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":19146,"timestamp":1525879430062,"id":914,"parentId":913,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":19157,"timestamp":1525879430054,"id":913,"parentId":895,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":20146,"timestamp":1525879429672,"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":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":19785,"timestamp":1525879430085,"id":920,"parentId":919,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":19794,"timestamp":1525879430078,"id":919,"parentId":898,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":20777,"timestamp":1525879429765,"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":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":20494,"timestamp":1525879430070,"id":916,"parentId":915,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":20502,"timestamp":1525879430063,"id":915,"parentId":896,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":21419,"timestamp":1525879429715,"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":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":21051,"timestamp":1525879430092,"id":922,"parentId":921,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":21059,"timestamp":1525879430086,"id":921,"parentId":899,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":21679,"timestamp":1525879429786,"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":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":21584,"timestamp":1525879430053,"id":912,"parentId":911,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":21593,"timestamp":1525879430045,"id":911,"parentId":894,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":24066,"timestamp":1525879429647,"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":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":23668,"timestamp":1525879430077,"id":918,"parentId":917,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":23677,"timestamp":1525879430070,"id":917,"parentId":897,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":26051,"timestamp":1525879429738,"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":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":26331,"timestamp":1525879430121,"id":924,"parentId":923,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":26363,"timestamp":1525879430093,"id":923,"parentId":900,"tags":{},"startTime":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":31690,"timestamp":1525879429816,"id":900,"parentId":881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1780018848252,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":256,"timestamp":1525879471534,"id":930,"parentId":927,"tags":{},"startTime":1780018848294,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":286,"timestamp":1525879471541,"id":931,"parentId":928,"tags":{},"startTime":1780018848294,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":51,"timestamp":1525879471800,"id":934,"parentId":927,"tags":{},"startTime":1780018848294,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":22,"timestamp":1525879471829,"id":935,"parentId":928,"tags":{},"startTime":1780018848294,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":861,"timestamp":1525879471314,"id":927,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1780018848294,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":883,"timestamp":1525879471416,"id":928,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1780018848294,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":45911,"timestamp":1525879431007,"id":926,"parentId":925,"tags":{},"startTime":1780018848254,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":31,"timestamp":1525879476929,"id":1029,"parentId":925,"tags":{},"startTime":1780018848299,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":46531,"timestamp":1525879430792,"id":925,"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":1780018848253,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5680,"timestamp":1525879471736,"id":933,"parentId":932,"tags":{},"startTime":1780018848294,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5745,"timestamp":1525879471672,"id":932,"parentId":929,"tags":{},"startTime":1780018848294,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":6768,"timestamp":1525879471463,"id":929,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1780018848294,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3217,"timestamp":1525879475036,"id":972,"parentId":971,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"}] +[{"name":"next-swc-loader","duration":3377,"timestamp":1525879475028,"id":971,"parentId":938,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4574,"timestamp":1525879474210,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3769,"timestamp":1525879475026,"id":970,"parentId":969,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3781,"timestamp":1525879475014,"id":969,"parentId":937,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4926,"timestamp":1525879474172,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4096,"timestamp":1525879475011,"id":968,"parentId":967,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4126,"timestamp":1525879474982,"id":967,"parentId":936,"tags":{},"startTime":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5320,"timestamp":1525879474038,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8207,"timestamp":1525879475045,"id":974,"parentId":973,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8219,"timestamp":1525879475038,"id":973,"parentId":939,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9561,"timestamp":1525879474235,"id":939,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8746,"timestamp":1525879475063,"id":978,"parentId":977,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8755,"timestamp":1525879475056,"id":977,"parentId":941,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9813,"timestamp":1525879474294,"id":941,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9046,"timestamp":1525879475071,"id":980,"parentId":979,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9054,"timestamp":1525879475064,"id":979,"parentId":942,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10069,"timestamp":1525879474316,"id":942,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9346,"timestamp":1525879475054,"id":976,"parentId":975,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9355,"timestamp":1525879475047,"id":975,"parentId":940,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10668,"timestamp":1525879474259,"id":940,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9858,"timestamp":1525879475079,"id":982,"parentId":981,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9866,"timestamp":1525879475072,"id":981,"parentId":943,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10831,"timestamp":1525879474338,"id":943,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10089,"timestamp":1525879475087,"id":984,"parentId":983,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10097,"timestamp":1525879475080,"id":983,"parentId":944,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11054,"timestamp":1525879474358,"id":944,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10324,"timestamp":1525879475096,"id":986,"parentId":985,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10332,"timestamp":1525879475088,"id":985,"parentId":945,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11240,"timestamp":1525879474380,"id":945,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10529,"timestamp":1525879475105,"id":988,"parentId":987,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10538,"timestamp":1525879475097,"id":987,"parentId":946,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11706,"timestamp":1525879474399,"id":946,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11005,"timestamp":1525879475113,"id":990,"parentId":989,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11013,"timestamp":1525879475106,"id":989,"parentId":947,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12086,"timestamp":1525879474418,"id":947,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11395,"timestamp":1525879475121,"id":992,"parentId":991,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11404,"timestamp":1525879475114,"id":991,"parentId":948,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12472,"timestamp":1525879474438,"id":948,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11895,"timestamp":1525879475129,"id":994,"parentId":993,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11912,"timestamp":1525879475122,"id":993,"parentId":949,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13328,"timestamp":1525879474457,"id":949,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12661,"timestamp":1525879475145,"id":998,"parentId":997,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12670,"timestamp":1525879475138,"id":997,"parentId":951,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13582,"timestamp":1525879474495,"id":951,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12956,"timestamp":1525879475137,"id":996,"parentId":995,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12964,"timestamp":1525879475130,"id":995,"parentId":950,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13898,"timestamp":1525879474476,"id":950,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":13232,"timestamp":1525879475153,"id":1000,"parentId":999,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":13242,"timestamp":1525879475146,"id":999,"parentId":952,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":14209,"timestamp":1525879474514,"id":952,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":13571,"timestamp":1525879475162,"id":1002,"parentId":1001,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":13579,"timestamp":1525879475155,"id":1001,"parentId":953,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":14389,"timestamp":1525879474533,"id":953,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":13752,"timestamp":1525879475179,"id":1006,"parentId":1005,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":13762,"timestamp":1525879475171,"id":1005,"parentId":955,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":14579,"timestamp":1525879474571,"id":955,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":13956,"timestamp":1525879475202,"id":1012,"parentId":1011,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":13963,"timestamp":1525879475196,"id":1011,"parentId":958,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":14742,"timestamp":1525879474638,"id":958,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":14206,"timestamp":1525879475187,"id":1008,"parentId":1007,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":14214,"timestamp":1525879475180,"id":1007,"parentId":956,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":15147,"timestamp":1525879474598,"id":956,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":14582,"timestamp":1525879475170,"id":1004,"parentId":1003,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":14590,"timestamp":1525879475163,"id":1003,"parentId":954,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":15482,"timestamp":1525879474552,"id":954,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":14832,"timestamp":1525879475209,"id":1014,"parentId":1013,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":14839,"timestamp":1525879475203,"id":1013,"parentId":959,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":15618,"timestamp":1525879474660,"id":959,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":15070,"timestamp":1525879475217,"id":1016,"parentId":1015,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":15078,"timestamp":1525879475210,"id":1015,"parentId":960,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":15856,"timestamp":1525879474678,"id":960,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":15353,"timestamp":1525879475195,"id":1010,"parentId":1009,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":15361,"timestamp":1525879475188,"id":1009,"parentId":957,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16476,"timestamp":1525879474619,"id":957,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":15863,"timestamp":1525879475240,"id":1022,"parentId":1021,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":15870,"timestamp":1525879475233,"id":1021,"parentId":963,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16585,"timestamp":1525879474735,"id":963,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":16099,"timestamp":1525879475233,"id":1020,"parentId":1019,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":16107,"timestamp":1525879475226,"id":1019,"parentId":962,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16819,"timestamp":1525879474715,"id":962,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":16296,"timestamp":1525879475248,"id":1024,"parentId":1023,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":16305,"timestamp":1525879475241,"id":1023,"parentId":964,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":17065,"timestamp":1525879474753,"id":964,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":223,"timestamp":1525879495796,"id":1046,"parentId":1043,"tags":{},"startTime":1780018848318,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":253,"timestamp":1525879495802,"id":1047,"parentId":1044,"tags":{},"startTime":1780018848318,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2751,"timestamp":1525879496026,"id":1052,"parentId":1043,"tags":{},"startTime":1780018848319,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2723,"timestamp":1525879496057,"id":1053,"parentId":1044,"tags":{},"startTime":1780018848319,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3495,"timestamp":1525879495620,"id":1043,"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":1780018848318,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3508,"timestamp":1525879495694,"id":1044,"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":1780018848318,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":23970,"timestamp":1525879475280,"id":1026,"parentId":1025,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":24002,"timestamp":1525879475249,"id":1025,"parentId":965,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":24941,"timestamp":1525879474773,"id":965,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":18106,"timestamp":1525879481622,"id":1035,"parentId":1034,"tags":{},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":18132,"timestamp":1525879481597,"id":1034,"parentId":1030,"tags":{},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":18723,"timestamp":1525879481359,"id":1030,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":18465,"timestamp":1525879481633,"id":1037,"parentId":1036,"tags":{},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":18475,"timestamp":1525879481624,"id":1036,"parentId":1031,"tags":{},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":18961,"timestamp":1525879481428,"id":1031,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":25172,"timestamp":1525879475308,"id":1028,"parentId":1027,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":25200,"timestamp":1525879475281,"id":1027,"parentId":966,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-ts","duration":26769,"timestamp":1525879474820,"id":966,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1780018848297,"traceId":"70f8f15c9247bbcb"}] +[{"name":"next-swc-transform","duration":26561,"timestamp":1525879475225,"id":1018,"parentId":1017,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":26569,"timestamp":1525879475218,"id":1017,"parentId":961,"tags":{},"startTime":1780018848298,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":28391,"timestamp":1525879474698,"id":961,"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":1780018848297,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":21473,"timestamp":1525879481641,"id":1039,"parentId":1038,"tags":{},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":21482,"timestamp":1525879481634,"id":1038,"parentId":1032,"tags":{},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":23153,"timestamp":1525879481456,"id":1032,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":23053,"timestamp":1525879481671,"id":1041,"parentId":1040,"tags":{},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":23085,"timestamp":1525879481642,"id":1040,"parentId":1033,"tags":{},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-tsx","duration":25046,"timestamp":1525879481479,"id":1033,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1780018848304,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10931,"timestamp":1525879495973,"id":1051,"parentId":1050,"tags":{},"startTime":1780018848318,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10943,"timestamp":1525879495963,"id":1050,"parentId":1045,"tags":{},"startTime":1780018848318,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11532,"timestamp":1525879495749,"id":1045,"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":1780018848318,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":20714,"timestamp":1525879495960,"id":1049,"parentId":1048,"tags":{},"startTime":1780018848318,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":20752,"timestamp":1525879495927,"id":1048,"parentId":1042,"tags":{},"startTime":1780018848318,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":22650,"timestamp":1525879495479,"id":1042,"parentId":928,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1780018848318,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7718,"timestamp":1525879510838,"id":1062,"parentId":1061,"tags":{},"startTime":1780018848333,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7728,"timestamp":1525879510829,"id":1061,"parentId":1056,"tags":{},"startTime":1780018848333,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8316,"timestamp":1525879510482,"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":1780018848333,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8062,"timestamp":1525879510828,"id":1060,"parentId":1059,"tags":{},"startTime":1780018848333,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8074,"timestamp":1525879510817,"id":1059,"parentId":1055,"tags":{},"startTime":1780018848333,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8640,"timestamp":1525879510447,"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":1780018848333,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8284,"timestamp":1525879510812,"id":1058,"parentId":1057,"tags":{},"startTime":1780018848333,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8329,"timestamp":1525879510767,"id":1057,"parentId":1054,"tags":{},"startTime":1780018848333,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9112,"timestamp":1525879510328,"id":1054,"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":1780018848333,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":670,"timestamp":1525879520686,"id":1079,"parentId":1065,"tags":{},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":715,"timestamp":1525879520691,"id":1080,"parentId":1070,"tags":{},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":740,"timestamp":1525879520693,"id":1081,"parentId":1077,"tags":{},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":757,"timestamp":1525879520704,"id":1082,"parentId":1078,"tags":{},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2326,"timestamp":1525879521366,"id":1107,"parentId":1065,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2288,"timestamp":1525879521408,"id":1108,"parentId":1070,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2260,"timestamp":1525879521436,"id":1109,"parentId":1077,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2233,"timestamp":1525879521464,"id":1110,"parentId":1078,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4197,"timestamp":1525879520251,"id":1065,"parentId":939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4192,"timestamp":1525879520415,"id":1070,"parentId":952,"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":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4148,"timestamp":1525879520583,"id":1077,"parentId":939,"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":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4357,"timestamp":1525879520623,"id":1078,"parentId":964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4599,"timestamp":1525879521104,"id":1090,"parentId":1089,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4610,"timestamp":1525879521095,"id":1089,"parentId":1067,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5686,"timestamp":1525879520321,"id":1067,"parentId":940,"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":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4926,"timestamp":1525879521093,"id":1088,"parentId":1087,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4937,"timestamp":1525879521083,"id":1087,"parentId":1066,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7996,"timestamp":1525879520296,"id":1066,"parentId":940,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7330,"timestamp":1525879521058,"id":1084,"parentId":1083,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7482,"timestamp":1525879520910,"id":1083,"parentId":1063,"tags":{},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9184,"timestamp":1525879520140,"id":1063,"parentId":957,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8313,"timestamp":1525879521081,"id":1086,"parentId":1085,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8336,"timestamp":1525879521062,"id":1085,"parentId":1064,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9710,"timestamp":1525879520220,"id":1064,"parentId":957,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8804,"timestamp":1525879521143,"id":1096,"parentId":1095,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8825,"timestamp":1525879521123,"id":1095,"parentId":1071,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9993,"timestamp":1525879520453,"id":1071,"parentId":957,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":385,"timestamp":1525879534368,"id":1125,"parentId":1111,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":427,"timestamp":1525879534376,"id":1126,"parentId":1113,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":1345,"timestamp":1525879534762,"id":1149,"parentId":1111,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":1304,"timestamp":1525879534805,"id":1150,"parentId":1113,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5799,"timestamp":1525879531238,"id":1111,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6483,"timestamp":1525879531390,"id":1113,"parentId":961,"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":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":16795,"timestamp":1525879521113,"id":1092,"parentId":1091,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":16805,"timestamp":1525879521106,"id":1091,"parentId":1068,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":17985,"timestamp":1525879520342,"id":1068,"parentId":940,"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":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":17192,"timestamp":1525879521163,"id":1100,"parentId":1099,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":17202,"timestamp":1525879521155,"id":1099,"parentId":1073,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":19060,"timestamp":1525879520504,"id":1073,"parentId":956,"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":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":18469,"timestamp":1525879521123,"id":1094,"parentId":1093,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":18478,"timestamp":1525879521115,"id":1093,"parentId":1069,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":19780,"timestamp":1525879520393,"id":1069,"parentId":943,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":19047,"timestamp":1525879521154,"id":1098,"parentId":1097,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":19057,"timestamp":1525879521145,"id":1097,"parentId":1072,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":20198,"timestamp":1525879520473,"id":1072,"parentId":946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":20323,"timestamp":1525879521172,"id":1102,"parentId":1101,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":20332,"timestamp":1525879521164,"id":1101,"parentId":1074,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":21482,"timestamp":1525879520525,"id":1074,"parentId":956,"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":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":20845,"timestamp":1525879521180,"id":1104,"parentId":1103,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":20853,"timestamp":1525879521173,"id":1103,"parentId":1075,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":22079,"timestamp":1525879520544,"id":1075,"parentId":956,"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":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":21447,"timestamp":1525879521188,"id":1106,"parentId":1105,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":21455,"timestamp":1525879521181,"id":1105,"parentId":1076,"tags":{},"startTime":1780018848344,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":22449,"timestamp":1525879520565,"id":1076,"parentId":956,"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":1780018848343,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8479,"timestamp":1525879534548,"id":1134,"parentId":1133,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8489,"timestamp":1525879534540,"id":1133,"parentId":1116,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11828,"timestamp":1525879531508,"id":1116,"parentId":1032,"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":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8811,"timestamp":1525879534538,"id":1132,"parentId":1131,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8821,"timestamp":1525879534529,"id":1131,"parentId":1115,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12235,"timestamp":1525879531484,"id":1115,"parentId":1032,"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":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9220,"timestamp":1525879534514,"id":1128,"parentId":1127,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9251,"timestamp":1525879534484,"id":1127,"parentId":1112,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12862,"timestamp":1525879531350,"id":1112,"parentId":1032,"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":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9647,"timestamp":1525879534577,"id":1138,"parentId":1137,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9656,"timestamp":1525879534568,"id":1137,"parentId":1118,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13024,"timestamp":1525879531557,"id":1118,"parentId":961,"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":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9996,"timestamp":1525879534593,"id":1142,"parentId":1141,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10004,"timestamp":1525879534586,"id":1141,"parentId":1120,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13219,"timestamp":1525879531609,"id":1120,"parentId":961,"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":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10280,"timestamp":1525879534567,"id":1136,"parentId":1135,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10299,"timestamp":1525879534549,"id":1135,"parentId":1117,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":14097,"timestamp":1525879531530,"id":1117,"parentId":961,"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":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11117,"timestamp":1525879534528,"id":1130,"parentId":1129,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11129,"timestamp":1525879534518,"id":1129,"parentId":1114,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":14617,"timestamp":1525879531460,"id":1114,"parentId":1032,"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":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":24820,"timestamp":1525879534585,"id":1140,"parentId":1139,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":24835,"timestamp":1525879534578,"id":1139,"parentId":1119,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"}] +[{"name":"build-module-js","duration":28782,"timestamp":1525879531579,"id":1119,"parentId":961,"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":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":25777,"timestamp":1525879534610,"id":1146,"parentId":1145,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":25786,"timestamp":1525879534603,"id":1145,"parentId":1122,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":29500,"timestamp":1525879531649,"id":1122,"parentId":961,"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":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":26555,"timestamp":1525879534620,"id":1148,"parentId":1147,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":26564,"timestamp":1525879534612,"id":1147,"parentId":1123,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":29904,"timestamp":1525879531669,"id":1123,"parentId":961,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":26992,"timestamp":1525879534602,"id":1144,"parentId":1143,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":27001,"timestamp":1525879534594,"id":1143,"parentId":1121,"tags":{},"startTime":1780018848357,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":30862,"timestamp":1525879531629,"id":1121,"parentId":961,"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":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11662,"timestamp":1525879551306,"id":1164,"parentId":1163,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11672,"timestamp":1525879551298,"id":1163,"parentId":1154,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12474,"timestamp":1525879550855,"id":1154,"parentId":1042,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1780018848373,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12064,"timestamp":1525879551285,"id":1160,"parentId":1159,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12075,"timestamp":1525879551275,"id":1159,"parentId":1152,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":12846,"timestamp":1525879550785,"id":1152,"parentId":1042,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1780018848373,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12352,"timestamp":1525879551297,"id":1162,"parentId":1161,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12363,"timestamp":1525879551287,"id":1161,"parentId":1153,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13252,"timestamp":1525879550823,"id":1153,"parentId":1042,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1780018848373,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12817,"timestamp":1525879551272,"id":1158,"parentId":1157,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12854,"timestamp":1525879551236,"id":1157,"parentId":1151,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13837,"timestamp":1525879550674,"id":1151,"parentId":1042,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1780018848373,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":13195,"timestamp":1525879551323,"id":1168,"parentId":1167,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":13203,"timestamp":1525879551316,"id":1167,"parentId":1156,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13747,"timestamp":1525879550969,"id":1156,"parentId":1042,"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":1780018848373,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":13419,"timestamp":1525879551315,"id":1166,"parentId":1165,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":13427,"timestamp":1525879551307,"id":1165,"parentId":1155,"tags":{},"startTime":1780018848374,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":14466,"timestamp":1525879550878,"id":1155,"parentId":1042,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1780018848373,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":528,"timestamp":1525879568203,"id":1181,"parentId":1174,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4050,"timestamp":1525879568745,"id":1203,"parentId":1174,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5197,"timestamp":1525879567929,"id":1174,"parentId":1065,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1780018848390,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5047,"timestamp":1525879568499,"id":1188,"parentId":1187,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5058,"timestamp":1525879568489,"id":1187,"parentId":1171,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6209,"timestamp":1525879567591,"id":1171,"parentId":1054,"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":1780018848390,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5303,"timestamp":1525879568509,"id":1190,"parentId":1189,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5311,"timestamp":1525879568500,"id":1189,"parentId":1172,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6402,"timestamp":1525879567617,"id":1172,"parentId":1054,"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":1780018848390,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5554,"timestamp":1525879568475,"id":1184,"parentId":1183,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5591,"timestamp":1525879568438,"id":1183,"parentId":1169,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6815,"timestamp":1525879567445,"id":1169,"parentId":1042,"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":1780018848390,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5719,"timestamp":1525879568549,"id":1196,"parentId":1195,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5727,"timestamp":1525879568542,"id":1195,"parentId":1176,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6526,"timestamp":1525879568006,"id":1176,"parentId":1065,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6056,"timestamp":1525879568488,"id":1186,"parentId":1185,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6067,"timestamp":1525879568478,"id":1185,"parentId":1170,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7393,"timestamp":1525879567559,"id":1170,"parentId":1042,"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":1780018848390,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6428,"timestamp":1525879568532,"id":1192,"parentId":1191,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6451,"timestamp":1525879568509,"id":1191,"parentId":1173,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7541,"timestamp":1525879567643,"id":1173,"parentId":944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1780018848390,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6653,"timestamp":1525879568541,"id":1194,"parentId":1193,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6661,"timestamp":1525879568533,"id":1193,"parentId":1175,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7489,"timestamp":1525879567971,"id":1175,"parentId":1065,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1780018848390,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6913,"timestamp":1525879568558,"id":1198,"parentId":1197,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6921,"timestamp":1525879568550,"id":1197,"parentId":1177,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7717,"timestamp":1525879568029,"id":1177,"parentId":1078,"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":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7191,"timestamp":1525879568566,"id":1200,"parentId":1199,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7198,"timestamp":1525879568558,"id":1199,"parentId":1179,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8024,"timestamp":1525879568130,"id":1179,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7622,"timestamp":1525879568574,"id":1202,"parentId":1201,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7630,"timestamp":1525879568567,"id":1201,"parentId":1180,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8588,"timestamp":1525879568152,"id":1180,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":146,"timestamp":1525879581122,"id":1221,"parentId":1220,"tags":{},"startTime":1780018848404,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":571,"timestamp":1525879596078,"id":1225,"parentId":1222,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":1214,"timestamp":1525879596661,"id":1259,"parentId":1222,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":17392,"timestamp":1525879581136,"id":1222,"parentId":1118,"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":1780018848404,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2500,"timestamp":1525879596361,"id":1232,"parentId":1231,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2509,"timestamp":1525879596353,"id":1231,"parentId":1206,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":21528,"timestamp":1525879577663,"id":1206,"parentId":1069,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2852,"timestamp":1525879596351,"id":1230,"parentId":1229,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2865,"timestamp":1525879596339,"id":1229,"parentId":1205,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":21861,"timestamp":1525879577630,"id":1205,"parentId":1069,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3169,"timestamp":1525879596333,"id":1228,"parentId":1227,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3205,"timestamp":1525879596297,"id":1227,"parentId":1204,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":22237,"timestamp":1525879577529,"id":1204,"parentId":1032,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3406,"timestamp":1525879596370,"id":1234,"parentId":1233,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3414,"timestamp":1525879596362,"id":1233,"parentId":1207,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":22307,"timestamp":1525879577691,"id":1207,"parentId":1069,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3622,"timestamp":1525879596387,"id":1238,"parentId":1237,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3630,"timestamp":1525879596380,"id":1237,"parentId":1209,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":22631,"timestamp":1525879577740,"id":1209,"parentId":1072,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3978,"timestamp":1525879596404,"id":1242,"parentId":1241,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3986,"timestamp":1525879596397,"id":1241,"parentId":1211,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":22819,"timestamp":1525879577786,"id":1211,"parentId":1116,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4224,"timestamp":1525879596395,"id":1240,"parentId":1239,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4231,"timestamp":1525879596388,"id":1239,"parentId":1210,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":23140,"timestamp":1525879577764,"id":1210,"parentId":1076,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8474,"timestamp":1525879596378,"id":1236,"parentId":1235,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8488,"timestamp":1525879596371,"id":1235,"parentId":1208,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":27746,"timestamp":1525879577717,"id":1208,"parentId":1068,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9074,"timestamp":1525879596421,"id":1246,"parentId":1245,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9083,"timestamp":1525879596414,"id":1245,"parentId":1213,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":28135,"timestamp":1525879577826,"id":1213,"parentId":1114,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9568,"timestamp":1525879596413,"id":1244,"parentId":1243,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9576,"timestamp":1525879596405,"id":1243,"parentId":1212,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":28635,"timestamp":1525879577806,"id":1212,"parentId":1075,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10031,"timestamp":1525879596447,"id":1252,"parentId":1251,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10039,"timestamp":1525879596440,"id":1251,"parentId":1216,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":28919,"timestamp":1525879577888,"id":1216,"parentId":1114,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10393,"timestamp":1525879596430,"id":1248,"parentId":1247,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10401,"timestamp":1525879596423,"id":1247,"parentId":1214,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":29351,"timestamp":1525879577848,"id":1214,"parentId":1114,"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":1780018848400,"traceId":"70f8f15c9247bbcb"}] +[{"name":"next-swc-transform","duration":10834,"timestamp":1525879596473,"id":1258,"parentId":1257,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10842,"timestamp":1525879596466,"id":1257,"parentId":1219,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":29856,"timestamp":1525879577949,"id":1219,"parentId":1114,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11738,"timestamp":1525879596464,"id":1256,"parentId":1255,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11747,"timestamp":1525879596457,"id":1255,"parentId":1218,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":30637,"timestamp":1525879577929,"id":1218,"parentId":1114,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12177,"timestamp":1525879596456,"id":1254,"parentId":1253,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12185,"timestamp":1525879596449,"id":1253,"parentId":1217,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":31021,"timestamp":1525879577909,"id":1217,"parentId":1114,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12548,"timestamp":1525879596439,"id":1250,"parentId":1249,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12557,"timestamp":1525879596432,"id":1249,"parentId":1215,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":32151,"timestamp":1525879577868,"id":1215,"parentId":1114,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7160,"timestamp":1525879602879,"id":1272,"parentId":1271,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7172,"timestamp":1525879602868,"id":1271,"parentId":1261,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7737,"timestamp":1525879602587,"id":1261,"parentId":1119,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7470,"timestamp":1525879602866,"id":1270,"parentId":1269,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7499,"timestamp":1525879602838,"id":1269,"parentId":1260,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8194,"timestamp":1525879602513,"id":1260,"parentId":1153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7824,"timestamp":1525879602896,"id":1276,"parentId":1275,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7832,"timestamp":1525879602889,"id":1275,"parentId":1263,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":8961,"timestamp":1525879602640,"id":1263,"parentId":1151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":8714,"timestamp":1525879602911,"id":1280,"parentId":1279,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":8721,"timestamp":1525879602905,"id":1279,"parentId":1265,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9189,"timestamp":1525879602683,"id":1265,"parentId":1151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9264,"timestamp":1525879602888,"id":1274,"parentId":1273,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9275,"timestamp":1525879602880,"id":1273,"parentId":1262,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10030,"timestamp":1525879602617,"id":1262,"parentId":1151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9743,"timestamp":1525879602919,"id":1282,"parentId":1281,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9750,"timestamp":1525879602912,"id":1281,"parentId":1266,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10738,"timestamp":1525879602703,"id":1266,"parentId":1121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10552,"timestamp":1525879602904,"id":1278,"parentId":1277,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10560,"timestamp":1525879602897,"id":1277,"parentId":1264,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11184,"timestamp":1525879602663,"id":1264,"parentId":1151,"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":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":53987,"timestamp":1525879568209,"id":1182,"parentId":1178,"tags":{},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":51,"timestamp":1525879622222,"id":1283,"parentId":1178,"tags":{},"startTime":1780018848445,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":54591,"timestamp":1525879568079,"id":1178,"parentId":1030,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1780018848391,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":30799,"timestamp":1525879596089,"id":1226,"parentId":1223,"tags":{},"startTime":1780018848419,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":50,"timestamp":1525879626910,"id":1284,"parentId":1223,"tags":{},"startTime":1780018848449,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":46450,"timestamp":1525879581216,"id":1223,"parentId":925,"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":1780018848404,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":27945,"timestamp":1525879602774,"id":1268,"parentId":1267,"tags":{},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":31,"timestamp":1525879630729,"id":1300,"parentId":1267,"tags":{},"startTime":1780018848453,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":28671,"timestamp":1525879602723,"id":1267,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1780018848425,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":349,"timestamp":1525879632708,"id":1316,"parentId":1311,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":28,"timestamp":1525879633063,"id":1345,"parentId":1311,"tags":{},"startTime":1780018848456,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":819,"timestamp":1525879632477,"id":1311,"parentId":1216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4530,"timestamp":1525879628791,"id":1291,"parentId":1290,"tags":{},"startTime":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4571,"timestamp":1525879628750,"id":1290,"parentId":1285,"tags":{},"startTime":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5211,"timestamp":1525879628419,"id":1285,"parentId":1177,"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":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4838,"timestamp":1525879628808,"id":1293,"parentId":1292,"tags":{},"startTime":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4853,"timestamp":1525879628794,"id":1292,"parentId":1286,"tags":{},"startTime":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5561,"timestamp":1525879628526,"id":1286,"parentId":1210,"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":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":352419,"timestamp":1525879628827,"id":1297,"parentId":1296,"tags":{},"startTime":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":352434,"timestamp":1525879628820,"id":1296,"parentId":1288,"tags":{},"startTime":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":353758,"timestamp":1525879628590,"id":1288,"parentId":1209,"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":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":353553,"timestamp":1525879628835,"id":1299,"parentId":1298,"tags":{},"startTime":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":353561,"timestamp":1525879628828,"id":1298,"parentId":1289,"tags":{},"startTime":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":354329,"timestamp":1525879628614,"id":1289,"parentId":1209,"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":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":354159,"timestamp":1525879628818,"id":1295,"parentId":1294,"tags":{},"startTime":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":354168,"timestamp":1525879628809,"id":1294,"parentId":1287,"tags":{},"startTime":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":355657,"timestamp":1525879628563,"id":1287,"parentId":1209,"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":1780018848451,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":472,"timestamp":1525879985692,"id":1358,"parentId":1355,"tags":{},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2895,"timestamp":1525879986170,"id":1379,"parentId":1355,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3858,"timestamp":1525879985599,"id":1355,"parentId":1261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":356718,"timestamp":1525879632801,"id":1320,"parentId":1319,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":356731,"timestamp":1525879632790,"id":1319,"parentId":1302,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":358415,"timestamp":1525879631656,"id":1302,"parentId":1209,"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":1780018848454,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":357300,"timestamp":1525879632787,"id":1318,"parentId":1317,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":357331,"timestamp":1525879632757,"id":1317,"parentId":1301,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":360199,"timestamp":1525879631446,"id":1301,"parentId":1209,"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":1780018848454,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":358844,"timestamp":1525879632820,"id":1324,"parentId":1323,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":358853,"timestamp":1525879632812,"id":1323,"parentId":1304,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":360171,"timestamp":1525879632049,"id":1304,"parentId":1212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":359437,"timestamp":1525879632811,"id":1322,"parentId":1321,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":359447,"timestamp":1525879632802,"id":1321,"parentId":1303,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":361215,"timestamp":1525879631889,"id":1303,"parentId":1209,"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":1780018848454,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":360293,"timestamp":1525879632828,"id":1326,"parentId":1325,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":360302,"timestamp":1525879632821,"id":1325,"parentId":1305,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":361551,"timestamp":1525879632089,"id":1305,"parentId":1216,"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":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":360812,"timestamp":1525879632853,"id":1332,"parentId":1331,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":360821,"timestamp":1525879632846,"id":1331,"parentId":1308,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":361815,"timestamp":1525879632160,"id":1308,"parentId":1214,"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":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":361141,"timestamp":1525879632845,"id":1330,"parentId":1329,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":361149,"timestamp":1525879632838,"id":1329,"parentId":1307,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":362125,"timestamp":1525879632139,"id":1307,"parentId":1214,"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":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":361413,"timestamp":1525879632861,"id":1334,"parentId":1333,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":361422,"timestamp":1525879632854,"id":1333,"parentId":1309,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":362376,"timestamp":1525879632182,"id":1309,"parentId":1214,"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":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":361704,"timestamp":1525879632870,"id":1336,"parentId":1335,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":361712,"timestamp":1525879632862,"id":1335,"parentId":1310,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":362699,"timestamp":1525879632368,"id":1310,"parentId":1219,"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":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":362203,"timestamp":1525879632878,"id":1338,"parentId":1337,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":362210,"timestamp":1525879632872,"id":1337,"parentId":1312,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":362797,"timestamp":1525879632588,"id":1312,"parentId":1215,"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":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":362499,"timestamp":1525879632894,"id":1342,"parentId":1341,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":362507,"timestamp":1525879632887,"id":1341,"parentId":1314,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":362984,"timestamp":1525879632649,"id":1314,"parentId":1217,"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":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":367212,"timestamp":1525879632837,"id":1328,"parentId":1327,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":367221,"timestamp":1525879632829,"id":1327,"parentId":1306,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":368284,"timestamp":1525879632115,"id":1306,"parentId":1214,"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":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":367525,"timestamp":1525879632886,"id":1340,"parentId":1339,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":367532,"timestamp":1525879632879,"id":1339,"parentId":1313,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"}] +[{"name":"build-module-js","duration":368151,"timestamp":1525879632623,"id":1313,"parentId":1215,"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":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":367881,"timestamp":1525879632902,"id":1344,"parentId":1343,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":367888,"timestamp":1525879632895,"id":1343,"parentId":1315,"tags":{},"startTime":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":368353,"timestamp":1525879632672,"id":1315,"parentId":1217,"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":1780018848455,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":15406,"timestamp":1525879985993,"id":1364,"parentId":1363,"tags":{},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":15417,"timestamp":1525879985985,"id":1363,"parentId":1349,"tags":{},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16286,"timestamp":1525879985480,"id":1349,"parentId":1217,"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":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":15806,"timestamp":1525879985972,"id":1360,"parentId":1359,"tags":{},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":15838,"timestamp":1525879985941,"id":1359,"parentId":1347,"tags":{},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16723,"timestamp":1525879985363,"id":1347,"parentId":1217,"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":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":16111,"timestamp":1525879985984,"id":1362,"parentId":1361,"tags":{},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":16122,"timestamp":1525879985975,"id":1361,"parentId":1348,"tags":{},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16920,"timestamp":1525879985447,"id":1348,"parentId":1217,"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":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":16384,"timestamp":1525879986001,"id":1366,"parentId":1365,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":16392,"timestamp":1525879985994,"id":1365,"parentId":1350,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":17461,"timestamp":1525879985505,"id":1350,"parentId":1217,"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":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":16966,"timestamp":1525879986008,"id":1368,"parentId":1367,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":16974,"timestamp":1525879986001,"id":1367,"parentId":1351,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":17805,"timestamp":1525879985526,"id":1351,"parentId":1215,"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":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":17322,"timestamp":1525879986025,"id":1372,"parentId":1371,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":17331,"timestamp":1525879986017,"id":1371,"parentId":1353,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":18250,"timestamp":1525879985566,"id":1353,"parentId":1205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":17808,"timestamp":1525879986039,"id":1376,"parentId":1375,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":17816,"timestamp":1525879986032,"id":1375,"parentId":1356,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":18528,"timestamp":1525879985641,"id":1356,"parentId":1215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":18170,"timestamp":1525879986016,"id":1370,"parentId":1369,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":18179,"timestamp":1525879986009,"id":1369,"parentId":1352,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":18961,"timestamp":1525879985547,"id":1352,"parentId":1173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":18485,"timestamp":1525879986032,"id":1374,"parentId":1373,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":18493,"timestamp":1525879986025,"id":1373,"parentId":1354,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":20363,"timestamp":1525879985582,"id":1354,"parentId":1206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":32557,"timestamp":1525879986046,"id":1378,"parentId":1377,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":32567,"timestamp":1525879986040,"id":1377,"parentId":1357,"tags":{},"startTime":1780018848809,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":35312,"timestamp":1525879985661,"id":1357,"parentId":1265,"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":1780018848808,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":11552,"timestamp":1525880010100,"id":1391,"parentId":1390,"tags":{},"startTime":1780018848833,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":11565,"timestamp":1525880010090,"id":1390,"parentId":1381,"tags":{},"startTime":1780018848833,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13250,"timestamp":1525880009150,"id":1381,"parentId":1264,"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":1780018848832,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":12336,"timestamp":1525880010087,"id":1389,"parentId":1388,"tags":{},"startTime":1780018848833,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":12375,"timestamp":1525880010049,"id":1388,"parentId":1380,"tags":{},"startTime":1780018848833,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":14156,"timestamp":1525880009024,"id":1380,"parentId":1265,"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":1780018848832,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":13093,"timestamp":1525880010109,"id":1393,"parentId":1392,"tags":{},"startTime":1780018848833,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":13102,"timestamp":1525880010101,"id":1392,"parentId":1382,"tags":{},"startTime":1780018848833,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":14716,"timestamp":1525880009184,"id":1382,"parentId":1264,"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":1780018848832,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":13810,"timestamp":1525880010118,"id":1395,"parentId":1394,"tags":{},"startTime":1780018848833,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":13819,"timestamp":1525880010110,"id":1394,"parentId":1383,"tags":{},"startTime":1780018848833,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":15335,"timestamp":1525880009227,"id":1383,"parentId":1215,"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":1780018848832,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2886,"timestamp":1525880025756,"id":1408,"parentId":1407,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2933,"timestamp":1525880025715,"id":1407,"parentId":1396,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4040,"timestamp":1525880025238,"id":1396,"parentId":1286,"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":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":3532,"timestamp":1525880025770,"id":1410,"parentId":1409,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":3544,"timestamp":1525880025759,"id":1409,"parentId":1397,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4760,"timestamp":1525880025321,"id":1397,"parentId":1288,"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":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4322,"timestamp":1525880025779,"id":1412,"parentId":1411,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4331,"timestamp":1525880025772,"id":1411,"parentId":1398,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5429,"timestamp":1525880025351,"id":1398,"parentId":1288,"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":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5025,"timestamp":1525880025788,"id":1414,"parentId":1413,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5033,"timestamp":1525880025780,"id":1413,"parentId":1399,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5868,"timestamp":1525880025375,"id":1399,"parentId":1288,"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":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":382,"timestamp":1525880032401,"id":1445,"parentId":1442,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":426,"timestamp":1525880032405,"id":1446,"parentId":1443,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":67,"timestamp":1525880032789,"id":1483,"parentId":1442,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":23,"timestamp":1525880032834,"id":1484,"parentId":1443,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":764,"timestamp":1525880032281,"id":1442,"parentId":1304,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":1136,"timestamp":1525880032324,"id":1443,"parentId":1304,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":7759,"timestamp":1525880025796,"id":1416,"parentId":1415,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":7770,"timestamp":1525880025789,"id":1415,"parentId":1400,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9514,"timestamp":1525880025426,"id":1400,"parentId":1288,"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":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":9183,"timestamp":1525880025818,"id":1422,"parentId":1421,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":9192,"timestamp":1525880025812,"id":1421,"parentId":1403,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10201,"timestamp":1525880025494,"id":1403,"parentId":1287,"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":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":86900,"timestamp":1525880025825,"id":1424,"parentId":1423,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":86920,"timestamp":1525880025819,"id":1423,"parentId":1404,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":88147,"timestamp":1525880025520,"id":1404,"parentId":1287,"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":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"postcss-process","duration":443049,"timestamp":1525879849607,"id":1346,"parentId":1224,"tags":{},"startTime":1780018848672,"traceId":"70f8f15c9247bbcb"},{"name":"postcss-loader","duration":713089,"timestamp":1525879581354,"id":1224,"parentId":1220,"tags":{},"startTime":1780018848404,"traceId":"70f8f15c9247bbcb"},{"name":"css-loader","duration":41184,"timestamp":1525880294604,"id":1485,"parentId":1220,"tags":{"astUsed":"true"},"startTime":1780018849117,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":311441,"timestamp":1525880025811,"id":1420,"parentId":1419,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":311454,"timestamp":1525880025804,"id":1419,"parentId":1402,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":312607,"timestamp":1525880025470,"id":1402,"parentId":1287,"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":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":312366,"timestamp":1525880025803,"id":1418,"parentId":1417,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":312376,"timestamp":1525880025796,"id":1417,"parentId":1401,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":314753,"timestamp":1525880025450,"id":1401,"parentId":1289,"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":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":307759,"timestamp":1525880032468,"id":1448,"parentId":1447,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":307792,"timestamp":1525880032437,"id":1447,"parentId":1425,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":308749,"timestamp":1525880031760,"id":1425,"parentId":1355,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1780018848854,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":126,"timestamp":1525880341553,"id":1489,"parentId":1486,"tags":{},"startTime":1780018849164,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":37,"timestamp":1525880341690,"id":1494,"parentId":1486,"tags":{},"startTime":1780018849164,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":824,"timestamp":1525880341359,"id":1486,"parentId":1382,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1780018849164,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":310039,"timestamp":1525880032480,"id":1450,"parentId":1449,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":310052,"timestamp":1525880032470,"id":1449,"parentId":1426,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":311203,"timestamp":1525880031831,"id":1426,"parentId":1310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1780018848854,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":310554,"timestamp":1525880032497,"id":1454,"parentId":1453,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":310564,"timestamp":1525880032490,"id":1453,"parentId":1428,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":311410,"timestamp":1525880031938,"id":1428,"parentId":1350,"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":1780018848854,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":310858,"timestamp":1525880032512,"id":1458,"parentId":1457,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":310868,"timestamp":1525880032506,"id":1457,"parentId":1430,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":311699,"timestamp":1525880032034,"id":1430,"parentId":1307,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":311247,"timestamp":1525880032505,"id":1456,"parentId":1455,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":311255,"timestamp":1525880032498,"id":1455,"parentId":1429,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":312238,"timestamp":1525880032005,"id":1429,"parentId":1308,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":311733,"timestamp":1525880032520,"id":1460,"parentId":1459,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"}] +[{"name":"next-swc-loader","duration":311852,"timestamp":1525880032513,"id":1459,"parentId":1431,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":312574,"timestamp":1525880032058,"id":1431,"parentId":1309,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":312162,"timestamp":1525880032489,"id":1452,"parentId":1451,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":312171,"timestamp":1525880032481,"id":1451,"parentId":1427,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":313515,"timestamp":1525880031861,"id":1427,"parentId":1312,"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":1780018848854,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":312846,"timestamp":1525880032543,"id":1466,"parentId":1465,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":312854,"timestamp":1525880032536,"id":1465,"parentId":1434,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":313522,"timestamp":1525880032127,"id":1434,"parentId":1306,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":313133,"timestamp":1525880032535,"id":1464,"parentId":1463,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":313141,"timestamp":1525880032529,"id":1463,"parentId":1433,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":313907,"timestamp":1525880032107,"id":1433,"parentId":1306,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":313473,"timestamp":1525880032550,"id":1468,"parentId":1467,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":313480,"timestamp":1525880032543,"id":1467,"parentId":1435,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":314086,"timestamp":1525880032147,"id":1435,"parentId":1306,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":313718,"timestamp":1525880032528,"id":1462,"parentId":1461,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":313726,"timestamp":1525880032521,"id":1461,"parentId":1432,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":314532,"timestamp":1525880032085,"id":1432,"parentId":1309,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":314069,"timestamp":1525880032557,"id":1470,"parentId":1469,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":314076,"timestamp":1525880032551,"id":1469,"parentId":1436,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":314678,"timestamp":1525880032167,"id":1436,"parentId":1306,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":314288,"timestamp":1525880032564,"id":1472,"parentId":1471,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":314296,"timestamp":1525880032558,"id":1471,"parentId":1437,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":314879,"timestamp":1525880032187,"id":1437,"parentId":1306,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":314501,"timestamp":1525880032573,"id":1474,"parentId":1473,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":314509,"timestamp":1525880032565,"id":1473,"parentId":1438,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":315059,"timestamp":1525880032207,"id":1438,"parentId":1349,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":314692,"timestamp":1525880032582,"id":1476,"parentId":1475,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":314701,"timestamp":1525880032574,"id":1475,"parentId":1439,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":315267,"timestamp":1525880032225,"id":1439,"parentId":1349,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":315747,"timestamp":1525880032589,"id":1478,"parentId":1477,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":315755,"timestamp":1525880032583,"id":1477,"parentId":1440,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":316415,"timestamp":1525880032243,"id":1440,"parentId":1350,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":316061,"timestamp":1525880032605,"id":1482,"parentId":1481,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":316069,"timestamp":1525880032598,"id":1481,"parentId":1444,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":316972,"timestamp":1525880032364,"id":1444,"parentId":1350,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":316902,"timestamp":1525880032597,"id":1480,"parentId":1479,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":316915,"timestamp":1525880032590,"id":1479,"parentId":1441,"tags":{},"startTime":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":319784,"timestamp":1525880032262,"id":1441,"parentId":1351,"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":1780018848855,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":344049,"timestamp":1525880009538,"id":1385,"parentId":1384,"tags":{},"startTime":1780018848832,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":344692,"timestamp":1525880009250,"id":1384,"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":1780018848832,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":344396,"timestamp":1525880009567,"id":1387,"parentId":1386,"tags":{},"startTime":1780018848832,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":344573,"timestamp":1525880009558,"id":1386,"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":1780018848832,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":26060,"timestamp":1525880341606,"id":1491,"parentId":1490,"tags":{},"startTime":1780018849164,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":26112,"timestamp":1525880341561,"id":1490,"parentId":1487,"tags":{},"startTime":1780018849164,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":26776,"timestamp":1525880341461,"id":1487,"parentId":1382,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1780018849164,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":26666,"timestamp":1525880341620,"id":1493,"parentId":1492,"tags":{},"startTime":1780018849164,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":26678,"timestamp":1525880341609,"id":1492,"parentId":1488,"tags":{},"startTime":1780018849164,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":27288,"timestamp":1525880341508,"id":1488,"parentId":1383,"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":1780018849164,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":343265,"timestamp":1525880025557,"id":1406,"parentId":1405,"tags":{},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":343377,"timestamp":1525880025544,"id":1405,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1780018848848,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":206,"timestamp":1525880370992,"id":1511,"parentId":1510,"tags":{},"startTime":1780018849193,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":34,"timestamp":1525880371207,"id":1526,"parentId":1510,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":1484,"timestamp":1525880370939,"id":1510,"parentId":1429,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1780018849193,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":2002,"timestamp":1525880371036,"id":1513,"parentId":1512,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":2057,"timestamp":1525880370996,"id":1512,"parentId":1503,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3154,"timestamp":1525880370714,"id":1503,"parentId":1433,"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":1780018849193,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":4388,"timestamp":1525880371065,"id":1519,"parentId":1518,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":4401,"timestamp":1525880371058,"id":1518,"parentId":1506,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5225,"timestamp":1525880370849,"id":1506,"parentId":1430,"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":1780018849193,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5064,"timestamp":1525880371049,"id":1515,"parentId":1514,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5074,"timestamp":1525880371039,"id":1514,"parentId":1504,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":5886,"timestamp":1525880370793,"id":1504,"parentId":1440,"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":1780018849193,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":5633,"timestamp":1525880371072,"id":1521,"parentId":1520,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":5639,"timestamp":1525880371066,"id":1520,"parentId":1507,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":6276,"timestamp":1525880370872,"id":1507,"parentId":1429,"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":1780018849193,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":6227,"timestamp":1525880371079,"id":1523,"parentId":1522,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":6235,"timestamp":1525880371073,"id":1522,"parentId":1508,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7514,"timestamp":1525880370893,"id":1508,"parentId":1440,"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":1780018849193,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":10373,"timestamp":1525880371086,"id":1525,"parentId":1524,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":10382,"timestamp":1525880371080,"id":1524,"parentId":1509,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11815,"timestamp":1525880370915,"id":1509,"parentId":1444,"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":1780018849193,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":13261,"timestamp":1525880369581,"id":1497,"parentId":1496,"tags":{},"startTime":1780018849192,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13392,"timestamp":1525880369565,"id":1496,"parentId":957,"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":1780018849192,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":13312,"timestamp":1525880369655,"id":1499,"parentId":1498,"tags":{},"startTime":1780018849192,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13508,"timestamp":1525880369622,"id":1498,"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":1780018849192,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":13471,"timestamp":1525880369677,"id":1501,"parentId":1500,"tags":{},"startTime":1780018849192,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13587,"timestamp":1525880369666,"id":1500,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1780018849192,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":13564,"timestamp":1525880369693,"id":1502,"parentId":1495,"tags":{},"startTime":1780018849192,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":35,"timestamp":1525880383265,"id":1527,"parentId":1495,"tags":{},"startTime":1780018849206,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":13914,"timestamp":1525880369456,"id":1495,"parentId":925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1780018849192,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":6823,"timestamp":1525880384442,"id":1531,"parentId":1530,"tags":{},"startTime":1780018849207,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":9272,"timestamp":1525880384427,"id":1530,"parentId":1386,"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":1780018849207,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":9315,"timestamp":1525880384400,"id":1529,"parentId":1528,"tags":{},"startTime":1780018849207,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":11925,"timestamp":1525880384358,"id":1528,"parentId":1384,"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":1780018849207,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":12448,"timestamp":1525880384459,"id":1533,"parentId":1532,"tags":{},"startTime":1780018849207,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":17415,"timestamp":1525880384450,"id":1532,"parentId":1405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1780018849207,"traceId":"70f8f15c9247bbcb"},{"name":"add-entry","duration":1013066,"timestamp":1525879390849,"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":1780018848213,"traceId":"70f8f15c9247bbcb"},{"name":"add-entry","duration":1013173,"timestamp":1525879390752,"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)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780018848213,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":33295,"timestamp":1525880371057,"id":1517,"parentId":1516,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":33303,"timestamp":1525880371050,"id":1516,"parentId":1505,"tags":{},"startTime":1780018849194,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":39866,"timestamp":1525880370824,"id":1505,"parentId":1430,"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":1780018849193,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-transform","duration":20969,"timestamp":1525880389755,"id":1536,"parentId":1535,"tags":{},"startTime":1780018849212,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":21006,"timestamp":1525880389718,"id":1535,"parentId":1534,"tags":{},"startTime":1780018849212,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":21559,"timestamp":1525880389618,"id":1534,"parentId":1507,"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":1780018849212,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-css","duration":835322,"timestamp":1525879577972,"id":1220,"parentId":1124,"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":1780018848400,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":16,"timestamp":1525880413553,"id":1545,"parentId":1543,"tags":{},"startTime":1780018849236,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":124,"timestamp":1525880413556,"id":1546,"parentId":1544,"tags":{},"startTime":1780018849236,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":424,"timestamp":1525880413574,"id":1547,"parentId":1543,"tags":{},"startTime":1780018849236,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":281,"timestamp":1525880413724,"id":1548,"parentId":1544,"tags":{},"startTime":1780018849236,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3944,"timestamp":1525880413429,"id":1543,"parentId":1505,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1780018849236,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":4141,"timestamp":1525880413507,"id":1544,"parentId":1505,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1780018849236,"traceId":"70f8f15c9247bbcb"}] +[{"name":"read-resource","duration":16179,"timestamp":1525880402937,"id":1538,"parentId":1537,"tags":{},"startTime":1780018849225,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":16910,"timestamp":1525880402858,"id":1537,"parentId":1496,"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":1780018849225,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":7775,"timestamp":1525880412006,"id":1542,"parentId":1541,"tags":{},"startTime":1780018849235,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":132,"timestamp":1525880419788,"id":1549,"parentId":1541,"tags":{},"startTime":1780018849242,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":10367,"timestamp":1525880411895,"id":1541,"parentId":1495,"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":1780018849234,"traceId":"70f8f15c9247bbcb"},{"name":"add-entry","duration":1031755,"timestamp":1525879390608,"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":1780018848213,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":10878,"timestamp":1525880411870,"id":1540,"parentId":1539,"tags":{},"startTime":1780018849234,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":113006,"timestamp":1525880411813,"id":1539,"parentId":1498,"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":1780018849234,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":2146,"timestamp":1525880527094,"id":1551,"parentId":1550,"tags":{},"startTime":1780018849350,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":3034,"timestamp":1525880526757,"id":1550,"parentId":1220,"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":1780018849349,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":2259,"timestamp":1525880527546,"id":1553,"parentId":1552,"tags":{},"startTime":1780018849350,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":7431,"timestamp":1525880527522,"id":1552,"parentId":1537,"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":1780018849350,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-css","duration":1015232,"timestamp":1525879531687,"id":1124,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1780018848354,"traceId":"70f8f15c9247bbcb"},{"name":"build-module","duration":74,"timestamp":1525880549148,"id":1554,"parentId":1124,"tags":{},"startTime":1780018849372,"traceId":"70f8f15c9247bbcb"},{"name":"add-entry","duration":1158584,"timestamp":1525879390876,"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":1780018848213,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":410,"timestamp":1525880551562,"id":1556,"parentId":1555,"tags":{},"startTime":1780018849374,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":53,"timestamp":1525880551980,"id":1557,"parentId":1555,"tags":{},"startTime":1780018849374,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":1045,"timestamp":1525880551455,"id":1555,"parentId":1539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1780018849374,"traceId":"70f8f15c9247bbcb"},{"name":"read-resource","duration":843,"timestamp":1525880554848,"id":1559,"parentId":1558,"tags":{},"startTime":1780018849377,"traceId":"70f8f15c9247bbcb"},{"name":"next-swc-loader","duration":54,"timestamp":1525880555706,"id":1560,"parentId":1558,"tags":{},"startTime":1780018849378,"traceId":"70f8f15c9247bbcb"},{"name":"build-module-js","duration":2822,"timestamp":1525880554746,"id":1558,"parentId":1555,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1780018849377,"traceId":"70f8f15c9247bbcb"},{"name":"add-entry","duration":1166926,"timestamp":1525879390729,"id":876,"parentId":874,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1780018848213,"traceId":"70f8f15c9247bbcb"},{"name":"add-entry","duration":1166770,"timestamp":1525879390890,"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":1780018848213,"traceId":"70f8f15c9247bbcb"},{"name":"make","duration":1174556,"timestamp":1525879383226,"id":874,"parentId":873,"tags":{},"startTime":1780018848206,"traceId":"70f8f15c9247bbcb"},{"name":"chunk-graph","duration":2224,"timestamp":1525880563427,"id":1562,"parentId":1561,"tags":{},"startTime":1780018849386,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-modules","duration":4,"timestamp":1525880565683,"id":1564,"parentId":1561,"tags":{},"startTime":1780018849388,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunks","duration":56,"timestamp":1525880565739,"id":1565,"parentId":1561,"tags":{},"startTime":1780018849388,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-tree","duration":4,"timestamp":1525880565808,"id":1566,"parentId":1561,"tags":{},"startTime":1780018849388,"traceId":"70f8f15c9247bbcb"},{"name":"optimize-chunk-modules","duration":2,"timestamp":1525880565823,"id":1567,"parentId":1561,"tags":{},"startTime":1780018849388,"traceId":"70f8f15c9247bbcb"},{"name":"optimize","duration":854,"timestamp":1525880565673,"id":1563,"parentId":1561,"tags":{},"startTime":1780018849388,"traceId":"70f8f15c9247bbcb"},{"name":"module-hash","duration":3367,"timestamp":1525880567907,"id":1568,"parentId":1561,"tags":{},"startTime":1780018849390,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation","duration":11936,"timestamp":1525880571289,"id":1569,"parentId":1561,"tags":{},"startTime":1780018849394,"traceId":"70f8f15c9247bbcb"},{"name":"hash","duration":13376,"timestamp":1525880585590,"id":1570,"parentId":1561,"tags":{},"startTime":1780018849408,"traceId":"70f8f15c9247bbcb"},{"name":"code-generation-jobs","duration":411,"timestamp":1525880598964,"id":1571,"parentId":1561,"tags":{},"startTime":1780018849421,"traceId":"70f8f15c9247bbcb"},{"name":"module-assets","duration":78,"timestamp":1525880599348,"id":1572,"parentId":1561,"tags":{},"startTime":1780018849422,"traceId":"70f8f15c9247bbcb"},{"name":"create-chunk-assets","duration":102400,"timestamp":1525880599430,"id":1573,"parentId":1561,"tags":{},"startTime":1780018849422,"traceId":"70f8f15c9247bbcb"},{"name":"NextJsBuildManifest-generateClientManifest","duration":287,"timestamp":1525880703537,"id":1575,"parentId":873,"tags":{},"startTime":1780018849526,"traceId":"70f8f15c9247bbcb"},{"name":"NextJsBuildManifest-createassets","duration":1029,"timestamp":1525880702801,"id":1574,"parentId":873,"tags":{},"startTime":1780018849525,"traceId":"70f8f15c9247bbcb"},{"name":"seal","duration":147372,"timestamp":1525880562364,"id":1561,"parentId":873,"tags":{},"startTime":1780018849385,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-compilation","duration":1326964,"timestamp":1525879382888,"id":873,"parentId":262,"tags":{"name":"client"},"startTime":1780018848205,"traceId":"70f8f15c9247bbcb"},{"name":"emit","duration":31533,"timestamp":1525880709929,"id":1576,"parentId":262,"tags":{},"startTime":1780018849532,"traceId":"70f8f15c9247bbcb"},{"name":"compile-path","duration":2481132,"timestamp":1525878261833,"id":117,"tags":{"trigger":"/recommendations","isTurbopack":false},"startTime":1780018847084,"traceId":"70f8f15c9247bbcb"},{"name":"webpack-invalidated-client","duration":2170085,"timestamp":1525878573626,"id":262,"parentId":3,"tags":{"trigger":"manual"},"startTime":1780018847396,"traceId":"70f8f15c9247bbcb"}] diff --git a/frontend/src/app/(auth)/dashboard/page.tsx b/frontend/src/app/(auth)/dashboard/page.tsx index a1296969..e4e5f762 100644 --- a/frontend/src/app/(auth)/dashboard/page.tsx +++ b/frontend/src/app/(auth)/dashboard/page.tsx @@ -631,6 +631,7 @@ function PrioritySectorCard({ sector, rank }: { sector: SectorData; rank: number } function FocusStockCard({ rec }: { rec: RecommendationData }) { + const execution = getExecutionMeta(rec); const stripeClass = rec.action_plan === "可操作" ? "bg-red-400" @@ -655,6 +656,7 @@ function FocusStockCard({ rec }: { rec: RecommendationData }) {
{rec.name} {rec.action_plan ?? "观察"} + {execution.label ? {execution.label} : null}
{rec.suggested_position_pct != null ? ( {rec.suggested_position_pct}% @@ -687,6 +689,7 @@ function FocusStockCard({ rec }: { rec: RecommendationData }) { function LargeFocusStockCard({ rec }: { rec: RecommendationData }) { const isActionable = rec.action_plan === "可操作"; + const execution = getExecutionMeta(rec); const badgeClass = isActionable ? "border-red-500/15 bg-red-500/[0.08] text-red-400" : rec.action_plan === "重点关注" @@ -703,6 +706,11 @@ function LargeFocusStockCard({ rec }: { rec: RecommendationData }) { {rec.action_plan ?? "观察"} + {execution.label ? ( +
+ {execution.label} +
+ ) : null}
@@ -711,11 +719,44 @@ function LargeFocusStockCard({ rec }: { rec: RecommendationData }) {
{rec.decision_trace?.headline ?? rec.trigger_condition ?? rec.entry_timing ?? rec.reasons?.[0] ?? "等待新的触发条件。"}
+ {execution.note ? ( +
{execution.note}
+ ) : null} {rec.sector ?
{rec.sector}
: null} ); } +function getExecutionMeta(rec: RecommendationData) { + const hint = rec.decision_trace?.position_adjustment?.hint ?? rec.decision_trace?.context?.position_hint ?? "neutral"; + const note = rec.decision_trace?.position_adjustment?.notes?.[0] ?? ""; + if (hint === "wait_pullback") { + return { + label: "等回踩", + note: note || "位置偏高,先等回踩或缩量承接。", + className: "border-cyan-500/20 bg-cyan-500/10 text-cyan-300", + textClass: "text-cyan-300", + }; + } + if (hint === "wait_confirm") { + return { + label: "等确认", + note: note || "等待承接和板块前排确认。", + className: "border-amber-500/20 bg-amber-500/10 text-amber-300", + textClass: "text-amber-300", + }; + } + if (hint === "actionable_pullback") { + return { + label: "回踩优先", + note: note || "回踩买点且位置相对安全。", + className: "border-emerald-500/20 bg-emerald-500/10 text-emerald-300", + textClass: "text-emerald-300", + }; + } + return { label: "", note: "", className: "", textClass: "" }; +} + function TinyInfo({ label, value }: { label: string; value: string | number }) { return (
diff --git a/frontend/src/components/stock-card.tsx b/frontend/src/components/stock-card.tsx index 7c6dc311..1737fcc8 100644 --- a/frontend/src/components/stock-card.tsx +++ b/frontend/src/components/stock-card.tsx @@ -4,6 +4,7 @@ import type { RecommendationData } from "@/lib/api"; export default function StockCard({ rec, compact = false }: { rec: RecommendationData; compact?: boolean }) { const action = getActionMeta(rec.action_plan); + const execution = getExecutionMeta(rec); const trigger = rec.trigger_condition ?? rec.entry_timing ?? rec.decision_trace?.headline ?? rec.reasons?.[0] ?? "等待触发条件确认"; const risk = rec.invalidation_condition ?? rec.risk_note ?? "暂无明确失效条件"; const thesis = rec.decision_trace?.headline ?? rec.reasons?.[0] ?? rec.focus_points?.[0] ?? "等待更多盘面证据"; @@ -21,6 +22,11 @@ export default function StockCard({ rec, compact = false }: { rec: Recommendatio {action.label} + {execution.label ? ( + + {execution.label} + + ) : null}
{rec.ts_code} @@ -46,9 +52,16 @@ export default function StockCard({ rec, compact = false }: { rec: Recommendatio
{!compact ? ( -
+
+ {execution.note ? ( +
+ {execution.note} +
+ ) : null} +
入选依据
{thesis}
+
) : null} @@ -84,6 +97,36 @@ function getActionMeta(actionPlan?: string | null) { return { label: "观察", className: "border-border-subtle bg-surface-2 text-text-muted" }; } +function getExecutionMeta(rec: RecommendationData) { + const hint = rec.decision_trace?.position_adjustment?.hint ?? rec.decision_trace?.context?.position_hint ?? "neutral"; + const note = rec.decision_trace?.position_adjustment?.notes?.[0] ?? ""; + if (hint === "wait_pullback") { + return { + label: "等回踩", + note: note || "位置偏高,先等回踩或缩量承接,不追高。", + className: "border-cyan-500/20 bg-cyan-500/10 text-cyan-300", + panelClassName: "border-cyan-500/15 bg-cyan-500/[0.05] text-cyan-300/90", + }; + } + if (hint === "wait_confirm") { + return { + label: "等确认", + note: note || "等待次日承接和板块前排确认后再处理。", + className: "border-amber-500/20 bg-amber-500/10 text-amber-300", + panelClassName: "border-amber-500/15 bg-amber-500/[0.05] text-amber-300/90", + }; + } + if (hint === "actionable_pullback") { + return { + label: "回踩优先", + note: note || "回踩买点且位置相对安全,可优先观察触发。", + className: "border-emerald-500/20 bg-emerald-500/10 text-emerald-300", + panelClassName: "border-emerald-500/15 bg-emerald-500/[0.05] text-emerald-300/90", + }; + } + return { label: "", note: "", className: "", panelClassName: "" }; +} + function buildChips(rec: RecommendationData) { const recallLabels: Record = { sector_recall: "主线入选", @@ -97,6 +140,10 @@ function buildChips(rec: RecommendationData) { }; return [ + rec.decision_trace?.position_adjustment?.hint === "wait_pullback" ? "不追高" : null, + rec.decision_trace?.position_adjustment?.hint === "wait_confirm" ? "确认后再动" : null, + rec.decision_trace?.position_adjustment?.hint === "actionable_pullback" ? "回踩买点" : null, + rec.decision_trace?.context?.sector_stage ? `阶段 ${stageLabel(rec.decision_trace.context.sector_stage)}` : null, rec.entry_signal_type ? signalTypeLabel(rec.entry_signal_type) : null, rec.review_after_days ? `${rec.review_after_days}日复盘` : null, rec.score != null ? `规则分 ${Math.round(rec.score)}` : null, @@ -107,8 +154,22 @@ function buildChips(rec: RecommendationData) { function signalTypeLabel(type: string) { const labels: Record = { breakout: "突破", + breakout_confirm: "突破确认", pullback: "回踩", launch: "启动", + reversal: "反转", + flow_momentum: "资金顺势", + none: "无信号", }; return labels[type] ?? type; } + +function stageLabel(stage: string) { + const labels: Record = { + early: "启动", + mid: "扩散", + late: "后段", + end: "退潮", + }; + return labels[stage] ?? stage; +} diff --git a/frontend/src/lib/api.ts b/frontend/src/lib/api.ts index 8297623b..82d078fc 100644 --- a/frontend/src/lib/api.ts +++ b/frontend/src/lib/api.ts @@ -174,6 +174,19 @@ export interface DecisionTrace { boosts?: Array<{ label: string; value?: string; reason?: string }>; penalties?: Array<{ label: string; value?: string; reason?: string }>; risk_tags?: string[]; + context?: { + market_temperature?: number; + sector_stage?: string; + sector_limit_up?: number; + theme_matched?: boolean; + theme_name?: string; + position_hint?: "neutral" | "wait_pullback" | "wait_confirm" | "actionable_pullback" | string; + }; + position_adjustment?: { + multiplier?: number; + hint?: "neutral" | "wait_pullback" | "wait_confirm" | "actionable_pullback" | string; + notes?: string[]; + }; catalyst?: { score?: number; reasons?: string[];