commit fce40c7d6c09da427bfc46e57e6e175e953be59b Author: ZhuJW Date: Fri Jul 10 18:55:55 2026 +0800 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2d16bcb --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +**.venv +**.vscode +**/node_modules +__pycache__/ +*.py[cod] \ No newline at end of file diff --git a/backend/.env b/backend/.env new file mode 100644 index 0000000..d2cc8e2 --- /dev/null +++ b/backend/.env @@ -0,0 +1,29 @@ +FLASK_ENV=development + +# 集群配置 +DATABRICKS_TOKEN=dapi188523cfb1cf34ad5a605fd75c5c0d31 +CLUSTER_ID=1203-054146-wkjf95i0 +DATABRICKS_HOST=https://adb-3035612432650494.2.databricks.azure.cn + +# gen5 spark表的配置 +GEN5_TABLE_NAME=hive_metastore.taf_level_two_plus.accident_report_data + +# JWT配置 +JWT_SECRET_KEY=dev_mb_project_2025_xyz123 # 开发环境可随意,生产环境需复杂密钥 +SECRET_KEY=dev_mb_2025_abc789 + +# 数据库配置 +DATABASE_URL=mysql+pymysql://root:Tsystems_2026@150.158.121.95:3306/incident?charset=utf8mb4 + +# oauth2配置 +CLIENT_ID=A17336FC-A8D7-4CEA-8777-384BFEABABC1 +CLIENT_PASSWORD=U7-C1BZQdL8V5c.z~qA_64SO2l9F3J0o +#SSO 授权服务器地址 +SS0_HOST = https://ssoalpha.dvb.corpinter.net.cn/ +# 授权成功后,SSO 服务器重定向回你的应用的地址 (必须与 SSO 服务器上配置的一致) +REDIRECT_URL = http://localhost:5221/report +# 用户登录成功后,最终重定向到的前端页面地址 +DOMAIN = http://localhost:3001 + +# 前端请求头的key +HEADERS_SECRET_KEY=mbincid-server12 \ No newline at end of file diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..9f75268 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,44 @@ +FROM python:3.11 + +# 1. 替换为腾讯云APT源 + 仅装时区依赖 +RUN sed -i 's/deb.debian.org/mirrors.tencent.com/g' /etc/apt/sources.list.d/debian.sources && \ + apt update && apt install -y --no-install-recommends tzdata && \ + rm -rf /var/lib/apt/lists/* + +# 2. 核心环境变量 +ENV PYTHONDONTWRITEBYTECODE=1 \ + PYTHONUNBUFFERED=1 \ + FLASK_APP=run:app \ + TZ=Asia/Shanghai + +# 3. 设置时区 +RUN ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime && echo ${TZ} > /etc/timezone + +# 4. 工作目录 + 非root用户 +WORKDIR /app +RUN groupadd -r appuser && useradd -r -g appuser appuser && chown -R appuser:appuser /app + +# 新增图片存放地址 +RUN mkdir -p /app/logs /app/uploads \ + && chown -R appuser:appuser /app/logs /app/uploads \ + && chmod -R 777 /app/logs /app/uploads + +USER appuser + +# 5. 腾讯云PyPI源 + 极简提速依赖安装 +COPY --chown=appuser:appuser requirements.txt /app/ +RUN python -m venv /app/venv && \ + # /app/venv/bin/pip install --no-cache-dir --upgrade pip && \ + /app/venv/bin/pip install --no-cache-dir --prefer-binary -r requirements.txt -i https://mirrors.cloud.tencent.com/pypi/simple/ + +# 6. 复制项目文件 +COPY --chown=appuser:appuser . /app/ + +# 7. 切换非root用户 +USER appuser + +# 8. 暴露端口 +EXPOSE 5221 + +# 9. 启动Gunicorn +CMD ["/app/venv/bin/gunicorn", "--bind", "0.0.0.0:5221", "--workers", "7", "--threads", "2", "run:app"] \ No newline at end of file diff --git a/backend/app/__init__.py b/backend/app/__init__.py new file mode 100644 index 0000000..49b20b4 --- /dev/null +++ b/backend/app/__init__.py @@ -0,0 +1,87 @@ +from logging.handlers import RotatingFileHandler +import os +from flask import Flask, jsonify, request +from app.config import config +from app.services.remote_service import DatabricksQuery +from flask_sqlalchemy import SQLAlchemy +from flask_cors import CORS +from flask_jwt_extended import JWTManager +import logging + +db = SQLAlchemy() +jwt = JWTManager() + + +# 配置日志 +def setup_logging(app): + # 创建日志目录 + if not os.path.exists('logs'): + os.makedirs('logs') + + # 配置文件处理器 - 按大小轮转 + file_handler = RotatingFileHandler( + 'logs/app.log', + maxBytes=500*1024*1024, # 100MB + backupCount=10 + ) + file_handler.setLevel(logging.INFO) + + # 配置控制台处理器 + console_handler = logging.StreamHandler() + console_handler.setLevel(logging.DEBUG) + + # 设置日志格式 + formatter = logging.Formatter( + '%(asctime)s [%(levelname)s] %(funcName)s:%(lineno)d - %(message)s' + ) + file_handler.setFormatter(formatter) + console_handler.setFormatter(formatter) + + # 添加到app.logger + app.logger.addHandler(file_handler) + app.logger.addHandler(console_handler) + app.logger.setLevel(logging.DEBUG) + + # 禁止传播到root logger(避免重复日志) + app.logger.propagate = False + + # 记录启动信息 + # app.logger.info('Flask应用启动成功!') + + +def create_app(): + app = Flask(__name__) + app.config["JWT_SECRET_KEY"] = "your-secret-key" # 替换为你的密钥 + app.config["JWT_TOKEN_LOCATION"] = ["headers"] # 从请求头获取令牌 + app.config["JWT_HEADER_NAME"] = "Authorization" # 请求头字段名 + # 注意:这里可以将 JWT_HEADER_TYPE 设为空,避免强制要求 Bearer 前缀 + app.config["JWT_HEADER_TYPE"] = "" # 默认为 'Bearer',设为空则不强制前缀 + # 加载配置 + app.config.from_object(config) + db.init_app(app) + jwt.init_app(app) + + # 配置日志 + setup_logging(app) + + from app.blueprints.auth.routes import auth_bp + from app.blueprints.login.routes import login_bp + from app.blueprints.incident_gen5.routes import incident_gen5_bp + from app.blueprints.oauth.routes import oauth_bp + from app.blueprints.incident_gen6.routes import incident_gen6_bp + from app.blueprints.accident.routes import accident_bp + from app.blueprints.file_uploads.routes import file_uploads_bp + + domain_prefix='accidentportal/api' + + app.register_blueprint(auth_bp, url_prefix=f"/{domain_prefix}/api/auth") + app.register_blueprint(login_bp, url_prefix=f"/{domain_prefix}/user") + app.register_blueprint(incident_gen5_bp, url_prefix=f"/{domain_prefix}/gen5") + app.register_blueprint(incident_gen6_bp, url_prefix=f"/{domain_prefix}/gen6") + app.register_blueprint(oauth_bp, url_prefix="") + app.register_blueprint(accident_bp, url_prefix=f"/{domain_prefix}/accident") + app.register_blueprint(file_uploads_bp, url_prefix=f"/{domain_prefix}/file_uploads") + + CORS(app, supports_credentials=True) + + return app diff --git a/backend/app/blueprints/__init__.py b/backend/app/blueprints/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/accident/__init__.py b/backend/app/blueprints/accident/__init__.py new file mode 100644 index 0000000..b81ad79 --- /dev/null +++ b/backend/app/blueprints/accident/__init__.py @@ -0,0 +1,12 @@ +from flask import Blueprint, json, jsonify, current_app, request +from app.blueprints.incident_gen5.service import ( + aggregate_and_sort_incidents, + aggregate_line_list, + get_logging_list, + process_incident_data, +) +from app.services.remote_service import DatabricksQuery +from app.utils import convert_incident_time_format + + +incident_bp = Blueprint("incident", __name__) \ No newline at end of file diff --git a/backend/app/blueprints/accident/routes.py b/backend/app/blueprints/accident/routes.py new file mode 100644 index 0000000..259a700 --- /dev/null +++ b/backend/app/blueprints/accident/routes.py @@ -0,0 +1,606 @@ +from concurrent.futures import ThreadPoolExecutor, as_completed +from datetime import datetime, timedelta, timezone +from operator import or_ +import traceback +from flask import Blueprint, json, jsonify, current_app, request +from sqlalchemy.exc import SQLAlchemyError +from app.models import AccidList, DictItem, DictType +from app import db + +accident_bp = Blueprint("accident_bp", __name__) + +@accident_bp.route("/item-list", methods=["POST"]) +def get_item_list(): + """ + 获取字典项列表接口(带分页) + 核心逻辑: + - dict_id和item_value都为空 → 全查所有启用的字典项 + - 有dict_id则按字典类型过滤,有item_value则按选项值过滤 + 参数/返回格式:(不变) + """ + try: + # 1. 接收并解析请求参数 + req_data = request.get_json() or {} + + # dict_id参数处理 + dict_id = req_data.get("dict_id") + try: + dict_id = int(dict_id) if dict_id is not None else None + except (ValueError, TypeError): + dict_id = None + + item_value = req_data.get("item_value", "").strip() + + # 分页参数校验 + try: + page = int(req_data.get("pageNum", 1)) + page_size = int(req_data.get("pageSize", 10)) + page = 1 if page < 1 else page + page_size = 10 if page_size < 1 else page_size + page_size = 50 if page_size > 50 else page_size + except ValueError: + page = 1 + page_size = 10 + + # 2. 构建查询条件(核心:无过滤则全查启用的字典项) + # 基础查询:仅过滤启用状态(status=1) + base_query = DictItem.query.filter(DictItem.status == 1) + + # 条件1:按dict_id过滤(有值才加) + if dict_id is not None: + dict_type = DictType.query.filter_by(id=dict_id, status=1).first() + if dict_type: + base_query = base_query.filter(DictItem.dict_id == dict_type.id) + else: + return jsonify({ + "code": 200, + "msg": "success", + "data": { + "list": [], + "pagination": {"page": page, "page_size": page_size, "total": 0, "total_pages": 0} + } + }) + + # 条件2:按item_value过滤(有值才加) + if item_value: + base_query = base_query.filter(DictItem.item_value == item_value) + + # 3. 分页查询(paginate简化版) + pagination_obj = base_query.order_by(DictItem.create_time.desc()).paginate( + page=page, per_page=page_size, error_out=False + ) + item_list = pagination_obj.items + total = pagination_obj.total + total_pages = pagination_obj.pages + + # 4. 格式化返回 + result_list = [item.to_dict() for item in item_list] + pagination = { + "page": page, + "page_size": page_size, + "total": total, + "total_pages": total_pages + } + + return jsonify({ + "code": 200, + "msg": "success", + "data": {"list": result_list, "pagination": pagination} + }) + + except Exception as e: + print(f"获取字典项列表失败:{str(e)}") + return jsonify({ + "code": 500, + "msg": "服务器内部错误", + "data": { + "list": [], + "pagination": {"page": 1, "page_size": 10, "total": 0, "total_pages": 0} + } + }) + + +@accident_bp.route("/all_dict_code", methods=["GET"]) +def get_all_dict_code(): + """ + 获取所有字典类型及对应字典项接口(无参数,返回全量数据) + 请求方式:GET + 返回格式: + { + "code": 200, // 200成功/500服务器错误 + "msg": "success", // 提示信息 + "data": [ // 所有字典类型+对应字典项列表 + { + "id": 1, // 字典类型ID + "dict_code": "carline", // 字典编码 + "status": 1, // 字典类型状态 + "items": [ // 该字典编码对应的所有字典项 + {"id": 101, "item_value": "大众帕萨特"}, + {"id": 102, "item_value": "丰田凯美瑞"} + ] + }, + { + "id": 2, + "dict_code": "labels", + "status": 1, + "items": [ + {"id": 201, "item_value": "碰撞",label:1,value:"123"}, + # {"id": 202, "item_value": "异响"} + ] + } + ] + } + """ + try: + # 1. 查询所有字典类型(按id升序) + dict_type_list = DictType.query.order_by(DictType.id.asc()).all() + + # 2. 格式化数据:关联查询每个字典类型对应的字典项 + result_data = [] + for dict_type in dict_type_list: + # 2.1 查询当前字典类型对应的所有字典项(过滤启用状态,按id升序) + dict_items = DictItem.query.filter( + DictItem.dict_id == dict_type.id, # 关联dict_type的id + DictItem.status == 1 # 仅返回启用的字典项(前端下拉常用) + ).order_by(DictItem.id.asc()).all() + + # 2.2 格式化字典项(仅保留id和item_value) + item_list = [ + { + "id": item.id, + "item_value": item.item_value, + "label":item.item_value, + "value":item.item_value, + } + for item in dict_items + ] + + # 2.3 组装当前字典类型的完整数据 + result_data.append({ + "id": dict_type.id, + "dict_code": dict_type.dict_code, + "status": dict_type.status, + "items": item_list # 新增:对应字典项的id和item_value + }) + + # 3. 返回标准化响应 + return jsonify({ + "code": 200, + "msg": "success", + "data": result_data + }) + + except Exception as e: + # 异常日志记录(生产环境替换为logging) + print(f"获取所有字典编码及对应项失败:{str(e)}") + # 异常时返回空数组,保证前端格式统一 + return jsonify({ + "code": 500, + "msg": "服务器内部错误", + "data": [] + }) + + +@accident_bp.route("/insert-dict", methods=["POST"]) +def insert_dict_type(): + """ + 新增/恢复字典项接口(新增逻辑优化:存在则恢复status=1,不存在则新增) + 请求参数(JSON格式): + { + "dict_id": 1, // 必传,字典类型ID(整数) + "item_value": "大众迈腾" // 必传,字典项值(非空字符串) + } + 返回格式: + { + "code": 200, // 200成功/400参数错误/500服务器错误 + "msg": "新增成功", // 提示信息(区分新增/更新) + "data": {} // 成功返回数据ID,失败返回空 + } + """ + try: + # 1. 接收并解析JSON请求参数 + req_data = request.get_json() + if not req_data: + return jsonify({ + "code": 400, + "msg": "请求参数不能为空,且必须为JSON格式", + "data": {} + }) + + # 2. 提取参数并做基础校验 + # 2.1 提取dict_id并校验(必传+整数) + dict_id = req_data.get("dict_id") + if dict_id is None: + return jsonify({ + "code": 400, + "msg": "dict_id为必传参数", + "data": {} + }) + try: + dict_id = int(dict_id) + except (ValueError, TypeError): + return jsonify({ + "code": 400, + "msg": "dict_id必须为整数", + "data": {} + }) + + # 2.2 提取item_value并校验(必传+非空) + item_value = req_data.get("item_value", "").strip() + if not item_value: + return jsonify({ + "code": 400, + "msg": "item_value为必传参数,且不能为空", + "data": {} + }) + + # 3. 业务校验:校验dict_id对应的字典类型是否存在 + dict_type = DictType.query.filter_by(id=dict_id).first() + if not dict_type: + return jsonify({ + "code": 400, + "msg": f"字典类型ID {dict_id} 不存在", + "data": {} + }) + + # ========== 核心逻辑修改:先查询所有status的记录 ========== + # 4. 校验dict_id + item_value是否存在(不限制status) + exist_item = DictItem.query.filter_by( + dict_id=dict_id, + item_value=item_value + ).first() + + if exist_item: + # 4.1 记录存在:判断status是否为1 + if exist_item.status != 1: + # 非1则改为1(恢复启用) + exist_item.status = 1 + exist_item.update_time = datetime.now() # 手动更新时间(若模型未自动配置) + db.session.commit() + # 返回更新成功响应 + return jsonify({ + "code": 200, + "msg": f"字典项{item_value}已存在,已恢复启用状态(status=1)", + "data": { + "id": exist_item.id, + "dict_id": exist_item.dict_id, + "item_value": exist_item.item_value, + "status": exist_item.status + } + }) + else: + # status=1:提示重复,不新增/更新 + return jsonify({ + "code": 400, + "msg": f"字典类型 {dict_type.dict_code} 下已存在{item_value}(启用状态),请勿重复添加", + "data": {} + }) + else: + # 4.2 记录不存在:正常新增 + new_dict_item = DictItem( + dict_id=dict_id, + item_value=item_value, + item_label=item_value, # 默认为item_value,如需自定义可改为req_data.get("item_label", item_value) + status=1, # 默认启用 + sort=0, # 默认排序值,如需自定义可改为req_data.get("sort", 0) + remark="", # 默认空备注,如需自定义可改为req_data.get("remark", "") + create_time=datetime.now(), # 若模型已设置自动生成,可省略 + update_time=datetime.now() # 若模型已设置自动生成,可省略 + ) + + # 插入数据库并提交 + db.session.add(new_dict_item) + db.session.commit() + + # 返回新增成功响应 + return jsonify({ + "code": 200, + "msg": "新增字典项成功", + "data": { + "id": new_dict_item.id, + "dict_id": new_dict_item.dict_id, + "item_value": new_dict_item.item_value + } + }) + + except Exception as e: + # 异常时回滚数据库,避免脏数据 + db.session.rollback() + print(f"新增/恢复字典项失败:{str(e)}", exc_info=True) + return jsonify({ + "code": 500, + "msg": "服务器内部错误,操作失败", + "data": {} + }) + + +@accident_bp.route("/update-item", methods=["POST"]) +def update_item(): + """ + 根据ID和传入的status,翻转字典项的状态(1→0,0→1) + 请求参数:JSON格式 {"id": 10, "status": 1} 或 {"id": 10, "status": 0} + 返回格式:标准化JSON响应 + """ + try: + # 1. 获取并解析请求的JSON参数 + req_data = request.get_json() + if not req_data: + return jsonify({ + "code": 400, + "msg": "请求参数不能为空,且必须为JSON格式", + "data": None + }), 400 + + # 2. 提取并校验id参数 + item_id = req_data.get("id") + req_status = req_data.get("status") + + # 3. 查询对应的字典项记录 + dict_item = DictItem.query.filter_by(id=item_id).first() + if not dict_item: + return jsonify({ + "code": 404, + "msg": f"未找到ID为{item_id}的字典项记录", + "data": None + }), 404 + + # ========== 核心逻辑修改:状态翻转 ========== + # 传入1则改为0,传入0则改为1 + target_status = 1 - req_status + dict_item.status = target_status # 更新为目标状态 + db.session.commit() # 提交数据库修改 + + # 5. 返回成功响应(包含更新后的记录信息) + return jsonify({ + "code": 200, + "msg": f"字典项状态更新成功(传入{req_status},更新为{target_status})", + "data": dict_item.to_dict() + }), 200 + + # 捕获JSON解析异常 + except ValueError as e: + return jsonify({ + "code": 400, + "msg": f"JSON参数解析失败:{str(e)}", + "data": None + }), 400 + + # 捕获数据库操作异常 + except SQLAlchemyError as e: + db.session.rollback() + return jsonify({ + "code": 500, + "msg": f"数据库操作失败:{str(e)}", + "data": None + }), 500 + + # 捕获其他未知异常 + except Exception as e: + return jsonify({ + "code": 500, + "msg": f"接口执行异常:{str(e)}", + "data": None + }), 500 + + +@accident_bp.route("/insert-accident", methods=["POST"]) +def insert_accident(): + """ + 新增事故工单接口 + 请求参数:JSON格式(见前端传参示例) + 返回格式:标准化JSON响应 + """ + try: + # 1. 解析前端JSON参数(无参数/非JSON直接返回错误) + req_data = request.get_json() + # print(111,req_data) + if not req_data: + return jsonify({ + "code": 400, + "msg": "请求参数不能为空,且必须为JSON格式", + "data": {} + }) + + # 2. 必传参数校验(模型中nullable=False的字段) + required_fields = [ + "vin", "occur_datetime", + "case_description", "fo_solution" + ] + missing_fields = [f for f in required_fields if f not in req_data or not req_data[f]] + if missing_fields: + return jsonify({ + "code": 400, + "msg": f"缺少必传参数:{','.join(missing_fields)}", + "data": {} + }) + + # 3. 时间字段转换(前端传ISO格式字符串 → datetime对象) + # 处理问题发生时间(occur_datetime) + try: + # 兼容前端传的带Z的ISO格式(如2026-01-29T06:32:10.017Z) + occur_datetime = datetime.fromisoformat(req_data["occur_datetime"].replace("Z", "+00:00")) + except Exception as e: + return jsonify({ + "code": 400, + "msg": f"时间格式错误(occur_datetime):请传入ISO格式(如2026-01-29T06:32:10.017Z),错误详情:{str(e)}", + "data": {} + }) + + # 处理工单新建时间(create_time):前端传则用前端值,否则用当前时间 + if "create_time" in req_data and req_data["create_time"]: + try: + create_time = datetime.fromisoformat(req_data["create_time"].replace("Z", "+00:00")) + except Exception as e: + return jsonify({ + "code": 400, + "msg": f"时间格式错误(create_time):请传入ISO格式(如2026-01-29T06:32:10.017Z),错误详情:{str(e)}", + "data": {} + }) + else: + create_time = datetime.now() # 前端未传则用当前时间 + + # 4. 构建AccidList实例(严格映射模型字段) + new_accident = AccidList( + ticket_id='', + vin=req_data["vin"].strip(), + occur_datetime=occur_datetime, + case_description=req_data["case_description"].strip(), + fo_solution=req_data["fo_solution"].strip(), + create_time=create_time, # 工单新建时间(前端传则用,否则当前时间) + system_function=req_data['system_function'].strip(), + + # 可选字段(前端传则用,否则用模型默认值) + creator=req_data.get("creator", "").strip(), # 创建人(有则更新,无则默认空) + model='', # 型号 + carline=req_data.get("carline"), # 车系 + labels=req_data.get("labels"), # 事故标签 + accident_level=req_data.get("accident_level", "P1"), # 事故评级(默认P1) + bmbs_name='', # BMBS联系人 + rdca_reporter=req_data.get("rdca_reporter", "").strip(), # RDCA报告人 + software_version=req_data.get("software_version", "").strip(), # 软件版本 + attachment_url=req_data.get("attachment_url", "").strip(), # 附件地址 + ) + + # 5. 插入数据库并提交 + db.session.add(new_accident) + db.session.commit() + + # 6. 返回成功响应(包含新增数据的完整信息) + return jsonify({ + "code": 200, + "msg": "新增成功", + "data": new_accident.to_dict() # 调用模型的to_dict方法返回结构化数据 + }) + + except Exception as e: + # 异常时回滚数据库,避免脏数据 + db.session.rollback() + # 记录详细错误日志(便于排查) + print(f"新增事故工单失败:{str(e)}") + # 返回友好错误提示(不暴露敏感信息) + return jsonify({ + "code": 500, + "msg": f"服务器内部错误,新增失败:{str(e)}", + "data": {} + }) + + +@accident_bp.route("/get-accident-record", methods=["POST"]) +def get_accident_record(): + """ + 查询事故工单记录接口(改用in实现多值过滤,无or_) + 入参:JSON格式,支持case_description模糊查询、carline/labels/affects_versions多值精确过滤 + 出参:按create_time从近到远排序的事故记录列表 + """ + try: + # 1. 解析前端参数 + params = request.get_json(silent=True) or {} + case_desc = params.get("case_description", "").strip() + # 提取并清洗多值参数(转列表+去空) + carline_list = [item.strip() for item in (params.get("carline", [])) if item.strip()] + labels_list = [item.strip() for item in (params.get("labels", [])) if item.strip()] + affects_versions_list = [item.strip() for item in (params.get("affects_versions", [])) if item.strip()] + + # 2. 初始化查询对象 + query = AccidList.query + + # 3. 构建查询条件 + # 3.1 case_description:保留模糊查询 + if case_desc: + query = query.filter(AccidList.case_description.like(f"%{case_desc}%")) + + # 3.2 carline:改用in实现多值精确过滤(核心修改,无or_) + if carline_list: + query = query.filter(AccidList.carline.in_(carline_list)) + + # 3.3 labels:同carline逻辑 + if labels_list: + query = query.filter(AccidList.labels.in_(labels_list)) + + # 3.4 affects_versions:同carline逻辑 + if affects_versions_list: + query = query.filter(AccidList.affects_versions.in_(affects_versions_list)) + + # 4. 排序+查询 + query = query.order_by(AccidList.create_time.desc()) + accident_records = query.all() + result = [record.to_dict() for record in accident_records] + + # 5. 返回响应 + return jsonify({ + "code": 200, + "msg": "查询成功", + "data": result + }), 200 + + except Exception as e: + print(f"查询事故记录异常:{str(e)}\n{traceback.format_exc()}") + return jsonify({ + "code": 500, + "msg": f"查询失败:{str(e)}", + "data": None + }), 500 + + +@accident_bp.route("/get-accident-by-id", methods=["POST"]) +def get_accident_by_id(): + """根据ID查询事故工单详情接口""" + try: + params = request.get_json(silent=True) or {} + id_str=params.get('id') + if not id_str: + return jsonify({ + "code": 400, # 400表示参数错误 + "msg": "参数缺失:请传入id参数", + "data": None + }), 400 + + # 转换为整数,处理非数字的情况 + try: + accident_id = int(id_str) + except ValueError: + return jsonify({ + "code": 400, + "msg": "参数错误:id必须是整数", + "data": None + }), 400 + + # 2. 查询数据库 + # filter_by按主键id查询,first()获取单条记录(None表示无匹配) + accident = AccidList.query.filter_by(id=accident_id).first() + + # 3. 处理查询结果 + if not accident: + return jsonify({ + "code": 404, # 404表示资源不存在 + "msg": f"未找到ID为{accident_id}的事故记录", + "data": None + }), 404 + + # 4. 格式化并返回数据(使用模型的to_dict()方法) + return jsonify({ + "code": 200, # 200表示成功 + "msg": "查询成功", + "data": accident.to_dict() # 调用模型自带的转字典方法 + }), 200 + + # 捕获数据库相关异常 + except SQLAlchemyError as e: + # 打印异常日志(方便排查问题) + print(f"数据库查询异常:{str(e)}") + return jsonify({ + "code": 500, # 500表示服务器内部错误 + "msg": "服务器内部错误:数据库查询失败", + "data": None + }), 500 + + # 捕获其他未知异常 + except Exception as e: + print(f"接口异常:{str(e)}") + return jsonify({ + "code": 500, + "msg": f"服务器内部错误:{str(e)}", + "data": None + }), 500 + + \ No newline at end of file diff --git a/backend/app/blueprints/auth/__init__.py b/backend/app/blueprints/auth/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/auth/routes.py b/backend/app/blueprints/auth/routes.py new file mode 100644 index 0000000..547fdb6 --- /dev/null +++ b/backend/app/blueprints/auth/routes.py @@ -0,0 +1,335 @@ +from flask import Blueprint, current_app, request, jsonify +from sqlalchemy.exc import IntegrityError +from app.models import User, Role, UserRole # 导入模型类 +from app.utils import encrypt_password # 导入密码加密工具 +from app import db +from flask_jwt_extended import jwt_required, get_jwt_identity # 导入JWT相关工具 + + +auth_bp = Blueprint("auth", __name__) + + +@auth_bp.route("/create-user", methods=["POST"]) +# @jwt_required() # 需要有效Token才能创建用户 +def create_user(): + """ + { + "username": "new_user", + "password": "securePass123", + "role_ids": [1, 3] // 要分配的角色ID列表 + } + """ + data = request.get_json() + # print(data) + if not data or "username" not in data or "password" not in data: + return jsonify({"error": "缺少用户名或密码"}), 400 + + # 1. 验证用户名唯一性 + existing_user = User.query.filter_by(username=data["username"]).first() + if existing_user: + return jsonify({"error": "用户名已存在"}), 409 + + # 2. 获取当前操作者 + # current_user_id = get_jwt_identity() + current_user_id = 1 + print("current_user_id", current_user_id) + current_user = User.query.get(int(current_user_id)) + current_user_id = 1 + # if not current_user: + # return jsonify({"error": "无效的操作者"}), 401 + + # 3. 密码复杂度验证 + password = data["password"] + if len(password) < 4 or not any(c.isdigit() for c in password): + return jsonify({"error": "密码需至少4位且包含数字"}), 400 + + # 4. 验证角色(新增部分) + role_ids = data.get("role_ids", []) + valid_roles = [] + if role_ids: + valid_roles = Role.query.filter(Role.id.in_(role_ids)).all() + if len(valid_roles) != len(role_ids): + return jsonify({"error": "包含无效的角色ID"}), 400 + + try: + # 5. 创建新用户 + new_user = User( + username=data["username"], + password=encrypt_password(data["password"]), + status=data.get("status", 1), + created_by=current_user_id, + email=data.get("email"), + avatar=data.get("avatar"), + region=data.get("region"), + phone=data.get("phone"), + brief=data.get("brief"), + third_party_account=data.get("third_party_account"), + position=data.get("position"), + department=data.get("department"), + label=data.get("label"), + ) + + db.session.add(new_user) + db.session.flush() # 获取新用户ID但不提交事务 + + # 6. 分配角色(新增核心功能) + for role in valid_roles: + user_role = UserRole( + user_id=new_user.id, role_id=role.id, created_by=current_user_id + ) + db.session.add(user_role) + + db.session.commit() + + # 7. 构造响应数据(包含角色信息) + response_data = { + "id": new_user.id, + "username": new_user.username, + "created_at": new_user.created_at.isoformat(), + "created_by": new_user.created_by, + "roles": [ + {"id": r.id, "name": r.name} for r in valid_roles + ], # 新增角色信息 + } + + # 8. 记录操作日志(新增角色信息) + current_app.logger.info( + f"用户创建成功: {new_user.username} (ID:{new_user.id}) " + f"操作者: {current_user.username} (ID:{current_user_id}) " + f"分配角色: {[r.name for r in valid_roles]}" # 记录分配的角色 + ) + + return jsonify(response_data), 201 + + except Exception as e: + db.session.rollback() + current_app.logger.error(f"用户创建失败: {str(e)}") + return jsonify({"error": "服务器内部错误"}), 500 + + +# 2.修改用户 +@auth_bp.route("/update-user", methods=["POST"]) +def update_user(): + """ + 修改用户信息(支持更新所有字段,包括新增字段) + 请求体示例: + { + "user_id":"12345", + "username": "new_username", # 可选:修改用户名 + "password": "new_password", # 可选:修改密码(明文) + "status": 1, # 可选:修改状态 + "updated_by": 1, # 更新人ID + // 新增可选字段(需要更新的字段才传入) + "email": "new@example.com", + "phone": "+86 13987654321", + "department": "产品部", + "position": "产品经理", + "label": "产品,管理" + } + """ + data = request.get_json() + user_id = data["user_id"] + user = User.query.get(user_id) + + if not user: + return jsonify({"code": 404, "message": f"用户ID {user_id} 不存在"}), 404 + + try: + # 基础字段更新(原有逻辑保留) + if "username" in data and data["username"]: + user.username = data["username"] + if "password" in data and data["password"]: + user.password = encrypt_password(data["password"]) + if "status" in data: + user.status = data["status"] + if "updated_by" in data: + user.updated_by = data["updated_by"] + + # 新增字段更新(按需更新,仅处理传入的字段) + if "email" in data: + user.email = data["email"] + if "avatar" in data: + user.avatar = data["avatar"] + if "region" in data: + user.region = data["region"] + if "phone" in data: + user.phone = data["phone"] + if "brief" in data: + user.brief = data["brief"] + if "third_party_account" in data: + user.third_party_account = data["third_party_account"] + if "position" in data: + user.position = data["position"] + if "department" in data: + user.department = data["department"] + if "label" in data: + user.label = data["label"] + + db.session.commit() + + # 返回更新结果(包含核心字段和新增关键字段) + return jsonify( + { + "code": 200, + "message": "用户信息更新成功", + "data": { + "user_id": user.id, + "username": user.username, + "email": user.email, + "phone": user.phone, + "department": user.department, + "updated_at": user.updated_at.strftime("%Y-%m-%d %H:%M:%S"), + }, + } + ) + + except IntegrityError: + db.session.rollback() + return ( + jsonify({"code": 409, "message": f'用户名"{data["username"]}"已存在'}), + 409, + ) + except Exception as e: + db.session.rollback() + return jsonify({"code": 500, "message": f"更新失败:{str(e)}"}), 500 + + +# 3. 创建角色 +@auth_bp.route("/roles", methods=["POST"]) +def create_role(): + """ + 创建新角色 + 请求体示例: + { + "name": "admin", # 角色名称(唯一) + "description": "系统管理员", + "status": 1, + "created_by": 1 # 创建人ID + } + """ + data = request.get_json() + + if not data.get("name"): + return jsonify({"code": 400, "message": "角色名称不能为空"}), 400 + + try: + new_role = Role( + name=data["name"], + description=data.get("description"), + status=data.get("status", 1), + created_by=data.get("created_by"), + updated_by=data.get("created_by"), + ) + + db.session.add(new_role) + db.session.commit() + + return jsonify( + { + "code": 200, + "message": "角色创建成功", + "data": {"role_id": new_role.id, "name": new_role.name}, + } + ) + + except IntegrityError: + db.session.rollback() + return jsonify({"code": 409, "message": f'角色"{data["name"]}"已存在'}), 409 + except Exception as e: + db.session.rollback() + return jsonify({"code": 500, "message": f"创建失败:{str(e)}"}), 500 + + +# 4. 修改角色 +@auth_bp.route("/roles/", methods=["PUT"]) +def update_role(role_id): + """ + 修改角色信息 + 请求体示例: + { + "name": "super_admin", # 可选:修改角色名称 + "description": "超级管理员", # 可选:修改描述 + "status": 1, # 可选:修改状态(1-启用,0-禁用) + "updated_by": 1 # 更新人ID + } + """ + data = request.get_json() + role = Role.query.get(role_id) + + if not role: + return jsonify({"code": 404, "message": f"角色ID {role_id} 不存在"}), 404 + + try: + if "name" in data and data["name"]: + role.name = data["name"] + if "description" in data: + role.description = data["description"] + if "status" in data: + role.status = data["status"] + if "updated_by" in data: + role.updated_by = data["updated_by"] + + db.session.commit() + + return jsonify( + { + "code": 200, + "message": "角色信息更新成功", + "data": {"role_id": role.id, "name": role.name}, + } + ) + + except IntegrityError: + db.session.rollback() + return jsonify({"code": 409, "message": f'角色"{data["name"]}"已存在'}), 409 + except Exception as e: + db.session.rollback() + return jsonify({"code": 500, "message": f"更新失败:{str(e)}"}), 500 + + +# 5. 给用户分配角色(补充功能:用户-角色关联) +@auth_bp.route("/user-roles", methods=["POST"]) +def assign_role_to_user(): + """ + 给用户分配角色(多对多关联) + 请求体示例: + { + "user_id": 1, + "role_id": 2, + "created_by": 1 # 操作人ID + } + """ + data = request.get_json() + user_id = data.get("user_id") + role_id = data.get("role_id") + + # 校验用户和角色是否存在 + if not User.query.get(user_id): + return jsonify({"code": 404, "message": f"用户ID {user_id} 不存在"}), 404 + if not Role.query.get(role_id): + return jsonify({"code": 404, "message": f"角色ID {role_id} 不存在"}), 404 + + try: + # 检查是否已关联 + existing = UserRole.query.filter_by(user_id=user_id, role_id=role_id).first() + if existing: + return ( + jsonify( + {"code": 409, "message": f"用户ID {user_id} 已拥有角色ID {role_id}"} + ), + 409, + ) + + # 创建关联 + user_role = UserRole( + user_id=user_id, role_id=role_id, created_by=data.get("created_by") + ) + db.session.add(user_role) + db.session.commit() + + return jsonify({"code": 200, "message": "角色分配成功"}) + + except Exception as e: + db.session.rollback() + return jsonify({"code": 500, "message": f"分配失败:{str(e)}"}), 500 + diff --git a/backend/app/blueprints/file_uploads/__init__.py b/backend/app/blueprints/file_uploads/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/file_uploads/routes.py b/backend/app/blueprints/file_uploads/routes.py new file mode 100644 index 0000000..9f5df23 --- /dev/null +++ b/backend/app/blueprints/file_uploads/routes.py @@ -0,0 +1,261 @@ +from concurrent.futures import ThreadPoolExecutor, as_completed +from datetime import datetime, timedelta, timezone +from operator import or_ +import os +import random +import string +import traceback +from flask import Blueprint, json, jsonify, current_app, request +from sqlalchemy.exc import SQLAlchemyError +from app.models import AccidList, DictItem, DictType, FileUpload +from app import db + +file_uploads_bp = Blueprint("file_uploads_bp", __name__) + +ALLOWED_EXTENSIONS={'png', 'jpg', 'jpeg', 'gif'} + + + +def allowed_file(filename): + """验证图片格式是否合法""" + return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS + + +def generate_file_alias(filename): + """生成唯一存储别名(避免重名):时间戳+6位随机字符串+扩展名""" + ext = filename.rsplit('.', 1)[1].lower() + random_str = ''.join(random.choices(string.ascii_letters + string.digits, k=6)) + timestamp = int(datetime.now().timestamp()) + return f"{timestamp}_{random_str}.{ext}" + + +# 接口1:图片上传(基础接口,返回文件ID) +@file_uploads_bp.route('/upload-image', methods=['POST']) +def upload_image(): + """ + 图片上传接口 + - 请求方式:POST + - Content-Type: multipart/form-data + - 请求参数: + file: 图片文件(必传) + create_by: 上传人(可选,如admin) + - 返回:文件ID、访问URL等信息 + """ + try: + # 1. 校验文件是否存在 + if 'file' not in request.files: + return jsonify({'code': 400, 'msg': '请选择要上传的图片', 'data': None}), 400 + file = request.files['file'] + if file.filename == '': + return jsonify({'code': 400, 'msg': '文件名不能为空', 'data': None}), 400 + + # 2. 校验文件格式 + if not allowed_file(file.filename): + return jsonify({ + 'code': 400, + 'msg': f'仅支持{"/".join(ALLOWED_EXTENSIONS)}格式的图片', + 'data': None + }), 400 + + # 3. 创建上传目录(不存在则自动创建) + os.makedirs(current_app.config['UPLOAD_FOLDER'], exist_ok=True) + + # 4. 生成唯一别名并保存文件 + file_alias = generate_file_alias(file.filename) + file_save_path = os.path.join(current_app.config['UPLOAD_FOLDER'], file_alias) + file.save(file_save_path) + + # 5. 写入FileUpload表 + file_size = os.path.getsize(file_save_path) # 获取文件大小(字节) + file_type = file.content_type # 获取MIME类型(如image/jpeg) + create_by = request.form.get('create_by', None) + + new_file = FileUpload( + file_name=file.filename, + file_alias=file_alias, + file_path=f"/uploads/{file_alias}", # 相对路径,前端拼接域名访问 + file_size=file_size, + file_type=file_type, + create_by=create_by, + business_type='case', # 固定关联事故工单业务 + business_id=None # 暂不关联具体工单,后续绑定 + ) + db.session.add(new_file) + db.session.commit() + + # 6. 返回成功响应 + return jsonify({ + 'code': 200, + 'msg': '图片上传成功', + 'data': new_file.to_dict() + }), 200 + + except Exception as e: + db.session.rollback() # 异常回滚 + return jsonify({ + 'code': 500, + 'msg': f'上传失败:{str(e)}', + 'data': None + }), 500 + + +# 接口2:绑定图片到事故工单 +@file_uploads_bp.route('/bind-image', methods=['POST']) +def bind_image_to_case(): + """ + 绑定图片到事故工单(更新image_ids和business_id) + - 请求方式:POST + - Content-Type: application/json + - 请求参数: + case_id: 事故工单ID(必传) + file_ids: 图片ID列表(如[1,2,3],必传) + """ + try: + data = request.get_json() + case_id = data.get('case_id') + file_ids = data.get('file_ids', []) + + # 1. 校验参数 + if not case_id or not isinstance(file_ids, list) or len(file_ids) == 0: + return jsonify({'code': 400, 'msg': '工单ID和图片ID列表不能为空', 'data': None}), 400 + + # 2. 检查工单是否存在 + case = AccidList.query.get(case_id) + if not case: + return jsonify({'code': 404, 'msg': '事故工单不存在', 'data': None}), 404 + + # 3. 拼接图片ID串(去重) + existing_ids = case.image_ids.split(',') if case.image_ids.strip() else [] + new_ids = list(set(existing_ids + [str(fid) for fid in file_ids])) # 去重 + case.image_ids = ','.join(new_ids) + case.update_at = db.func.current_timestamp() # 更新工单修改时间 + + # 4. 更新FileUpload的business_id(关联具体工单) + FileUpload.query.filter( + FileUpload.id.in_(file_ids), + FileUpload.business_type == 'case' + ).update({'business_id': case_id}, synchronize_session=False) + + db.session.commit() + + # 5. 返回结果 + return jsonify({ + 'code': 200, + 'msg': '图片绑定成功', + 'data': { + 'case_id': case_id, + 'image_ids': case.image_ids, + 'image_count': len(new_ids) + } + }), 200 + + except Exception as e: + db.session.rollback() + return jsonify({ + 'code': 500, + 'msg': f'绑定失败:{str(e)}', + 'data': None + }), 500 + + +# 接口3:查询事故工单关联的图片 +@file_uploads_bp.route('/get-images/', methods=['GET']) +def get_case_images(case_id): + """ + 查询工单关联的所有有效图片 + - 请求方式:GET + - 路径参数:case_id - 事故工单ID + """ + try: + # 1. 检查工单是否存在 + case = AccidList.query.get(case_id) + if not case: + return jsonify({'code': 404, 'msg': '事故工单不存在', 'data': None}), 404 + + # 2. 拆分图片ID并查询 + image_ids = case.image_ids.split(',') if case.image_ids.strip() else [] + if not image_ids: + return jsonify({'code': 200, 'msg': '暂无关联图片', 'data': []}), 200 + + # 3. 查询有效图片(status=1) + images = FileUpload.query.filter( + FileUpload.id.in_(image_ids), + FileUpload.status == 1 + ).all() + + # ========== 核心修改:拼接完整图片URL ========== + image_base_url = current_app.config['IMAGE_BASE_URL'] # 获取配置的基础URL + image_data = [] + for img in images: + img_dict = img.to_dict() # 原有模型的to_dict方法 + # 把相对路径拼接成完整URL(覆盖原有file_path) + img_dict['file_path'] = f"{image_base_url}{img_dict['file_path']}" + image_data.append(img_dict) + + # 4. 返回结果(改用拼接后的image_data) + return jsonify({ + 'code': 200, + 'msg': '查询成功', + 'data': image_data # 现在data里的file_path是完整URL + }), 200 + + except Exception as e: + return jsonify({ + 'code': 500, + 'msg': f'查询失败:{str(e)}', + 'data': None + }), 500 + + +# 接口4:移除工单关联的图片(逻辑删除) +@file_uploads_bp.route('/remove-image', methods=['POST']) +def remove_case_image(): + """ + 移除工单关联的图片(逻辑删除) + - 请求方式:POST + - Content-Type: application/json + - 请求参数: + case_id: 工单ID(必传) + file_id: 图片ID(必传) + """ + try: + data = request.get_json() + case_id = data.get('case_id') + file_id = data.get('file_id') + + # 1. 校验参数 + if not case_id or not file_id: + return jsonify({'code': 400, 'msg': '工单ID和图片ID不能为空', 'data': None}), 400 + + # 2. 检查工单和图片是否存在 + case = AccidList.query.get(case_id) + file = FileUpload.query.get(file_id) + if not case: + return jsonify({'code': 404, 'msg': '事故工单不存在', 'data': None}), 404 + if not file: + return jsonify({'code': 404, 'msg': '图片不存在', 'data': None}), 404 + + # 3. 移除工单的image_ids中的该ID + existing_ids = case.image_ids.split(',') if case.image_ids.strip() else [] + if str(file_id) in existing_ids: + existing_ids.remove(str(file_id)) + case.image_ids = ','.join(existing_ids) + case.update_at = db.func.current_timestamp() + + # 4. 逻辑删除图片(status=0) + file.status = 0 + db.session.commit() + + return jsonify({ + 'code': 200, + 'msg': '图片移除成功', + 'data': {'case_id': case_id, 'file_id': file_id} + }), 200 + + except Exception as e: + db.session.rollback() + return jsonify({ + 'code': 500, + 'msg': f'移除失败:{str(e)}', + 'data': None + }), 500 diff --git a/backend/app/blueprints/incident_gen5/__init__.py b/backend/app/blueprints/incident_gen5/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/incident_gen5/routes.py b/backend/app/blueprints/incident_gen5/routes.py new file mode 100644 index 0000000..2840f6e --- /dev/null +++ b/backend/app/blueprints/incident_gen5/routes.py @@ -0,0 +1,123 @@ +from flask import Blueprint, json, jsonify, current_app, request +from app.blueprints.incident_gen5.service import ( + aggregate_and_sort_incidents, + aggregate_line_list, + get_logging_list, + process_incident_data, +) +from app.services.remote_service import DatabricksQuery +from app.link_wedata_utils import query_tencent_cloud_data +from app.utils import decrypt_code,mask_vin + + +incident_gen5_bp = Blueprint("incident", __name__) + + +@incident_gen5_bp.route("/query", methods=["GET"]) +def query(): + try: + + try: + query_client = DatabricksQuery() + results = query_client.query_table( + table_name=current_app.config["GEN5_TABLE_NAME"], # 替换为实际表名 taf_level_two_plus.accident_report_data + vin="LE4LG4GB6RLMLFJEH", # LE4LG4GB6RLMLFJEH + limit=100, + ) + # print(999, results) + # for row in results: + # print(111111, row) + # print(type(results)) + finally: + query_client.stop() + + # for i in query_client: + # print(i['incident_time']) + return jsonify({"status": "success", "data": results}), 200 + except Exception as e: + return jsonify({"status": "error", "message": str(e)}), 500 + + + +@incident_gen5_bp.route("/list", methods=["GET","POST"]) +def get_gen5_list(): + # 验证请求头的信息,通过才继续 + encrypted = request.headers.get('X-Encrypted-Timestamp') + if not encrypted: + return jsonify({"msg": "Parameters are Incorrect"}), 400 + + encrypt_str=decrypt_code(encrypted) + if not encrypt_str: + return jsonify({"msg": "Invalid request"}), 400 + + data = request.get_json() + + if not data: + return jsonify({"code": 400, "data": None, "msg": "请填写有效参数"}), 400 + + required_fields = ["incident_time", "oneid"] + for field in required_fields: + if field not in data: + return ( + jsonify({"code": 400, "data": None, "msg": f"缺少必需字段: {field}"}), + 400, + ) + + incident_time = data["incident_time"] + # 检查是否为非空列表 + if not isinstance(incident_time, list) or len(incident_time) != 2: + return ( + jsonify( + { + "code": 400, + "data": [], + "msg": "incident_time必须是包含两个时间的数组", + } + ), + 400, + ) + + oneid = data["oneid"] + if not isinstance(oneid, str) or not oneid.strip(): + return jsonify({"code": 400, "data": None, "msg": "oneid必须是非空字符串"}), 400 + + mask_oneid=mask_vin(oneid) + + query_client = DatabricksQuery() + results = query_client.query_table( + table_name=current_app.config["GEN5_TABLE_NAME"], + vin=mask_oneid, + start_time=incident_time[0], + end_time=incident_time[1], + # limit=10000, + ) + # print(11,results) + if len(results) == 0: + return jsonify({"code": 200, "data": [], "msg": "查询结果为空"}), 200 + + try: + events_list = process_incident_data(results) + map_list = aggregate_and_sort_incidents(results) + line_list = aggregate_line_list(map_list) + logging_list = get_logging_list(map_list) + + response = { + "code": 200, + "data": { + "events_list": events_list, + "map_list":map_list, + "line_list": line_list, + "logging_list": logging_list, + }, + "msg": "success", + } + return jsonify(response) + except Exception as e: + # 打印错误日志,方便后端排查 + print(f"数据处理异常:{str(e)}") + # 返回友好的错误信息,前端正常解析 + return jsonify({ + "code": 500, + "data": [], + "msg": f"数据处理失败:{str(e)}" + }), 200 \ No newline at end of file diff --git a/backend/app/blueprints/incident_gen5/service.py b/backend/app/blueprints/incident_gen5/service.py new file mode 100644 index 0000000..d7547d4 --- /dev/null +++ b/backend/app/blueprints/incident_gen5/service.py @@ -0,0 +1,447 @@ +import ast +from datetime import datetime, timedelta, timezone +import pandas as pd # 确保导入pandas用于类型检查 + +def process_incident_data(test_val): + """ + 处理事故数据,去重、排序并提取指定字段。 + + Args: + test_val (dict): 包含 'status' 和 'data' 键的原始数据字典。 + + Returns: + dict: 格式化后的数据,包含 'events' 键。 + """ + unique_data_dict = {} + for item in test_val: + name = item.get("incident_name") + if name and name not in unique_data_dict: + unique_data_dict[name] = item + + # 获取去重后的数据列表 + unique_data_list = list(unique_data_dict.values()) + + # 2. 根据 incident_time 升序排序 + # incident_time 是 GMT 格式字符串,可以直接排序 + sorted_data = sorted(unique_data_list, key=lambda x: x.get("incident_time", "")) + + # 3. 提取指定字段并格式化时间 + id = 0 + processed_events_data = [] + for item in sorted_data: + incident_time_str = item.get("incident_time") + if not incident_time_str: + # 如果 incident_time 为空或不存在,可以选择跳过或使用默认值 + # 这里我们跳过 + print( + f"Warning: Missing 'incident_time' for item: {item.get('incident_name')}, skipping." + ) + continue + + try: + # 🔥 仅修改这里:解析 GMT 格式时间 "Wed, 10 Apr 2024 16:00:00 GMT" + if isinstance(incident_time_str, datetime): + incident_datetime = incident_time_str + else: + # 解析 GMT 格式字符串 "Wed, 10 Apr 2024 16:00:00 GMT" + incident_datetime = datetime.strptime(incident_time_str, "%a, %d %b %Y %H:%M:%S %Z") + except ValueError as e: + # 如果时间格式不正确,可以选择跳过或使用默认值 + # 这里我们跳过 + print( + f"Warning: Invalid 'incident_time' format for item: {item.get('incident_name')}, value: {incident_time_str}, error: {e}. Skipping." + ) + continue + + # 格式化日期和时间(逻辑不变) + date_str = incident_datetime.strftime("%Y-%m-%d") + time_str = incident_datetime.strftime("%H:%M:%S") + + # 创建新的字典,只包含需要的字段 + id += 1 + processed_item = { + "id": id, + "oneid": item.get("oneid", ""), + "date": date_str, + "time": time_str, + "incident_name": item.get("incident_name", ""), + "incident_description": item.get( + "incident_description", "" + ), + } + processed_events_data.append(processed_item) + + # 4. 构建最终返回的字典 + total_count = len(processed_events_data) + result = {"data": processed_events_data, "total": total_count} + + return result + + +def process_incident_data1(test_val): + """ + 处理事故数据,按照incident_time和incident_name去重,然后按incident_time排序。 + + Args: + test_val (list): 原始数据列表 + + Returns: + dict: 格式化后的数据 + """ + from datetime import datetime + + # 1. 按照 incident_name 和 incident_time 组合去重 + unique_data_dict = {} + for item in test_val: + name = item.get("incident_name") + time = item.get("incident_time") + if name and time: + # 使用组合键去重 + key = f"{name}_{time}" + if key not in unique_data_dict: + unique_data_dict[key] = item + + # 获取去重后的数据列表 + unique_data_list = list(unique_data_dict.values()) + + # 2. 根据 incident_time 升序排序 + def parse_time(time_str): + try: + # 处理 "Sat, 08 Mar 2025 09:00:00 GMT" 格式 + return datetime.strptime(time_str, "%a, %d %b %Y %H:%M:%S %Z") + except: + # 处理 ISO 8601 格式作为备选 + try: + return datetime.fromisoformat(time_str.replace("Z", "+00:00")) + except: + return datetime.min + + sorted_data = sorted(unique_data_list, key=lambda x: parse_time(x.get("incident_time", ""))) + + # 3. 提取指定字段 + id = 0 + processed_events_data = [] + for item in sorted_data: + incident_time_str = item.get("incident_time") + if not incident_time_str: + continue + + try: + incident_datetime = parse_time(incident_time_str) + except: + continue + + # 格式化日期和时间 + date_str = incident_datetime.strftime("%Y-%m-%d") + time_str = incident_datetime.strftime("%H:%M:%S") + + # 创建新的字典 + id += 1 + processed_item = { + "id": id, + "oneid": item.get("oneid", ""), + "date": date_str, + "time": time_str, + "incident_name": item.get("incident_name", ""), + "incident_description": item.get("incident_description", ""), + } + processed_events_data.append(processed_item) + + # 4. 构建最终返回的字典 + total_count = len(processed_events_data) + result = {"data": processed_events_data, "total": total_count} + + return result + +def aggregate_and_sort_incidents(raw_data): + """ + 按(idc_tickcount_ms + Incident__Name)聚合,整合同一组内的信号数据,消除视觉冗余 + 1. 同一组只输出1条记录,包含公共信息+所有信号数据 + 2. 按idc_tickcount_ms从小到大排序 + 3. 保留所有关键数据(含mux_data解析) + """ + aggregate_dict = {} + for item in raw_data: + # 1. 处理聚合key:(idc_tickcount_ms整数, Incident__Name) + try: + tickcount_int = int(item.get("idc_tickcount_ms", "0")) + except (ValueError, TypeError): + tickcount_int = 0 + incident_name = item.get("incident_name", "unknown_incident") + aggregate_key = (tickcount_int, incident_name) + + # 2. 提取当前记录的关键数据(用于后续整合) + # 处理数值:优先取int_value,无则取float_value,都无则为None + # value = item.get("int_value") or item.get("float_value") + int_value=item.get("int_value") + float_value=item.get('float_value') + if int_value is not None: + value = int_value + elif float_value is not None: + value = float_value + else: + value = None + + # 处理mux_data:若为JSON字符串,解析为字典(方便后续使用) + mux_data = item.get("mux_data") + if mux_data and mux_data != "null": + try: + mux_data = ast.literal_eval(mux_data) + except (ValueError, SyntaxError): + pass # 解析失败则保留原始字符串 + + # 3. 整合到聚合字典 + if aggregate_key not in aggregate_dict: + # 首次遇到该key:初始化聚合结构(提取公共基础信息) + aggregate_dict[aggregate_key] = { + "base_info": { # 同一组的公共信息(只取第一条记录的) + "oneid": item.get("oneid"), + "ihd_version": item.get("ihd_version"), + "incident_time": item.get("incident_time"), + "speed": item.get("speed"), + "gps_heading": item.get("gps_heading"), + "incident_name": incident_name, + "incident_description": item.get("incident_description"), + "Trigger__condition": item.get("Trigger__condition"), + "idc_tickcount_ms": item.get("idc_tickcount_ms"), + "idc_tickcount_ms_int": tickcount_int, + "gps_dr_position": item.get("gps_dr_position"), + "incident_id": item.get("incident_id"), + "longitude": item.get("longitude"), + "latitude": item.get("latitude") + }, + "signal_data": {} # 整合同一组的所有信号(key: 信号名,value: 信号数据) + } + + # print('item.get("signal_name")',item.get('signal_name')) + # 4. 将当前记录的信号数据添加到signal_data中 + # signal_key = item.get("key", "unknown_key") + signal_key=item.get('signal_name') + aggregate_dict[aggregate_key]["signal_data"][signal_key] = { + "value": value, + "mux_data": mux_data, + "signal_ihd_id": item.get("signal_ihd_id"), + "Decoding__value": item.get("Decoding__value"), + "Meaning": item.get("meaning") + } + + sorted_data=sort_incidents_by_heading(list(aggregate_dict.values())) # 跨周期的 + + sorted_result = sorted( + sorted_data, + key=lambda x: x.get("idc_tickcount_ms_tmp", x["base_info"]["idc_tickcount_ms_int"]) + ) + + return sorted_result + + +def parse_coordinate(coord_str): + """ + 解析坐标字符串为浮点数 + """ + if coord_str is None: + return None + + if isinstance(coord_str, (int, float)): + return float(coord_str) + + if isinstance(coord_str, str): + try: + return float(coord_str) + except ValueError: + # 如果是 "[longitude, latitude]" 格式,提取第一个数字 + if coord_str.startswith('[') and coord_str.endswith(']'): + try: + coord_str_clean = coord_str.strip('[]') + coords = coord_str_clean.split(',') + if len(coords) >= 1: + return float(coords[0].strip()) + except (ValueError, IndexError): + pass + return None + + return None + + +def sort_incidents_by_heading(raw_data): + """ + 按__head方法的逻辑进行排序:根据GPS航向角排序并处理时间戳回绕 + """ + import pandas as pd + + # 将原始数据转换为DataFrame,并处理经纬度 + processed_data = [] + for item in raw_data: + # 获取base_info + base_info = item.get('base_info', {}) + + processed_item = item.copy() # 保持原始结构 + + # 解析经纬度和航向角,从base_info中获取 + longitude = parse_coordinate(base_info.get('longitude')) + latitude = parse_coordinate(base_info.get('latitude')) + gps_heading = parse_coordinate(base_info.get('gps_heading')) + + # 添加到processed_item,用于排序 + processed_item['longitude'] = longitude if longitude is not None else 0.0 + processed_item['latitude'] = latitude if latitude is not None else 0.0 + processed_item['gps_heading'] = gps_heading if gps_heading is not None else 0.0 + processed_item['incident_time'] = base_info.get('incident_time', '') + + # 确保时间戳是数值类型,从base_info中获取 + try: + tickcount_ms = int(base_info.get('idc_tickcount_ms', 0)) + except (ValueError, TypeError): + tickcount_ms = 0 + + processed_item['idc_tickcount_ms'] = tickcount_ms + + processed_data.append(processed_item) + + df = pd.DataFrame(processed_data) + + # 确保所有相关列都是数值类型 + df['idc_tickcount_ms'] = pd.to_numeric(df['idc_tickcount_ms'], errors='coerce').fillna(0).astype(int) + df['longitude'] = pd.to_numeric(df['longitude'], errors='coerce').fillna(0.0) + df['latitude'] = pd.to_numeric(df['latitude'], errors='coerce').fillna(0.0) + df['gps_heading'] = pd.to_numeric(df['gps_heading'], errors='coerce').fillna(0.0) + + # 计算平均GPS航向角 + gps_heading = df["gps_heading"].mean() + # print('gps_heading',gps_heading) + + # 根据GPS航向角进行排序 + if (gps_heading >= 315): + df.sort_values(by=['incident_time','latitude', 'longitude','idc_tickcount_ms'], + ascending=[True, True, False, True], inplace=True) + elif (gps_heading < 45): + df.sort_values(by=['incident_time','latitude', 'longitude','idc_tickcount_ms'], + ascending=[True, True, True, True], inplace=True) + elif (gps_heading >= 45) and (gps_heading < 90): + df.sort_values(by=['incident_time','longitude', 'latitude','idc_tickcount_ms'], + ascending=[True, True, True, True], inplace=True) + elif (gps_heading >= 90) and (gps_heading < 135): + df.sort_values(by=['incident_time','longitude', 'latitude','idc_tickcount_ms'], + ascending=[True, True, False, True], inplace=True) + elif (gps_heading >= 135) and (gps_heading < 180): + df.sort_values(by=['incident_time','latitude', 'longitude','idc_tickcount_ms'], + ascending=[True, False, True, True], inplace=True) + elif (gps_heading >= 180) and (gps_heading < 225): + df.sort_values(by=['incident_time','latitude', 'longitude','idc_tickcount_ms'], + ascending=[True, False, False, True], inplace=True) + elif (gps_heading >= 225) and (gps_heading < 270): + df.sort_values(by=['incident_time','longitude', 'latitude','idc_tickcount_ms'], + ascending=[True, False, False, True], inplace=True) + elif (gps_heading >= 270) and (gps_heading < 315): + df.sort_values(by=['incident_time','longitude', 'latitude','idc_tickcount_ms'], + ascending=[True, False, True, True], inplace=True) + + # 处理时间戳回绕 + df['idc_tickcount_ms_tmp'] = df['idc_tickcount_ms'].copy() + df.reset_index(inplace=True, drop=True) + + # 确保数据类型一致 + df['idc_tickcount_ms'] = df['idc_tickcount_ms'].astype(int) + + max_tickcount = df['idc_tickcount_ms'].max() + loopcount = 65535 if max_tickcount < 65536 else 2097151 + period = 0 + + # 确保所有值都是整数 + df['idc_tickcount_ms'] = df['idc_tickcount_ms'].astype(int) + + for i in range(1, len(df)): + current_tick = int(df.loc[i, 'idc_tickcount_ms']) + prev_tick = int(df.loc[i-1, 'idc_tickcount_ms']) + if current_tick < prev_tick: + period += 1 + df.loc[i, 'idc_tickcount_ms_tmp'] = current_tick + period * loopcount + + # 按调整后的时间戳排序 + df.sort_values(by=["idc_tickcount_ms_tmp"], inplace=True) + + # 转换回列表格式,移除临时添加的排序字段 + result = [] + for record in df.to_dict('records'): + # 移除临时添加的排序字段 + cleaned_record = {k: v for k, v in record.items() if k not in ['longitude', 'latitude', 'gps_heading', 'incident_time']} + result.append(cleaned_record) + + # print(result) + return result + + +def aggregate_line_list(map_result): + # 初始化聚合字典,key为idc_tickcount_ms_int,value为聚合后的数据 + aggregated_data = {} + + # 遍历所有事件 + for item in map_result: + base_info = item['base_info'] + # 提取需要的字段 + tickcount = item['idc_tickcount_ms_tmp'] + speed = base_info['speed'] + oneid = base_info['oneid'] + latitude = base_info['latitude'] + longitude = base_info['longitude'] + incident_name = base_info['incident_name'] + + # 聚合处理 + if tickcount not in aggregated_data: + # 新的tickcount,初始化记录 + aggregated_data[tickcount] = { + 'idc_tickcount_ms_int': tickcount, + 'speed': speed, + 'oneid': oneid, + 'latitude': latitude, + 'longitude': longitude, + 'incident_names': [incident_name] # 用列表收集多个事件名称 + } + else: + # 已存在的tickcount,追加事件名称 + aggregated_data[tickcount]['incident_names'].append(incident_name) + + # 转换为列表形式(按tickcount排序) + result = sorted(aggregated_data.values(), key=lambda x: x['idc_tickcount_ms_int']) + + return result + + +def get_logging_list(map_list): + result=[] + id=0 + for item in map_list: + # print(item) + id+=1 + row_data={} + row_data['id']=id + base_info = item['base_info'] + # print("base_info['incident_time']",base_info['incident_time']) + # dt = datetime.strptime(base_info['incident_time'], "%Y-%m-%d %H:%M:%S%z") + dt = base_info['incident_time'] + if not isinstance(dt, datetime): + # 只有是字符串时,才解析 + dt = datetime.strptime(dt, "%Y-%m-%d %H:%M:%S%z") + + row_data['time']=dt.strftime("%H:%M:%S") + + # row_data['coordinates']=base_info['longitude'][:12]+'.'+'\n'+base_info['latitude'][:12] + row_data['coordinates'] = str(base_info['longitude'])[:12] + '\n' + str(base_info['latitude'])[:12] + row_data['idc_tickcount_ms']=base_info['idc_tickcount_ms_int'] + row_data['speed']=base_info['speed'] + row_data['incident']={ + "name":base_info['incident_name'], + "description":base_info['incident_description'], + } + + row_data['signals']=[] + for key,value in item["signal_data"].items(): + signals_name_value={} + signals_name_value["name"]=key + signals_name_value["value"]=value['value'] + signals_name_value["meaning"]=value['Meaning'] + row_data['signals'].append(signals_name_value) + + result.append(row_data) + + return result diff --git a/backend/app/blueprints/incident_gen6/__init__.py b/backend/app/blueprints/incident_gen6/__init__.py new file mode 100644 index 0000000..b81ad79 --- /dev/null +++ b/backend/app/blueprints/incident_gen6/__init__.py @@ -0,0 +1,12 @@ +from flask import Blueprint, json, jsonify, current_app, request +from app.blueprints.incident_gen5.service import ( + aggregate_and_sort_incidents, + aggregate_line_list, + get_logging_list, + process_incident_data, +) +from app.services.remote_service import DatabricksQuery +from app.utils import convert_incident_time_format + + +incident_bp = Blueprint("incident", __name__) \ No newline at end of file diff --git a/backend/app/blueprints/incident_gen6/histro.json b/backend/app/blueprints/incident_gen6/histro.json new file mode 100644 index 0000000..b9b55a9 --- /dev/null +++ b/backend/app/blueprints/incident_gen6/histro.json @@ -0,0 +1,12447 @@ +[ + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139695.0", + "mileage": "122.8", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827815193", + "time": "2025-12-04 13:56:55.193", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139700.0", + "mileage": "122.8", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827815243", + "time": "2025-12-04 13:56:55.243", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139705.0", + "mileage": "122.8", + "value": "0.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827815293", + "time": "2025-12-04 13:56:55.293", + "valueExplanation": "NOT_TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140305.0", + "mileage": "123.0", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821293", + "time": "2025-12-04 13:57:01.293", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "0.0", + "pre_valueExplanation": "NOT_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140310.0", + "mileage": "123.0", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821343", + "time": "2025-12-04 13:57:01.343", + "valueExplanation": "TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140315.0", + "mileage": "123.0", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821393", + "time": "2025-12-04 13:57:01.393", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140325.0", + "mileage": "123.0", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821493", + "time": "2025-12-04 13:57:01.493", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140370.0", + "mileage": "123.0", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821943", + "time": "2025-12-04 13:57:01.943", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140805.0", + "mileage": "123.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827826293", + "time": "2025-12-04 13:57:06.293", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141155.0", + "mileage": "123.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827829793", + "time": "2025-12-04 13:57:09.793", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141230.0", + "mileage": "123.2", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827830543", + "time": "2025-12-04 13:57:10.543", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141635.0", + "mileage": "123.3", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834593", + "time": "2025-12-04 13:57:14.593", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "145785.0", + "mileage": "124.4", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827876093", + "time": "2025-12-04 13:57:56.093", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146840.0", + "mileage": "124.7", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827886643", + "time": "2025-12-04 13:58:06.643", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147100.0", + "mileage": "124.7", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889243", + "time": "2025-12-04 13:58:09.243", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147175.0", + "mileage": "124.7", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889993", + "time": "2025-12-04 13:58:09.993", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147280.0", + "mileage": "124.8", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827891043", + "time": "2025-12-04 13:58:11.043", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147980.0", + "mileage": "124.9", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827898043", + "time": "2025-12-04 13:58:18.043", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148090.0", + "mileage": "125.0", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827899143", + "time": "2025-12-04 13:58:19.143", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148600.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904243", + "time": "2025-12-04 13:58:24.243", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148635.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904593", + "time": "2025-12-04 13:58:24.593", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148690.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905143", + "time": "2025-12-04 13:58:25.143", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148750.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905743", + "time": "2025-12-04 13:58:25.743", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148825.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906493", + "time": "2025-12-04 13:58:26.493", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148890.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907143", + "time": "2025-12-04 13:58:27.143", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148915.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907393", + "time": "2025-12-04 13:58:27.393", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148980.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908043", + "time": "2025-12-04 13:58:28.043", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148995.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908193", + "time": "2025-12-04 13:58:28.193", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149160.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909843", + "time": "2025-12-04 13:58:29.843", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149195.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827910193", + "time": "2025-12-04 13:58:30.193", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149240.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827910643", + "time": "2025-12-04 13:58:30.643", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149270.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827910943", + "time": "2025-12-04 13:58:30.943", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149710.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827915343", + "time": "2025-12-04 13:58:35.343", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149730.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827915543", + "time": "2025-12-04 13:58:35.543", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150220.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827920443", + "time": "2025-12-04 13:58:40.443", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150285.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827921093", + "time": "2025-12-04 13:58:41.093", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150290.0", + "mileage": "125.1", + "value": "0.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827921143", + "time": "2025-12-04 13:58:41.143", + "valueExplanation": "NOT_TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155905.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977293", + "time": "2025-12-04 13:59:37.293", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "0.0", + "pre_valueExplanation": "NOT_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155915.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977393", + "time": "2025-12-04 13:59:37.393", + "valueExplanation": "TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155925.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977493", + "time": "2025-12-04 13:59:37.493", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155935.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977593", + "time": "2025-12-04 13:59:37.593", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155960.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827977843", + "time": "2025-12-04 13:59:37.843", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155995.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978193", + "time": "2025-12-04 13:59:38.193", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156050.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978743", + "time": "2025-12-04 13:59:38.743", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156100.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979243", + "time": "2025-12-04 13:59:39.243", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156175.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979993", + "time": "2025-12-04 13:59:39.993", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156190.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980143", + "time": "2025-12-04 13:59:40.143", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156240.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980643", + "time": "2025-12-04 13:59:40.643", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156250.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827980743", + "time": "2025-12-04 13:59:40.743", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156300.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981243", + "time": "2025-12-04 13:59:41.243", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156320.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981443", + "time": "2025-12-04 13:59:41.443", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156355.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981793", + "time": "2025-12-04 13:59:41.793", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156360.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981843", + "time": "2025-12-04 13:59:41.843", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156410.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982343", + "time": "2025-12-04 13:59:42.343", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156435.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982593", + "time": "2025-12-04 13:59:42.593", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156460.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982843", + "time": "2025-12-04 13:59:42.843", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156480.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827983043", + "time": "2025-12-04 13:59:43.043", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156490.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827983143", + "time": "2025-12-04 13:59:43.143", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156500.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827983243", + "time": "2025-12-04 13:59:43.243", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156915.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827987393", + "time": "2025-12-04 13:59:47.393", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156980.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827988043", + "time": "2025-12-04 13:59:48.043", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157410.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992343", + "time": "2025-12-04 13:59:52.343", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157450.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992743", + "time": "2025-12-04 13:59:52.743", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157545.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993693", + "time": "2025-12-04 13:59:53.693", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157555.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993793", + "time": "2025-12-04 13:59:53.793", + "valueExplanation": "TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157570.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993943", + "time": "2025-12-04 13:59:53.943", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157620.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994443", + "time": "2025-12-04 13:59:54.443", + "valueExplanation": "TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157650.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994743", + "time": "2025-12-04 13:59:54.743", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157715.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995393", + "time": "2025-12-04 13:59:55.393", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157800.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996243", + "time": "2025-12-04 13:59:56.243", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157815.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996393", + "time": "2025-12-04 13:59:56.393", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157835.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996593", + "time": "2025-12-04 13:59:56.593", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157925.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997493", + "time": "2025-12-04 13:59:57.493", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157975.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997993", + "time": "2025-12-04 13:59:57.993", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157990.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998143", + "time": "2025-12-04 13:59:58.143", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158010.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998343", + "time": "2025-12-04 13:59:58.343", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158030.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998543", + "time": "2025-12-04 13:59:58.543", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158045.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998693", + "time": "2025-12-04 13:59:58.693", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158050.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998743", + "time": "2025-12-04 13:59:58.743", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158120.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764827999443", + "time": "2025-12-04 13:59:59.443", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158135.0", + "mileage": "125.1", + "value": "0.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764827999593", + "time": "2025-12-04 13:59:59.593", + "valueExplanation": "NOT_TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158170.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764827999943", + "time": "2025-12-04 13:59:59.943", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "0.0", + "pre_valueExplanation": "NOT_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158185.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828000093", + "time": "2025-12-04 14:00:00.093", + "valueExplanation": "TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158190.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828000143", + "time": "2025-12-04 14:00:00.143", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158215.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828000393", + "time": "2025-12-04 14:00:00.393", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158590.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828004143", + "time": "2025-12-04 14:00:04.143", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158635.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828004593", + "time": "2025-12-04 14:00:04.593", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158645.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828004693", + "time": "2025-12-04 14:00:04.693", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158650.0", + "mileage": "125.1", + "value": "0.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828004743", + "time": "2025-12-04 14:00:04.743", + "valueExplanation": "NOT_TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146955.0", + "mileage": "124.7", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887793", + "time": "2025-12-04 13:58:07.793", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147015.0", + "mileage": "124.7", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827888393", + "time": "2025-12-04 13:58:08.393", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147035.0", + "mileage": "124.7", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827888593", + "time": "2025-12-04 13:58:08.593", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147050.0", + "mileage": "124.7", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827888743", + "time": "2025-12-04 13:58:08.743", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147175.0", + "mileage": "124.7", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889993", + "time": "2025-12-04 13:58:09.993", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147205.0", + "mileage": "124.8", + "value": "2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827890293", + "time": "2025-12-04 13:58:10.293", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147220.0", + "mileage": "124.8", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827890443", + "time": "2025-12-04 13:58:10.443", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147270.0", + "mileage": "124.8", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827890943", + "time": "2025-12-04 13:58:10.943", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148515.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903393", + "time": "2025-12-04 13:58:23.393", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148540.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903643", + "time": "2025-12-04 13:58:23.643", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148650.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904743", + "time": "2025-12-04 13:58:24.743", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148720.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905443", + "time": "2025-12-04 13:58:25.443", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148895.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907193", + "time": "2025-12-04 13:58:27.193", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149000.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908243", + "time": "2025-12-04 13:58:28.243", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155960.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827977843", + "time": "2025-12-04 13:59:37.843", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155970.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827977943", + "time": "2025-12-04 13:59:37.943", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155975.0", + "mileage": "125.1", + "value": "-3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827977993", + "time": "2025-12-04 13:59:37.993", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155980.0", + "mileage": "125.1", + "value": "-4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978043", + "time": "2025-12-04 13:59:38.043", + "valueExplanation": "", + "pre_value": "-3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155985.0", + "mileage": "125.1", + "value": "-5.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978093", + "time": "2025-12-04 13:59:38.093", + "valueExplanation": "", + "pre_value": "-4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155990.0", + "mileage": "125.1", + "value": "-6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978143", + "time": "2025-12-04 13:59:38.143", + "valueExplanation": "", + "pre_value": "-5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155995.0", + "mileage": "125.1", + "value": "-7.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978193", + "time": "2025-12-04 13:59:38.193", + "valueExplanation": "", + "pre_value": "-6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156000.0", + "mileage": "125.1", + "value": "-8.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978243", + "time": "2025-12-04 13:59:38.243", + "valueExplanation": "", + "pre_value": "-7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156005.0", + "mileage": "125.1", + "value": "-9.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978293", + "time": "2025-12-04 13:59:38.293", + "valueExplanation": "", + "pre_value": "-8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156010.0", + "mileage": "125.1", + "value": "-11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978343", + "time": "2025-12-04 13:59:38.343", + "valueExplanation": "", + "pre_value": "-9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156015.0", + "mileage": "125.1", + "value": "-12.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978393", + "time": "2025-12-04 13:59:38.393", + "valueExplanation": "", + "pre_value": "-11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156020.0", + "mileage": "125.1", + "value": "-13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978443", + "time": "2025-12-04 13:59:38.443", + "valueExplanation": "", + "pre_value": "-12.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156025.0", + "mileage": "125.1", + "value": "-14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978493", + "time": "2025-12-04 13:59:38.493", + "valueExplanation": "", + "pre_value": "-13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156035.0", + "mileage": "125.1", + "value": "-15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978593", + "time": "2025-12-04 13:59:38.593", + "valueExplanation": "", + "pre_value": "-14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156040.0", + "mileage": "125.1", + "value": "-16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978643", + "time": "2025-12-04 13:59:38.643", + "valueExplanation": "", + "pre_value": "-15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156050.0", + "mileage": "125.1", + "value": "-17.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978743", + "time": "2025-12-04 13:59:38.743", + "valueExplanation": "", + "pre_value": "-16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156055.0", + "mileage": "125.1", + "value": "-18.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978793", + "time": "2025-12-04 13:59:38.793", + "valueExplanation": "", + "pre_value": "-17.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156065.0", + "mileage": "125.1", + "value": "-19.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978893", + "time": "2025-12-04 13:59:38.893", + "valueExplanation": "", + "pre_value": "-18.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156075.0", + "mileage": "125.1", + "value": "-20.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978993", + "time": "2025-12-04 13:59:38.993", + "valueExplanation": "", + "pre_value": "-19.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156085.0", + "mileage": "125.1", + "value": "-21.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979093", + "time": "2025-12-04 13:59:39.093", + "valueExplanation": "", + "pre_value": "-20.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156105.0", + "mileage": "125.1", + "value": "-22.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979293", + "time": "2025-12-04 13:59:39.293", + "valueExplanation": "", + "pre_value": "-21.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156125.0", + "mileage": "125.1", + "value": "-23.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979493", + "time": "2025-12-04 13:59:39.493", + "valueExplanation": "", + "pre_value": "-22.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156135.0", + "mileage": "125.1", + "value": "-24.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979593", + "time": "2025-12-04 13:59:39.593", + "valueExplanation": "", + "pre_value": "-23.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156140.0", + "mileage": "125.1", + "value": "-25.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979643", + "time": "2025-12-04 13:59:39.643", + "valueExplanation": "", + "pre_value": "-24.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156145.0", + "mileage": "125.1", + "value": "-26.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979693", + "time": "2025-12-04 13:59:39.693", + "valueExplanation": "", + "pre_value": "-25.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156150.0", + "mileage": "125.1", + "value": "-27.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979743", + "time": "2025-12-04 13:59:39.743", + "valueExplanation": "", + "pre_value": "-26.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156155.0", + "mileage": "125.1", + "value": "-28.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979793", + "time": "2025-12-04 13:59:39.793", + "valueExplanation": "", + "pre_value": "-27.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156160.0", + "mileage": "125.1", + "value": "-29.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979843", + "time": "2025-12-04 13:59:39.843", + "valueExplanation": "", + "pre_value": "-28.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156170.0", + "mileage": "125.1", + "value": "-30.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979943", + "time": "2025-12-04 13:59:39.943", + "valueExplanation": "", + "pre_value": "-29.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156175.0", + "mileage": "125.1", + "value": "-31.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979993", + "time": "2025-12-04 13:59:39.993", + "valueExplanation": "", + "pre_value": "-30.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156180.0", + "mileage": "125.1", + "value": "-32.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980043", + "time": "2025-12-04 13:59:40.043", + "valueExplanation": "", + "pre_value": "-31.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156190.0", + "mileage": "125.1", + "value": "-33.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980143", + "time": "2025-12-04 13:59:40.143", + "valueExplanation": "", + "pre_value": "-32.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156200.0", + "mileage": "125.1", + "value": "-32.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980243", + "time": "2025-12-04 13:59:40.243", + "valueExplanation": "", + "pre_value": "-33.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156215.0", + "mileage": "125.1", + "value": "-31.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980393", + "time": "2025-12-04 13:59:40.393", + "valueExplanation": "", + "pre_value": "-32.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156230.0", + "mileage": "125.1", + "value": "-30.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980543", + "time": "2025-12-04 13:59:40.543", + "valueExplanation": "", + "pre_value": "-31.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156270.0", + "mileage": "125.1", + "value": "-29.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827980943", + "time": "2025-12-04 13:59:40.943", + "valueExplanation": "", + "pre_value": "-30.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156285.0", + "mileage": "125.1", + "value": "-28.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981093", + "time": "2025-12-04 13:59:41.093", + "valueExplanation": "", + "pre_value": "-29.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156290.0", + "mileage": "125.1", + "value": "-27.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981143", + "time": "2025-12-04 13:59:41.143", + "valueExplanation": "", + "pre_value": "-28.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156300.0", + "mileage": "125.1", + "value": "-26.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981243", + "time": "2025-12-04 13:59:41.243", + "valueExplanation": "", + "pre_value": "-27.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156305.0", + "mileage": "125.1", + "value": "-25.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981293", + "time": "2025-12-04 13:59:41.293", + "valueExplanation": "", + "pre_value": "-26.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156315.0", + "mileage": "125.1", + "value": "-24.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981393", + "time": "2025-12-04 13:59:41.393", + "valueExplanation": "", + "pre_value": "-25.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156320.0", + "mileage": "125.1", + "value": "-23.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981443", + "time": "2025-12-04 13:59:41.443", + "valueExplanation": "", + "pre_value": "-24.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156325.0", + "mileage": "125.1", + "value": "-22.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981493", + "time": "2025-12-04 13:59:41.493", + "valueExplanation": "", + "pre_value": "-23.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156330.0", + "mileage": "125.1", + "value": "-21.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981543", + "time": "2025-12-04 13:59:41.543", + "valueExplanation": "", + "pre_value": "-22.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156335.0", + "mileage": "125.1", + "value": "-20.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981593", + "time": "2025-12-04 13:59:41.593", + "valueExplanation": "", + "pre_value": "-21.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156340.0", + "mileage": "125.1", + "value": "-19.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981643", + "time": "2025-12-04 13:59:41.643", + "valueExplanation": "", + "pre_value": "-20.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156350.0", + "mileage": "125.1", + "value": "-18.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981743", + "time": "2025-12-04 13:59:41.743", + "valueExplanation": "", + "pre_value": "-19.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156355.0", + "mileage": "125.1", + "value": "-17.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981793", + "time": "2025-12-04 13:59:41.793", + "valueExplanation": "", + "pre_value": "-18.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156370.0", + "mileage": "125.1", + "value": "-16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981943", + "time": "2025-12-04 13:59:41.943", + "valueExplanation": "", + "pre_value": "-17.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156375.0", + "mileage": "125.1", + "value": "-15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981993", + "time": "2025-12-04 13:59:41.993", + "valueExplanation": "", + "pre_value": "-16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156380.0", + "mileage": "125.1", + "value": "-14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982043", + "time": "2025-12-04 13:59:42.043", + "valueExplanation": "", + "pre_value": "-15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156385.0", + "mileage": "125.1", + "value": "-13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982093", + "time": "2025-12-04 13:59:42.093", + "valueExplanation": "", + "pre_value": "-14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156390.0", + "mileage": "125.1", + "value": "-11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982143", + "time": "2025-12-04 13:59:42.143", + "valueExplanation": "", + "pre_value": "-13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156400.0", + "mileage": "125.1", + "value": "-10.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982243", + "time": "2025-12-04 13:59:42.243", + "valueExplanation": "", + "pre_value": "-11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156405.0", + "mileage": "125.1", + "value": "-8.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982293", + "time": "2025-12-04 13:59:42.293", + "valueExplanation": "", + "pre_value": "-10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156410.0", + "mileage": "125.1", + "value": "-7.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982343", + "time": "2025-12-04 13:59:42.343", + "valueExplanation": "", + "pre_value": "-8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156415.0", + "mileage": "125.1", + "value": "-6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982393", + "time": "2025-12-04 13:59:42.393", + "valueExplanation": "", + "pre_value": "-7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156420.0", + "mileage": "125.1", + "value": "-4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982443", + "time": "2025-12-04 13:59:42.443", + "valueExplanation": "", + "pre_value": "-6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156425.0", + "mileage": "125.1", + "value": "-3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982493", + "time": "2025-12-04 13:59:42.493", + "valueExplanation": "", + "pre_value": "-4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156430.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982543", + "time": "2025-12-04 13:59:42.543", + "valueExplanation": "", + "pre_value": "-3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156435.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982593", + "time": "2025-12-04 13:59:42.593", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156440.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982643", + "time": "2025-12-04 13:59:42.643", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156450.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982743", + "time": "2025-12-04 13:59:42.743", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156490.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827983143", + "time": "2025-12-04 13:59:43.143", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156505.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827983293", + "time": "2025-12-04 13:59:43.293", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156735.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827985593", + "time": "2025-12-04 13:59:45.593", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156755.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827985793", + "time": "2025-12-04 13:59:45.793", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156825.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827986493", + "time": "2025-12-04 13:59:46.493", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157280.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991043", + "time": "2025-12-04 13:59:51.043", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157365.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991893", + "time": "2025-12-04 13:59:51.893", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157375.0", + "mileage": "125.1", + "value": "-3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991993", + "time": "2025-12-04 13:59:51.993", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157385.0", + "mileage": "125.1", + "value": "-4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992093", + "time": "2025-12-04 13:59:52.093", + "valueExplanation": "", + "pre_value": "-3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157390.0", + "mileage": "125.1", + "value": "-5.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992143", + "time": "2025-12-04 13:59:52.143", + "valueExplanation": "", + "pre_value": "-4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157395.0", + "mileage": "125.1", + "value": "-6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992193", + "time": "2025-12-04 13:59:52.193", + "valueExplanation": "", + "pre_value": "-5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157400.0", + "mileage": "125.1", + "value": "-8.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992243", + "time": "2025-12-04 13:59:52.243", + "valueExplanation": "", + "pre_value": "-6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157405.0", + "mileage": "125.1", + "value": "-9.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992293", + "time": "2025-12-04 13:59:52.293", + "valueExplanation": "", + "pre_value": "-8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157410.0", + "mileage": "125.1", + "value": "-10.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992343", + "time": "2025-12-04 13:59:52.343", + "valueExplanation": "", + "pre_value": "-9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157415.0", + "mileage": "125.1", + "value": "-11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992393", + "time": "2025-12-04 13:59:52.393", + "valueExplanation": "", + "pre_value": "-10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157420.0", + "mileage": "125.1", + "value": "-13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992443", + "time": "2025-12-04 13:59:52.443", + "valueExplanation": "", + "pre_value": "-11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157425.0", + "mileage": "125.1", + "value": "-14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992493", + "time": "2025-12-04 13:59:52.493", + "valueExplanation": "", + "pre_value": "-13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157430.0", + "mileage": "125.1", + "value": "-15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992543", + "time": "2025-12-04 13:59:52.543", + "valueExplanation": "", + "pre_value": "-14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157435.0", + "mileage": "125.1", + "value": "-16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992593", + "time": "2025-12-04 13:59:52.593", + "valueExplanation": "", + "pre_value": "-15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157440.0", + "mileage": "125.1", + "value": "-18.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992643", + "time": "2025-12-04 13:59:52.643", + "valueExplanation": "", + "pre_value": "-16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157450.0", + "mileage": "125.1", + "value": "-19.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992743", + "time": "2025-12-04 13:59:52.743", + "valueExplanation": "", + "pre_value": "-18.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157455.0", + "mileage": "125.1", + "value": "-20.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992793", + "time": "2025-12-04 13:59:52.793", + "valueExplanation": "", + "pre_value": "-19.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157465.0", + "mileage": "125.1", + "value": "-21.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992893", + "time": "2025-12-04 13:59:52.893", + "valueExplanation": "", + "pre_value": "-20.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157475.0", + "mileage": "125.1", + "value": "-22.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992993", + "time": "2025-12-04 13:59:52.993", + "valueExplanation": "", + "pre_value": "-21.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157485.0", + "mileage": "125.1", + "value": "-23.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993093", + "time": "2025-12-04 13:59:53.093", + "valueExplanation": "", + "pre_value": "-22.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157490.0", + "mileage": "125.1", + "value": "-22.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993143", + "time": "2025-12-04 13:59:53.143", + "valueExplanation": "", + "pre_value": "-23.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157510.0", + "mileage": "125.1", + "value": "-21.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993343", + "time": "2025-12-04 13:59:53.343", + "valueExplanation": "", + "pre_value": "-22.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157520.0", + "mileage": "125.1", + "value": "-20.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993443", + "time": "2025-12-04 13:59:53.443", + "valueExplanation": "", + "pre_value": "-21.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157530.0", + "mileage": "125.1", + "value": "-19.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993543", + "time": "2025-12-04 13:59:53.543", + "valueExplanation": "", + "pre_value": "-20.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157535.0", + "mileage": "125.1", + "value": "-18.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993593", + "time": "2025-12-04 13:59:53.593", + "valueExplanation": "", + "pre_value": "-19.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157545.0", + "mileage": "125.1", + "value": "-17.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993693", + "time": "2025-12-04 13:59:53.693", + "valueExplanation": "", + "pre_value": "-18.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157550.0", + "mileage": "125.1", + "value": "-16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993743", + "time": "2025-12-04 13:59:53.743", + "valueExplanation": "", + "pre_value": "-17.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157560.0", + "mileage": "125.1", + "value": "-15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993843", + "time": "2025-12-04 13:59:53.843", + "valueExplanation": "", + "pre_value": "-16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157570.0", + "mileage": "125.1", + "value": "-14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993943", + "time": "2025-12-04 13:59:53.943", + "valueExplanation": "", + "pre_value": "-15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157575.0", + "mileage": "125.1", + "value": "-13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993993", + "time": "2025-12-04 13:59:53.993", + "valueExplanation": "", + "pre_value": "-14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157580.0", + "mileage": "125.1", + "value": "-12.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994043", + "time": "2025-12-04 13:59:54.043", + "valueExplanation": "", + "pre_value": "-13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157590.0", + "mileage": "125.1", + "value": "-11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994143", + "time": "2025-12-04 13:59:54.143", + "valueExplanation": "", + "pre_value": "-12.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157600.0", + "mileage": "125.1", + "value": "-10.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994243", + "time": "2025-12-04 13:59:54.243", + "valueExplanation": "", + "pre_value": "-11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157605.0", + "mileage": "125.1", + "value": "-9.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994293", + "time": "2025-12-04 13:59:54.293", + "valueExplanation": "", + "pre_value": "-10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157615.0", + "mileage": "125.1", + "value": "-8.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994393", + "time": "2025-12-04 13:59:54.393", + "valueExplanation": "", + "pre_value": "-9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157620.0", + "mileage": "125.1", + "value": "-7.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994443", + "time": "2025-12-04 13:59:54.443", + "valueExplanation": "", + "pre_value": "-8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157630.0", + "mileage": "125.1", + "value": "-6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994543", + "time": "2025-12-04 13:59:54.543", + "valueExplanation": "", + "pre_value": "-7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157640.0", + "mileage": "125.1", + "value": "-5.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994643", + "time": "2025-12-04 13:59:54.643", + "valueExplanation": "", + "pre_value": "-6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157645.0", + "mileage": "125.1", + "value": "-4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994693", + "time": "2025-12-04 13:59:54.693", + "valueExplanation": "", + "pre_value": "-5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157660.0", + "mileage": "125.1", + "value": "-3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994843", + "time": "2025-12-04 13:59:54.843", + "valueExplanation": "", + "pre_value": "-4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157695.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995193", + "time": "2025-12-04 13:59:55.193", + "valueExplanation": "", + "pre_value": "-3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157720.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995443", + "time": "2025-12-04 13:59:55.443", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157750.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995743", + "time": "2025-12-04 13:59:55.743", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157770.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995943", + "time": "2025-12-04 13:59:55.943", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157780.0", + "mileage": "125.1", + "value": "2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996043", + "time": "2025-12-04 13:59:56.043", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157790.0", + "mileage": "125.1", + "value": "3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996143", + "time": "2025-12-04 13:59:56.143", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157795.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996193", + "time": "2025-12-04 13:59:56.193", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157800.0", + "mileage": "125.1", + "value": "5.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996243", + "time": "2025-12-04 13:59:56.243", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157805.0", + "mileage": "125.1", + "value": "6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996293", + "time": "2025-12-04 13:59:56.293", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157810.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996343", + "time": "2025-12-04 13:59:56.343", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157815.0", + "mileage": "125.1", + "value": "9.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996393", + "time": "2025-12-04 13:59:56.393", + "valueExplanation": "", + "pre_value": "7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157820.0", + "mileage": "125.1", + "value": "10.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996443", + "time": "2025-12-04 13:59:56.443", + "valueExplanation": "", + "pre_value": "9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157825.0", + "mileage": "125.1", + "value": "11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996493", + "time": "2025-12-04 13:59:56.493", + "valueExplanation": "", + "pre_value": "10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157830.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996543", + "time": "2025-12-04 13:59:56.543", + "valueExplanation": "", + "pre_value": "11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157835.0", + "mileage": "125.1", + "value": "14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996593", + "time": "2025-12-04 13:59:56.593", + "valueExplanation": "", + "pre_value": "13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157840.0", + "mileage": "125.1", + "value": "15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996643", + "time": "2025-12-04 13:59:56.643", + "valueExplanation": "", + "pre_value": "14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157845.0", + "mileage": "125.1", + "value": "16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996693", + "time": "2025-12-04 13:59:56.693", + "valueExplanation": "", + "pre_value": "15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157850.0", + "mileage": "125.1", + "value": "17.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996743", + "time": "2025-12-04 13:59:56.743", + "valueExplanation": "", + "pre_value": "16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157875.0", + "mileage": "125.1", + "value": "16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996993", + "time": "2025-12-04 13:59:56.993", + "valueExplanation": "", + "pre_value": "17.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157880.0", + "mileage": "125.1", + "value": "15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997043", + "time": "2025-12-04 13:59:57.043", + "valueExplanation": "", + "pre_value": "16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157885.0", + "mileage": "125.1", + "value": "14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997093", + "time": "2025-12-04 13:59:57.093", + "valueExplanation": "", + "pre_value": "15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157890.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997143", + "time": "2025-12-04 13:59:57.143", + "valueExplanation": "", + "pre_value": "14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157895.0", + "mileage": "125.1", + "value": "12.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997193", + "time": "2025-12-04 13:59:57.193", + "valueExplanation": "", + "pre_value": "13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157900.0", + "mileage": "125.1", + "value": "11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997243", + "time": "2025-12-04 13:59:57.243", + "valueExplanation": "", + "pre_value": "12.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157905.0", + "mileage": "125.1", + "value": "10.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997293", + "time": "2025-12-04 13:59:57.293", + "valueExplanation": "", + "pre_value": "11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157910.0", + "mileage": "125.1", + "value": "9.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997343", + "time": "2025-12-04 13:59:57.343", + "valueExplanation": "", + "pre_value": "10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157915.0", + "mileage": "125.1", + "value": "8.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997393", + "time": "2025-12-04 13:59:57.393", + "valueExplanation": "", + "pre_value": "9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157920.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997443", + "time": "2025-12-04 13:59:57.443", + "valueExplanation": "", + "pre_value": "8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157925.0", + "mileage": "125.1", + "value": "6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997493", + "time": "2025-12-04 13:59:57.493", + "valueExplanation": "", + "pre_value": "7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157930.0", + "mileage": "125.1", + "value": "5.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997543", + "time": "2025-12-04 13:59:57.543", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157935.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997593", + "time": "2025-12-04 13:59:57.593", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157940.0", + "mileage": "125.1", + "value": "3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997643", + "time": "2025-12-04 13:59:57.643", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157945.0", + "mileage": "125.1", + "value": "2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997693", + "time": "2025-12-04 13:59:57.693", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157950.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997743", + "time": "2025-12-04 13:59:57.743", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157960.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997843", + "time": "2025-12-04 13:59:57.843", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157965.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997893", + "time": "2025-12-04 13:59:57.893", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157970.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997943", + "time": "2025-12-04 13:59:57.943", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157975.0", + "mileage": "125.1", + "value": "-4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997993", + "time": "2025-12-04 13:59:57.993", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158000.0", + "mileage": "125.1", + "value": "-3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998243", + "time": "2025-12-04 13:59:58.243", + "valueExplanation": "", + "pre_value": "-4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158010.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998343", + "time": "2025-12-04 13:59:58.343", + "valueExplanation": "", + "pre_value": "-3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158015.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998393", + "time": "2025-12-04 13:59:58.393", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158025.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998493", + "time": "2025-12-04 13:59:58.493", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158030.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998543", + "time": "2025-12-04 13:59:58.543", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158270.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828000943", + "time": "2025-12-04 14:00:00.943", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "130755.0", + "mileage": "120.8", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827725793", + "time": "2025-12-04 13:55:25.793", + "valueExplanation": "ROI_06", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "130870.0", + "mileage": "120.9", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827726943", + "time": "2025-12-04 13:55:26.943", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "130915.0", + "mileage": "120.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827727393", + "time": "2025-12-04 13:55:27.393", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131075.0", + "mileage": "120.9", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827728993", + "time": "2025-12-04 13:55:28.993", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131450.0", + "mileage": "121.0", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827732743", + "time": "2025-12-04 13:55:32.743", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131490.0", + "mileage": "121.0", + "value": "9.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827733143", + "time": "2025-12-04 13:55:33.143", + "valueExplanation": "ROI_09", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131550.0", + "mileage": "121.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827733743", + "time": "2025-12-04 13:55:33.743", + "valueExplanation": "ROI_04", + "pre_value": "9.0", + "pre_valueExplanation": "ROI_09", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131580.0", + "mileage": "121.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827734043", + "time": "2025-12-04 13:55:34.043", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131650.0", + "mileage": "121.1", + "value": "8.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827734743", + "time": "2025-12-04 13:55:34.743", + "valueExplanation": "ROI_08", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131705.0", + "mileage": "121.1", + "value": "9.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827735293", + "time": "2025-12-04 13:55:35.293", + "valueExplanation": "ROI_09", + "pre_value": "8.0", + "pre_valueExplanation": "ROI_08", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131760.0", + "mileage": "121.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827735843", + "time": "2025-12-04 13:55:35.843", + "valueExplanation": "ROI_04", + "pre_value": "9.0", + "pre_valueExplanation": "ROI_09", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132080.0", + "mileage": "121.2", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827739043", + "time": "2025-12-04 13:55:39.043", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132145.0", + "mileage": "121.2", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827739693", + "time": "2025-12-04 13:55:39.693", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132270.0", + "mileage": "121.2", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827740943", + "time": "2025-12-04 13:55:40.943", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132295.0", + "mileage": "121.2", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827741193", + "time": "2025-12-04 13:55:41.193", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132485.0", + "mileage": "121.3", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827743093", + "time": "2025-12-04 13:55:43.093", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132560.0", + "mileage": "121.3", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827743843", + "time": "2025-12-04 13:55:43.843", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132805.0", + "mileage": "121.4", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827746293", + "time": "2025-12-04 13:55:46.293", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132935.0", + "mileage": "121.4", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827747593", + "time": "2025-12-04 13:55:47.593", + "valueExplanation": "ROI_06", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132965.0", + "mileage": "121.4", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827747893", + "time": "2025-12-04 13:55:47.893", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132985.0", + "mileage": "121.4", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827748093", + "time": "2025-12-04 13:55:48.093", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133185.0", + "mileage": "121.4", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827750093", + "time": "2025-12-04 13:55:50.093", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133225.0", + "mileage": "121.4", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827750493", + "time": "2025-12-04 13:55:50.493", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136790.0", + "mileage": "122.2", + "value": "15.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827786143", + "time": "2025-12-04 13:56:26.143", + "valueExplanation": "ROI_15", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136850.0", + "mileage": "122.2", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827786743", + "time": "2025-12-04 13:56:26.743", + "valueExplanation": "ROI_04", + "pre_value": "15.0", + "pre_valueExplanation": "ROI_15", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137200.0", + "mileage": "122.3", + "value": "29.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827790243", + "time": "2025-12-04 13:56:30.243", + "valueExplanation": "ROI_29", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137245.0", + "mileage": "122.3", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827790693", + "time": "2025-12-04 13:56:30.693", + "valueExplanation": "ROI_04", + "pre_value": "29.0", + "pre_valueExplanation": "ROI_29", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137620.0", + "mileage": "122.4", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827794443", + "time": "2025-12-04 13:56:34.443", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137715.0", + "mileage": "122.4", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827795393", + "time": "2025-12-04 13:56:35.393", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138130.0", + "mileage": "122.5", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827799543", + "time": "2025-12-04 13:56:39.543", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138325.0", + "mileage": "122.5", + "value": "8.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827801493", + "time": "2025-12-04 13:56:41.493", + "valueExplanation": "ROI_08", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138440.0", + "mileage": "122.6", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827802643", + "time": "2025-12-04 13:56:42.643", + "valueExplanation": "ROI_04", + "pre_value": "8.0", + "pre_valueExplanation": "ROI_08", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138560.0", + "mileage": "122.6", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827803843", + "time": "2025-12-04 13:56:43.843", + "valueExplanation": "ROI_06", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138970.0", + "mileage": "122.7", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827807943", + "time": "2025-12-04 13:56:47.943", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139020.0", + "mileage": "122.7", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827808443", + "time": "2025-12-04 13:56:48.443", + "valueExplanation": "ROI_06", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139275.0", + "mileage": "122.7", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827810993", + "time": "2025-12-04 13:56:50.993", + "valueExplanation": "ROI_04", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139425.0", + "mileage": "122.8", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827812493", + "time": "2025-12-04 13:56:52.493", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139490.0", + "mileage": "122.8", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827813143", + "time": "2025-12-04 13:56:53.143", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139735.0", + "mileage": "122.8", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827815593", + "time": "2025-12-04 13:56:55.593", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139795.0", + "mileage": "122.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827816193", + "time": "2025-12-04 13:56:56.193", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139845.0", + "mileage": "122.9", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827816693", + "time": "2025-12-04 13:56:56.693", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140030.0", + "mileage": "122.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827818543", + "time": "2025-12-04 13:56:58.543", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140705.0", + "mileage": "123.1", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827825293", + "time": "2025-12-04 13:57:05.293", + "valueExplanation": "ROI_06", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140980.0", + "mileage": "123.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827828043", + "time": "2025-12-04 13:57:08.043", + "valueExplanation": "ROI_04", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141135.0", + "mileage": "123.1", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827829593", + "time": "2025-12-04 13:57:09.593", + "valueExplanation": "ROI_06", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141460.0", + "mileage": "123.2", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827832843", + "time": "2025-12-04 13:57:12.843", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141490.0", + "mileage": "123.2", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827833143", + "time": "2025-12-04 13:57:13.143", + "valueExplanation": "ROI_06", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141645.0", + "mileage": "123.3", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834693", + "time": "2025-12-04 13:57:14.693", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141735.0", + "mileage": "123.3", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827835593", + "time": "2025-12-04 13:57:15.593", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141840.0", + "mileage": "123.3", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827836643", + "time": "2025-12-04 13:57:16.643", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141930.0", + "mileage": "123.3", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827837543", + "time": "2025-12-04 13:57:17.543", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "142350.0", + "mileage": "123.4", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827841743", + "time": "2025-12-04 13:57:21.743", + "valueExplanation": "ROI_06", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "142440.0", + "mileage": "123.5", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827842643", + "time": "2025-12-04 13:57:22.643", + "valueExplanation": "ROI_04", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "143730.0", + "mileage": "123.8", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827855543", + "time": "2025-12-04 13:57:35.543", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "143990.0", + "mileage": "123.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827858143", + "time": "2025-12-04 13:57:38.143", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144180.0", + "mileage": "123.9", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827860043", + "time": "2025-12-04 13:57:40.043", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144250.0", + "mileage": "124.0", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827860743", + "time": "2025-12-04 13:57:40.743", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144275.0", + "mileage": "124.0", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827860993", + "time": "2025-12-04 13:57:40.993", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144350.0", + "mileage": "124.0", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827861743", + "time": "2025-12-04 13:57:41.743", + "valueExplanation": "ROI_06", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144560.0", + "mileage": "124.0", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827863843", + "time": "2025-12-04 13:57:43.843", + "valueExplanation": "ROI_04", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144620.0", + "mileage": "124.1", + "value": "9.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827864443", + "time": "2025-12-04 13:57:44.443", + "valueExplanation": "ROI_09", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144720.0", + "mileage": "124.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827865443", + "time": "2025-12-04 13:57:45.443", + "valueExplanation": "ROI_04", + "pre_value": "9.0", + "pre_valueExplanation": "ROI_09", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "145555.0", + "mileage": "124.3", + "value": "20.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827873793", + "time": "2025-12-04 13:57:53.793", + "valueExplanation": "ROI_20", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146055.0", + "mileage": "124.4", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827878793", + "time": "2025-12-04 13:57:58.793", + "valueExplanation": "ROI_01", + "pre_value": "20.0", + "pre_valueExplanation": "ROI_20", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146160.0", + "mileage": "124.5", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827879843", + "time": "2025-12-04 13:57:59.843", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146240.0", + "mileage": "124.5", + "value": "9.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827880643", + "time": "2025-12-04 13:58:00.643", + "valueExplanation": "ROI_09", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146405.0", + "mileage": "124.5", + "value": "8.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827882293", + "time": "2025-12-04 13:58:02.293", + "valueExplanation": "ROI_08", + "pre_value": "9.0", + "pre_valueExplanation": "ROI_09", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146520.0", + "mileage": "124.6", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883443", + "time": "2025-12-04 13:58:03.443", + "valueExplanation": "ROI_04", + "pre_value": "8.0", + "pre_valueExplanation": "ROI_08", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146565.0", + "mileage": "124.6", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883893", + "time": "2025-12-04 13:58:03.893", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146930.0", + "mileage": "124.7", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887543", + "time": "2025-12-04 13:58:07.543", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147100.0", + "mileage": "124.7", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889243", + "time": "2025-12-04 13:58:09.243", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147175.0", + "mileage": "124.7", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889993", + "time": "2025-12-04 13:58:09.993", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147410.0", + "mileage": "124.8", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827892343", + "time": "2025-12-04 13:58:12.343", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147490.0", + "mileage": "124.8", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827893143", + "time": "2025-12-04 13:58:13.143", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147570.0", + "mileage": "124.8", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827893943", + "time": "2025-12-04 13:58:13.943", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147625.0", + "mileage": "124.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827894493", + "time": "2025-12-04 13:58:14.493", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147860.0", + "mileage": "124.9", + "value": "10.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827896843", + "time": "2025-12-04 13:58:16.843", + "valueExplanation": "ROI_10", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147905.0", + "mileage": "124.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827897293", + "time": "2025-12-04 13:58:17.293", + "valueExplanation": "ROI_04", + "pre_value": "10.0", + "pre_valueExplanation": "ROI_10", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147960.0", + "mileage": "124.9", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827897843", + "time": "2025-12-04 13:58:17.843", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148080.0", + "mileage": "125.0", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827899043", + "time": "2025-12-04 13:58:19.043", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148900.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907243", + "time": "2025-12-04 13:58:27.243", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148970.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907943", + "time": "2025-12-04 13:58:27.943", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149110.0", + "mileage": "125.1", + "value": "29.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909343", + "time": "2025-12-04 13:58:29.343", + "valueExplanation": "ROI_29", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149145.0", + "mileage": "125.1", + "value": "17.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909693", + "time": "2025-12-04 13:58:29.693", + "valueExplanation": "ROI_17", + "pre_value": "29.0", + "pre_valueExplanation": "ROI_29", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149570.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827913943", + "time": "2025-12-04 13:58:33.943", + "valueExplanation": "ROI_07", + "pre_value": "17.0", + "pre_valueExplanation": "ROI_17", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149660.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827914843", + "time": "2025-12-04 13:58:34.843", + "valueExplanation": "ROI_01", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150015.0", + "mileage": "125.1", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827918393", + "time": "2025-12-04 13:58:38.393", + "valueExplanation": "ROI_06", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150140.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827919643", + "time": "2025-12-04 13:58:39.643", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150255.0", + "mileage": "125.1", + "value": "20.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827920793", + "time": "2025-12-04 13:58:40.793", + "valueExplanation": "ROI_20", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150355.0", + "mileage": "125.1", + "value": "29.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827921793", + "time": "2025-12-04 13:58:41.793", + "valueExplanation": "ROI_29", + "pre_value": "20.0", + "pre_valueExplanation": "ROI_20", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150435.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827922593", + "time": "2025-12-04 13:58:42.593", + "valueExplanation": "ROI_07", + "pre_value": "29.0", + "pre_valueExplanation": "ROI_29", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150535.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827923593", + "time": "2025-12-04 13:58:43.593", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150705.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827925293", + "time": "2025-12-04 13:58:45.293", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150870.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827926943", + "time": "2025-12-04 13:58:46.943", + "valueExplanation": "ROI_13", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "151040.0", + "mileage": "125.1", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827928643", + "time": "2025-12-04 13:58:48.643", + "valueExplanation": "ROI_06", + "pre_value": "13.0", + "pre_valueExplanation": "ROI_13", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "151345.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827931693", + "time": "2025-12-04 13:58:51.693", + "valueExplanation": "ROI_13", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "151750.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827935743", + "time": "2025-12-04 13:58:55.743", + "valueExplanation": "ROI_07", + "pre_value": "13.0", + "pre_valueExplanation": "ROI_13", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "152085.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827939093", + "time": "2025-12-04 13:58:59.093", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "152240.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827940643", + "time": "2025-12-04 13:59:00.643", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "152710.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827945343", + "time": "2025-12-04 13:59:05.343", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "152785.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827946093", + "time": "2025-12-04 13:59:06.093", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "153060.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827948843", + "time": "2025-12-04 13:59:08.843", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "153210.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827950343", + "time": "2025-12-04 13:59:10.343", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "153635.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827954593", + "time": "2025-12-04 13:59:14.593", + "valueExplanation": "NO_GAZE", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "154190.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827960143", + "time": "2025-12-04 13:59:20.143", + "valueExplanation": "ROI_04", + "pre_value": "0.0", + "pre_valueExplanation": "NO_GAZE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "154395.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827962193", + "time": "2025-12-04 13:59:22.193", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "154465.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827962893", + "time": "2025-12-04 13:59:22.893", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "154835.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827966593", + "time": "2025-12-04 13:59:26.593", + "valueExplanation": "ROI_13", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155030.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827968543", + "time": "2025-12-04 13:59:28.543", + "valueExplanation": "ROI_07", + "pre_value": "13.0", + "pre_valueExplanation": "ROI_13", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155315.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827971393", + "time": "2025-12-04 13:59:31.393", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155370.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827971943", + "time": "2025-12-04 13:59:31.943", + "valueExplanation": "ROI_13", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155670.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827974943", + "time": "2025-12-04 13:59:34.943", + "valueExplanation": "ROI_04", + "pre_value": "13.0", + "pre_valueExplanation": "ROI_13", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155880.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977043", + "time": "2025-12-04 13:59:37.043", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156005.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978293", + "time": "2025-12-04 13:59:38.293", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156040.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978643", + "time": "2025-12-04 13:59:38.643", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156100.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979243", + "time": "2025-12-04 13:59:39.243", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156230.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980543", + "time": "2025-12-04 13:59:40.543", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157365.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991893", + "time": "2025-12-04 13:59:51.893", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157925.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997493", + "time": "2025-12-04 13:59:57.493", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157970.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997943", + "time": "2025-12-04 13:59:57.943", + "valueExplanation": "ROI_01", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158050.0", + "mileage": "125.1", + "value": "20.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998743", + "time": "2025-12-04 13:59:58.743", + "valueExplanation": "ROI_20", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158105.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764827999293", + "time": "2025-12-04 13:59:59.293", + "valueExplanation": "ROI_01", + "pre_value": "20.0", + "pre_valueExplanation": "ROI_20", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158500.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828003243", + "time": "2025-12-04 14:00:03.243", + "valueExplanation": "NO_GAZE", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146555.0", + "mileage": "124.6", + "value": "4.0", + "signal": "L2P_Function_State", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883793", + "time": "2025-12-04 13:58:03.793", + "valueExplanation": "kOverrule", + "pre_value": "3.0", + "pre_valueExplanation": "kActive", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146910.0", + "mileage": "124.7", + "value": "5.0", + "signal": "L2P_Function_State", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887343", + "time": "2025-12-04 13:58:07.343", + "valueExplanation": "kError", + "pre_value": "4.0", + "pre_valueExplanation": "kOverrule", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148265.0", + "mileage": "125.0", + "value": "1.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827900893", + "time": "2025-12-04 13:58:20.893", + "valueExplanation": "Pedal pressed", + "pre_value": "0.0", + "pre_valueExplanation": "Pedal upstopped", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150155.0", + "mileage": "125.1", + "value": "0.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827919793", + "time": "2025-12-04 13:58:39.793", + "valueExplanation": "Pedal upstopped", + "pre_value": "1.0", + "pre_valueExplanation": "Pedal pressed", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155900.0", + "mileage": "125.1", + "value": "1.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977243", + "time": "2025-12-04 13:59:37.243", + "valueExplanation": "Pedal pressed", + "pre_value": "0.0", + "pre_valueExplanation": "Pedal upstopped", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156045.0", + "mileage": "125.1", + "value": "0.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978693", + "time": "2025-12-04 13:59:38.693", + "valueExplanation": "Pedal upstopped", + "pre_value": "1.0", + "pre_valueExplanation": "Pedal pressed", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156445.0", + "mileage": "125.1", + "value": "1.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982693", + "time": "2025-12-04 13:59:42.693", + "valueExplanation": "Pedal pressed", + "pre_value": "0.0", + "pre_valueExplanation": "Pedal upstopped", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157285.0", + "mileage": "125.1", + "value": "0.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991093", + "time": "2025-12-04 13:59:51.093", + "valueExplanation": "Pedal upstopped", + "pre_value": "1.0", + "pre_valueExplanation": "Pedal pressed", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157665.0", + "mileage": "125.1", + "value": "1.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994893", + "time": "2025-12-04 13:59:54.893", + "valueExplanation": "Pedal pressed", + "pre_value": "0.0", + "pre_valueExplanation": "Pedal upstopped", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158595.0", + "mileage": "125.1", + "value": "0.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828004193", + "time": "2025-12-04 14:00:04.193", + "valueExplanation": "Pedal upstopped", + "pre_value": "1.0", + "pre_valueExplanation": "Pedal pressed", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131650.0", + "mileage": "121.1", + "value": "3.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827734743", + "time": "2025-12-04 13:55:34.743", + "valueExplanation": "ACTV_SPEED_LMT_CNTRL", + "pre_value": "2.0", + "pre_valueExplanation": "ACTV_SET_SPEED_CNTRL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132160.0", + "mileage": "121.2", + "value": "2.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827739843", + "time": "2025-12-04 13:55:39.843", + "valueExplanation": "ACTV_SET_SPEED_CNTRL", + "pre_value": "3.0", + "pre_valueExplanation": "ACTV_SPEED_LMT_CNTRL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141160.0", + "mileage": "123.1", + "value": "3.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827829843", + "time": "2025-12-04 13:57:09.843", + "valueExplanation": "ACTV_SPEED_LMT_CNTRL", + "pre_value": "2.0", + "pre_valueExplanation": "ACTV_SET_SPEED_CNTRL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141670.0", + "mileage": "123.3", + "value": "2.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834943", + "time": "2025-12-04 13:57:14.943", + "valueExplanation": "ACTV_SET_SPEED_CNTRL", + "pre_value": "3.0", + "pre_valueExplanation": "ACTV_SPEED_LMT_CNTRL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146920.0", + "mileage": "124.7", + "value": "1.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887443", + "time": "2025-12-04 13:58:07.443", + "valueExplanation": "PRESEL", + "pre_value": "2.0", + "pre_valueExplanation": "ACTV_SET_SPEED_CNTRL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146960.0", + "mileage": "124.7", + "value": "14.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887843", + "time": "2025-12-04 13:58:07.843", + "valueExplanation": "ERROR", + "pre_value": "1.0", + "pre_valueExplanation": "PRESEL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158525.0", + "mileage": "125.1", + "value": "0.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828003493", + "time": "2025-12-04 14:00:03.493", + "valueExplanation": "OFF", + "pre_value": "14.0", + "pre_valueExplanation": "ERROR", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158565.0", + "mileage": "125.1", + "value": "14.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828003893", + "time": "2025-12-04 14:00:03.893", + "valueExplanation": "ERROR", + "pre_value": "0.0", + "pre_valueExplanation": "OFF", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146550.0", + "mileage": "124.6", + "value": "2.0", + "signal": "MM_CtrlLoopState", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883743", + "time": "2025-12-04 13:58:03.743", + "valueExplanation": "Blending", + "pre_value": "3.0", + "pre_valueExplanation": "Closed_Loop", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146565.0", + "mileage": "124.6", + "value": "1.0", + "signal": "MM_CtrlLoopState", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883893", + "time": "2025-12-04 13:58:03.893", + "valueExplanation": "Open_Loop", + "pre_value": "2.0", + "pre_valueExplanation": "Blending", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146960.0", + "mileage": "124.7", + "value": "0.0", + "signal": "MM_CtrlLoopState", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887843", + "time": "2025-12-04 13:58:07.843", + "valueExplanation": "Unknown", + "pre_value": "1.0", + "pre_valueExplanation": "Open_Loop", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156125.0", + "mileage": "125.1", + "value": "1.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979493", + "time": "2025-12-04 13:59:39.493", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156135.0", + "mileage": "125.1", + "value": "0.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979593", + "time": "2025-12-04 13:59:39.593", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156350.0", + "mileage": "125.1", + "value": "1.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981743", + "time": "2025-12-04 13:59:41.743", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156365.0", + "mileage": "125.1", + "value": "0.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981893", + "time": "2025-12-04 13:59:41.893", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157290.0", + "mileage": "125.1", + "value": "3.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991143", + "time": "2025-12-04 13:59:51.143", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157295.0", + "mileage": "125.1", + "value": "9.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991193", + "time": "2025-12-04 13:59:51.193", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157300.0", + "mileage": "125.1", + "value": "11.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991243", + "time": "2025-12-04 13:59:51.243", + "valueExplanation": "", + "pre_value": "9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157305.0", + "mileage": "125.1", + "value": "12.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991293", + "time": "2025-12-04 13:59:51.293", + "valueExplanation": "", + "pre_value": "11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157345.0", + "mileage": "125.1", + "value": "11.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991693", + "time": "2025-12-04 13:59:51.693", + "valueExplanation": "", + "pre_value": "12.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157350.0", + "mileage": "125.1", + "value": "10.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991743", + "time": "2025-12-04 13:59:51.743", + "valueExplanation": "", + "pre_value": "11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157355.0", + "mileage": "125.1", + "value": "4.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991793", + "time": "2025-12-04 13:59:51.793", + "valueExplanation": "", + "pre_value": "10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157360.0", + "mileage": "125.1", + "value": "0.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991843", + "time": "2025-12-04 13:59:51.843", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157485.0", + "mileage": "125.1", + "value": "1.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993093", + "time": "2025-12-04 13:59:53.093", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157490.0", + "mileage": "125.1", + "value": "2.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993143", + "time": "2025-12-04 13:59:53.143", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157495.0", + "mileage": "125.1", + "value": "5.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993193", + "time": "2025-12-04 13:59:53.193", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157500.0", + "mileage": "125.1", + "value": "6.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993243", + "time": "2025-12-04 13:59:53.243", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157540.0", + "mileage": "125.1", + "value": "7.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993643", + "time": "2025-12-04 13:59:53.643", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157645.0", + "mileage": "125.1", + "value": "6.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994693", + "time": "2025-12-04 13:59:54.693", + "valueExplanation": "", + "pre_value": "7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157655.0", + "mileage": "125.1", + "value": "4.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994793", + "time": "2025-12-04 13:59:54.793", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157660.0", + "mileage": "125.1", + "value": "1.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994843", + "time": "2025-12-04 13:59:54.843", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157665.0", + "mileage": "125.1", + "value": "0.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994893", + "time": "2025-12-04 13:59:54.893", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146910.0", + "mileage": "124.7", + "value": "10.0", + "signal": "AEB_state", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887343", + "time": "2025-12-04 13:58:07.343", + "valueExplanation": "kError", + "pre_value": "1.0", + "pre_valueExplanation": "kAvailable", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146920.0", + "mileage": "124.7", + "value": "1.0", + "signal": "DAS_DTQ_UI_Stat_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887443", + "time": "2025-12-04 13:58:07.443", + "valueExplanation": "PRESELECTED", + "pre_value": "3.0", + "pre_valueExplanation": "ACTV", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146960.0", + "mileage": "124.7", + "value": "14.0", + "signal": "DAS_DTQ_UI_Stat_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887843", + "time": "2025-12-04 13:58:07.843", + "valueExplanation": "ERR", + "pre_value": "1.0", + "pre_valueExplanation": "PRESELECTED", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158525.0", + "mileage": "125.1", + "value": "0.0", + "signal": "DAS_DTQ_UI_Stat_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828003493", + "time": "2025-12-04 14:00:03.493", + "valueExplanation": "OFF", + "pre_value": "14.0", + "pre_valueExplanation": "ERR", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158565.0", + "mileage": "125.1", + "value": "14.0", + "signal": "DAS_DTQ_UI_Stat_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828003893", + "time": "2025-12-04 14:00:03.893", + "valueExplanation": "ERR", + "pre_value": "0.0", + "pre_valueExplanation": "OFF", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146910.0", + "mileage": "124.7", + "value": "6.0", + "signal": "MMT_L2PP_Function_State", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887343", + "time": "2025-12-04 13:58:07.343", + "valueExplanation": "Unknown", + "pre_value": "1.0", + "pre_valueExplanation": "Deactivated", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146920.0", + "mileage": "124.7", + "value": "6.0", + "signal": "L2P_Deactivation_Reason", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887443", + "time": "2025-12-04 13:58:07.443", + "valueExplanation": "kError", + "pre_value": "", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147120.0", + "mileage": "124.7", + "value": "0.0", + "signal": "L2P_Deactivation_Reason", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889443", + "time": "2025-12-04 13:58:09.443", + "valueExplanation": "kIdle", + "pre_value": "6.0", + "pre_valueExplanation": "kError", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "130515.0", + "mileage": "120.8", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827723393", + "time": "2025-12-04 13:55:23.393", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "130865.0", + "mileage": "120.9", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827726893", + "time": "2025-12-04 13:55:26.893", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132070.0", + "mileage": "121.2", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827738943", + "time": "2025-12-04 13:55:38.943", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132910.0", + "mileage": "121.4", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827747343", + "time": "2025-12-04 13:55:47.343", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133295.0", + "mileage": "121.5", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827751193", + "time": "2025-12-04 13:55:51.193", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "137730.0", + "mileage": "122.4", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827795543", + "time": "2025-12-04 13:56:35.543", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138025.0", + "mileage": "122.5", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827798493", + "time": "2025-12-04 13:56:38.493", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138235.0", + "mileage": "122.5", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827800593", + "time": "2025-12-04 13:56:40.593", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138815.0", + "mileage": "122.6", + "value": "3.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827806393", + "time": "2025-12-04 13:56:46.393", + "valueExplanation": "MCRSLP_DSTRCT", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139900.0", + "mileage": "122.9", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827817243", + "time": "2025-12-04 13:56:57.243", + "valueExplanation": "IDLE", + "pre_value": "3.0", + "pre_valueExplanation": "MCRSLP_DSTRCT", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139950.0", + "mileage": "122.9", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827817743", + "time": "2025-12-04 13:56:57.743", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140340.0", + "mileage": "123.0", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821643", + "time": "2025-12-04 13:57:01.643", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140815.0", + "mileage": "123.1", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827826393", + "time": "2025-12-04 13:57:06.393", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140965.0", + "mileage": "123.1", + "value": "3.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827827893", + "time": "2025-12-04 13:57:07.893", + "valueExplanation": "MCRSLP_DSTRCT", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "142060.0", + "mileage": "123.4", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827838843", + "time": "2025-12-04 13:57:18.843", + "valueExplanation": "IDLE", + "pre_value": "3.0", + "pre_valueExplanation": "MCRSLP_DSTRCT", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "143840.0", + "mileage": "123.8", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827856643", + "time": "2025-12-04 13:57:36.643", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144295.0", + "mileage": "124.0", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827861193", + "time": "2025-12-04 13:57:41.193", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144380.0", + "mileage": "124.0", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827862043", + "time": "2025-12-04 13:57:42.043", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "145035.0", + "mileage": "124.2", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827868593", + "time": "2025-12-04 13:57:48.593", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "145615.0", + "mileage": "124.3", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827874393", + "time": "2025-12-04 13:57:54.393", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "145755.0", + "mileage": "124.4", + "value": "3.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827875793", + "time": "2025-12-04 13:57:55.793", + "valueExplanation": "MCRSLP_DSTRCT", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146470.0", + "mileage": "124.6", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827882943", + "time": "2025-12-04 13:58:02.943", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "3.0", + "pre_valueExplanation": "MCRSLP_DSTRCT", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146625.0", + "mileage": "124.6", + "value": "3.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827884493", + "time": "2025-12-04 13:58:04.493", + "valueExplanation": "MCRSLP_DSTRCT", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147590.0", + "mileage": "124.8", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827894143", + "time": "2025-12-04 13:58:14.143", + "valueExplanation": "IDLE", + "pre_value": "3.0", + "pre_valueExplanation": "MCRSLP_DSTRCT", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148065.0", + "mileage": "125.0", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827898893", + "time": "2025-12-04 13:58:18.893", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148395.0", + "mileage": "125.0", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902193", + "time": "2025-12-04 13:58:22.193", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131735.0", + "mileage": "121.1", + "value": "96.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827735593", + "time": "2025-12-04 13:55:35.593", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131790.0", + "mileage": "121.1", + "value": "95.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827736143", + "time": "2025-12-04 13:55:36.143", + "valueExplanation": "", + "pre_value": "96.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131825.0", + "mileage": "121.1", + "value": "94.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827736493", + "time": "2025-12-04 13:55:36.493", + "valueExplanation": "", + "pre_value": "95.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131860.0", + "mileage": "121.1", + "value": "93.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827736843", + "time": "2025-12-04 13:55:36.843", + "valueExplanation": "", + "pre_value": "94.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131895.0", + "mileage": "121.1", + "value": "92.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827737193", + "time": "2025-12-04 13:55:37.193", + "valueExplanation": "", + "pre_value": "93.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131930.0", + "mileage": "121.2", + "value": "91.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827737543", + "time": "2025-12-04 13:55:37.543", + "valueExplanation": "", + "pre_value": "92.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131955.0", + "mileage": "121.2", + "value": "90.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827737793", + "time": "2025-12-04 13:55:37.793", + "valueExplanation": "", + "pre_value": "91.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131990.0", + "mileage": "121.2", + "value": "89.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827738143", + "time": "2025-12-04 13:55:38.143", + "valueExplanation": "", + "pre_value": "90.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132020.0", + "mileage": "121.2", + "value": "88.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827738443", + "time": "2025-12-04 13:55:38.443", + "valueExplanation": "", + "pre_value": "89.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132050.0", + "mileage": "121.2", + "value": "87.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827738743", + "time": "2025-12-04 13:55:38.743", + "valueExplanation": "", + "pre_value": "88.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132075.0", + "mileage": "121.2", + "value": "86.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827738993", + "time": "2025-12-04 13:55:38.993", + "valueExplanation": "", + "pre_value": "87.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132105.0", + "mileage": "121.2", + "value": "85.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827739293", + "time": "2025-12-04 13:55:39.293", + "valueExplanation": "", + "pre_value": "86.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132135.0", + "mileage": "121.2", + "value": "84.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827739593", + "time": "2025-12-04 13:55:39.593", + "valueExplanation": "", + "pre_value": "85.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132165.0", + "mileage": "121.2", + "value": "83.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827739893", + "time": "2025-12-04 13:55:39.893", + "valueExplanation": "", + "pre_value": "84.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132195.0", + "mileage": "121.2", + "value": "82.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827740193", + "time": "2025-12-04 13:55:40.193", + "valueExplanation": "", + "pre_value": "83.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132230.0", + "mileage": "121.2", + "value": "81.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827740543", + "time": "2025-12-04 13:55:40.543", + "valueExplanation": "", + "pre_value": "82.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132265.0", + "mileage": "121.2", + "value": "80.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827740893", + "time": "2025-12-04 13:55:40.893", + "valueExplanation": "", + "pre_value": "81.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132305.0", + "mileage": "121.2", + "value": "79.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827741293", + "time": "2025-12-04 13:55:41.293", + "valueExplanation": "", + "pre_value": "80.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132350.0", + "mileage": "121.3", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827741743", + "time": "2025-12-04 13:55:41.743", + "valueExplanation": "", + "pre_value": "79.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132410.0", + "mileage": "121.3", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827742343", + "time": "2025-12-04 13:55:42.343", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132555.0", + "mileage": "121.3", + "value": "76.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827743793", + "time": "2025-12-04 13:55:43.793", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132655.0", + "mileage": "121.3", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827744793", + "time": "2025-12-04 13:55:44.793", + "valueExplanation": "", + "pre_value": "76.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132915.0", + "mileage": "121.4", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827747393", + "time": "2025-12-04 13:55:47.393", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133200.0", + "mileage": "121.4", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827750243", + "time": "2025-12-04 13:55:50.243", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133205.0", + "mileage": "121.4", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827750293", + "time": "2025-12-04 13:55:50.293", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133210.0", + "mileage": "121.4", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827750343", + "time": "2025-12-04 13:55:50.343", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135385.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772093", + "time": "2025-12-04 13:56:12.093", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135390.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772143", + "time": "2025-12-04 13:56:12.143", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135395.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772193", + "time": "2025-12-04 13:56:12.193", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135400.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772243", + "time": "2025-12-04 13:56:12.243", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135415.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772393", + "time": "2025-12-04 13:56:12.393", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135420.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772443", + "time": "2025-12-04 13:56:12.443", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135425.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772493", + "time": "2025-12-04 13:56:12.493", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135430.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772543", + "time": "2025-12-04 13:56:12.543", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135445.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772693", + "time": "2025-12-04 13:56:12.693", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135455.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772793", + "time": "2025-12-04 13:56:12.793", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135460.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772843", + "time": "2025-12-04 13:56:12.843", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135465.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772893", + "time": "2025-12-04 13:56:12.893", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135470.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772943", + "time": "2025-12-04 13:56:12.943", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135475.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772993", + "time": "2025-12-04 13:56:12.993", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135510.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773343", + "time": "2025-12-04 13:56:13.343", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135540.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773643", + "time": "2025-12-04 13:56:13.643", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135545.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773693", + "time": "2025-12-04 13:56:13.693", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135550.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773743", + "time": "2025-12-04 13:56:13.743", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135565.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773893", + "time": "2025-12-04 13:56:13.893", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135570.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773943", + "time": "2025-12-04 13:56:13.943", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135620.0", + "mileage": "122.0", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827774443", + "time": "2025-12-04 13:56:14.443", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135625.0", + "mileage": "122.0", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827774493", + "time": "2025-12-04 13:56:14.493", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135715.0", + "mileage": "122.0", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827775393", + "time": "2025-12-04 13:56:15.393", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135720.0", + "mileage": "122.0", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827775443", + "time": "2025-12-04 13:56:15.443", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136925.0", + "mileage": "122.2", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787493", + "time": "2025-12-04 13:56:27.493", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136930.0", + "mileage": "122.2", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787543", + "time": "2025-12-04 13:56:27.543", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136935.0", + "mileage": "122.2", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787593", + "time": "2025-12-04 13:56:27.593", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136955.0", + "mileage": "122.2", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787793", + "time": "2025-12-04 13:56:27.793", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136960.0", + "mileage": "122.2", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787843", + "time": "2025-12-04 13:56:27.843", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136965.0", + "mileage": "122.2", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787893", + "time": "2025-12-04 13:56:27.893", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136970.0", + "mileage": "122.2", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787943", + "time": "2025-12-04 13:56:27.943", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136975.0", + "mileage": "122.2", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787993", + "time": "2025-12-04 13:56:27.993", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136980.0", + "mileage": "122.3", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827788043", + "time": "2025-12-04 13:56:28.043", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136985.0", + "mileage": "122.3", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827788093", + "time": "2025-12-04 13:56:28.093", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136990.0", + "mileage": "122.3", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827788143", + "time": "2025-12-04 13:56:28.143", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137000.0", + "mileage": "122.3", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827788243", + "time": "2025-12-04 13:56:28.243", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137030.0", + "mileage": "122.3", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827788543", + "time": "2025-12-04 13:56:28.543", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137165.0", + "mileage": "122.3", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827789893", + "time": "2025-12-04 13:56:29.893", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141210.0", + "mileage": "123.2", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827830343", + "time": "2025-12-04 13:57:10.343", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141260.0", + "mileage": "123.2", + "value": "79.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827830843", + "time": "2025-12-04 13:57:10.843", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141290.0", + "mileage": "123.2", + "value": "80.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827831143", + "time": "2025-12-04 13:57:11.143", + "valueExplanation": "", + "pre_value": "79.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141320.0", + "mileage": "123.2", + "value": "81.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827831443", + "time": "2025-12-04 13:57:11.443", + "valueExplanation": "", + "pre_value": "80.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141350.0", + "mileage": "123.2", + "value": "82.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827831743", + "time": "2025-12-04 13:57:11.743", + "valueExplanation": "", + "pre_value": "81.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141375.0", + "mileage": "123.2", + "value": "83.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827831993", + "time": "2025-12-04 13:57:11.993", + "valueExplanation": "", + "pre_value": "82.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141400.0", + "mileage": "123.2", + "value": "84.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827832243", + "time": "2025-12-04 13:57:12.243", + "valueExplanation": "", + "pre_value": "83.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141425.0", + "mileage": "123.2", + "value": "85.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827832493", + "time": "2025-12-04 13:57:12.493", + "valueExplanation": "", + "pre_value": "84.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141450.0", + "mileage": "123.2", + "value": "86.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827832743", + "time": "2025-12-04 13:57:12.743", + "valueExplanation": "", + "pre_value": "85.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141470.0", + "mileage": "123.2", + "value": "87.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827832943", + "time": "2025-12-04 13:57:12.943", + "valueExplanation": "", + "pre_value": "86.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141490.0", + "mileage": "123.2", + "value": "88.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827833143", + "time": "2025-12-04 13:57:13.143", + "valueExplanation": "", + "pre_value": "87.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141515.0", + "mileage": "123.2", + "value": "89.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827833393", + "time": "2025-12-04 13:57:13.393", + "valueExplanation": "", + "pre_value": "88.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141540.0", + "mileage": "123.2", + "value": "90.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827833643", + "time": "2025-12-04 13:57:13.643", + "valueExplanation": "", + "pre_value": "89.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141560.0", + "mileage": "123.2", + "value": "91.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827833843", + "time": "2025-12-04 13:57:13.843", + "valueExplanation": "", + "pre_value": "90.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141590.0", + "mileage": "123.2", + "value": "92.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834143", + "time": "2025-12-04 13:57:14.143", + "valueExplanation": "", + "pre_value": "91.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141615.0", + "mileage": "123.2", + "value": "93.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834393", + "time": "2025-12-04 13:57:14.393", + "valueExplanation": "", + "pre_value": "92.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141645.0", + "mileage": "123.3", + "value": "94.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834693", + "time": "2025-12-04 13:57:14.693", + "valueExplanation": "", + "pre_value": "93.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141680.0", + "mileage": "123.3", + "value": "95.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827835043", + "time": "2025-12-04 13:57:15.043", + "valueExplanation": "", + "pre_value": "94.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141720.0", + "mileage": "123.3", + "value": "96.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827835443", + "time": "2025-12-04 13:57:15.443", + "valueExplanation": "", + "pre_value": "95.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141780.0", + "mileage": "123.3", + "value": "97.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827836043", + "time": "2025-12-04 13:57:16.043", + "valueExplanation": "", + "pre_value": "96.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146555.0", + "mileage": "124.6", + "value": "96.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883793", + "time": "2025-12-04 13:58:03.793", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146580.0", + "mileage": "124.6", + "value": "97.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827884043", + "time": "2025-12-04 13:58:04.043", + "valueExplanation": "", + "pre_value": "96.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146855.0", + "mileage": "124.7", + "value": "98.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827886793", + "time": "2025-12-04 13:58:06.793", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146915.0", + "mileage": "124.7", + "value": "97.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887393", + "time": "2025-12-04 13:58:07.393", + "valueExplanation": "", + "pre_value": "98.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146920.0", + "mileage": "124.7", + "value": "98.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887443", + "time": "2025-12-04 13:58:07.443", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146925.0", + "mileage": "124.7", + "value": "97.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887493", + "time": "2025-12-04 13:58:07.493", + "valueExplanation": "", + "pre_value": "98.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146995.0", + "mileage": "124.7", + "value": "96.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827888193", + "time": "2025-12-04 13:58:08.193", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147000.0", + "mileage": "124.7", + "value": "97.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827888243", + "time": "2025-12-04 13:58:08.243", + "valueExplanation": "", + "pre_value": "96.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147010.0", + "mileage": "124.7", + "value": "96.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827888343", + "time": "2025-12-04 13:58:08.343", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147055.0", + "mileage": "124.7", + "value": "95.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827888793", + "time": "2025-12-04 13:58:08.793", + "valueExplanation": "", + "pre_value": "96.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147120.0", + "mileage": "124.7", + "value": "94.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889443", + "time": "2025-12-04 13:58:09.443", + "valueExplanation": "", + "pre_value": "95.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147185.0", + "mileage": "124.7", + "value": "93.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827890093", + "time": "2025-12-04 13:58:10.093", + "valueExplanation": "", + "pre_value": "94.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147255.0", + "mileage": "124.8", + "value": "92.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827890793", + "time": "2025-12-04 13:58:10.793", + "valueExplanation": "", + "pre_value": "93.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147325.0", + "mileage": "124.8", + "value": "91.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827891493", + "time": "2025-12-04 13:58:11.493", + "valueExplanation": "", + "pre_value": "92.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147405.0", + "mileage": "124.8", + "value": "90.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827892293", + "time": "2025-12-04 13:58:12.293", + "valueExplanation": "", + "pre_value": "91.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147475.0", + "mileage": "124.8", + "value": "89.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827892993", + "time": "2025-12-04 13:58:12.993", + "valueExplanation": "", + "pre_value": "90.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147560.0", + "mileage": "124.8", + "value": "88.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827893843", + "time": "2025-12-04 13:58:13.843", + "valueExplanation": "", + "pre_value": "89.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147635.0", + "mileage": "124.9", + "value": "87.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827894593", + "time": "2025-12-04 13:58:14.593", + "valueExplanation": "", + "pre_value": "88.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147705.0", + "mileage": "124.9", + "value": "86.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827895293", + "time": "2025-12-04 13:58:15.293", + "valueExplanation": "", + "pre_value": "87.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147780.0", + "mileage": "124.9", + "value": "85.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827896043", + "time": "2025-12-04 13:58:16.043", + "valueExplanation": "", + "pre_value": "86.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147865.0", + "mileage": "124.9", + "value": "84.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827896893", + "time": "2025-12-04 13:58:16.893", + "valueExplanation": "", + "pre_value": "85.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147940.0", + "mileage": "124.9", + "value": "83.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827897643", + "time": "2025-12-04 13:58:17.643", + "valueExplanation": "", + "pre_value": "84.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148015.0", + "mileage": "124.9", + "value": "82.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827898393", + "time": "2025-12-04 13:58:18.393", + "valueExplanation": "", + "pre_value": "83.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148095.0", + "mileage": "125.0", + "value": "81.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827899193", + "time": "2025-12-04 13:58:19.193", + "valueExplanation": "", + "pre_value": "82.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148175.0", + "mileage": "125.0", + "value": "80.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827899993", + "time": "2025-12-04 13:58:19.993", + "valueExplanation": "", + "pre_value": "81.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148245.0", + "mileage": "125.0", + "value": "79.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827900693", + "time": "2025-12-04 13:58:20.693", + "valueExplanation": "", + "pre_value": "80.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148310.0", + "mileage": "125.0", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827901343", + "time": "2025-12-04 13:58:21.343", + "valueExplanation": "", + "pre_value": "79.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148345.0", + "mileage": "125.0", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827901693", + "time": "2025-12-04 13:58:21.693", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148375.0", + "mileage": "125.0", + "value": "76.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827901993", + "time": "2025-12-04 13:58:21.993", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148395.0", + "mileage": "125.0", + "value": "75.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902193", + "time": "2025-12-04 13:58:22.193", + "valueExplanation": "", + "pre_value": "76.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148410.0", + "mileage": "125.0", + "value": "74.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902343", + "time": "2025-12-04 13:58:22.343", + "valueExplanation": "", + "pre_value": "75.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148425.0", + "mileage": "125.0", + "value": "73.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902493", + "time": "2025-12-04 13:58:22.493", + "valueExplanation": "", + "pre_value": "74.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148435.0", + "mileage": "125.0", + "value": "72.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902593", + "time": "2025-12-04 13:58:22.593", + "valueExplanation": "", + "pre_value": "73.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148450.0", + "mileage": "125.0", + "value": "71.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902743", + "time": "2025-12-04 13:58:22.743", + "valueExplanation": "", + "pre_value": "72.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148465.0", + "mileage": "125.0", + "value": "70.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902893", + "time": "2025-12-04 13:58:22.893", + "valueExplanation": "", + "pre_value": "71.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148475.0", + "mileage": "125.0", + "value": "69.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827902993", + "time": "2025-12-04 13:58:22.993", + "valueExplanation": "", + "pre_value": "70.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148485.0", + "mileage": "125.0", + "value": "68.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903093", + "time": "2025-12-04 13:58:23.093", + "valueExplanation": "", + "pre_value": "69.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148495.0", + "mileage": "125.1", + "value": "67.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903193", + "time": "2025-12-04 13:58:23.193", + "valueExplanation": "", + "pre_value": "68.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148510.0", + "mileage": "125.1", + "value": "66.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903343", + "time": "2025-12-04 13:58:23.343", + "valueExplanation": "", + "pre_value": "67.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148520.0", + "mileage": "125.1", + "value": "65.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903443", + "time": "2025-12-04 13:58:23.443", + "valueExplanation": "", + "pre_value": "66.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148530.0", + "mileage": "125.1", + "value": "64.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903543", + "time": "2025-12-04 13:58:23.543", + "valueExplanation": "", + "pre_value": "65.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148540.0", + "mileage": "125.1", + "value": "63.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903643", + "time": "2025-12-04 13:58:23.643", + "valueExplanation": "", + "pre_value": "64.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148550.0", + "mileage": "125.1", + "value": "62.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903743", + "time": "2025-12-04 13:58:23.743", + "valueExplanation": "", + "pre_value": "63.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148555.0", + "mileage": "125.1", + "value": "61.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903793", + "time": "2025-12-04 13:58:23.793", + "valueExplanation": "", + "pre_value": "62.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148565.0", + "mileage": "125.1", + "value": "60.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903893", + "time": "2025-12-04 13:58:23.893", + "valueExplanation": "", + "pre_value": "61.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148575.0", + "mileage": "125.1", + "value": "59.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903993", + "time": "2025-12-04 13:58:23.993", + "valueExplanation": "", + "pre_value": "60.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148585.0", + "mileage": "125.1", + "value": "58.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904093", + "time": "2025-12-04 13:58:24.093", + "valueExplanation": "", + "pre_value": "59.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148595.0", + "mileage": "125.1", + "value": "57.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904193", + "time": "2025-12-04 13:58:24.193", + "valueExplanation": "", + "pre_value": "58.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148605.0", + "mileage": "125.1", + "value": "56.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904293", + "time": "2025-12-04 13:58:24.293", + "valueExplanation": "", + "pre_value": "57.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148615.0", + "mileage": "125.1", + "value": "55.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904393", + "time": "2025-12-04 13:58:24.393", + "valueExplanation": "", + "pre_value": "56.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148625.0", + "mileage": "125.1", + "value": "54.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904493", + "time": "2025-12-04 13:58:24.493", + "valueExplanation": "", + "pre_value": "55.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148635.0", + "mileage": "125.1", + "value": "53.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904593", + "time": "2025-12-04 13:58:24.593", + "valueExplanation": "", + "pre_value": "54.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148645.0", + "mileage": "125.1", + "value": "52.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904693", + "time": "2025-12-04 13:58:24.693", + "valueExplanation": "", + "pre_value": "53.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148660.0", + "mileage": "125.1", + "value": "51.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904843", + "time": "2025-12-04 13:58:24.843", + "valueExplanation": "", + "pre_value": "52.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148670.0", + "mileage": "125.1", + "value": "50.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904943", + "time": "2025-12-04 13:58:24.943", + "valueExplanation": "", + "pre_value": "51.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148685.0", + "mileage": "125.1", + "value": "49.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905093", + "time": "2025-12-04 13:58:25.093", + "valueExplanation": "", + "pre_value": "50.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148700.0", + "mileage": "125.1", + "value": "48.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905243", + "time": "2025-12-04 13:58:25.243", + "valueExplanation": "", + "pre_value": "49.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148715.0", + "mileage": "125.1", + "value": "47.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905393", + "time": "2025-12-04 13:58:25.393", + "valueExplanation": "", + "pre_value": "48.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148725.0", + "mileage": "125.1", + "value": "46.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905493", + "time": "2025-12-04 13:58:25.493", + "valueExplanation": "", + "pre_value": "47.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148740.0", + "mileage": "125.1", + "value": "45.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905643", + "time": "2025-12-04 13:58:25.643", + "valueExplanation": "", + "pre_value": "46.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148755.0", + "mileage": "125.1", + "value": "44.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905793", + "time": "2025-12-04 13:58:25.793", + "valueExplanation": "", + "pre_value": "45.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148765.0", + "mileage": "125.1", + "value": "43.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905893", + "time": "2025-12-04 13:58:25.893", + "valueExplanation": "", + "pre_value": "44.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148780.0", + "mileage": "125.1", + "value": "42.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906043", + "time": "2025-12-04 13:58:26.043", + "valueExplanation": "", + "pre_value": "43.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148790.0", + "mileage": "125.1", + "value": "41.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906143", + "time": "2025-12-04 13:58:26.143", + "valueExplanation": "", + "pre_value": "42.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148805.0", + "mileage": "125.1", + "value": "40.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906293", + "time": "2025-12-04 13:58:26.293", + "valueExplanation": "", + "pre_value": "41.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148815.0", + "mileage": "125.1", + "value": "39.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906393", + "time": "2025-12-04 13:58:26.393", + "valueExplanation": "", + "pre_value": "40.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148830.0", + "mileage": "125.1", + "value": "38.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906543", + "time": "2025-12-04 13:58:26.543", + "valueExplanation": "", + "pre_value": "39.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148840.0", + "mileage": "125.1", + "value": "37.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906643", + "time": "2025-12-04 13:58:26.643", + "valueExplanation": "", + "pre_value": "38.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148855.0", + "mileage": "125.1", + "value": "36.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827906793", + "time": "2025-12-04 13:58:26.793", + "valueExplanation": "", + "pre_value": "37.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148865.0", + "mileage": "125.1", + "value": "35.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827906893", + "time": "2025-12-04 13:58:26.893", + "valueExplanation": "", + "pre_value": "36.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148875.0", + "mileage": "125.1", + "value": "34.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827906993", + "time": "2025-12-04 13:58:26.993", + "valueExplanation": "", + "pre_value": "35.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148885.0", + "mileage": "125.1", + "value": "33.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907093", + "time": "2025-12-04 13:58:27.093", + "valueExplanation": "", + "pre_value": "34.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148895.0", + "mileage": "125.1", + "value": "32.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907193", + "time": "2025-12-04 13:58:27.193", + "valueExplanation": "", + "pre_value": "33.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148905.0", + "mileage": "125.1", + "value": "31.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907293", + "time": "2025-12-04 13:58:27.293", + "valueExplanation": "", + "pre_value": "32.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148915.0", + "mileage": "125.1", + "value": "30.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907393", + "time": "2025-12-04 13:58:27.393", + "valueExplanation": "", + "pre_value": "31.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148925.0", + "mileage": "125.1", + "value": "29.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907493", + "time": "2025-12-04 13:58:27.493", + "valueExplanation": "", + "pre_value": "30.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148935.0", + "mileage": "125.1", + "value": "28.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907593", + "time": "2025-12-04 13:58:27.593", + "valueExplanation": "", + "pre_value": "29.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148945.0", + "mileage": "125.1", + "value": "27.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907693", + "time": "2025-12-04 13:58:27.693", + "valueExplanation": "", + "pre_value": "28.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148955.0", + "mileage": "125.1", + "value": "26.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907793", + "time": "2025-12-04 13:58:27.793", + "valueExplanation": "", + "pre_value": "27.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148965.0", + "mileage": "125.1", + "value": "25.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907893", + "time": "2025-12-04 13:58:27.893", + "valueExplanation": "", + "pre_value": "26.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148975.0", + "mileage": "125.1", + "value": "24.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907993", + "time": "2025-12-04 13:58:27.993", + "valueExplanation": "", + "pre_value": "25.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148985.0", + "mileage": "125.1", + "value": "23.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908093", + "time": "2025-12-04 13:58:28.093", + "valueExplanation": "", + "pre_value": "24.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148995.0", + "mileage": "125.1", + "value": "22.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908193", + "time": "2025-12-04 13:58:28.193", + "valueExplanation": "", + "pre_value": "23.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149005.0", + "mileage": "125.1", + "value": "21.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908293", + "time": "2025-12-04 13:58:28.293", + "valueExplanation": "", + "pre_value": "22.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149010.0", + "mileage": "125.1", + "value": "20.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908343", + "time": "2025-12-04 13:58:28.343", + "valueExplanation": "", + "pre_value": "21.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149020.0", + "mileage": "125.1", + "value": "19.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908443", + "time": "2025-12-04 13:58:28.443", + "valueExplanation": "", + "pre_value": "20.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149030.0", + "mileage": "125.1", + "value": "18.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908543", + "time": "2025-12-04 13:58:28.543", + "valueExplanation": "", + "pre_value": "19.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149040.0", + "mileage": "125.1", + "value": "17.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908643", + "time": "2025-12-04 13:58:28.643", + "valueExplanation": "", + "pre_value": "18.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149050.0", + "mileage": "125.1", + "value": "16.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908743", + "time": "2025-12-04 13:58:28.743", + "valueExplanation": "", + "pre_value": "17.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149060.0", + "mileage": "125.1", + "value": "15.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908843", + "time": "2025-12-04 13:58:28.843", + "valueExplanation": "", + "pre_value": "16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149070.0", + "mileage": "125.1", + "value": "14.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908943", + "time": "2025-12-04 13:58:28.943", + "valueExplanation": "", + "pre_value": "15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149080.0", + "mileage": "125.1", + "value": "13.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909043", + "time": "2025-12-04 13:58:29.043", + "valueExplanation": "", + "pre_value": "14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149090.0", + "mileage": "125.1", + "value": "12.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909143", + "time": "2025-12-04 13:58:29.143", + "valueExplanation": "", + "pre_value": "13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149100.0", + "mileage": "125.1", + "value": "11.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909243", + "time": "2025-12-04 13:58:29.243", + "valueExplanation": "", + "pre_value": "12.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149110.0", + "mileage": "125.1", + "value": "10.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909343", + "time": "2025-12-04 13:58:29.343", + "valueExplanation": "", + "pre_value": "11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149120.0", + "mileage": "125.1", + "value": "9.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909443", + "time": "2025-12-04 13:58:29.443", + "valueExplanation": "", + "pre_value": "10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149130.0", + "mileage": "125.1", + "value": "8.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909543", + "time": "2025-12-04 13:58:29.543", + "valueExplanation": "", + "pre_value": "9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149140.0", + "mileage": "125.1", + "value": "7.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909643", + "time": "2025-12-04 13:58:29.643", + "valueExplanation": "", + "pre_value": "8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149150.0", + "mileage": "125.1", + "value": "6.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909743", + "time": "2025-12-04 13:58:29.743", + "valueExplanation": "", + "pre_value": "7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149165.0", + "mileage": "125.1", + "value": "5.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909893", + "time": "2025-12-04 13:58:29.893", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149175.0", + "mileage": "125.1", + "value": "4.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909993", + "time": "2025-12-04 13:58:29.993", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149185.0", + "mileage": "125.1", + "value": "3.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827910093", + "time": "2025-12-04 13:58:30.093", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149200.0", + "mileage": "125.1", + "value": "2.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827910243", + "time": "2025-12-04 13:58:30.243", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149215.0", + "mileage": "125.1", + "value": "1.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827910393", + "time": "2025-12-04 13:58:30.393", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149255.0", + "mileage": "125.1", + "value": "0.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827910793", + "time": "2025-12-04 13:58:30.793", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157355.0", + "mileage": "125.1", + "value": "1.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991793", + "time": "2025-12-04 13:59:51.793", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157375.0", + "mileage": "125.1", + "value": "2.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991993", + "time": "2025-12-04 13:59:51.993", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157435.0", + "mileage": "125.1", + "value": "3.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992593", + "time": "2025-12-04 13:59:52.593", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157580.0", + "mileage": "125.1", + "value": "4.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994043", + "time": "2025-12-04 13:59:54.043", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157630.0", + "mileage": "125.1", + "value": "5.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994543", + "time": "2025-12-04 13:59:54.543", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157685.0", + "mileage": "125.1", + "value": "6.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995093", + "time": "2025-12-04 13:59:55.093", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157775.0", + "mileage": "125.1", + "value": "5.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995993", + "time": "2025-12-04 13:59:55.993", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157880.0", + "mileage": "125.1", + "value": "4.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997043", + "time": "2025-12-04 13:59:57.043", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157920.0", + "mileage": "125.1", + "value": "3.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997443", + "time": "2025-12-04 13:59:57.443", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158000.0", + "mileage": "125.1", + "value": "2.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998243", + "time": "2025-12-04 13:59:58.243", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158035.0", + "mileage": "125.1", + "value": "1.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998593", + "time": "2025-12-04 13:59:58.593", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158080.0", + "mileage": "125.1", + "value": "0.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827999043", + "time": "2025-12-04 13:59:59.043", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + } +] \ No newline at end of file diff --git a/backend/app/blueprints/incident_gen6/incident_sample.json b/backend/app/blueprints/incident_gen6/incident_sample.json new file mode 100644 index 0000000..64698ff --- /dev/null +++ b/backend/app/blueprints/incident_gen6/incident_sample.json @@ -0,0 +1,48726 @@ +[ + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.597272", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "228.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1920.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1320.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7010226", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1668.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.3772705", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9035177", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.12", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.4", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1791.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4022708", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_lca_md_drvcfg_stat_st35", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1833.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1815.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0022683", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7360227", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-850.10834", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2286.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.478521", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.26477", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_aborted_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "939.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1449.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2016.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "360.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2355.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.19", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.elc_turnindlvr_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1659.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_md_drvcfg_stat_st35", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1968.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.11", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.33", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.685", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "228.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2385.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6322722", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.03", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.125", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.3235204", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.598522", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.vehspd_x_disp_offset.lineardata", + "signal_value": "3.1", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7297728", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2484.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "585.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "732.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1848.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.355", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2418.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1941.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "705.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1680.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8947675", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.59", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1656.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1926.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7122726", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-851.26807", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.das_turnind_rq", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1659.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7022727", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_urban_drvcfg_req", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.36", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1788.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1812.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1668.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1266.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "345.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1488.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2115.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7522728", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_lca_md_drvcfg_stat_st35", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0647688", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.595", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.15", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1773.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.355", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.01", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1974.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1944.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "4.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6910226", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.36", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1728.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6772723", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.36", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.46", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.2", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_abort_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.das_turnind_rq", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1746.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.07", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "432.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_md_drvcfg_stat_st35", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "672.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2247.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.4867", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.915", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.115", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_lca_md_drvcfg_stat_st35", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1743.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1968.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.315", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1770.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_ui_stat_st35", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.eps_stwhl_trq.lineardata", + "signal_value": "-1.05", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.eps_stwhl_trq.lineardata", + "signal_value": "-0.02", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.5060213", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1122.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7522728", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.443521", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.045", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.isw_stat", + "signal_value": "4.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "606.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.1910195", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.6510162", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.34", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "255.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1812.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0685186", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.095", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "792.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1731.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1950.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1731.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.305", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.19", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.49499997", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6147718", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1131.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "390.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1875.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1821.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "840.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1977.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "432.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.255", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.das_turnind_rq", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2100.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.7510169", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.4", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6947725", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.185", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2340.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.405", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2355.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.419771", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.29", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2322.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-850.10834", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1719.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "792.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1665.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4472709", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_urban_drvcfg_req", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1533.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9197679", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6810224", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9847684", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.105", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "255.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1773.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-851.26807", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_aborted_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7322729", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1791.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1803.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.415", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.4867", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_urban_drvcfg_req", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.5760157", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0197685", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_md_drvcfg_stat_st35", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1893.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "792.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_abort_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.705", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_aborted_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8497674", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.395", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0060182", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6597724", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1812.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9085176", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.14", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.eps_stwhl_trq.lineardata", + "signal_value": "-0.45", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.327", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1464.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "546.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.5060213", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_hmo_early_cancel_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1656.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1923.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.799767", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_l2p_cn_npa_md_drvcfg_stat_st35", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1656.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.26", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "807.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2382.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1650.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2361.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "807.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.43", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "285.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1782.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8710175", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2361.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1914.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.972268", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "96.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1785.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.64", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2184.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.45499998", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.327", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1767.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.467271", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1224.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.724773", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-851.26807", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8272672", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.elc_turnindlvr_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "255.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "900.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4960213", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.6", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "210.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8222673", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6810224", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_ui_stat_st35", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.vehspd_x_max.lineardata", + "signal_value": "99.7", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1332.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "354.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7185225", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_l2p_cn_npa_md_drvcfg_stat_st35", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.0371", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8610175", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.385", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_ui_stat_st35", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1413.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.68", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "450.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.335", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.isw_stat", + "signal_value": "4.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1788.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.48", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1578.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7972732", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1152.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.405", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1761.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "480.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1794.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6572723", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1743.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.3", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.592272", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1659.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.315", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.14", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1896.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "100.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "768.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1848.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.08", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1563.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "654.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1557.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.604772", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_ui_stat_st35", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "204.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9410179", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "717.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1962.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.52", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_dilc_operation_mode", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.05", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.14", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9847684", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6597724", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.41", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_take_over_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.327", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "801.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.155", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.21", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_abort_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.125", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1887.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.26", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.28", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-851.26807", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1944.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.49499997", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.345", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.34", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "345.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_dilc_operation_mode", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "432.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7460227", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.025", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2385.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.02", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6385221", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1932.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.3747704", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8960176", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.33", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.elc_turnindlvr_stat", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1938.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4635212", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.5185215", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.14", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.609766", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.626016", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.22", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1716.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.365", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.445", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.isw_stat", + "signal_value": "4.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1902.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1140.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_aborted", + "signal_value": "", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.28", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.4867", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1554.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1656.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1722.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1803.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.5185215", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.515", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1464.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_l2p_cn_npa_md_drvcfg_stat_st35", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1785.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1782.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1974.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.725", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.12", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-1.3534051", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.3235204", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0572686", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.1497693", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.52", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.327", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.28228745", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1743.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1662.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4160209", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.14", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.155", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.52", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.23499998", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.21", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.vehspd_x_disp_rq.lineardata", + "signal_value": "99.9", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "630.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.43", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1755.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9885182", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7522728", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.3160203", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.5510218", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.923518", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.825", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1794.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4060206", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0022683", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "432.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1902.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "786.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "978.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "504.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.2097695", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1662.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.21", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1188.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_dilc_operation_mode", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1815.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.165", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911687E12" + } +] \ No newline at end of file diff --git a/backend/app/blueprints/incident_gen6/routes.py b/backend/app/blueprints/incident_gen6/routes.py new file mode 100644 index 0000000..c9fdf21 --- /dev/null +++ b/backend/app/blueprints/incident_gen6/routes.py @@ -0,0 +1,333 @@ +from datetime import datetime, timedelta, timezone +from queue import Queue +import threading +from flask import Blueprint, json, jsonify, current_app, request +from app.blueprints.incident_gen6.service import aggregate_and_sort_incidents_gen6, aggregate_line_list_gen6, convert_to_histro_data_v2, get_logging_list_gen6, process_incident_data_gen6 +from app.link_wedata_utils import sync_query_tencent_cloud_data +from app.utils import decrypt_code + +incident_gen6_bp = Blueprint("incident_gen6_bp", __name__) + + +@incident_gen6_bp.route("/list1", methods=["POST"]) +def acc_list1(): + encrypted = request.headers.get('X-Encrypted-Timestamp') + if not encrypted: + return jsonify({"msg": "Parameters are Incorrect"}), 400 + + encrypt_str=decrypt_code(encrypted) + if not encrypt_str: + return jsonify({"msg": "Invalid request"}), 400 + + data = request.get_json() + incident_type = data.get("incident_type", "").strip() or None + singal_name = data.get("singal_name", []) or None + + # print("singal_name",singal_name) + + import os + current_dir = os.path.dirname(os.path.abspath(__file__)) + json_path = os.path.join(current_dir, "incident_sample.json") + with open(json_path, "r", encoding="utf-8") as f: + events_data = json.load(f) + + histo_path = os.path.join(current_dir, "histro.json") + with open(histo_path, "r", encoding="utf-8") as f_histro: + histo_data = json.load(f_histro) + + histo_data_new = [] + for item in histo_data: + new_item = { + 'signal': item['signal'], + 'time': item['time'], + 'value': item['value'], + 'valueExplanation': item['valueExplanation'], + 'pre_value':item['pre_value'], + 'pre_valueExplanation':item['pre_valueExplanation'], + 'is_pre_value_needed':item['is_pre_value_needed'] + } + histo_data_new.append(new_item) + + histo_list=convert_to_histro_data_v2(histo_data_new) + events_data_new=[] + for item in events_data: + new_item = { + 'oneid': item['oneid'], + 'incident_name': item['incident_name'], + 'incident_time': item['incident_time'], + 'key': item['key'], + 'signal_value': item['signal_value'], + 'latitude': item['latitude'], + 'longitude': item['longitude'], + 'odometer': item['odometer'], + 'speed': item['speed'] + } + events_data_new.append(new_item) + + if incident_type == "Parking": + # 过滤出 incident_name 等于 Test_I_Park_Trip 的数据 + events_data_new = [ + item for item in events_data_new + if item.get("incident_name") in ["Test_I_Park_Trip", "Test_I_RMA"] + ] + elif incident_type == "Driving": + # 过滤出 incident_name 不等于 Test_I_Park_Trip 的数据 + events_data_new = [ + item for item in events_data_new + if item.get("incident_name") not in ["Test_I_Park_Trip", "Test_I_RMA"] + ] + + # event数据 + events_list=process_incident_data_gen6(events_data_new) # 初始的event list数据,但是没有15分钟处理 + map_list = aggregate_and_sort_incidents_gen6(events_data_new) + # print(f"共 {len(map_list)} 条:") + line_list = aggregate_line_list_gen6(map_list) + logging_list=get_logging_list_gen6(map_list) + response = { + "code": 200, + "data": { + # "events_data":events_data, + "events_list": events_list, + "map_list": map_list, + "line_list": line_list, + "logging_list": logging_list, + "histo_list":histo_list + }, + "msg": "success", + } + return jsonify(response) + + + +@incident_gen6_bp.route("/list", methods=["POST"]) +def acc_list(): + # 验证请求头的信息,通过才继续 + encrypted = request.headers.get('X-Encrypted-Timestamp') + if not encrypted: + return jsonify({"msg": "Parameters are Incorrect"}), 400 + + encrypt_str=decrypt_code(encrypted) + if not encrypt_str: + return jsonify({"msg": "Invalid request"}), 400 + + data = request.get_json() + incident_type = data.get("incident_type", "").strip() or None + signal_name = data.get("signal_name", []) + + if not data: + return jsonify({"code": 400, "data": None, "msg": "请填写有效参数"}), 400 + + + required_fields = ["incident_time", "oneid"] + for field in required_fields: + if field not in data: + return ( + jsonify({"code": 400, "data": None, "msg": f"缺少必需字段: {field}"}), + 400, + ) + + incident_time = data["incident_time"] + # 检查是否为非空列表 + if not isinstance(incident_time, list) or len(incident_time) != 2: + return ( + jsonify( + { + "code": 400, + "data": [], + "msg": "incident_time必须是包含两个时间的数组", + } + ), + 400, + ) + + + oneid = data["oneid"] + if not isinstance(oneid, str) or not oneid.strip(): + return jsonify({"code": 400, "data": None, "msg": "oneid必须是非空字符串"}), 400 + + + config = { + 'region': 'ap-shanghai', # 引擎所在地域 + 'secret_id': current_app.config['WEDATA_SECRET_ID'], + 'secret_key': current_app.config['WEDATA_SECRET_KEY'], + 'engine': current_app.config['WEDATA_ENGINE'], # 引擎名称 + "database":current_app.config['WEDATA_DATABASE'] + } + + # 生成sql + try: + incid_sql, incid_params = generate_incidents_sql(incident_time, oneid, signal_name, table_name='gen6_incidents') + histo_sql, histo_params = generate_incidents_sql(incident_time, oneid, signal_name, table_name='gen6_histograms') + except ValueError as e: + return jsonify({"code": 400, "data": None, "msg": f"参数错误:{str(e)}"}), 400 + + print("incid_sql", incid_sql) + print("histo_sql", histo_sql) + + result_queue = Queue(maxsize=2) # 最多存放2个结果 + + # ========== 仅修改这里:给原函数加极简异常防护(不新增任何函数) ========== + def safe_query(*args): + """极简包装:仅捕获异常,保证队列必有结果""" + try: + # 直接调用原函数,参数完全传透(args就是config, sql, params, queue, task_id) + sync_query_tencent_cloud_data(*args) + except Exception as e: # except Exception as e: + # 异常时手动向队列写错误结果(args[3]是queue,args[4]是task_id) + args[3].put({"task_id": args[4], "success": False, "data": None, "error": str(e)}) + + # try: + # error_msg=( + # f'数据库连接失败:{str(e)}' + # if str(e) + # else f'底层系统错误:{type(e).__name__}' + # ) + # args[3].put({"task_id": args[4], "success": False, "data": None, "error":error_msg}) + # except Exception as query_err: + # print(f'任务失败,无法写入队列:{query_err},原始错误是:{e}') + + + # 5. 创建并启动两个查询线程 + thread1 = threading.Thread( + target=safe_query, + args=(config, incid_sql, incid_params, result_queue, "incidents") # task_id 标记为 incidents + ) + thread2 = threading.Thread( + target=safe_query, + args=(config, histo_sql, histo_params, result_queue, "histo") # task_id 标记为 signals + ) + + # 启动线程 + thread1.start() + thread2.start() + thread1.join() + thread2.join() + + # 从队列中提取结果 + results_dict = {} + for _ in range(2): + task_result = result_queue.get() + results_dict[task_result["task_id"]] = task_result + + # 8. 检查是否有查询失败 + has_error = False + error_msg = "" + for task_id, res in results_dict.items(): + if not res["success"]: + has_error = True + error_msg = f"查询异常:{res['error'][:80]}" # 错误信息保留前80 + + if has_error: + return jsonify({ + "code": 500, + "msg": f"查询失败:{error_msg}", + "data": None + }), 500 + + + # 9. 获取两个表的查询结果(业务处理核心) + events_data = results_dict["incidents"]["data"] + histo_data = results_dict["histo"]["data"] + + histo_list=convert_to_histro_data_v2(histo_data) + + if incident_type == "Parking": + # 过滤出 incident_name 等于 Test_I_Park_Trip 的数据 + events_data = [ + item for item in events_data + if item.get("incident_name") in ["Test_I_Park_Trip", "Test_I_RMA"] + ] + elif incident_type == "Driving": + # 过滤出 incident_name 不等于 Test_I_Park_Trip 的数据 + events_data = [ + item for item in events_data + if item.get("incident_name") not in ["Test_I_Park_Trip", "Test_I_RMA"] + ] + + # event数据 + events_list=process_incident_data_gen6(events_data) # 初始的event list数据,但是没有15分钟处理 + map_list = aggregate_and_sort_incidents_gen6(events_data) + line_list = aggregate_line_list_gen6(map_list) + logging_list=get_logging_list_gen6(map_list) + response = { + "code": 200, + "data": { + # "events_data":events_data, + "events_list": events_list, + "map_list": [], + "line_list": line_list, + "logging_list": logging_list, + "histo_list":histo_list + }, + "msg": "success", + } + return jsonify(response) + + +def generate_incidents_sql(incident_time: list, oneid: str, signal_list: list, table_name: str) -> tuple: + """ + 简化版:仅处理用到的两个表,字段名映射极简,去掉冗余扩展 + - gen6_incidents:时间=incident_time,ID字段=oneid + - gen6_histograms:时间=time,ID字段=vin + """ + # 处理UTC时间(带T/Z)转本地时间(东八区) + def convert_utc_to_cst(utc_time_str): + try: + # 解析UTC时间(支持带T/Z的格式) + utc_dt = datetime.fromisoformat(utc_time_str.replace('Z', '+00:00')) + # 转东八区(UTC+8) + cst_tz = timezone(timedelta(hours=8)) + cst_dt = utc_dt.astimezone(cst_tz) + # 转为数据库兼容的格式(YYYY-MM-DD HH:mm:ss.fff) + return cst_dt.strftime("%Y-%m-%d %H:%M:%S.%f")[:-3] # 保留3位毫秒 + except Exception as e: + # 解析失败则返回原时间(兼容测试参数) + return utc_time_str + + # 转换时间范围 + incident_time = [convert_utc_to_cst(t) for t in incident_time] + + # 1. 极简字段映射(只保留用到的表,避免KeyError) + FIELD_MAP = { + "gen6_incidents": {"time": "incident_time", + "id": "oneid", + # "select_fields": "oneid, incident_name,incident_time,`key`,signal_value,latitude,longitude,odometer,speed" }, + "select_fields": "*" }, + "gen6_histograms": {"time": "time", + "id": "vin", + "select_fields": "signal, time, value, valueExplanation"}, + } + + # 2. 基础校验(只校验用到的表,去掉冗余) + if table_name not in FIELD_MAP: + raise ValueError(f"仅支持查询表:{list(FIELD_MAP.keys())}") + if len(incident_time) != 2 or not all(incident_time): + raise ValueError("incident_time必须是包含两个非空时间的列表") + if not isinstance(oneid, str) or not oneid.strip(): + raise ValueError("oneid必须是非空字符串") + + # 3. 提取当前表的字段名(核心:只用两行完成字段替换) + time_field = FIELD_MAP[table_name]["time"] + id_field = FIELD_MAP[table_name]["id"] + select_fields = FIELD_MAP[table_name]["select_fields"] + + # 4. 拼接SQL条件(极简逻辑,去掉冗余注释) + conditions = [ + f"{time_field} BETWEEN %s AND %s", + f"{id_field} = %s" + ] + params = [incident_time[0], incident_time[1], oneid] + + # 仅gen6_histograms处理signal条件 + if table_name == "gen6_histograms": + if signal_list: + signal_placeholders = ",".join(["%s"] * len(signal_list)) + conditions.append(f"signal IN ({signal_placeholders})") + params += signal_list + else: + conditions.append("signal = %s") + params.append("DAS_DTR_UI_Stat_ST3") + + # 5. 生成最终SQL(简化格式化) + sql = f"SELECT {select_fields} FROM {table_name} WHERE {' AND '.join(conditions)}" + return sql, params \ No newline at end of file diff --git a/backend/app/blueprints/incident_gen6/service.py b/backend/app/blueprints/incident_gen6/service.py new file mode 100644 index 0000000..7cfe8b2 --- /dev/null +++ b/backend/app/blueprints/incident_gen6/service.py @@ -0,0 +1,427 @@ +from collections import defaultdict +from datetime import datetime, timedelta +import json + + +def process_incident_data_gen6(test_val): + """ + 处理事故数据,按照incident_name去重(移除原incident_time组合去重),移除idc_tickcount_ms排序,其他逻辑不变。 + + Args: + test_val (list): 原始数据列表 + + Returns: + dict: 格式化后的数据 + """ + + # 1. 仅按照 incident_name 去重(核心修改点1:移除incident_time组合) + unique_data_dict = {} + for item in test_val: + name = item.get("incident_name") + # 仅判断incident_name是否存在,不再依赖incident_time + if name: + # 仅用incident_name作为去重键 + key = name + if key not in unique_data_dict: + unique_data_dict[key] = item + + # 获取去重后的数据列表(核心修改点2:移除排序步骤) + unique_data_list = list(unique_data_dict.values()) + + # 3. 提取指定字段(原逻辑完全保留,仅将遍历对象从sorted_data改为unique_data_list) + processed_events_data = [] + for index, item in enumerate(unique_data_list, 1): + incident_time_str = item.get("incident_time") + + if not incident_time_str: + continue + + try: + # 解析新的时间格式 "2025-11-30 20:51:35.684000" + # 先尝试直接解析完整格式 + try: + # 移除毫秒部分,只保留到秒 + base_time_str = incident_time_str.split('.')[0] + incident_datetime = datetime.strptime(base_time_str, "%Y-%m-%d %H:%M:%S") + except ValueError: + # 如果失败,尝试其他可能的格式 + try: + incident_datetime = datetime.fromisoformat(incident_time_str.replace('Z', '+00:00')) + except: + # 再次失败,使用当前时间 + incident_datetime = datetime.now() + + # 格式化日期和时间 + date_str_result = incident_datetime.strftime("%Y-%m-%d") + time_str_result = incident_datetime.strftime("%H:%M:%S") + + except (ValueError, TypeError) as e: + print(f"Warning: Failed to parse incident_time '{incident_time_str}': {e}") + # 使用默认值 + date_str_result = item.get("dt", "").split(' ')[0] if item.get("dt") else datetime.now().strftime("%Y-%m-%d") + time_str_result = "00:00:00" + + # 创建新的字典 + processed_item = { + "id": index, + "oneid": item.get("oneid", ""), + "date": date_str_result, + "time": time_str_result, + "incident_name": item.get("incident_name", ""), + "incident_description": "", + } + processed_events_data.append(processed_item) + + # 4. 构建最终返回的字典 + total_count = len(processed_events_data) + result = {"data": processed_events_data, "total": total_count} + + return result + + +def aggregate_and_sort_incidents_gen6(raw_data): + """ + 简化版本:按(incident_time + incident_name)精确聚合 + 适用于同一事件的incident_time完全一致的情况 + """ + aggregate_dict = {} + + for item in raw_data: + incident_time = item.get("incident_time", "1970-01-01 00:00:00.000") + incident_name = item.get("incident_name", "unknown_incident") + aggregate_key = (incident_time, incident_name) + + if aggregate_key not in aggregate_dict: + aggregate_dict[aggregate_key] = { + "base_info": { + "oneid": item.get("oneid"), + "incident_time": incident_time, + "speed": item.get("speed"), + "gps_heading": item.get("gps_heading"), + "incident_name": incident_name, + "latitude": item.get("latitude"), + "longitude": item.get("longitude"), + "odometer": item.get("odometer"), + "sw_version": item.get("sw_version"), + "carmodel": item.get("carmodel"), + "session_id": item.get("session_id"), + "dt": item.get("dt") + }, + "signal_data": {} + } + + signal_key = item.get("key", "unknown_key") + aggregate_dict[aggregate_key]["signal_data"][signal_key] = { + 'signal_value': item.get('signal_value', '0.0'), + "odometer": item.get('odometer', '0.0') + } + + # 按incident_time排序 + sorted_result = sorted( + aggregate_dict.values(), + key=lambda x: x["base_info"]["incident_time"] + ) + + return sorted_result + + +def aggregate_line_list_gen6(map_list): + """ + 按incident_time聚合事件数据,生成时间线列表 + 改进点: + 1. 使用正确的时间字段名 + 2. 支持精确的时间排序 + 3. 处理同一时间点的多条记录 + 4. 添加健壮的错误处理 + """ + aggregated_data = {} + + # 遍历所有事件 + for item in map_list: + try: + base_info = item['base_info'] + + # 提取需要的字段 + incident_time_str = base_info.get('incident_time', '1970-01-01 00:00:00.000') + speed = base_info.get('speed', '0') + oneid = base_info.get('oneid', '') + latitude = base_info.get('latitude', '0') + longitude = base_info.get('longitude', '0') + incident_name = base_info.get('incident_name', 'Unknown Incident') + + # 创建聚合键(使用完整时间字符串) + aggregate_key = incident_time_str + + # 聚合处理 + if aggregate_key not in aggregated_data: + # 新的时间点,初始化记录 + aggregated_data[aggregate_key] = { + 'incident_time': incident_time_str, # 使用正确的字段名 + 'speed': speed, + 'oneid': oneid, + 'latitude': latitude, + 'longitude': longitude, + 'incident_names': [incident_name], # 使用复数形式,表示可能有多个 + 'record_count': 1 # 记录该时间点的记录数 + } + else: + # 已存在的时间点 + existing = aggregated_data[aggregate_key] + + # 可选:处理同一时间点不同记录的字段冲突 + # 这里选择保留第一条的速度,但如果需要可以取平均值或最新值 + # existing['speed'] = str((float(existing['speed']) + float(speed)) / 2) + + # 添加事件名称(去重) + if incident_name not in existing['incident_names']: + existing['incident_names'].append(incident_name) + + existing['record_count'] += 1 + + except (KeyError, TypeError) as e: + print(f"Warning: Skipping item due to missing field: {e}") + continue + + # 转换为列表形式,并按时间正序排序 + def get_sort_time(record): + try: + time_str = record['incident_time'] + if '.' in time_str: + # 处理带毫秒的时间 + return datetime.strptime(time_str, "%Y-%m-%d %H:%M:%S.%f") + else: + # 处理不带毫秒的时间 + return datetime.strptime(time_str, "%Y-%m-%d %H:%M:%S") + except (ValueError, TypeError) as e: + print(f"Warning: Failed to parse time '{record['incident_time']}' for sorting: {e}") + return datetime(1970, 1, 1) # 返回默认时间 + + # 按incident_time正序排序(从小到大) + result = sorted(aggregated_data.values(), key=get_sort_time) + + return result + + +def get_logging_list_gen6(map_list): + """ + 处理map_list数据,生成logging列表,并按incident_time正序排序 + 同时对每个记录的signals按name字段进行字符顺序排序 + """ + # 1. 首先对map_list按incident_time进行排序 + def get_sort_key(item): + try: + incident_time_str = item['base_info']['incident_time'] + # 处理时间字符串,统一格式 + if '.' in incident_time_str: + # 保留到毫秒级别进行排序 + base_time_str = incident_time_str.split('.')[0] + milliseconds = incident_time_str.split('.')[1][:6] # 取最多6位毫秒 + full_time_str = f"{base_time_str}.{milliseconds}" + return datetime.strptime(full_time_str, "%Y-%m-%d %H:%M:%S.%f") + else: + return datetime.strptime(incident_time_str, "%Y-%m-%d %H:%M:%S") + except (ValueError, TypeError, KeyError) as e: + print(f"Warning: Failed to parse incident_time for sorting: {e}") + # 解析失败时返回一个很早的时间,确保这些记录排在最后 + return datetime(1970, 1, 1) + + # 按incident_time正序排序(从小到大) + sorted_map_list = sorted(map_list, key=get_sort_key) + + # 2. 处理排序后的数据 + result = [] + id = 0 + for item in sorted_map_list: + id += 1 + row_data = {} + row_data['id'] = id + base_info = item['base_info'] + + # 处理时间格式 - 新格式为 "2025-11-30 20:23:05.394000" + incident_time_str = base_info['incident_time'] + try: + # 尝试解析新格式的时间 + if '.' in incident_time_str: + # 移除毫秒部分,只保留到秒 + base_time_str = incident_time_str.split('.')[0] + dt = datetime.strptime(base_time_str, "%Y-%m-%d %H:%M:%S") + else: + dt = datetime.strptime(incident_time_str, "%Y-%m-%d %H:%M:%S") + row_data['time'] = dt.strftime("%H:%M:%S") + except (ValueError, TypeError) as e: + print(f"Warning: Failed to parse incident_time '{incident_time_str}': {e}") + # 使用默认时间 + row_data['time'] = "00:00:00" + + # 处理经纬度 - 可能为 "NULL" 字符串 + longitude = str(base_info.get('longitude', '')).strip() + latitude = str(base_info.get('latitude', '')).strip() + + # 处理 "NULL" 字符串 + if longitude.lower() == "null" or longitude == "": + longitude = "N/A" + if latitude.lower() == "null" or latitude == "": + latitude = "N/A" + + # 格式化坐标显示 + row_data['coordinates'] = f"{longitude[:12]}\n{latitude[:12]}" + + # 处理idc_tickcount_ms + row_data['idc_tickcount_ms'] = base_info.get('idc_tickcount_ms_int', 0) + + # 处理速度 - 可能为 "NULL" 字符串 + speed = str(base_info.get('speed', '')).strip() + if speed.lower() == "null" or speed == "": + speed = "0" + row_data['speed'] = speed + + # 处理incident信息 - 新格式没有Incident__description + row_data['incident'] = { + "name": base_info.get('incident_name', 'Unknown Incident'), + "description": "" # 使用incident_name作为描述 + } + + # 处理信号数据 + row_data['signals'] = [] + for key, value in item["signal_data"].items(): + signals_name_value = {} + signals_name_value["name"] = key + + # 新格式使用signal_value字段 + signal_value = value.get('signal_value', '') + if signal_value is None or signal_value == "": + signal_value = "N/A" + signals_name_value["value"] = signal_value + + # 匹配到meanning的值 + meaning_result=match_meaning(key,signal_value) + # 新格式没有Meaning字段,使用空字符串 + signals_name_value["meaning"] = meaning_result + + row_data['signals'].append(signals_name_value) + + # === 新增:对signals列表按name字段进行字符顺序排序 === + row_data['signals'] = sorted(row_data['signals'], key=lambda x: x['name']) + + result.append(row_data) + + return result + + +def convert_to_histro_data(raw_data): + """ + 转换原始数据为前端折线图格式(time保留%Y-%m-%d %H:%M:%S.%f格式) + :param raw_data: 原始字典列表 + :return: 前端所需格式的列表 + """ + # 步骤1:按signal分组 + signal_groups = defaultdict(list) + for item in raw_data: + signal_groups[item["signal"]].append(item) + + # 步骤2:处理每个分组,构造最终数据 + chart_data = [] + for signal_name, items in signal_groups.items(): + # 修复1:统一使用start_ts字段进行排序(因为这是时间轴数据) + def sort_by_start_ts(item): + return datetime.strptime(item["time"], "%Y-%m-%d %H:%M:%S.%f") + + sorted_items = sorted(items, key=sort_by_start_ts) + + # 修复3:统一使用time作为X轴时间数据(与排序字段一致) + time_list = [item["time"] for item in sorted_items] # 使用start_ts作为时间轴 + values_list = [float(item["value"]) for item in sorted_items] # value转数值 + + # 子步骤3:构造当前signal的折线图数据 + chart_item = { + "signalName": signal_name, + "time": time_list, # X轴时间数据 + "values": values_list # Y轴数值数据 + } + chart_data.append(chart_item) + + return chart_data + + +def convert_to_histro_data_v2(raw_data): + """ + 转换原始数据为前端图表格式 {x: 时间, y: 数值, value: 数值} + :param raw_data: 原始字典列表,需包含 "signal"、"time"、"value" 字段 + :return: 字典(key=signal名称,value=对应{x,y,value}格式的列表); + 若需合并所有signal为单列表,可取消注释对应逻辑 + """ + # 步骤1:按signal字段分组 + signal_groups = defaultdict(list) + for item in raw_data: + signal_groups[item["signal"]].append(item) + + # 步骤2:处理每个分组,构造目标格式数据 + chart_data = {} + for signal_name, items in signal_groups.items(): + # 按time字段排序(保证时间轴顺序) + def sort_by_time(item): + return datetime.strptime(item["time"], "%Y-%m-%d %H:%M:%S.%f") + + sorted_items = sorted(items, key=sort_by_time) + + # 构造 {x: 时间, y: 数值, value: 数值} 格式的列表 + signal_item_list = [] + for item in sorted_items: + val = float(item["value"]) # 确保数值类型为浮点数 + signal_item_list.append({ + "x": item["time"], # x轴:时间字符串(对应示例中的"销量4"类标签) + "y": item['valueExplanation'], # y轴:原始value数值 + "value": val # value字段:与y轴数值一致(匹配示例格式) + }) + + # ========== 新增逻辑开始 ========== + # 获取排序后第一条原始数据 + first_raw_item = sorted_items[0] + # 判断is_pre_value_needed是否非空(处理空字符串、None、"NULL"等情况) + is_needed = first_raw_item.get("is_pre_value_needed", "") + if is_needed and is_needed.strip() and is_needed != "NULL": + try: + # 提取pre相关值并转换类型 + pre_val = float(first_raw_item["pre_value"]) + pre_explanation = first_raw_item["pre_valueExplanation"] + first_time = first_raw_item["time"] # 在第一条数据的时间基础上减10秒 + first_time_dt = datetime.strptime(first_time, "%Y-%m-%d %H:%M:%S.%f") + pre_time_dt = first_time_dt - timedelta(seconds=10) + pre_time_str = pre_time_dt.strftime("%Y-%m-%d %H:%M:%S.%f")[:-3] + # 构造前置数据项 + pre_item = { + "x": '', # x轴:第一条数据的时间 + "y": pre_explanation, # y轴:pre_value对应的说明 + "value": pre_val, # value字段:pre_value的数值 + "show":1 + } + + # 插入到列表最前面 + signal_item_list.insert(0, pre_item) + except KeyError as e: + print(f"警告:第一条数据缺少{e}字段,跳过前置数据插入") + except ValueError as e: + print(f"警告:pre_value转换浮点数失败({e}),跳过前置数据插入") + # ========== 新增逻辑结束 ========== + + # 按signal名称存储结果 + chart_data[signal_name] = signal_item_list + + return chart_data + + +def match_meaning(singla_name,value): + import os + current_dir = os.path.dirname(os.path.abspath(__file__)) + json_path = os.path.join(current_dir, "singal_value.json") + with open(json_path, "r", encoding="utf-8") as f: + mean_data = json.load(f) + + singla=singla_name.split('.')[-1] + meaning_state=mean_data.get(singla,None) + if meaning_state: + return meaning_state[value] if meaning_state[value] else '' + else: + return '' + + diff --git a/backend/app/blueprints/incident_gen6/singal_value.json b/backend/app/blueprints/incident_gen6/singal_value.json new file mode 100644 index 0000000..5bbdbe9 --- /dev/null +++ b/backend/app/blueprints/incident_gen6/singal_value.json @@ -0,0 +1,164 @@ +{ + "l2p_function_state": { + "0.0": "kOff", + "1.0": "kStandby", + "2.0": "kPassive", + "3.0": "kActive", + "4.0": "kOverrule", + "5.0": "kError" + }, + "mmt_l2pp_function_state": { + "0.0": "Off", + "1.0": "Deactivated", + "2.0": "Preselected", + "3.0": "Active", + "4.0": "Overrule", + "5.0": "Error", + "6.0": "Unknown" + }, + "adas_cua_funcroadclass_st3": { + "0.0": "Unknown", + "1.0": "Freeway", + "2.0": "MainStreet/CitySpeedway", + "3.0": "NationalRoad", + "4.0": "ProvinceRoad/CountyRoad", + "5.0": "MainRoad", + "6.0": "SecondaryRoad/Commonroad/RuralRoad/InCountyRoad/Pathway", + "7.0": "N/A" + }, + "l2p_deactivation_reason": { + "0.0": "kIdle", + "1.0": "kDeactivatedByUser", + "2.0": "kOutOfODD", + "3.0": "kTollStation", + "4.0": "kRouteEnd", + "5.0": "kHeavyRain", + "6.0": "kError", + "7.0": "kOverSpeed", + "8.0": "kOther" + }, + "hoswd_handson_stat_master": { + "0.0": "NOT_TOUCH", + "1.0": "TOUCH", + "2.0": "SLIGHTLY_TOUCH", + "3.0": "GRASP", + "4.0": "DOUBLE_GRABBED", + "5.0": "SLIGHTLY_GRABBED", + "6.0": "SLIGHTLY_DOUBLE_GRABBED", + "7.0": "SNA" + }, + "das_dtr_ui_stat_st3": { + "0.0": "OFF", + "1.0": "PRESEL", + "2.0": "ACTV_SET_SPEED_CNTRL", + "3.0": "ACTV_SPEED_LMT_CNTRL", + "4.0": "ACTV_DSTNC_CNTRL_EGO_LNE", + "5.0": "ACTV_DSTNC_CNTRL_NGHBR_LNE", + "6.0": "ACTV_CRV_CTRL", + "7.0": "ACTV_DRVAWAY_RDY", + "8.0": "PASSIVE", + "9.0": "ACTV_NOT_POSSBL", + "13.0": "HIDDEN", + "14.0": "ERROR", + "15.0": "SNA" + }, + "fcw_warning": { + "0.0": "None", + "1.0": "LEVEL_1", + "2.0": "LEVEL_2", + "3.0": "LEVEL_3", + "4.0": "LEVEL_4", + "5.0": "COUNT", + "255.0": "FORCE32" + }, + "aeb_aeb_event_type": { + "0.0": "AEB_NONE", + "1.0": "AEB_PARTIAL", + "2.0": "AEB_FULL", + "3.0": "AEB_HOLD", + "4.0": "AEB_LIM", + "5.0": "AEB_EH", + "255.0": "AEB_FORCE32" + }, + "pt4_ptcoor_drvposn_stat": { + "0.0": "Unknown", + "1.0": "D", + "2.0": "N", + "3.0": "R", + "4.0": "P" + }, + "das_cms_acustwarn_rq_st3": { + "0.0": "NO_RQ", + "1.0": "RQ", + "3.0": "SNA" + }, + "das_turnind_rq": { + "0.0": "IDLE", + "1.0": "LEFT", + "2.0": "RIGHT" + }, + "brkpdl_stat": { + "0.0": "Pedal upstopped", + "1.0": "Pedal pressed", + "3.0": "not defined" + }, + "aas_actvas_rq": { + "0.0": "IDLE", + "1.0": "NOT_ON_ROAD", + "2.0": "DROW_LONG", + "3.0": "MCRSLP_DSTRCT", + "4.0": "SLP_UNRSP_DRIVER", + "7.0": "SNA" + }, + "aeb_state": { + "0.0": "kStartUp", + "1.0": "kAvailable", + "2.0": "kActive", + "3.0": "kActiveError", + "4.0": "kAborting", + "5.0": "kAbortingError", + "6.0": "kInitSilent", + "7.0": "kInit", + "8.0": "kBlocked", + "9.0": "kBlockedSilent", + "10.0": "kError", + "11.0": "kOff", + "12.0": "kOffError", + "13.0": "kNotAvailable", + "14.0": "kCodingError" + }, + "mpic_d_gaze_roi_idx": { + "0.0": "NO_GAZE", + "1.0": "ROI_01", + "2.0": "ROI_02", + "3.0": "ROI_03", + "4.0": "ROI_04", + "5.0": "ROI_05", + "6.0": "ROI_06", + "7.0": "ROI_07", + "8.0": "ROI_08", + "9.0": "ROI_09", + "10.0": "ROI_10", + "11.0": "ROI_11", + "12.0": "ROI_12", + "13.0": "ROI_13", + "14.0": "ROI_14", + "15.0": "ROI_15", + "16.0": "ROI_16", + "17.0": "ROI_17", + "18.0": "ROI_18", + "19.0": "ROI_19", + "20.0": "ROI_20", + "21.0": "ROI_21", + "22.0": "ROI_22", + "23.0": "ROI_23", + "24.0": "ROI_24", + "25.0": "ROI_25", + "26.0": "ROI_26", + "27.0": "ROI_27", + "28.0": "ROI_28", + "29.0": "ROI_29", + "30.0": "ROI_30", + "31.0": "SNA" + } +} \ No newline at end of file diff --git a/backend/app/blueprints/login/__init__.py b/backend/app/blueprints/login/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/login/routes.py b/backend/app/blueprints/login/routes.py new file mode 100644 index 0000000..c29767f --- /dev/null +++ b/backend/app/blueprints/login/routes.py @@ -0,0 +1,144 @@ +from flask import Blueprint, current_app, redirect, request, jsonify +from sqlalchemy.exc import IntegrityError +from app.models import User, Role, UserRole # 导入模型类 +from app.utils import verify_password # 导入密码加密工具 +from app import db +from flask_jwt_extended import ( + create_access_token, + jwt_required, + get_jwt_identity, +) # 导入JWT相关工具 + +login_bp = Blueprint("login", __name__) + + +@login_bp.route("/login1", methods=["POST"]) +def login(): + # 初始化响应结构(避免未定义变量问题)F + response = {"code": 200, "message": "success"} + + # 1. 获取登录凭证 + data = request.get_json() + username = data.get("username") + password = data.get("password") + + # 2. 验证必填字段 + if not username or not password: + response["code"] = 400 + response["message"] = "用户名和密码不能为空" + return jsonify(response) + + # 3. 查询用户(包含状态验证) + user = User.query.filter_by( + username=username, status=1 + ).first() # 直接过滤启用状态的用户 + + # 4. 验证用户存在性和密码 + if not user or not verify_password( + user.password, password + ): # 注意:verify_password(加密密码, 明文密码) + response["code"] = 401 + response["message"] = "用户名或密码错误" + return jsonify(response) + + # 5. 生成JWT令牌 + access_token = create_access_token(identity=str(user.id)) + + # 6. 查询用户关联的角色(处理多角色情况) + # 方式:查询用户所有角色名称,返回数组 + roles = ( + db.session.query(Role.name) + .join(UserRole, Role.id == UserRole.role_id) + .filter(UserRole.user_id == user.id) # 关联当前登录用户 + .all() + ) + print("roles", roles) + # 提取角色名称到数组(如果没有角色,返回空数组) + role_list = [role.name for role in roles] if roles else [] + + # 7. 按指定格式包装结果 + result = { + "accessToken": access_token, + "id": user.id, + "username": user.username, + "nickname": user.username, # 假设nickname用username替代(如果表中有nickname字段可直接替换) + "avatar": user.avatar + or "https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png", # 默认为空时用默认头像 + "roles": role_list, # 角色数组(单角色时为['角色名'],多角色时为['角色1','角色2']) + } + + result = {"code": 200, "data": {"token": access_token}, "msg": "登录成功"} + + return jsonify(result) + + +@login_bp.route("/info", methods=["GET"]) +@jwt_required() # 要求登录状态(使用JWT验证) +def get_user_info(): + try: + # 获取当前登录用户的ID(假设使用JWT存储用户ID) + current_user_id = get_jwt_identity() + + # 查询数据库获取用户信息 + user = User.query.get(current_user_id) + if not user: + return jsonify({"code": 404, "msg": "用户不存在", "data": None}), 404 + + # 提取用户角色(假设Role模型有name字段存储角色名称) + roles = [role.name for role in user.roles] if user.roles else [] + + # 构造返回数据 + res = { + "code": 200, + "msg": "获取成功", + "data": { + "id": user.id, + "username": user.username, + "nickname": user.username, # 模型中没有nickname字段,暂用username代替 + "avatar": user.avatar + or "https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png", # 默认头像 + "roles": roles, + }, + } + return jsonify(res) + + except Exception as e: + # 异常处理 + return ( + jsonify({"code": 500, "msg": f"获取用户信息失败:{str(e)}", "data": None}), + 500, + ) + + +@login_bp.route("/get_record", methods=["GET"]) +def get_record_code(): + return jsonify({ + "code": 200, # 200表示成功 + "msg": "查询成功", + "data": current_app.config['HEADERS_SECRET_KEY'] # 调用模型自带的转字典方法 + }), 200 + + + +@login_bp.route("/login") +def authorization(): + """ + 授权入口。 + 将用户浏览器重定向到 SSO 服务器的授权页面。 + """ + # print("login123") + CLIENT_ID = current_app.config["CLIENT_ID"] + HOST = current_app.config["SS0_HOST"] + REDIRECT_URL = current_app.config["REDIRECT_URL"] + + # 1. 构造重定向到 SSO 授权页面的 URL + auth_url = ( + f"{HOST}v1/auth" + f"?response_type=code" + f"&client_id={CLIENT_ID}" + f"&scope=groups+openid+email+profile" + f"&redirect_uri={REDIRECT_URL}" + ) + # print(auth_url) + # 2. 执行重定向 + return redirect(auth_url) \ No newline at end of file diff --git a/backend/app/blueprints/oauth/__init__.py b/backend/app/blueprints/oauth/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/oauth/routes.py b/backend/app/blueprints/oauth/routes.py new file mode 100644 index 0000000..4f6d8e4 --- /dev/null +++ b/backend/app/blueprints/oauth/routes.py @@ -0,0 +1,285 @@ +import base64 +from flask import ( + Blueprint, + make_response, + redirect, + request, + jsonify, + session, + current_app, +) +import jwt +import requests + + +oauth_bp = Blueprint("oauth", __name__) + + +# 客户端 ID +# CLIENT_ID = "A17336FC-A8D7-4CEA-8777-384BFEABABC1" +# BASE64_CLIENT = "Basic QTE3MzM2RkMtQThENy00Q0VBLTg3NzctMzg0QkZFQUJBQkMxOlU3LUMxQlpRZEw4VjVjLnp+cUFfNjRTTzJsOUYzSjBv" +# # SSO 授权服务器地址 +# # "https://ssoalpha.dvb.corpinter.net/" +# HOST = "https://ssoalpha.dvb.corpinter.net.cn/" +# # 授权成功后,SSO 服务器重定向回你的应用的地址 (必须与 SSO 服务器上配置的一致) +# REDIRECT_URL = "http://localhost:5221/report" +# # 用户登录成功后,最终重定向到的前端页面地址 +# DOMAIN = "http://localhost:3001" + +@oauth_bp.route("/error") +def error(): + """错误页面,用于显示认证失败信息""" + msg = request.args.get("msg", "Unknown error") + return f"Error: {msg}" + + +# @oauth_bp.route("/report") +@oauth_bp.route("/incident/authorized") +def authorized(): + """ + SSO 回调接口。 + 接收 SSO 服务器返回的授权码 (code),并使用它来兑换访问令牌 (access_token)。 + """ + CLIENT_ID = current_app.config["CLIENT_ID"] + CLIENT_PASSWORD = current_app.config["CLIENT_PASSWORD"] + HOST = current_app.config["SS0_HOST"] # 建议检查是否是笔误(SSO_HOST) + REDIRECT_URL = current_app.config["REDIRECT_URL"] + DOMAIN = current_app.config["DOMAIN"] + + code = request.args.get("code") + state = request.args.get("state", "/dashboard") # 默认值设为/dashboard + + if not code: + # return redirect(f"/error?msg=No authorization code provided.") + return redirect(f"/incident/error?msg=No authorization code provided.") + + # 1. 准备请求体,用授权码兑换 Token + body = { + "grant_type": "authorization_code", + "code": code, + "redirect_uri": REDIRECT_URL, + } + + auth_str = f"{CLIENT_ID}:{CLIENT_PASSWORD}" + # 2. 准备请求头 + headers = { + "Authorization": "Basic "+base64.b64encode(auth_str.encode("utf-8")).decode("utf-8"), + "Content-Type": "application/x-www-form-urlencoded", + } + + try: + # 3. 发送 POST 请求到 SSO 服务器的 Token 端点 + response = requests.post(f"{HOST}v1/token", data=body, headers=headers) + response.raise_for_status() + + response_data = response.json() + access_token = response_data.get("access_token") + + # print('access_token', access_token) + if not access_token: + # return redirect(f"/error?msg=Failed to obtain access token. Response: {response_data}") + return redirect(f"/incident/error?msg=Failed to obtain access token. Response: {response_data}") + + # 4. 解析 JWT Token + decoded_jwt = jwt.decode(access_token, options={"verify_signature": False}) + + # 5. 验证和清理 state 参数 (防止开放重定向攻击) + safe_state = "/callback" + print(f"Redirecting to: {DOMAIN}{safe_state}") + + # 6. 设置 Cookie + resp = make_response(redirect(f"{DOMAIN}{safe_state}")) + + # 关键:设置 Cookie 域名和属性 + # domain = ".localhost" # 让所有 localhost 子域都能读取 + domain = None # 上线时改为None + + # 设置 access_token + resp.set_cookie( + "authorization", + access_token, + max_age=3500, + path="/", + domain=domain, + httponly=False, # 前端需要读取 + samesite="Lax", # 允许跨站 + secure=False, + ) # 开发环境不需要HTTPS + + # 设置登录名 + login_name = decoded_jwt.get("sub", "") + resp.set_cookie( + "loginName", + login_name, + max_age=3500, + path="/", + domain=domain, + httponly=False, + samesite="Lax", + secure=False, + ) + + # 设置用户名 (直接存储,不需要Base64编码) + user_name = decoded_jwt.get("name", "") + print("user_name", user_name) + resp.set_cookie( + "userName", + user_name, # 直接存储,前端处理编码 + max_age=3500, + path="/", + domain=domain, + httponly=False, + samesite="Lax", + secure=False, + ) + + return resp + + except requests.exceptions.RequestException as e: + print(f"Error exchanging code for token: {e}") + return redirect(f"/error?msg=Error communicating with SSO server.") + except jwt.InvalidTokenError as e: + print(f"Error decoding JWT: {e}") + return redirect(f"/error?msg=Invalid access token received.") + + +@oauth_bp.route("/logout", methods=["GET", "POST"]) +def logout(): + """登出接口""" + # 清除 session + session.clear() + # print('logout66677') + # 返回标准的 JSON 响应 + return jsonify({"code": 200, "message": "退出登录成功", "data": {}}), 200 + + +@oauth_bp.route("/login") +def authorization(): + """ + 授权入口。 + 将用户浏览器重定向到 SSO 服务器的授权页面。 + """ + # print("login123") + CLIENT_ID = current_app.config["CLIENT_ID"] + HOST = current_app.config["SS0_HOST"] + REDIRECT_URL = current_app.config["REDIRECT_URL"] + + # 1. 构造重定向到 SSO 授权页面的 URL + auth_url = ( + f"{HOST}v1/auth" + f"?response_type=code" + f"&client_id={CLIENT_ID}" + f"&scope=groups+openid+email+profile" + f"&redirect_uri={REDIRECT_URL}" + ) + # print(auth_url) + # 2. 执行重定向 + return redirect(auth_url) + + +@oauth_bp.route("/report") +def authorized_test(): + """ + SSO 回调接口。 + 接收 SSO 服务器返回的授权码 (code),并使用它来兑换访问令牌 (access_token)。 + """ + CLIENT_ID = current_app.config["CLIENT_ID"] + CLIENT_PASSWORD = current_app.config["CLIENT_PASSWORD"] + HOST = current_app.config["SS0_HOST"] # 建议检查是否是笔误(SSO_HOST) + REDIRECT_URL = current_app.config["REDIRECT_URL"] + DOMAIN = current_app.config["DOMAIN"] + + code = request.args.get("code") + state = request.args.get("state", "/dashboard") # 默认值设为/dashboard + + if not code: + # return redirect(f"/error?msg=No authorization code provided.") + return redirect(f"/incident/error?msg=No authorization code provided.") + + # 1. 准备请求体,用授权码兑换 Token + body = { + "grant_type": "authorization_code", + "code": code, + "redirect_uri": REDIRECT_URL, + } + + auth_str = f"{CLIENT_ID}:{CLIENT_PASSWORD}" + # 2. 准备请求头 + headers = { + "Authorization": "Basic "+base64.b64encode(auth_str.encode("utf-8")).decode("utf-8"), + "Content-Type": "application/x-www-form-urlencoded", + } + + try: + # 3. 发送 POST 请求到 SSO 服务器的 Token 端点 + response = requests.post(f"{HOST}v1/token", data=body, headers=headers) + response.raise_for_status() + + response_data = response.json() + access_token = response_data.get("access_token") + + # print('access_token', access_token) + if not access_token: + # return redirect(f"/error?msg=Failed to obtain access token. Response: {response_data}") + return redirect(f"/incident/error?msg=Failed to obtain access token. Response: {response_data}") + + # 4. 解析 JWT Token + decoded_jwt = jwt.decode(access_token, options={"verify_signature": False}) + + # 5. 验证和清理 state 参数 (防止开放重定向攻击) + safe_state = "/callback" + print(f"Redirecting to: {DOMAIN}{safe_state}") + + # 6. 设置 Cookie + resp = make_response(redirect(f"{DOMAIN}{safe_state}")) + + # 关键:设置 Cookie 域名和属性 + domain = ".localhost" # 让所有 localhost 子域都能读取 + + # 设置 access_token + resp.set_cookie( + "authorization", + access_token, + max_age=3500, + path="/", + domain=domain, + httponly=False, # 前端需要读取 + samesite="Lax", # 允许跨站 + secure=False, + ) # 开发环境不需要HTTPS + + # 设置登录名 + login_name = decoded_jwt.get("sub", "") + resp.set_cookie( + "loginName", + login_name, + max_age=3500, + path="/", + domain=domain, + httponly=False, + samesite="Lax", + secure=False, + ) + + # 设置用户名 (直接存储,不需要Base64编码) + user_name = decoded_jwt.get("name", "") + print("user_name", user_name) + resp.set_cookie( + "userName", + user_name, # 直接存储,前端处理编码 + max_age=3500, + path="/", + domain=domain, + httponly=False, + samesite="Lax", + secure=False, + ) + + return resp + + except requests.exceptions.RequestException as e: + print(f"Error exchanging code for token: {e}") + return redirect(f"/error?msg=Error communicating with SSO server.") + except jwt.InvalidTokenError as e: + print(f"Error decoding JWT: {e}") + return redirect(f"/error?msg=Invalid access token received.") \ No newline at end of file diff --git a/backend/app/config.py b/backend/app/config.py new file mode 100644 index 0000000..2ef670b --- /dev/null +++ b/backend/app/config.py @@ -0,0 +1,89 @@ +import os +from dotenv import load_dotenv + +if os.getenv("FLASK_ENV") != "production": + load_dotenv() # 自动读取项目根目录的 .env 文件 + + +class Config: + """基础配置(所有环境共享的公共参数)""" + # 1. 敏感配置:强制从环境变量读取,无默认值(生产环境必须配置) + DATABRICKS_TOKEN = os.getenv("DATABRICKS_TOKEN") + JWT_SECRET_KEY = os.getenv("JWT_SECRET_KEY") # 移除弱默认值 + SECRET_KEY = os.getenv("SECRET_KEY") # 移除弱默认值 + + # 2. 公共非敏感配置 + DATABRICKS_HOST = ( + "https://adb-3035612432650494.2.databricks.azure.cn" # 固定地址可保留 + ) + REQUEST_TIMEOUT = 600 # 远程请求超时时间(秒) + JWT_ACCESS_TOKEN_EXPIRES = 14400 # 更直观的过期时间(替代 14400 秒) + SQLALCHEMY_TRACK_MODIFICATIONS = False # 统一关闭查询跟踪,减少性能损耗 + + # 3. 安全基础配置(所有环境共享) + SESSION_COOKIE_HTTPONLY = True # 禁止 JS 访问 Session Cookie(防 XSS) + SESSION_COOKIE_SAMESITE = "Strict" # 限制跨站携带 Cookie(防 CSRF) + + # 配置链接wedata的参数 + WEDATA_SECRET_ID='AKIDtfFdqqgYUflgdZaPFvOfkDd0EGEUkx0u' + WEDATA_SECRET_KEY='sBKH5WrESUJwLdljV6Yrysc9TaTAh3Gk' + WEDATA_ENGINE='gen6_prod_aiag' + WEDATA_DATABASE='dws' + + # 图片上传的配置 + UPLOAD_FOLDER = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'uploads') + MAX_CONTENT_LENGTH = 5 * 1024 * 1024 # 5MB(开发环境) + IMAGE_BASE_URL='http://127.0.0.1:5221' + + +class DevelopmentConfig(Config): + """开发环境配置(本地开发用,配置宽松)""" + SQLALCHEMY_DATABASE_URI = "mysql+pymysql://root:12345@localhost:3306/incid_db?charset=utf8mb4" # 开发库临时密码 + + GEN5_TABLE_NAME = os.getenv( + "GEN5_TABLE_NAME", + "hive_metastore.taf_level_two_plus.accident_report_raw_data" + ) + CLUSTER_ID = os.getenv("CLUSTER_ID", "1203-054146-wkjf95i0") + + CLIENT_ID = os.getenv("CLIENT_ID","A17336FC-A8D7-4CEA-8777-384BFEABABC1") + CLIENT_PASSWORD = os.getenv("CLIENT_PASSWORD","U7-C1BZQdL8V5c.z~qA_64SO2l9F3J0o") + SS0_HOST = os.getenv("SS0_HOST","https://ssoalpha.dvb.corpinter.net.cn/") + REDIRECT_URL = os.getenv("REDIRECT_URL","http://localhost:5221/report") + DOMAIN = os.getenv("DOMAIN","http://localhost:3001") + # 2. 开发模式开关 + DEBUG = True + TESTING = True + + # 3. 开发环境 Cookie 配置(无 HTTPS,禁用 secure) + SESSION_COOKIE_SECURE = False + + HEADERS_SECRET_KEY=os.getenv("HEADERS_SECRET_KEY","mbincid-server12") + +class ProductionConfig(Config): + """生产环境配置""" + SQLALCHEMY_DATABASE_URI = os.getenv("DATABASE_URL") + TABLE_NAME = os.getenv("TABLE_NAME") + CLUSTER_ID = os.getenv("CLUSTER_ID") + + CLIENT_ID = os.getenv("CLIENT_ID","A17336FC-A8D7-4CEA-8777-384BFEABABC1") + CLIENT_PASSWORD = os.getenv("CLIENT_PASSWORD","U7-C1BZQdL8V5c.z~qA_64SO2l9F3J0o") + SS0_HOST = os.getenv("SS0_HOST","https://ssoalpha.dvb.corpinter.net.cn/") + REDIRECT_URL = os.getenv("REDIRECT_URL","http://localhost:5221/report") + DOMAIN = os.getenv("DOMAIN","http://localhost:3001") + DEBUG = False # 禁用调试(关键!避免生产环境暴露敏感信息) + TESTING = False + + UPLOAD_FOLDER=os.getenv('UPLOAD_FOLDER','/app/uploads') + MAX_CONTENT_LENGTH=int(os.getenv('MAX_CONTENT_LENGTH', 5242880)) + IMAGE_BASE_URL=os.getenv('IMAGE_BASE_URL','http://127.0.0.1:5221') + + GEN5_TABLE_NAME = os.getenv( + "GEN5_TABLE_NAME", + "hive_metastore.taf_level_two_plus.accident_report_raw_data" + ) + + HEADERS_SECRET_KEY=os.getenv("HEADERS_SECRET_KEY","mbincid-server12") + +env = os.getenv("FLASK_ENV", "development") +config = {"development": DevelopmentConfig, "production": ProductionConfig}[env] diff --git a/backend/app/link_wedata_utils.py b/backend/app/link_wedata_utils.py new file mode 100644 index 0000000..b907e44 --- /dev/null +++ b/backend/app/link_wedata_utils.py @@ -0,0 +1,132 @@ +import traceback +import tdlc_connector +from tdlc_connector import constants + + +def query_tencent_cloud_data(config,start_time,end_time,vin): + try: + # 配置参数(替换为您的实际参数) + # config = { + # 'region': 'ap-shanghai', # 引擎所在地域 + # 'secret_id': 'AKIDtfFdqqgYUflgdZaPFvOfkDd0EGEUkx0u', + # 'secret_key': 'sBKH5WrESUJwLdljV6Yrysc9TaTAh3Gk', + # 'engine': 'gen6_prod_aiag', # 引擎名称 + # "database":"dws" + # } + # 建立连接 + conn = tdlc_connector.connect( + **config, + engine_type=constants.EngineType.SPARK, + result_style=constants.ResultStyles.LIST + ) + + cursor = conn.cursor() + + # 执行查询 + sql = f""" + SELECT * FROM gen6_incidents + WHERE incident_time BETWEEN '{start_time}' AND '{end_time}' + AND oneid = '{vin}' + """ + print(f"执行SQL: {sql}") + cursor.execute(sql) + + # 获取列名 + columns = [desc[0] for desc in cursor.description] # 使用cursor.description获取列名 [[5]] + + # 获取结果 + results = cursor.fetchall() + print(f"查询结果共 {len(results)} 条:") + + # 将结果转换为字典列表格式 + dict_results = [] + for i, row in enumerate(results, 1): + # 将每一行转换为字典,键为列名,值为对应的值 + row_dict = dict(zip(columns, row)) + dict_results.append(row_dict) + print(f"第{i}行: {row_dict}") + + return dict_results + + except Exception as e: + print(f"查询失败: {str(e)}") + raise + finally: + # 确保关闭连接 + if 'cursor' in locals(): + cursor.close() + if 'conn' in locals(): + conn.close() + + +def sync_query_tencent_cloud_data(config, sql, params, result_queue, task_id): + """ + 同步查询腾讯云TDLC数据(兼容单/多线程) + :param config: TDLC连接配置 + :param sql: 含%s占位符的SQL语句 + :param params: SQL参数列表(用于替换%s) + :param result_queue: 线程安全的结果队列(单线程传None) + :param task_id: 任务ID(区分不同查询,单线程可传任意字符串) + """ + conn = None + cursor = None + try: + # (原连接/执行SQL逻辑完全不变) + conn = tdlc_connector.connect( + **config, + engine_type=constants.EngineType.SPARK, + result_style=constants.ResultStyles.LIST + ) + cursor = conn.cursor() + # print(f"[线程-{task_id}] 执行SQL: {sql} | 参数: {params}") + cursor.execute(sql, params) + columns = [desc[0] for desc in cursor.description] if cursor.description else [] + results = cursor.fetchall() + dict_results = [dict(zip(columns, row)) for row in results] + + # ===== 仅新增:判断队列是否为空,兼容单线程 ===== + if result_queue is not None: + # 多线程:结果入队 + result_queue.put({ + "task_id": task_id, + "success": True, + "data": dict_results, + "error": None + }) + else: + # 单线程:直接返回结果(新增返回逻辑) + return { + "success": True, + "data": dict_results, + "error": None + } + + except Exception as e: + error_info = f"{str(e)}\n{traceback.format_exc()}" + print(f"[线程-{task_id}] 查询失败: {error_info}") + # ===== 同样新增:队列空判断 ===== + if result_queue is not None: + result_queue.put({ + "task_id": task_id, + "success": False, + "data": None, + "error": error_info + }) + else: + return { + "success": False, + "data": None, + "error": error_info + } + finally: + # (原关闭连接逻辑完全不变) + if cursor: + try: + cursor.close() + except Exception as e: + print(f"[线程-{task_id}] 关闭游标失败: {str(e)}") + if conn: + try: + conn.close() + except Exception as e: + print(f"[线程-{task_id}] 关闭连接失败: {str(e)}") \ No newline at end of file diff --git a/backend/app/models.py b/backend/app/models.py new file mode 100644 index 0000000..72db6f3 --- /dev/null +++ b/backend/app/models.py @@ -0,0 +1,590 @@ +from datetime import datetime +import enum + +from sqlalchemy import ( + BIGINT, + INTEGER, + JSON, + Column, + DateTime, + Enum, + ForeignKey, + Index, + String, + Text, + func, +) +from app import db + + +class User(db.Model): + __tablename__ = "users" + + id = db.Column(db.Integer, primary_key=True, autoincrement=True) + username = db.Column(db.String(50), unique=True, nullable=False) + password = db.Column(db.String(255), nullable=False) + status = db.Column(db.Integer, default=1, comment="用户状态:1-正常,0-禁用") + created_at = db.Column(db.DateTime, default=datetime.now, comment="创建时间") + updated_at = db.Column( + db.DateTime, default=datetime.now, onupdate=datetime.now, comment="更新时间" + ) + email = db.Column(db.String(255), nullable=True, comment="邮箱") + avatar = db.Column(db.String(255), nullable=True, comment="头像(通常存储图片URL)") + region = db.Column(db.String(255), nullable=True, comment="国家地区") + phone = db.Column(db.String(255), nullable=True, comment="电话") + brief = db.Column(db.String(255), nullable=True, comment="个人简介") + third_party_account = db.Column( + db.String(255), nullable=True, comment="第三方账号(如微信、QQ等)" + ) + position = db.Column(db.String(255), nullable=True, comment="职务") + department = db.Column(db.String(255), nullable=True, comment="部门") + label = db.Column( + db.String(255), nullable=True, comment="个人标签(多个标签可逗号分隔)" + ) + + # 自引用外键 + created_by = db.Column(db.Integer, db.ForeignKey("users.id")) + updated_by = db.Column(db.Integer, db.ForeignKey("users.id")) + + # 关系定义 + creator = db.relationship( + "User", foreign_keys=[created_by], remote_side=[id], backref="created_users" + ) + updater = db.relationship( + "User", foreign_keys=[updated_by], remote_side=[id], backref="updated_users" + ) + + # 关联关系 + roles = db.relationship( + "Role", + secondary="user_roles", + back_populates="users", + foreign_keys="[UserRole.user_id, UserRole.role_id]", + ) # 明确指定外键) + created_roles = db.relationship( + "Role", backref="creator", foreign_keys="Role.created_by" + ) + updated_roles = db.relationship( + "Role", backref="updater", foreign_keys="Role.updated_by" + ) + + def __repr__(self): + return f"" + + +class Role(db.Model): + __tablename__ = "roles" + + id = db.Column(db.Integer, primary_key=True, autoincrement=True) + name = db.Column(db.String(50), unique=True, nullable=False, comment="角色名称") + description = db.Column(db.String(255), comment="角色描述") + status = db.Column(db.Integer, default=1, comment="状态:1-启用,0-禁用") + created_at = db.Column(db.DateTime, default=datetime.now) + updated_at = db.Column(db.DateTime, default=datetime.now, onupdate=datetime.now) + + # 外键字段 + created_by = db.Column(db.Integer, db.ForeignKey("users.id")) + updated_by = db.Column(db.Integer, db.ForeignKey("users.id")) + + # 关系定义 + users = db.relationship( + "User", + secondary="user_roles", + back_populates="roles", + foreign_keys="[UserRole.role_id, UserRole.user_id]", + ) + + def __repr__(self): + return f"" + + +class UserRole(db.Model): + __tablename__ = "user_roles" + + user_id = db.Column(db.Integer, db.ForeignKey("users.id"), primary_key=True) + role_id = db.Column(db.Integer, db.ForeignKey("roles.id"), primary_key=True) + created_at = db.Column(db.DateTime, default=datetime.now) + created_by = db.Column(db.Integer, db.ForeignKey("users.id")) + + # 关系定义 + user = db.relationship("User", foreign_keys=[user_id], backref="role_assignments") + role = db.relationship("Role", foreign_keys=[role_id], backref="user_assignments") + creator_rel = db.relationship( + "User", foreign_keys=[created_by], backref="created_assignments" + ) + + def __repr__(self): + return f"" + + +class AccidList(db.Model): + """事故工单列表模型类(对应 accid_list 表)""" + + __tablename__ = "accid_list" # 对应 MySQL 表名 + __table_args__ = ( + # 修正:使用 db.Index(和 OperationHistory 模型一致),移除注释避免兼容问题 + db.Index("idx_ticket_id", "ticket_id"), + db.Index("idx_creator", "creator"), + db.Index("idx_create_time", "create_time"), + db.Index("idx_carline", "carline"), + db.Index("idx_affects_versions", "affects_versions"), + db.Index("idx_components", "components"), + db.Index("idx_labels", "labels"), + db.Index("idx_fix_versions", "fix_versions"), + db.Index("idx_accident_level", "accident_level"), + db.Index("idx_assignee_name", "assignee_name"), + # 表级属性(参考 Fst 模型的 collation 写法) + { + "mysql_charset": "utf8mb4", + "mysql_collate": "utf8mb4_unicode_ci", + "mysql_engine": "InnoDB", + "mysql_row_format": "DYNAMIC", + }, + ) + + # 核心修正:所有字段使用 db. 前缀(和 User 模型一致) + id = db.Column( + db.Integer, primary_key=True, autoincrement=True, comment="主键ID,自增" + ) + ticket_id = db.Column(db.String(50), nullable=False, comment="工单ID") + model = db.Column(db.String(100), nullable=True, default=None, comment="型号") + vin = db.Column(db.String(50), nullable=False, comment="车辆识别码(VIN)") + creator = db.Column( + db.String(50), nullable=False, default="", comment="创建人(用户名,如ZHANMEN)" + ) + create_time = db.Column(db.DateTime, nullable=False, comment="工单新建时间") + occur_datetime = db.Column(db.DateTime, nullable=False, comment="问题发生时间") + case_description = db.Column(db.Text, nullable=False, comment="Case描述") + fo_solution = db.Column(db.Text, nullable=False, comment="Fo解答") + category = db.Column(db.String(100), nullable=False, default="", comment="分类") + keywords = db.Column( + db.String(200), nullable=False, default="", comment="关键词(多个用逗号分隔)" + ) + handle_status = db.Column( + db.String(20), + nullable=True, + default="已完成", + comment="处理状态:已完成/未完成", + ) + # 修正:时间字段默认值用 db.func.current_timestamp()(和 BagFile 模型一致) + create_at = db.Column( + db.DateTime, + nullable=True, + default=func.current_timestamp(), + comment="记录插入数据库时间", + ) + update_at = db.Column( + db.DateTime, + nullable=True, + default=func.current_timestamp(), + onupdate=func.current_timestamp(), + comment="记录最后更新时间", + ) + bmbs_name = db.Column( + db.String(50), nullable=True, default="", comment="BMBS联系人" + ) + # 修正:Enum 默认值错误(原 default='' 改为 'P1'),使用 db.Enum + accident_level = db.Column( + db.Enum("P1", "P2", "P3"), nullable=True, default="P1", comment="事故评级" + ) + rdca_reporter = db.Column( + db.String(50), nullable=True, default="", comment="RDCA报告人" + ) + carline = db.Column( + db.String(100), + nullable=True, + default=None, + comment="车系(关联字典表dict_code=carline)", + ) + software_version = db.Column( + db.String(50), nullable=True, default="", comment="软件版本" + ) + labels = db.Column( + db.String(100), + nullable=True, + default=None, + comment="事故类型标签(关联字典表dict_code=labels)", + ) + attachment_url = db.Column( + db.String(255), nullable=True, default="", comment="附件地址(多个用逗号分隔)" + ) + assignee_name = db.Column( + db.String(50), nullable=True, default="", comment="经办人(关联字典表/用户表)" + ) + affects_versions = db.Column( + db.String(100), + nullable=True, + default=None, + comment="受影响的版本(关联字典表dict_code=affects_versions)", + ) + components = db.Column( + db.String(100), + nullable=True, + default=None, + comment="零部件/组件(关联字典表dict_code=components)", + ) + fix_versions = db.Column( + db.String(100), + nullable=True, + default=None, + comment="修复方案对应的版本(关联字典表dict_code=fix_versions)", + ) + subtasks = db.Column( + db.String(200), nullable=False, default="", comment="子任务(多个用逗号分隔)" + ) + linked_work_items = db.Column( + db.String(200), + nullable=False, + default="", + comment="关联的工作项(格式:类型:ID,类型:ID)", + ) + descriptions = db.Column( + db.String(255), + nullable=False, + default="", + comment="补充描述(区别于case_description)", + ) + mviz_link = db.Column( + db.String(255), nullable=False, default="", comment="mviz的链接" + ) + system_function = db.Column( + db.String(255), nullable=False, default="", comment="system_function字段" + ) + image_ids = db.Column( + db.String(255), + nullable=False, + default="", + comment="关联图片ID串,逗号分隔(如:1,2,3)", + ) + + def __repr__(self): + return f"" + + def to_dict(self): + """转为字典,适配接口返回(参考 DictType 的 to_dict 方法)""" + return { + "id": self.id, + "ticket_id": self.ticket_id, + "model": self.model, + "vin": self.vin, + "creator": self.creator, + "create_time": ( + self.create_time.strftime("%Y-%m-%d %H:%M:%S") + if self.create_time + else None + ), + "occur_datetime": ( + self.occur_datetime.strftime("%Y-%m-%d %H:%M:%S") + if self.occur_datetime + else None + ), + "case_description": self.case_description, + "fo_solution": self.fo_solution, + "category": self.category, + "keywords": self.keywords, + "handle_status": self.handle_status, + "create_at": ( + self.create_at.strftime("%Y-%m-%d %H:%M:%S") if self.create_at else None + ), + "update_at": ( + self.update_at.strftime("%Y-%m-%d %H:%M:%S") if self.update_at else None + ), + "bmbs_name": self.bmbs_name, + "accident_level": self.accident_level, + "rdca_reporter": self.rdca_reporter, + "carline": self.carline, + "software_version": self.software_version, + "labels": self.labels, + "attachment_url": self.attachment_url, + "assignee_name": self.assignee_name, + "affects_versions": self.affects_versions, + "components": self.components, + "fix_versions": self.fix_versions, + "subtasks": self.subtasks, + "linked_work_items": self.linked_work_items, + "descriptions": self.descriptions, + "mviz_link": self.mviz_link, + "system_function":self.system_function, + "image_ids":self.image_ids + } + + +class DictType(db.Model): + """字典类型表模型类(对应 dict_type 表)""" + + __tablename__ = "dict_type" # 匹配 MySQL 表名 + __table_args__ = ( + # 修正:使用 db.UniqueConstraint(参考 RuleVersions 模型) + db.UniqueConstraint( + "dict_code", name="uk_dict_code", comment="字典编码唯一(对应唯一字段)" + ), + # 表级属性(对齐项目规范) + { + "mysql_charset": "utf8mb4", + "mysql_collate": "utf8mb4_unicode_ci", + "mysql_engine": "InnoDB", + "mysql_row_format": "Dynamic", + "comment": "字典类型表(管理需要下拉的字段)", + }, + ) + + # 修正:所有字段使用 db. 前缀,类型改为 db.Integer(和 User 模型一致) + id = db.Column(db.Integer, primary_key=True, autoincrement=True, comment="主键ID") + dict_code = db.Column( + db.String(50), + nullable=False, + comment="字典编码(对应accid_list的字段名,如carline、labels)", + ) + dict_name = db.Column( + db.String(50), + nullable=False, + comment="字典名称(字段中文名称,如车系、事故类型)", + ) + remark = db.Column( + db.String(200), + nullable=True, + default="", + comment="备注(如“事故工单-车系下拉选项”)", + ) + status = db.Column( + db.Integer, nullable=False, default=1, comment="状态:1-启用,0-禁用" + ) + create_time = db.Column( + db.DateTime, nullable=True, default=func.current_timestamp(), comment="创建时间" + ) + update_time = db.Column( + db.DateTime, + nullable=True, + default=func.current_timestamp(), + onupdate=func.current_timestamp(), + comment="更新时间", + ) + + def __repr__(self): + return f"" + + def to_dict(self): + """将模型对象转为字典,便于接口返回数据""" + return { + "id": self.id, + "dict_code": self.dict_code, + "dict_name": self.dict_name, + "remark": self.remark, + "status": self.status, + "create_time": ( + self.create_time.strftime("%Y-%m-%d %H:%M:%S") + if self.create_time + else None + ), + "update_time": ( + self.update_time.strftime("%Y-%m-%d %H:%M:%S") + if self.update_time + else None + ), + } + + +class DictItem(db.Model): + """字典项表模型类(对应 dict_item 表)""" + + __tablename__ = "dict_item" # 严格匹配 MySQL 表名 + __table_args__ = ( + # 修正:使用 db.Index(对齐 OperationHistory 模型) + db.Index("idx_dict_id", "dict_id"), + db.Index("idx_item_value", "item_value"), + # 表级属性(对齐项目规范) + { + "mysql_charset": "utf8mb4", + "mysql_collate": "utf8mb4_unicode_ci", + "mysql_engine": "InnoDB", + "mysql_row_format": "Dynamic", + "comment": "字典项表(管理每个字段的具体下拉选项)", + }, + ) + + # 修正:所有字段使用 db. 前缀,类型改为 db.Integer(和 User 模型一致) + id = db.Column(db.Integer, primary_key=True, autoincrement=True, comment="主键ID") + # 修正:外键使用 db.ForeignKey(参考 BagFile 模型) + dict_id = db.Column( + db.Integer, + db.ForeignKey("dict_type.id"), + nullable=False, + comment="关联字典类型表的ID", + ) + item_value = db.Column( + db.String(100), + nullable=False, + comment="选项值(存储到accid_list的实际值,如“大众帕萨特”“P1”)", + ) + item_label = db.Column( + db.String(100), + nullable=False, + comment="选项标签(前端显示的文本,如“大众帕萨特(车系)”)", + ) + sort = db.Column( + db.Integer, + nullable=True, + default=0, + comment="排序号(前端下拉框显示顺序,数字越小越靠前)", + ) + status = db.Column( + db.Integer, + nullable=False, + default=1, + comment="状态:1-启用,0-禁用(禁用后前端不显示)", + ) + remark = db.Column( + db.String(200), + nullable=True, + default="", + comment="备注(如“2025款帕萨特专属”)", + ) + create_time = db.Column( + db.DateTime, nullable=True, default=func.current_timestamp(), comment="创建时间" + ) + update_time = db.Column( + db.DateTime, + nullable=True, + default=func.current_timestamp(), + onupdate=func.current_timestamp(), + comment="更新时间", + ) + + # 修正:关系使用 db.relationship + db.backref(参考 User 模型) + dict_type = db.relationship( + "DictType", backref=db.backref("dict_items", lazy="joined"), lazy="joined" + ) + + def __repr__(self): + return f"" + + def to_dict(self): + """将模型对象转为字典,适配接口返回数据""" + return { + "id": self.id, + "dict_id": self.dict_id, + "item_value": self.item_value, + "item_label": self.item_label, + "sort": self.sort, + "status": self.status, + "remark": self.remark, + "create_time": ( + self.create_time.strftime("%Y-%m-%d %H:%M:%S") + if self.create_time + else None + ), + "update_time": ( + self.update_time.strftime("%Y-%m-%d %H:%M:%S") + if self.update_time + else None + ), + # 关联返回字典类型信息(可选,提升接口易用性) + "dict_code": self.dict_type.dict_code if self.dict_type else None, + "dict_name": self.dict_type.dict_name if self.dict_type else None, + } + + +class FileUpload(db.Model): + """通用文件上传元信息表模型类(对应 file_uploads 表)""" + + __tablename__ = "file_uploads" # 对应 MySQL 表名 + __table_args__ = ( + # 索引定义(与建表语句完全一致) + db.Index("idx_business_type_id", "business_type", "business_id"), + db.Index("idx_create_time", "create_time"), + db.Index("idx_status", "status"), + # 表级属性(与 AccidList 模型格式一致) + { + "mysql_charset": "utf8mb4", + "mysql_collate": "utf8mb4_unicode_ci", + "mysql_engine": "InnoDB", + "mysql_row_format": "DYNAMIC", + }, + ) + + # 核心修正:全用 db.Integer,通过 info 指定 MySQL 底层类型(无参数报错) + id = db.Column( + db.Integer, # 模型层用 int 兼容 + primary_key=True, + autoincrement=True, + info={'mysql_type': 'BIGINT UNSIGNED'}, # 数据库底层仍是 BIGINT UNSIGNED + comment="主键(自增数值ID)", + ) + file_name = db.Column( + db.String(255), nullable=False, comment="原始文件名(如:事故图片1.jpg)" + ) + file_alias = db.Column( + db.String(255), + nullable=False, + comment="存储别名(避免重名,如:20260210_153950_89782.jpg)", + ) + file_path = db.Column( + db.String(512), + nullable=False, + comment="存储路径/访问URL(本地:/uploads/202602/xxx.jpg;OSS:https://xxx.oss-cn-beijing.aliyuncs.com/xxx.jpg)", + ) + file_size = db.Column( + db.Integer, # 模型层用 int 兼容 + nullable=False, + info={'mysql_type': 'BIGINT UNSIGNED'}, # 数据库底层 BIGINT UNSIGNED + comment="文件大小(字节)" + ) + file_type = db.Column( + db.String(50), + nullable=False, + comment="文件MIME类型(如:image/jpeg、image/png)", + ) + business_type = db.Column( + db.String(50), + nullable=True, + default=None, + comment="关联业务类型(如:case=案例、user=用户头像)", + ) + business_id = db.Column( + db.Integer, # 模型层用 int 兼容 + nullable=True, + default=None, + info={'mysql_type': 'BIGINT UNSIGNED'}, # 数据库底层 BIGINT UNSIGNED + comment="关联业务主键(案例ID/用户ID等,初始为NULL)", + ) + create_time = db.Column( + db.DateTime, + nullable=False, + default=func.current_timestamp(), # 对应 DEFAULT CURRENT_TIMESTAMP + comment="上传时间", + ) + create_by = db.Column( + db.String(50), nullable=True, default=None, comment="上传人(用户ID/用户名)" + ) + status = db.Column( + db.Integer, # 模型层用 int 兼容 + nullable=False, + default=1, + info={'mysql_type': 'TINYINT(3) UNSIGNED'}, # 数据库底层 TINYINT(3) UNSIGNED + comment="状态:1=有效,0=逻辑删除", + ) + + def __repr__(self): + """模型字符串表示,便于调试""" + return f"" + + def to_dict(self): + """转为字典,适配接口返回(与 AccidList 模型风格一致)""" + return { + "id": self.id, + "file_name": self.file_name, + "file_alias": self.file_alias, + "file_path": self.file_path, + "file_size": self.file_size, + "file_type": self.file_type, + "business_type": self.business_type, + "business_id": self.business_id, + "create_time": ( + self.create_time.strftime("%Y-%m-%d %H:%M:%S") + if self.create_time + else None + ), + "create_by": self.create_by, + "status": self.status, + "status_text": "有效" if self.status == 1 else "已删除", + } \ No newline at end of file diff --git a/backend/app/services/__init__.py b/backend/app/services/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/services/remote_service.py b/backend/app/services/remote_service.py new file mode 100644 index 0000000..2b7a873 --- /dev/null +++ b/backend/app/services/remote_service.py @@ -0,0 +1,128 @@ +from datetime import datetime, timezone +from flask import current_app +from databricks import sql + + +class DatabricksQuery: + def __init__(self): + """纯Python连接Databricks SQL,无JVM依赖""" + try: + # 读取配置(参数和原代码一致,无需修改) + self.host = current_app.config["DATABRICKS_HOST"] + self.token = current_app.config["DATABRICKS_TOKEN"] + self.cluster_id = current_app.config["CLUSTER_ID"] + + # 校验参数 + if not all([self.host, self.token, self.cluster_id]): + raise ValueError( + "必须配置DATABRICKS_HOST、DATABRICKS_TOKEN、CLUSTER_ID" + ) + + print("Databricks SQL 连接器初始化成功") + except Exception as e: + print(f"初始化失败: {e}") + raise + + # 复用原有参数校验逻辑 + @staticmethod + def _validate_table_name(table_name): + if not table_name or not isinstance(table_name, str): + raise ValueError(f"无效的表名: {table_name}") + if ";" in table_name: + raise ValueError(f"表名包含非法字符 ';': {table_name}") + parts = table_name.split(".") + if len(parts) != 3: + raise ValueError(f"表名格式应为 catalog.schema.table: {table_name}") + + @staticmethod + def _validate_vin(vin): + if vin is None: + return True + if not isinstance(vin, str): + raise ValueError(f"无效的 VIN: {vin} (必须是17位字母数字)") + return True + + def query_table( + self, table_name, vin=None, start_time=None, end_time=None,limit=None + ): + """纯Python查询表数据,无JVM依赖""" + try: + # 验证参数 + self._validate_table_name(table_name) + self._validate_vin(vin) + + # 构建SQL查询语句(替代原PySpark DataFrame操作) + select_fields = """ + Incident__Name AS incident_name, + Incident__description AS incident_description, + Meaning AS meaning, + Signal__Name As signal_name, + incident_time, + oneid, + speed, + int_value, + idc_tickcount_ms, + latitude, + longitude, + mux_data, + gps_heading, + float_value + """ + + sql_query = f"SELECT {select_fields} FROM {table_name}" + where_conditions = [] + + # 拼接过滤条件 + if vin: + where_conditions.append(f"oneid = '{vin}'") + if start_time: + start_dt = self._parse_iso_time(start_time).isoformat() + where_conditions.append(f"incident_time >= '{start_dt}'") + if end_time: + end_dt = self._parse_iso_time(end_time).isoformat() + where_conditions.append(f"incident_time <= '{end_dt}'") + + # 拼接WHERE子句 + if where_conditions: + sql_query += " WHERE " + " AND ".join(where_conditions) + # 拼接LIMIT + if limit is not None: + sql_query += f" LIMIT {limit}" + + # sql_query="select * from hive_metastore.taf_level_two_plus.accident_report_data WHERE oneid = 'LE4LG4GB6SL256937' limit 1" + print(f"查询sql:{sql_query}") + + # 执行SQL(纯Python,无JVM) + with sql.connect( + server_hostname=self.host, + http_path=f"sql/protocolv1/o/3035612432650494/{self.cluster_id}", # 注意路径格式 + access_token=self.token, + ) as connection: + with connection.cursor() as cursor: + cursor.execute(sql_query) + # 获取列名和数据,转换为字典格式(和原代码返回格式一致) + columns = [desc[0] for desc in cursor.description] + results = [] + for row in cursor.fetchall(): + results.append(dict(zip(columns, row))) + return results + + except Exception as e: + print(f"查询失败: {str(e)}") + raise + + # 复用原有时间解析逻辑 + def _parse_iso_time(self, time_str): + try: + if time_str.endswith("Z"): + time_str = time_str[:-1] + "+00:00" + dt = datetime.fromisoformat(time_str) + if dt.tzinfo is None: + dt = dt.replace(tzinfo=timezone.utc) + return dt + except Exception as e: + raise ValueError(f"无效的时间格式 '{time_str}': {str(e)}") + + def stop(self): + # 纯Python连接器无需关闭SparkSession,此处保留方法以兼容原有调用逻辑 + print("Databricks SQL 连接已释放") diff --git a/backend/app/utils.py b/backend/app/utils.py new file mode 100644 index 0000000..458f54f --- /dev/null +++ b/backend/app/utils.py @@ -0,0 +1,115 @@ +import base64 +from datetime import datetime, timezone +import math +from zoneinfo import ZoneInfo +from flask import current_app, json +import numpy as np +from werkzeug.security import generate_password_hash, check_password_hash +import threading # 用于线程安全 +from Crypto.Cipher import AES +from Crypto.Util.Padding import unpad + + +# --- 全局状态管理 --- +# 使用一个简单的标志和锁来确保线程安全 +cluster_ensured_running = False +cluster_check_lock = threading.Lock() + + +def encrypt_password(raw_password: str) -> str: + """加密密码(使用pbkdf2:sha256算法)""" + return generate_password_hash(raw_password, method="pbkdf2:sha256", salt_length=16) + + +def verify_password(encrypted_password: str, raw_password: str) -> bool: + """验证密码""" + return check_password_hash(encrypted_password, raw_password) + + +def convert_incident_time_format(data_list): + for item in data_list: + # 原始数据是Timestamp类型,直接获取 + original_ts = item["incident_time"] + print('original_ts',type(original_ts)) + # 1. 为Timestamp添加原时区(假设原时间是Asia/Shanghai时区,且原始Timestamp无时区) + # 注意:如果Timestamp已有时区,直接跳过localize,用tz_convert即可 + if original_ts.tz is None: # 检查是否已有时区 + original_tz_ts = original_ts.tz_localize(ZoneInfo("Asia/Shanghai")) + else: + original_tz_ts = original_ts # 已有时区则直接使用 + + # 2. 转换为UTC时区 + utc_ts = original_tz_ts.tz_convert(ZoneInfo("UTC")) + + # 3. 格式化输出目标格式(添加T、毫秒和时区标识) + target_str = utc_ts.strftime("%Y-%m-%dT%H:%M:%S") + ".000+0000" + + # 更新字段 + item["incident_time"] = target_str + + + # 处理NaN的值 + # processed_data = {} + for key, value in item.items(): + # 检查当前值是否为NaN(仅针对数值类型) + if isinstance(value, (int, float)): # 确保是数值类型 + # 判断是否为NaN(同时兼容math.nan和np.nan) + if math.isnan(value) or np.isnan(value): + item[key] = None + else: + item[key] = value + else: + # 非数值类型(如字符串、None等)直接保留 + item[key] = value + + return data_list + +# gen5的车码查询前替换为真实的车码 +def mask_vin(real_vin): + id_str = real_vin[-6:] + if not id_str.isdigit(): + print('The last six digits of vin:%s are not numbers!' % real_vin) + return real_vin + masked_id = '' + add = 0 + total = 0 + mapping = { + 73: 88, + 79: 89, + 81: 90, + } + for i in id_str: + total += int(i) + for i in id_str: + add += total + 2 + c = int(i) + 65 + add % 13 + if c in [73, 79, 81]: + c = mapping[c] + masked_id += chr(c) + + masked_vin = real_vin[:-6] + masked_id[::-1] + + return masked_vin + + +def decrypt_code(encrypted_data): + try: + raw_key=current_app.config['HEADERS_SECRET_KEY'] + key_bytes=raw_key.encode('utf-8')[:16] + if len(key_bytes)<16: + key_bytes=key_bytes.ljust(16,b"0") + + combined=base64.b64decode(encrypted_data) + iv_byte=combined[:16] + ct_byte=combined[16:] + + ciper=AES.new(key_bytes,AES.MODE_CBC,iv=iv_byte) + des_padd=ciper.decrypt(ct_byte) + + desrypt_res=unpad(des_padd,AES.block_size) + + return desrypt_res.decode('utf-8') + + except Exception as e: + print('解析失败') + return None \ No newline at end of file diff --git a/backend/entrypoint.sh b/backend/entrypoint.sh new file mode 100644 index 0000000..f8cfe93 --- /dev/null +++ b/backend/entrypoint.sh @@ -0,0 +1,58 @@ +#!/bin/bash +set -e # 出错立即退出 + +# 1. 验证关键配置 +echo "验证关键配置..." +[ -z "$DATABASE_URL" ] && echo "ERROR: 缺少 DATABASE_URL!" && exit 1 +[ -z "$DATABRICKS_HOST" ] && echo "ERROR: 缺少 DATABRICKS_HOST!" && exit 1 +[ -z "$DATABRICKS_TOKEN" ] && echo "ERROR: 缺少 DATABRICKS_TOKEN!" && exit 1 +[ -z "$DATABRICKS_CLUSTER_ID" ] && echo "ERROR: 缺少 DATABRICKS_CLUSTER_ID!" && exit 1 +[ -z "$JWT_SECRET_KEY" ] && echo "ERROR: 缺少 JWT_SECRET_KEY!" && exit 1 +[ -z "$SECRET_KEY" ] && echo "ERROR: 缺少 SECRET_KEY!" && exit 1 +echo "✅ 关键配置验证通过" + +# 2. 激活虚拟环境 +echo "激活虚拟环境..." +. /app/venv/bin/activate +echo "✅ 虚拟环境已激活" + +# 3. 创建databricks-connect配置目录 +echo "创建配置目录..." +mkdir -p /home/appuser/.databricks-connect +echo "✅ 配置目录创建完成" + +# 4. 生成配置文件(非交互式) +echo "生成databricks-connect配置文件..." +cat > /home/appuser/.databricks-connect/config << EOF +[DEFAULT] +host = $DATABRICKS_HOST +token = $DATABRICKS_TOKEN +cluster_id = $DATABRICKS_CLUSTER_ID +port = 15001 +accept_eula = yes +EOF +echo "✅ 配置文件生成完成" + +# 5. 设置必要的环境变量 +echo "设置环境变量..." +export SPARK_HOME="$(dirname $(which python))/../lib/python3.12/site-packages/pyspark" +export DATABRICKS_HOST="$DATABRICKS_HOST" +export DATABRICKS_TOKEN="$DATABRICKS_TOKEN" +export DATABRICKS_CLUSTER_ID="$DATABRICKS_CLUSTER_ID" +export DATABRICKS_PORT=15001 +export PATH="$PATH:/app/venv/bin" +echo "✅ 环境变量设置完成" +echo "SPARK_HOME=$SPARK_HOME" + +# 6. 验证配置 +echo "验证 databricks-connect 配置..." +if databricks-connect test; then + echo "✅ databricks-connect 配置验证成功" +else + echo "❌ databricks-connect 配置验证失败,但继续启动服务..." + # 这里不退出,因为有时测试会失败但实际连接是正常的 +fi + +# 7. 启动 Flask 服务 +echo "启动 Flask 服务..." +exec gunicorn --bind 0.0.0.0:5221 --workers 14 --timeout 600 "$FLASK_APP" \ No newline at end of file diff --git a/backend/init_db.py b/backend/init_db.py new file mode 100644 index 0000000..8b58e38 --- /dev/null +++ b/backend/init_db.py @@ -0,0 +1,20 @@ +"""初始化数据库:根据 app/models.py 中的模型自动创建全部表。 + +用法(在 backend 目录,已激活 .venv): + python init_db.py + +说明: +- 会连接 app/config.py 中当前环境(默认 development)配置的数据库。 +- MySQL 需先手动建库:CREATE DATABASE incid_db ...(见 schema.sql 第一行)。 +- 若使用 SQLite(见 README/说明),无需提前建库,运行本脚本即可生成表。 +""" +from app import create_app, db +import app.models # noqa: F401 确保所有模型注册到 metadata + +app = create_app() +with app.app_context(): + db.create_all() + tables = sorted(db.metadata.tables.keys()) + print("数据库初始化完成,已创建/校验以下表:") + for name in tables: + print(" -", name) diff --git a/backend/logs/app.log b/backend/logs/app.log new file mode 100644 index 0000000..e69de29 diff --git a/backend/prod.env b/backend/prod.env new file mode 100644 index 0000000..b9829fd --- /dev/null +++ b/backend/prod.env @@ -0,0 +1,32 @@ +# 集群配置 +DATABRICKS_TOKEN=dapi188523cfb1cf34ad5a605fd75c5c0d31 +CLUSTER_ID=1203-054146-wkjf95i0 +DATABRICKS_HOST=https://adb-3035612432650494.2.databricks.azure.cn + +# gen5 spark表的配置 +GEN5_TABLE_NAME=hive_metastore.taf_level_two_plus.accident_report_data + +# JWT配置 +JWT_SECRET_KEY=dev_mb_project_2025_xyz123 # 开发环境可随意,生产环境需复杂密钥 +SECRET_KEY=dev_mb_2025_abc789 + +# 数据库配置 +DATABASE_URL=mysql+pymysql://root:V2OuCHPL%40changeit@10.200.10.193:3306/incid_db?charset=utf8mb4 + +# oauth2配置 +CLIENT_ID=B7E86ADC-A8F7-4462-87FC-A04DFDF3C58F +CLIENT_PASSWORD=AWd408ETS_V~j-yt.763P1D9ovC25fbe + +SS0_HOST=https://ssoalpha.dvb.corpinter.net.cn/ +# 授权成功后,SSO 服务器重定向回你的应用的地址 (必须与 SSO 服务器上配置的一致) +REDIRECT_URL=http://150.158.236.152:5221/incident/authorized +# 用户登录成功后,最终重定向到的前端页面地址 +DOMAIN=http://150.158.236.152:5000 + +# 图片上传的配置 +UPLOAD_FOLDER=/app/uploads +MAX_CONTENT_LENGTH=5242880 +IMAGE_BASE_URL=http://150.158.236.152:5221 + +# 前端请求头的key +HEADERS_SECRET_KEY=mbincid-server12 \ No newline at end of file diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 0000000..632be05 Binary files /dev/null and b/backend/requirements.txt differ diff --git a/backend/run.py b/backend/run.py new file mode 100644 index 0000000..1129d89 --- /dev/null +++ b/backend/run.py @@ -0,0 +1,28 @@ +# run.py(仅用于开发测试) +import os + +from flask import current_app, send_from_directory +from app import create_app + + +# 开发环境配置(启用 DEBUG、自动重载等) +app = create_app() + +@app.route('/uploads/') +def serve_uploads(filename): + """静态资源路由:允许访问/uploads下的所有文件""" + return send_from_directory(current_app.config['UPLOAD_FOLDER'], filename) + + +if __name__ == "__main__": + # Flask 自带开发服务器:支持自动重载、调试日志 + app.run( + host="0.0.0.0", # 允许外部访问 + port=5221, # 端口(与 Gunicorn 配置一致,便于测试) + debug=True, # 开发模式:自动重载、显示错误详情 + use_reloader=True, # 代码修改后自动重启 + ) + + # app.run(host="0.0.0.0", port=5221, debug=False) + + diff --git a/backend/schema.sql b/backend/schema.sql new file mode 100644 index 0000000..1b69174 --- /dev/null +++ b/backend/schema.sql @@ -0,0 +1,144 @@ +-- 自动生成:incid_db 建库建表脚本 +CREATE DATABASE IF NOT EXISTS incid_db DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +USE incid_db; + +CREATE TABLE accid_list ( + id INTEGER NOT NULL COMMENT '主键ID,自增' AUTO_INCREMENT, + ticket_id VARCHAR(50) NOT NULL COMMENT '工单ID', + model VARCHAR(100) COMMENT '型号', + vin VARCHAR(50) NOT NULL COMMENT '车辆识别码(VIN)', + creator VARCHAR(50) NOT NULL COMMENT '创建人(用户名,如ZHANMEN)', + create_time DATETIME NOT NULL COMMENT '工单新建时间', + occur_datetime DATETIME NOT NULL COMMENT '问题发生时间', + case_description TEXT NOT NULL COMMENT 'Case描述', + fo_solution TEXT NOT NULL COMMENT 'Fo解答', + category VARCHAR(100) NOT NULL COMMENT '分类', + keywords VARCHAR(200) NOT NULL COMMENT '关键词(多个用逗号分隔)', + handle_status VARCHAR(20) COMMENT '处理状态:已完成/未完成', + create_at DATETIME COMMENT '记录插入数据库时间', + update_at DATETIME COMMENT '记录最后更新时间', + bmbs_name VARCHAR(50) COMMENT 'BMBS联系人', + accident_level ENUM('P1','P2','P3') COMMENT '事故评级', + rdca_reporter VARCHAR(50) COMMENT 'RDCA报告人', + carline VARCHAR(100) COMMENT '车系(关联字典表dict_code=carline)', + software_version VARCHAR(50) COMMENT '软件版本', + labels VARCHAR(100) COMMENT '事故类型标签(关联字典表dict_code=labels)', + attachment_url VARCHAR(255) COMMENT '附件地址(多个用逗号分隔)', + assignee_name VARCHAR(50) COMMENT '经办人(关联字典表/用户表)', + affects_versions VARCHAR(100) COMMENT '受影响的版本(关联字典表dict_code=affects_versions)', + components VARCHAR(100) COMMENT '零部件/组件(关联字典表dict_code=components)', + fix_versions VARCHAR(100) COMMENT '修复方案对应的版本(关联字典表dict_code=fix_versions)', + subtasks VARCHAR(200) NOT NULL COMMENT '子任务(多个用逗号分隔)', + linked_work_items VARCHAR(200) NOT NULL COMMENT '关联的工作项(格式:类型:ID,类型:ID)', + descriptions VARCHAR(255) NOT NULL COMMENT '补充描述(区别于case_description)', + mviz_link VARCHAR(255) NOT NULL COMMENT 'mviz的链接', + system_function VARCHAR(255) NOT NULL COMMENT 'system_function字段', + image_ids VARCHAR(255) NOT NULL COMMENT '关联图片ID串,逗号分隔(如:1,2,3)', + PRIMARY KEY (id) +)CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC ENGINE=InnoDB COLLATE utf8mb4_unicode_ci; +CREATE INDEX idx_carline ON accid_list (carline); +CREATE INDEX idx_labels ON accid_list (labels); +CREATE INDEX idx_components ON accid_list (components); +CREATE INDEX idx_ticket_id ON accid_list (ticket_id); +CREATE INDEX idx_affects_versions ON accid_list (affects_versions); +CREATE INDEX idx_accident_level ON accid_list (accident_level); +CREATE INDEX idx_create_time ON accid_list (create_time); +CREATE INDEX idx_fix_versions ON accid_list (fix_versions); +CREATE INDEX idx_creator ON accid_list (creator); +CREATE INDEX idx_assignee_name ON accid_list (assignee_name); + +CREATE TABLE dict_type ( + id INTEGER NOT NULL COMMENT '主键ID' AUTO_INCREMENT, + dict_code VARCHAR(50) NOT NULL COMMENT '字典编码(对应accid_list的字段名,如carline、labels)', + dict_name VARCHAR(50) NOT NULL COMMENT '字典名称(字段中文名称,如车系、事故类型)', + remark VARCHAR(200) COMMENT '备注(如“事故工单-车系下拉选项”)', + status INTEGER NOT NULL COMMENT '状态:1-启用,0-禁用', + create_time DATETIME COMMENT '创建时间', + update_time DATETIME COMMENT '更新时间', + PRIMARY KEY (id), + CONSTRAINT uk_dict_code UNIQUE (dict_code) +)CHARSET=utf8mb4 ENGINE=InnoDB COMMENT='字典类型表(管理需要下拉的字段)' ROW_FORMAT=Dynamic COLLATE utf8mb4_unicode_ci; + +CREATE TABLE file_uploads ( + id INTEGER NOT NULL COMMENT '主键(自增数值ID)' AUTO_INCREMENT, + file_name VARCHAR(255) NOT NULL COMMENT '原始文件名(如:事故图片1.jpg)', + file_alias VARCHAR(255) NOT NULL COMMENT '存储别名(避免重名,如:20260210_153950_89782.jpg)', + file_path VARCHAR(512) NOT NULL COMMENT '存储路径/访问URL(本地:/uploads/202602/xxx.jpg;OSS:https://xxx.oss-cn-beijing.aliyuncs.com/xxx.jpg)', + file_size INTEGER NOT NULL COMMENT '文件大小(字节)', + file_type VARCHAR(50) NOT NULL COMMENT '文件MIME类型(如:image/jpeg、image/png)', + business_type VARCHAR(50) COMMENT '关联业务类型(如:case=案例、user=用户头像)', + business_id INTEGER COMMENT '关联业务主键(案例ID/用户ID等,初始为NULL)', + create_time DATETIME NOT NULL COMMENT '上传时间', + create_by VARCHAR(50) COMMENT '上传人(用户ID/用户名)', + status INTEGER NOT NULL COMMENT '状态:1=有效,0=逻辑删除', + PRIMARY KEY (id) +)CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC ENGINE=InnoDB COLLATE utf8mb4_unicode_ci; +CREATE INDEX idx_business_type_id ON file_uploads (business_type, business_id); +CREATE INDEX idx_create_time ON file_uploads (create_time); +CREATE INDEX idx_status ON file_uploads (status); + +CREATE TABLE users ( + id INTEGER NOT NULL AUTO_INCREMENT, + username VARCHAR(50) NOT NULL, + password VARCHAR(255) NOT NULL, + status INTEGER COMMENT '用户状态:1-正常,0-禁用', + created_at DATETIME COMMENT '创建时间', + updated_at DATETIME COMMENT '更新时间', + email VARCHAR(255) COMMENT '邮箱', + avatar VARCHAR(255) COMMENT '头像(通常存储图片URL)', + region VARCHAR(255) COMMENT '国家地区', + phone VARCHAR(255) COMMENT '电话', + brief VARCHAR(255) COMMENT '个人简介', + third_party_account VARCHAR(255) COMMENT '第三方账号(如微信、QQ等)', + position VARCHAR(255) COMMENT '职务', + department VARCHAR(255) COMMENT '部门', + label VARCHAR(255) COMMENT '个人标签(多个标签可逗号分隔)', + created_by INTEGER, + updated_by INTEGER, + PRIMARY KEY (id), + UNIQUE (username), + FOREIGN KEY(created_by) REFERENCES users (id), + FOREIGN KEY(updated_by) REFERENCES users (id) +); + +CREATE TABLE dict_item ( + id INTEGER NOT NULL COMMENT '主键ID' AUTO_INCREMENT, + dict_id INTEGER NOT NULL COMMENT '关联字典类型表的ID', + item_value VARCHAR(100) NOT NULL COMMENT '选项值(存储到accid_list的实际值,如“大众帕萨特”“P1”)', + item_label VARCHAR(100) NOT NULL COMMENT '选项标签(前端显示的文本,如“大众帕萨特(车系)”)', + sort INTEGER COMMENT '排序号(前端下拉框显示顺序,数字越小越靠前)', + status INTEGER NOT NULL COMMENT '状态:1-启用,0-禁用(禁用后前端不显示)', + remark VARCHAR(200) COMMENT '备注(如“2025款帕萨特专属”)', + create_time DATETIME COMMENT '创建时间', + update_time DATETIME COMMENT '更新时间', + PRIMARY KEY (id), + FOREIGN KEY(dict_id) REFERENCES dict_type (id) +)CHARSET=utf8mb4 ENGINE=InnoDB COMMENT='字典项表(管理每个字段的具体下拉选项)' ROW_FORMAT=Dynamic COLLATE utf8mb4_unicode_ci; +CREATE INDEX idx_item_value ON dict_item (item_value); +CREATE INDEX idx_dict_id ON dict_item (dict_id); + +CREATE TABLE roles ( + id INTEGER NOT NULL AUTO_INCREMENT, + name VARCHAR(50) NOT NULL COMMENT '角色名称', + description VARCHAR(255) COMMENT '角色描述', + status INTEGER COMMENT '状态:1-启用,0-禁用', + created_at DATETIME, + updated_at DATETIME, + created_by INTEGER, + updated_by INTEGER, + PRIMARY KEY (id), + UNIQUE (name), + FOREIGN KEY(created_by) REFERENCES users (id), + FOREIGN KEY(updated_by) REFERENCES users (id) +); + +CREATE TABLE user_roles ( + user_id INTEGER NOT NULL, + role_id INTEGER NOT NULL, + created_at DATETIME, + created_by INTEGER, + PRIMARY KEY (user_id, role_id), + FOREIGN KEY(user_id) REFERENCES users (id), + FOREIGN KEY(role_id) REFERENCES roles (id), + FOREIGN KEY(created_by) REFERENCES users (id) +); diff --git a/default.conf b/default.conf new file mode 100644 index 0000000..6757e5a --- /dev/null +++ b/default.conf @@ -0,0 +1,60 @@ +server { + listen 80; + server_name 150.158.236.152; + client_max_body_size 100M; + # root /usr/share/nginx/html; + include /etc/nginx/mime.types; + + # 处理OPTIONS请求 + # location / { + # if ($request_method = 'OPTIONS') { + # add_header 'Access-Control-Allow-Origin' '*' always; + # add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always; + # add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization' always; + # add_header 'Access-Control-Max-Age' 1728000 always; + # add_header 'Content-Type' 'text/plain; charset=utf-8' always; + # add_header 'Content-Length' 0 always; + # return 204; + # } + # try_files $uri $uri/ /index.html; + # } + + location / { + root /usr/share/nginx/html; # 末尾无斜杠 + try_files $uri $uri/ /index.html; + } + + + location /accidentportal/ { + rewrite ^/accidentportal/(.*)$ /$1 last; + + } + + # 修复API代理 + location /accidentportal/api/ { + # rewrite ^/api(.*)$ $1 break; + # proxy_pass http://150.158.236.152:5221/; # 注意结尾斜杠 + proxy_buffer_size 128k; + proxy_buffers 16 128k; + proxy_busy_buffers_size 256k; + proxy_max_temp_file_size 1024m; + + proxy_pass http://172.17.0.1:5221/accidentportal/api/; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Forwarded-Host $host; + + proxy_connect_timeout 300s; + proxy_send_timeout 300s; + proxy_read_timeout 300s; + + # 关键:Cookie处理 + proxy_cookie_path / "/; SameSite=Lax"; + } +} + + + + diff --git a/frontend/.commitlintrc b/frontend/.commitlintrc new file mode 100644 index 0000000..ace5fdc --- /dev/null +++ b/frontend/.commitlintrc @@ -0,0 +1,23 @@ +{ + "extends": ["@commitlint/config-conventional"], + "rules": { + "type-enum": [ + 2, + "always", + [ + "init", + "build", + "ci", + "chore", + "docs", + "feat", + "fix", + "perf", + "refactor", + "revert", + "style", + "test" + ] + ] + } +} diff --git a/frontend/.env b/frontend/.env new file mode 100644 index 0000000..301828f --- /dev/null +++ b/frontend/.env @@ -0,0 +1,4 @@ +VITE_APP_NAME=Backend +VITE_APP_BASE=/ +VITE_APP_BASE_API=/api +VITE_APP_LOAD_ROUTE_WAY=BACKEND diff --git a/frontend/.env.development b/frontend/.env.development new file mode 100644 index 0000000..08b0e4b --- /dev/null +++ b/frontend/.env.development @@ -0,0 +1,22 @@ +VITE_APP_BASE_API=/accidentportal/api +VITE_APP_BASE_URL=http://localhost:5221 + +VITE_APP_LOAD_ROUTE_WAY=FRONTEND + +VITE_APP_BASE_API_DEV=/api +VITE_APP_BASE_URL_DEV=http://localhost:5221 + +# The title of your application (string) +VITE_GLOB_APP_TITLE="RDCA_Incidents Data Portal" + +# 标记为测试环境 +VITE_ENV=test + +# 登录跳转 +VITE_LOGIN_URL = http://localhost:5221/accidentportal/user/login + +# 请求头的密钥 +VITE_APP_CHECK_KEY = 'mbincid-server12' + +# 前端配置域名加的前缀名 +VITE_APP_DOMAIN_PREFIX='accidentportal' \ No newline at end of file diff --git a/frontend/.env.production b/frontend/.env.production new file mode 100644 index 0000000..3b64fdd --- /dev/null +++ b/frontend/.env.production @@ -0,0 +1,14 @@ +VITE_APP_BASE_API=/accidentportal/api +VITE_APP_BASE_URL=http://150.158.236.152:5221 +# The title of your application (string) +VITE_GLOB_APP_TITLE="RDCA_Incidents Data Portal" + +# 登录跳转 +# VITE_LOGIN_URL = http://150.158.236.152:5221/login +VITE_LOGIN_URL = http://150.158.236.152:5221/accidentportal/api/user/login + +# 请求头的密钥 +VITE_APP_CHECK_KEY = 'mbincid-server12' + +# 前端配置域名加的前缀名 +VITE_APP_DOMAIN_PREFIX = 'accidentportal' \ No newline at end of file diff --git a/frontend/.github/FUNDING.yml b/frontend/.github/FUNDING.yml new file mode 100644 index 0000000..60ed5f8 --- /dev/null +++ b/frontend/.github/FUNDING.yml @@ -0,0 +1,5 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +open_collective: antdv-pro +custom: ['https://docs.antdv-pro.com/other/sponsor.html'] diff --git a/frontend/.github/workflows/deploy.yml b/frontend/.github/workflows/deploy.yml new file mode 100644 index 0000000..e1b0e77 --- /dev/null +++ b/frontend/.github/workflows/deploy.yml @@ -0,0 +1,30 @@ +name: deploy + +on: + push: + branches: + - main +jobs: + DEPLOY: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: pnpm/action-setup@v2 + - uses: actions/setup-node@v3 + with: + node-version: 20.x + cache: pnpm + + - name: Install + run: pnpm install --no-frozen-lockfile + + - name: Build + run: pnpm run build + + - name: Deploy + uses: SamKirkland/FTP-Deploy-Action@v4.3.4 + with: + server: ${{ secrets.FTP_HOST }} # e.g. ftp.host.com or sftp.host.com (without ftp:// or ftps://) + username: ${{ secrets.FTP_USERNAME }} # FTP username + password: ${{ secrets.FTP_PASSWORD }} # FTP password + local-dir: dist/ # optional, local path, default is: dist diff --git a/frontend/.github/workflows/issue-close.yml b/frontend/.github/workflows/issue-close.yml new file mode 100644 index 0000000..3072a30 --- /dev/null +++ b/frontend/.github/workflows/issue-close.yml @@ -0,0 +1,20 @@ +name: Issue Close Require + +on: + schedule: + - cron: '0 0 * * *' + +jobs: + close-issues: + runs-on: ubuntu-latest + steps: + - name: need reproduce + uses: actions-cool/issues-helper@v1.7 + with: + actions: close-issues + labels: 🤔 Need Reproduce + inactive-day: 7 + body: | + Since the issue was labeled with `Need Reproduce`, but no response in 7 days. This issue will be closed. If you have any questions, you can comment and reply. + + 由于该 issue 被标记为需要复现信息,却 7 天未收到回应。现关闭 issue,若有任何问题,可评论回复。 diff --git a/frontend/.github/workflows/lint.yml b/frontend/.github/workflows/lint.yml new file mode 100644 index 0000000..2640a3f --- /dev/null +++ b/frontend/.github/workflows/lint.yml @@ -0,0 +1,27 @@ +name: Lint + +on: + push: + branches: + - main + + pull_request: + branches: + - main + +jobs: + LINT: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: pnpm/action-setup@v2 + - uses: actions/setup-node@v3 + with: + node-version: 20.x + cache: pnpm + + - name: Install + run: pnpm install --no-frozen-lockfile + + - name: Lint + run: pnpm run lint diff --git a/frontend/.github/workflows/release.yml b/frontend/.github/workflows/release.yml new file mode 100644 index 0000000..f2c2f80 --- /dev/null +++ b/frontend/.github/workflows/release.yml @@ -0,0 +1,25 @@ +name: Release + +permissions: + contents: write + +on: + push: + tags: + - 'v*' + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - uses: actions/setup-node@v3 + with: + node-version: 20.x + + - run: npx changelogithub # or changelogithub@0.12 if ensure the stable result + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/frontend/.husky/commit-msg b/frontend/.husky/commit-msg new file mode 100644 index 0000000..ee0f601 --- /dev/null +++ b/frontend/.husky/commit-msg @@ -0,0 +1,3 @@ +echo "husky commit-msg-lint start" +npx --no -- commitlint --edit "" +echo "husky commit-msg-lint end" diff --git a/frontend/.husky/pre-commit b/frontend/.husky/pre-commit new file mode 100644 index 0000000..3d5982c --- /dev/null +++ b/frontend/.husky/pre-commit @@ -0,0 +1,3 @@ +echo "husky lint-staged start" +npx lint-staged +echo "husky lint-staged end" diff --git a/frontend/.npmrc b/frontend/.npmrc new file mode 100644 index 0000000..89666ea --- /dev/null +++ b/frontend/.npmrc @@ -0,0 +1,4 @@ +public-hoist-pattern[]=@vue/runtime-core +public-hoist-pattern[]=eslint-* +public-hoist-pattern[]=@typescript-eslint* +package-manager-strict=false \ No newline at end of file diff --git a/frontend/CHANGELOG.md b/frontend/CHANGELOG.md new file mode 100644 index 0000000..7cd1e3a --- /dev/null +++ b/frontend/CHANGELOG.md @@ -0,0 +1,1374 @@ +# Changelog + + +## v1.4.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.3.2...v1.4.0) + +### 🚀 Enhancements + +- Use mock-h3 replace nitro ([33e1ff7](https://github.com/antdv-pro/antdv-pro/commit/33e1ff7)) + +### 🩹 Fixes + +- The newly added tag theme is not working on the dark background of the personal center ([27cb016](https://github.com/antdv-pro/antdv-pro/commit/27cb016)) + +### 🏡 Chore + +- **release:** V1.3.2 ([71529e3](https://github.com/antdv-pro/antdv-pro/commit/71529e3)) +- I18n ally ext's config compatibility,remove vite v6 invalid opts ([f995df2](https://github.com/antdv-pro/antdv-pro/commit/f995df2)) +- Use rolldown-vite build project ([91e9091](https://github.com/antdv-pro/antdv-pro/commit/91e9091)) + +### ❤️ Contributors + +- Aibayanyu20 +- ZhouWei <1244620067@qq.com> +- 阿鸡艾克斯蒙 + +## v1.3.2 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.3.1...v1.3.2) + +### 🩹 Fixes + +- Fix multi tab animation not effect ([03540a0](https://github.com/antdv-pro/antdv-pro/commit/03540a0)) +- Dark mode refresh not effect close #208 ([#208](https://github.com/antdv-pro/antdv-pro/issues/208)) +- Mobile sider logo background not has bg close #207 ([#207](https://github.com/antdv-pro/antdv-pro/issues/207)) + +### 🏡 Chore + +- **release:** V1.3.1 ([134444a](https://github.com/antdv-pro/antdv-pro/commit/134444a)) +- Change compactAlgorithm default value ([4b4d66d](https://github.com/antdv-pro/antdv-pro/commit/4b4d66d)) +- Update deps ([6690973](https://github.com/antdv-pro/antdv-pro/commit/6690973)) +- Change vite config ([6020a51](https://github.com/antdv-pro/antdv-pro/commit/6020a51)) + +### ❤️ Contributors + +- Aibayanyu20 + +## v1.3.1 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.3.0...v1.3.1) + +### 🩹 Fixes + +- Fix menu transition close #197 ([#197](https://github.com/antdv-pro/antdv-pro/issues/197)) +- Fix theme ([479ac5f](https://github.com/antdv-pro/antdv-pro/commit/479ac5f)) +- First load compactAlgorithm not effect close #204 ([#204](https://github.com/antdv-pro/antdv-pro/issues/204)) +- Fix scroller layout override ([626579f](https://github.com/antdv-pro/antdv-pro/commit/626579f)) + +### 🏡 Chore + +- Update vue3.5 ([3715bae](https://github.com/antdv-pro/antdv-pro/commit/3715bae)) +- Update deps ([a9175e5](https://github.com/antdv-pro/antdv-pro/commit/a9175e5)) +- Change ts version ([f81e1c6](https://github.com/antdv-pro/antdv-pro/commit/f81e1c6)) +- Change Andtv-Pro to Antdv-Pro ([3b97af4](https://github.com/antdv-pro/antdv-pro/commit/3b97af4)) +- Update deps ([341becb](https://github.com/antdv-pro/antdv-pro/commit/341becb)) + +### ❤️ Contributors + +- Aibayanyu20 +- 红烧粽子 ([@songsong0707](http://github.com/songsong0707)) + +## v1.3.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.1.0...v1.3.0) + +### 🚀 Enhancements + +- Add gray mode ([5d43b13](https://github.com/antdv-pro/antdv-pro/commit/5d43b13)) +- Add afterQuery fn for `table-query.ts` ([0503a37](https://github.com/antdv-pro/antdv-pro/commit/0503a37)) +- Change multi tab placeholder height calculation ([f3393d9](https://github.com/antdv-pro/antdv-pro/commit/f3393d9)) +- Add info ([492461c](https://github.com/antdv-pro/antdv-pro/commit/492461c)) +- Add info ([92268fb](https://github.com/antdv-pro/antdv-pro/commit/92268fb)) + +### 🩹 Fixes + +- Fix not has page container fuild not support ([78a41cf](https://github.com/antdv-pro/antdv-pro/commit/78a41cf)) +- Change ([51ce087](https://github.com/antdv-pro/antdv-pro/commit/51ce087)) +- Fix title style in slider logo #152 ([#152](https://github.com/antdv-pro/antdv-pro/issues/152)) +- Fix page container is fast switch close #157 ([#157](https://github.com/antdv-pro/antdv-pro/issues/157)) +- **types:** Fix table query hook types ([169e9d5](https://github.com/antdv-pro/antdv-pro/commit/169e9d5)) +- **types:** Fix tsc error ([59ced75](https://github.com/antdv-pro/antdv-pro/commit/59ced75)) +- Query typo ([ba21d97](https://github.com/antdv-pro/antdv-pro/commit/ba21d97)) +- Typo ([6e9930d](https://github.com/antdv-pro/antdv-pro/commit/6e9930d)) +- Profile menu icon ([1b4399d](https://github.com/antdv-pro/antdv-pro/commit/1b4399d)) +- I18n-ally extension setting ([fe1d87b](https://github.com/antdv-pro/antdv-pro/commit/fe1d87b)) +- Multi-tab width error ([f6e7312](https://github.com/antdv-pro/antdv-pro/commit/f6e7312)) +- Change ext ([63f0818](https://github.com/antdv-pro/antdv-pro/commit/63f0818)) +- Attribute definition error ([2206646](https://github.com/antdv-pro/antdv-pro/commit/2206646)) +- **function:** Fix 菜单手风琴模式,子菜单未能按手风琴模式进行展开/收起; ([330d5b1](https://github.com/antdv-pro/antdv-pro/commit/330d5b1)) +- Fix split multi tab close #172 ([#172](https://github.com/antdv-pro/antdv-pro/issues/172)) +- Fixed multi tab display error close #173 ([#173](https://github.com/antdv-pro/antdv-pro/issues/173)) +- Fix error ([c6bba82](https://github.com/antdv-pro/antdv-pro/commit/c6bba82)) +- Jump page is blank close #168 ([#168](https://github.com/antdv-pro/antdv-pro/issues/168)) +- Jump page blank & support page multi page ([372dae9](https://github.com/antdv-pro/antdv-pro/commit/372dae9)) +- Keep alive is not effect ([e310c7c](https://github.com/antdv-pro/antdv-pro/commit/e310c7c)) +- Transition ([db9bd34](https://github.com/antdv-pro/antdv-pro/commit/db9bd34)) +- Dynamic router is multi render ([fd0b825](https://github.com/antdv-pro/antdv-pro/commit/fd0b825)) +- Close #179 ([#179](https://github.com/antdv-pro/antdv-pro/issues/179)) +- Watermark render ([b0fd3b8](https://github.com/antdv-pro/antdv-pro/commit/b0fd3b8)) +- Watermark container ([36c6121](https://github.com/antdv-pro/antdv-pro/commit/36c6121)) +- Watermark false render ([13123bf](https://github.com/antdv-pro/antdv-pro/commit/13123bf)) +- Watermark false render ([663ec59](https://github.com/antdv-pro/antdv-pro/commit/663ec59)) +- 前端路由(dynamicRoutes)权限问题 ([a8e9623](https://github.com/antdv-pro/antdv-pro/commit/a8e9623)) +- Eslint ([a53e1ef](https://github.com/antdv-pro/antdv-pro/commit/a53e1ef)) + +### 📖 Documentation + +- Word spelling mistake ([b5ce8e6](https://github.com/antdv-pro/antdv-pro/commit/b5ce8e6)) +- Add support ([afaaef9](https://github.com/antdv-pro/antdv-pro/commit/afaaef9)) + +### 🏡 Chore + +- **release:** V1.1.0 ([ee4ac82](https://github.com/antdv-pro/antdv-pro/commit/ee4ac82)) +- Update deps ([a29c25c](https://github.com/antdv-pro/antdv-pro/commit/a29c25c)) +- Change ([5872282](https://github.com/antdv-pro/antdv-pro/commit/5872282)) +- Update deps ([55672d6](https://github.com/antdv-pro/antdv-pro/commit/55672d6)) +- Update deps ([2a2a29f](https://github.com/antdv-pro/antdv-pro/commit/2a2a29f)) +- Update deps ([722c5cd](https://github.com/antdv-pro/antdv-pro/commit/722c5cd)) +- Change ([5d59e94](https://github.com/antdv-pro/antdv-pro/commit/5d59e94)) +- Change ([8240b0c](https://github.com/antdv-pro/antdv-pro/commit/8240b0c)) +- Update deps ([c84c6e8](https://github.com/antdv-pro/antdv-pro/commit/c84c6e8)) +- Update deps ([b9cb20b](https://github.com/antdv-pro/antdv-pro/commit/b9cb20b)) +- Change ([9b66e0a](https://github.com/antdv-pro/antdv-pro/commit/9b66e0a)) +- Update vue-tsc to v2 ([12b6ab7](https://github.com/antdv-pro/antdv-pro/commit/12b6ab7)) +- Update deps ([5507f3c](https://github.com/antdv-pro/antdv-pro/commit/5507f3c)) +- Change ([4a0fb25](https://github.com/antdv-pro/antdv-pro/commit/4a0fb25)) +- Change ([2118246](https://github.com/antdv-pro/antdv-pro/commit/2118246)) +- Update deps ([3df11aa](https://github.com/antdv-pro/antdv-pro/commit/3df11aa)) +- Update deps ([81009b7](https://github.com/antdv-pro/antdv-pro/commit/81009b7)) +- Add js version ([9f2d91f](https://github.com/antdv-pro/antdv-pro/commit/9f2d91f)) +- Change ([abeb40f](https://github.com/antdv-pro/antdv-pro/commit/abeb40f)) +- Change ([9105c8f](https://github.com/antdv-pro/antdv-pro/commit/9105c8f)) +- Loading adjusting capitalization ([c3711e2](https://github.com/antdv-pro/antdv-pro/commit/c3711e2)) +- Comply with rules ([efa67cd](https://github.com/antdv-pro/antdv-pro/commit/efa67cd)) +- **release:** V1.2.0 ([0c8f53a](https://github.com/antdv-pro/antdv-pro/commit/0c8f53a)) +- Update deps ([ffde71a](https://github.com/antdv-pro/antdv-pro/commit/ffde71a)) +- Update generate-route.ts ([e371be3](https://github.com/antdv-pro/antdv-pro/commit/e371be3)) +- Remove qr ([678c328](https://github.com/antdv-pro/antdv-pro/commit/678c328)) +- Update deps ([b491a31](https://github.com/antdv-pro/antdv-pro/commit/b491a31)) + +### 🤖 CI + +- Update husky ([bfe5333](https://github.com/antdv-pro/antdv-pro/commit/bfe5333)) +- Change ci ([4e87850](https://github.com/antdv-pro/antdv-pro/commit/4e87850)) +- Change ci ([1b01aab](https://github.com/antdv-pro/antdv-pro/commit/1b01aab)) + +### ❤️ Contributors + +- Aibayanyu20 +- Wrong ([@wlonghaha](http://github.com/wlonghaha)) +- ZhouWei <1244620067@qq.com> +- PonyHu <3697820@qq.com> +- Copofe ([@copofe](http://github.com/copofe)) +- Ziggs.zhao +- Yizhankui <2669587581@qq.com> +- Zhang Zhi Chao ([@Alkaidcc](http://github.com/Alkaidcc)) +- Kaivanwong +- Netfan ([@mynetfan](http://github.com/mynetfan)) + +## v1.2.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.1.0...v1.2.0) + +### 🚀 Enhancements + +- Add gray mode ([5d43b13](https://github.com/antdv-pro/antdv-pro/commit/5d43b13)) +- Add afterQuery fn for `table-query.ts` ([0503a37](https://github.com/antdv-pro/antdv-pro/commit/0503a37)) +- Change multi tab placeholder height calculation ([f3393d9](https://github.com/antdv-pro/antdv-pro/commit/f3393d9)) +- Add info ([492461c](https://github.com/antdv-pro/antdv-pro/commit/492461c)) +- Add info ([92268fb](https://github.com/antdv-pro/antdv-pro/commit/92268fb)) + +### 🩹 Fixes + +- Fix not has page container fuild not support ([78a41cf](https://github.com/antdv-pro/antdv-pro/commit/78a41cf)) +- Change ([51ce087](https://github.com/antdv-pro/antdv-pro/commit/51ce087)) +- Fix title style in slider logo #152 ([#152](https://github.com/antdv-pro/antdv-pro/issues/152)) +- Fix page container is fast switch close #157 ([#157](https://github.com/antdv-pro/antdv-pro/issues/157)) +- **types:** Fix table query hook types ([169e9d5](https://github.com/antdv-pro/antdv-pro/commit/169e9d5)) +- **types:** Fix tsc error ([59ced75](https://github.com/antdv-pro/antdv-pro/commit/59ced75)) +- Query typo ([ba21d97](https://github.com/antdv-pro/antdv-pro/commit/ba21d97)) +- Typo ([6e9930d](https://github.com/antdv-pro/antdv-pro/commit/6e9930d)) +- Profile menu icon ([1b4399d](https://github.com/antdv-pro/antdv-pro/commit/1b4399d)) +- I18n-ally extension setting ([fe1d87b](https://github.com/antdv-pro/antdv-pro/commit/fe1d87b)) +- Multi-tab width error ([f6e7312](https://github.com/antdv-pro/antdv-pro/commit/f6e7312)) +- Change ext ([63f0818](https://github.com/antdv-pro/antdv-pro/commit/63f0818)) +- Attribute definition error ([2206646](https://github.com/antdv-pro/antdv-pro/commit/2206646)) +- **function:** Fix 菜单手风琴模式,子菜单未能按手风琴模式进行展开/收起; ([330d5b1](https://github.com/antdv-pro/antdv-pro/commit/330d5b1)) +- Fix split multi tab close #172 ([#172](https://github.com/antdv-pro/antdv-pro/issues/172)) +- Fixed multi tab display error close #173 ([#173](https://github.com/antdv-pro/antdv-pro/issues/173)) +- Fix error ([c6bba82](https://github.com/antdv-pro/antdv-pro/commit/c6bba82)) +- Jump page is blank close #168 ([#168](https://github.com/antdv-pro/antdv-pro/issues/168)) +- Jump page blank & support page multi page ([372dae9](https://github.com/antdv-pro/antdv-pro/commit/372dae9)) +- Keep alive is not effect ([e310c7c](https://github.com/antdv-pro/antdv-pro/commit/e310c7c)) +- Transition ([db9bd34](https://github.com/antdv-pro/antdv-pro/commit/db9bd34)) +- Dynamic router is multi render ([fd0b825](https://github.com/antdv-pro/antdv-pro/commit/fd0b825)) +- Close #179 ([#179](https://github.com/antdv-pro/antdv-pro/issues/179)) +- Watermark render ([b0fd3b8](https://github.com/antdv-pro/antdv-pro/commit/b0fd3b8)) +- Watermark container ([36c6121](https://github.com/antdv-pro/antdv-pro/commit/36c6121)) +- Watermark false render ([13123bf](https://github.com/antdv-pro/antdv-pro/commit/13123bf)) +- Watermark false render ([663ec59](https://github.com/antdv-pro/antdv-pro/commit/663ec59)) + +### 📖 Documentation + +- Word spelling mistake ([b5ce8e6](https://github.com/antdv-pro/antdv-pro/commit/b5ce8e6)) +- Add support ([afaaef9](https://github.com/antdv-pro/antdv-pro/commit/afaaef9)) + +### 🏡 Chore + +- **release:** V1.1.0 ([ee4ac82](https://github.com/antdv-pro/antdv-pro/commit/ee4ac82)) +- Update deps ([a29c25c](https://github.com/antdv-pro/antdv-pro/commit/a29c25c)) +- Change ([5872282](https://github.com/antdv-pro/antdv-pro/commit/5872282)) +- Update deps ([55672d6](https://github.com/antdv-pro/antdv-pro/commit/55672d6)) +- Update deps ([2a2a29f](https://github.com/antdv-pro/antdv-pro/commit/2a2a29f)) +- Update deps ([722c5cd](https://github.com/antdv-pro/antdv-pro/commit/722c5cd)) +- Change ([5d59e94](https://github.com/antdv-pro/antdv-pro/commit/5d59e94)) +- Change ([8240b0c](https://github.com/antdv-pro/antdv-pro/commit/8240b0c)) +- Update deps ([c84c6e8](https://github.com/antdv-pro/antdv-pro/commit/c84c6e8)) +- Update deps ([b9cb20b](https://github.com/antdv-pro/antdv-pro/commit/b9cb20b)) +- Change ([9b66e0a](https://github.com/antdv-pro/antdv-pro/commit/9b66e0a)) +- Update vue-tsc to v2 ([12b6ab7](https://github.com/antdv-pro/antdv-pro/commit/12b6ab7)) +- Update deps ([5507f3c](https://github.com/antdv-pro/antdv-pro/commit/5507f3c)) +- Change ([4a0fb25](https://github.com/antdv-pro/antdv-pro/commit/4a0fb25)) +- Change ([2118246](https://github.com/antdv-pro/antdv-pro/commit/2118246)) +- Update deps ([3df11aa](https://github.com/antdv-pro/antdv-pro/commit/3df11aa)) +- Update deps ([81009b7](https://github.com/antdv-pro/antdv-pro/commit/81009b7)) +- Add js version ([9f2d91f](https://github.com/antdv-pro/antdv-pro/commit/9f2d91f)) +- Change ([abeb40f](https://github.com/antdv-pro/antdv-pro/commit/abeb40f)) +- Change ([9105c8f](https://github.com/antdv-pro/antdv-pro/commit/9105c8f)) + +### 🤖 CI + +- Update husky ([bfe5333](https://github.com/antdv-pro/antdv-pro/commit/bfe5333)) +- Change ci ([4e87850](https://github.com/antdv-pro/antdv-pro/commit/4e87850)) +- Change ci ([1b01aab](https://github.com/antdv-pro/antdv-pro/commit/1b01aab)) + +### ❤️ Contributors + +- Aibayanyu20 +- PonyHu <3697820@qq.com> +- Copofe +- ZhouWei <1244620067@qq.com> +- Ziggs.zhao +- Yizhankui <2669587581@qq.com> +- Zhang Zhi Chao ([@Alkaidcc](http://github.com/Alkaidcc)) +- Kaivanwong ([@kaivanwong](http://github.com/kaivanwong)) +- Netfan + +## v1.1.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.2...v1.1.0) + +### 🚀 Enhancements + +- Add table-query hook for crud table ([ab64028](https://github.com/antdv-pro/antdv-pro/commit/ab64028)) + +### 🩹 Fixes + +- Eslint-config in vscode ([f8018ac](https://github.com/antdv-pro/antdv-pro/commit/f8018ac)) +- 路由切换可能导致page-container的头部面包屑等区域被意外隐藏 ([03d3ea8](https://github.com/antdv-pro/antdv-pro/commit/03d3ea8)) +- Nested not change ([afa71cd](https://github.com/antdv-pro/antdv-pro/commit/afa71cd)) + +### 💅 Refactors + +- Page container ([0c0cd0d](https://github.com/antdv-pro/antdv-pro/commit/0c0cd0d)) + +### 🏡 Chore + +- Remove icon ([79cb981](https://github.com/antdv-pro/antdv-pro/commit/79cb981)) +- Update deps ([4535f65](https://github.com/antdv-pro/antdv-pro/commit/4535f65)) + +### ❤️ Contributors + +- Aibayanyu20 +- Sun1090 <1090964491@qq.com> +- Wangqifan + +## v1.0.2 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.1...v1.0.2) + +### 🩹 Fixes + +- Typo ([ba8f474](https://github.com/antdv-pro/antdv-pro/commit/ba8f474)) + +### 🏡 Chore + +- Update deps ([0d41da9](https://github.com/antdv-pro/antdv-pro/commit/0d41da9)) +- Use antfu eslint config replace mist config ([c11224e](https://github.com/antdv-pro/antdv-pro/commit/c11224e)) +- Update deps ([a12b56f](https://github.com/antdv-pro/antdv-pro/commit/a12b56f)) + +### ❤️ Contributors + +- Aibayanyu20 + +## v1.0.1 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.0...v1.0.1) + +### 🩹 Fixes + +- Fix circular imports ([7ab99da](https://github.com/antdv-pro/antdv-pro/commit/7ab99da)) +- Fix page container dynamic update in advance ([13d9486](https://github.com/antdv-pro/antdv-pro/commit/13d9486)) + +### 🏡 Chore + +- **release:** V1.0.0 ([e7ca880](https://github.com/antdv-pro/antdv-pro/commit/e7ca880)) + +### ❤️ Contributors + +- Aibayanyu20 + +## v1.0.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.0-beta.3...v1.0.0) + +### 🚀 Enhancements + +- Add preload ([6c0e6c9](https://github.com/antdv-pro/antdv-pro/commit/6c0e6c9)) +- Support vite 5 ([e84c7b7](https://github.com/antdv-pro/antdv-pro/commit/e84c7b7)) +- Complete compact-algorithm ([99f2074](https://github.com/antdv-pro/antdv-pro/commit/99f2074)) +- Query table add toolbar ([7fe8f90](https://github.com/antdv-pro/antdv-pro/commit/7fe8f90)) + +### 🩹 Fixes + +- Change ([8bdfd94](https://github.com/antdv-pro/antdv-pro/commit/8bdfd94)) +- Preload error ([c0de1fc](https://github.com/antdv-pro/antdv-pro/commit/c0de1fc)) +- Fix top mode page-container not expand close #127 ([#127](https://github.com/antdv-pro/antdv-pro/issues/127)) +- Eslint error ([39dbe6f](https://github.com/antdv-pro/antdv-pro/commit/39dbe6f)) +- Eslint not support ([d249d98](https://github.com/antdv-pro/antdv-pro/commit/d249d98)) +- Note ([92beb3e](https://github.com/antdv-pro/antdv-pro/commit/92beb3e)) +- X-axis scroll bar appears in top layout mode ([bf2a206](https://github.com/antdv-pro/antdv-pro/commit/bf2a206)) +- Footertoolbar not effect layout ([e025b9c](https://github.com/antdv-pro/antdv-pro/commit/e025b9c)) + +### 🏡 Chore + +- Delete eslintignore replace eslint.config ([baa7747](https://github.com/antdv-pro/antdv-pro/commit/baa7747)) +- Update deps ([6fc6496](https://github.com/antdv-pro/antdv-pro/commit/6fc6496)) +- Change tsconfig ([734e287](https://github.com/antdv-pro/antdv-pro/commit/734e287)) +- Update scripts ([f372ac9](https://github.com/antdv-pro/antdv-pro/commit/f372ac9)) +- Change script ([1e80dd4](https://github.com/antdv-pro/antdv-pro/commit/1e80dd4)) +- Update deps ([0de46db](https://github.com/antdv-pro/antdv-pro/commit/0de46db)) +- Support ssl config ([ca9d37b](https://github.com/antdv-pro/antdv-pro/commit/ca9d37b)) +- Update deps ([b7c557c](https://github.com/antdv-pro/antdv-pro/commit/b7c557c)) +- Update deps ([ff86513](https://github.com/antdv-pro/antdv-pro/commit/ff86513)) +- Update deps ([abaee14](https://github.com/antdv-pro/antdv-pro/commit/abaee14)) +- Add funding ([03ef885](https://github.com/antdv-pro/antdv-pro/commit/03ef885)) +- Change ([ceb08eb](https://github.com/antdv-pro/antdv-pro/commit/ceb08eb)) +- Update vue@3.4.x ([a9e9ac9](https://github.com/antdv-pro/antdv-pro/commit/a9e9ac9)) + +### 🤖 CI + +- Change node version ([540224b](https://github.com/antdv-pro/antdv-pro/commit/540224b)) + +### ❤️ Contributors + +- Aibayanyu20 +- ZhouWei <1244620067@qq.com> +- Undefined ([@undefined-moe](http://github.com/undefined-moe)) +- LinRenJie +- Aibayanyu + +## v1.0.0-beta.3 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.0-beta.2...v1.0.0-beta.3) + +### 🩹 Fixes + +- Locale error ([df1293d](https://github.com/antdv-pro/antdv-pro/commit/df1293d)) + +### 🏡 Chore + +- Update readme ([27ab14e](https://github.com/antdv-pro/antdv-pro/commit/27ab14e)) +- Update deps ([9946ea4](https://github.com/antdv-pro/antdv-pro/commit/9946ea4)) +- Update deps ([aae9b3a](https://github.com/antdv-pro/antdv-pro/commit/aae9b3a)) +- Unified build output directory #118 ([#118](https://github.com/antdv-pro/antdv-pro/issues/118)) +- Update deps ([75937d6](https://github.com/antdv-pro/antdv-pro/commit/75937d6)) + +### ❤️ Contributors + +- Aibayanyu +- Aibayanyu20 +- Kirk Lin ([@kirklin](http://github.com/kirklin)) + +## v1.0.0-beta.2 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.0-beta.1...v1.0.0-beta.2) + +### 🚀 Enhancements + +- Add vitest ([ec66360](https://github.com/antdv-pro/antdv-pro/commit/ec66360)) +- Add icp ([ced7249](https://github.com/antdv-pro/antdv-pro/commit/ced7249)) + +### 🩹 Fixes + +- Fix the page not scrolling to the top when switching ([d6a2406](https://github.com/antdv-pro/antdv-pro/commit/d6a2406)) +- Fix locale auto load error ([e441349](https://github.com/antdv-pro/antdv-pro/commit/e441349)) +- Using vite's outDir to unify staticPath ([d5f5448](https://github.com/antdv-pro/antdv-pro/commit/d5f5448)) +- Fix typo ([e68bb8c](https://github.com/antdv-pro/antdv-pro/commit/e68bb8c)) +- Fix i18n hot accept error ([e1da2a8](https://github.com/antdv-pro/antdv-pro/commit/e1da2a8)) +- Card layout misalignment ([1944820](https://github.com/antdv-pro/antdv-pro/commit/1944820)) +- Remove tabs default margin ([8de0518](https://github.com/antdv-pro/antdv-pro/commit/8de0518)) +- Not has multitab prcessing pagecontainer spacing ([a604f9d](https://github.com/antdv-pro/antdv-pro/commit/a604f9d)) +- Icp open blank page ([f0739e2](https://github.com/antdv-pro/antdv-pro/commit/f0739e2)) +- Page show not right close #122 ([#122](https://github.com/antdv-pro/antdv-pro/issues/122)) + +### 🏡 Chore + +- Change version ([742270e](https://github.com/antdv-pro/antdv-pro/commit/742270e)) +- Update deps ([d291e93](https://github.com/antdv-pro/antdv-pro/commit/d291e93)) +- Update deps ([00b693e](https://github.com/antdv-pro/antdv-pro/commit/00b693e)) + +### ❤️ Contributors + +- Aibayanyu +- Jiabochao ([@jiabochao](http://github.com/jiabochao)) +- Undefined ([@undefined-moe](http://github.com/undefined-moe)) +- 萍萍 ([@jiabochao](http://github.com/jiabochao)) +- Aibayanyu20 +- Unknown ([@aibayanyu20](http://github.com/aibayanyu20)) + +## v1.0.0-beta.1 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v0.2.0...v1.0.0-beta.1) + +### 🚀 Enhancements + +- Add antdv-style ([329690f](https://github.com/antdv-pro/antdv-pro/commit/329690f)) +- Mist replace vite ([df6be41](https://github.com/antdv-pro/antdv-pro/commit/df6be41)) +- Delete file ([327ae33](https://github.com/antdv-pro/antdv-pro/commit/327ae33)) +- **setting:** Supported watermark switch ([a441950](https://github.com/antdv-pro/antdv-pro/commit/a441950)) +- Support eager mode ([32d9340](https://github.com/antdv-pro/antdv-pro/commit/32d9340)) + +### 🩹 Fixes + +- Add component name ([a444650](https://github.com/antdv-pro/antdv-pro/commit/a444650)) +- Support vercel deploy ([c78010f](https://github.com/antdv-pro/antdv-pro/commit/c78010f)) +- Support vercel deploy ([c2294aa](https://github.com/antdv-pro/antdv-pro/commit/c2294aa)) +- Change vercel config ([8af11a8](https://github.com/antdv-pro/antdv-pro/commit/8af11a8)) +- Change vercel config ([6f828e5](https://github.com/antdv-pro/antdv-pro/commit/6f828e5)) +- Dev server error ([7ef7e00](https://github.com/antdv-pro/antdv-pro/commit/7ef7e00)) + +### 🏡 Chore + +- Update deps ([524df05](https://github.com/antdv-pro/antdv-pro/commit/524df05)) +- Update `unplugin-config` ([403f3bb](https://github.com/antdv-pro/antdv-pro/commit/403f3bb)) +- Delete multimenu ([5673f06](https://github.com/antdv-pro/antdv-pro/commit/5673f06)) +- Resolve conflict ([5cac11e](https://github.com/antdv-pro/antdv-pro/commit/5cac11e)) +- Change version ([20bb03f](https://github.com/antdv-pro/antdv-pro/commit/20bb03f)) +- Change ([fcac6a0](https://github.com/antdv-pro/antdv-pro/commit/fcac6a0)) +- Change ([550a341](https://github.com/antdv-pro/antdv-pro/commit/550a341)) +- Change ([c2e4cc5](https://github.com/antdv-pro/antdv-pro/commit/c2e4cc5)) +- Change ([1826431](https://github.com/antdv-pro/antdv-pro/commit/1826431)) +- **release:** V1.0.0 ([699a870](https://github.com/antdv-pro/antdv-pro/commit/699a870)) + +### 🤖 CI + +- Support deploy ([5f7cd06](https://github.com/antdv-pro/antdv-pro/commit/5f7cd06)) +- Support deploy ([e53528e](https://github.com/antdv-pro/antdv-pro/commit/e53528e)) +- Change local-dir ([4c278e4](https://github.com/antdv-pro/antdv-pro/commit/4c278e4)) +- Change local-dir ([415fa6a](https://github.com/antdv-pro/antdv-pro/commit/415fa6a)) +- Change deploy ([259b768](https://github.com/antdv-pro/antdv-pro/commit/259b768)) +- Change deploy ([0cc948d](https://github.com/antdv-pro/antdv-pro/commit/0cc948d)) + +### ❤️ Contributors + +- Aibayanyu +- Aibayanyu20 +- 246859 ([@CQUT-Programmer](http://github.com/CQUT-Programmer)) +- Kirk Lin ([@kirklin](http://github.com/kirklin)) + +## v0.2.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v0.0.19...v0.2.0) + +### 🚀 Enhancements + +- Add exception page ([e857135](https://github.com/antdv-pro/antdv-pro/commit/e857135)) +- Add mock server ([2fbecaf](https://github.com/antdv-pro/antdv-pro/commit/2fbecaf)) +- 增加结果页路由 ([14d20f8](https://github.com/antdv-pro/antdv-pro/commit/14d20f8)) +- 增加结果页i18n配置 ([0f51c7d](https://github.com/antdv-pro/antdv-pro/commit/0f51c7d)) +- 同步结果页成功页 #28 ([#28](https://github.com/antdv-pro/antdv-pro/issues/28)) +- 增加结果页路由 #29 ([#29](https://github.com/antdv-pro/antdv-pro/issues/29)) +- Add new result page ([ad6463e](https://github.com/antdv-pro/antdv-pro/commit/ad6463e)) +- Add spinning loader to iframe ([c75a3b8](https://github.com/antdv-pro/antdv-pro/commit/c75a3b8)) +- Add spinning loader to iframe ([888d183](https://github.com/antdv-pro/antdv-pro/commit/888d183)) +- Add login redirect ([70293ed](https://github.com/antdv-pro/antdv-pro/commit/70293ed)) +- 增加路由 ([ef72da5](https://github.com/antdv-pro/antdv-pro/commit/ef72da5)) +- 页面 ([39ff6d5](https://github.com/antdv-pro/antdv-pro/commit/39ff6d5)) +- 路由配置 ([2af830c](https://github.com/antdv-pro/antdv-pro/commit/2af830c)) +- Picocolors custom terminal ([2aca5fd](https://github.com/antdv-pro/antdv-pro/commit/2aca5fd)) +- Add basic profile i18n config ([fb2ac66](https://github.com/antdv-pro/antdv-pro/commit/fb2ac66)) +- Add basic profile router ([1e8b9e4](https://github.com/antdv-pro/antdv-pro/commit/1e8b9e4)) +- Add basic profile i18n config ([cba4ba1](https://github.com/antdv-pro/antdv-pro/commit/cba4ba1)) +- 新增列表数据接口 ([11b7c89](https://github.com/antdv-pro/antdv-pro/commit/11b7c89)) +- 新增列表数据请求方法 ([47bbd73](https://github.com/antdv-pro/antdv-pro/commit/47bbd73)) +- Add a tsconfig rule ([ebaee8d](https://github.com/antdv-pro/antdv-pro/commit/ebaee8d)) +- Basic-list page ([dea1394](https://github.com/antdv-pro/antdv-pro/commit/dea1394)) +- Add search list ([c95c6aa](https://github.com/antdv-pro/antdv-pro/commit/c95c6aa)) +- Add dynamic routes ([766b04e](https://github.com/antdv-pro/antdv-pro/commit/766b04e)) +- Init route config ([e9eb147](https://github.com/antdv-pro/antdv-pro/commit/e9eb147)) +- New page ([ea00f70](https://github.com/antdv-pro/antdv-pro/commit/ea00f70)) +- Login view ([b270521](https://github.com/antdv-pro/antdv-pro/commit/b270521)) +- I18n config ([f292469](https://github.com/antdv-pro/antdv-pro/commit/f292469)) +- Page ([89fca03](https://github.com/antdv-pro/antdv-pro/commit/89fca03)) +- Axios loading ([f60c4d7](https://github.com/antdv-pro/antdv-pro/commit/f60c4d7)) +- Loading text prop ([26d96b4](https://github.com/antdv-pro/antdv-pro/commit/26d96b4)) +- Route config ([51cba5d](https://github.com/antdv-pro/antdv-pro/commit/51cba5d)) +- Update version ([5222e8c](https://github.com/antdv-pro/antdv-pro/commit/5222e8c)) +- Account center page ([dfeaf09](https://github.com/antdv-pro/antdv-pro/commit/dfeaf09)) +- Account-center i18n config ([0c38c00](https://github.com/antdv-pro/antdv-pro/commit/0c38c00)) +- Add basic table routes ([d445c08](https://github.com/antdv-pro/antdv-pro/commit/d445c08)) +- Add basic table i18n config ([d0e3385](https://github.com/antdv-pro/antdv-pro/commit/d0e3385)) +- Add basic table demo ([ddb7c13](https://github.com/antdv-pro/antdv-pro/commit/ddb7c13)) +- Add static routes ([9f42e28](https://github.com/antdv-pro/antdv-pro/commit/9f42e28)) +- Account-settings page ([b5f1360](https://github.com/antdv-pro/antdv-pro/commit/b5f1360)) +- I18n config ([c50b840](https://github.com/antdv-pro/antdv-pro/commit/c50b840)) +- Add step-form router ([23603f2](https://github.com/antdv-pro/antdv-pro/commit/23603f2)) +- Add step-form pages ([40baabe](https://github.com/antdv-pro/antdv-pro/commit/40baabe)) +- Add footer-tool-bar components ([7552a18](https://github.com/antdv-pro/antdv-pro/commit/7552a18)) +- Add advanced form router ([3bf0624](https://github.com/antdv-pro/antdv-pro/commit/3bf0624)) +- Add task form ([a4c1c51](https://github.com/antdv-pro/antdv-pro/commit/a4c1c51)) +- Add advanced form ([2fc8cc2](https://github.com/antdv-pro/antdv-pro/commit/2fc8cc2)) +- Add components parent ([fc47099](https://github.com/antdv-pro/antdv-pro/commit/fc47099)) +- Add parent layout ([75f4fd7](https://github.com/antdv-pro/antdv-pro/commit/75f4fd7)) +- Feat list ([412da2d](https://github.com/antdv-pro/antdv-pro/commit/412da2d)) +- Add `unocss-preset-chinese`, `unocss-preset-ease` ([7e5b706](https://github.com/antdv-pro/antdv-pro/commit/7e5b706)) +- Add some files ([431b1eb](https://github.com/antdv-pro/antdv-pro/commit/431b1eb)) +- Add consult-table page ([41ef497](https://github.com/antdv-pro/antdv-pro/commit/41ef497)) +- Add field trend components ([a2ecae7](https://github.com/antdv-pro/antdv-pro/commit/a2ecae7)) +- Add introduce-row first demo ([7a7e540](https://github.com/antdv-pro/antdv-pro/commit/7a7e540)) +- Complete introduce-row demo ([659bcaf](https://github.com/antdv-pro/antdv-pro/commit/659bcaf)) +- Add antv/g2plot package ([41c742e](https://github.com/antdv-pro/antdv-pro/commit/41c742e)) +- Add part of sales-card demo ([ac18ff6](https://github.com/antdv-pro/antdv-pro/commit/ac18ff6)) +- Delete useless code ([acbf99b](https://github.com/antdv-pro/antdv-pro/commit/acbf99b)) +- Complete sales-card demo ([ea9d0cd](https://github.com/antdv-pro/antdv-pro/commit/ea9d0cd)) +- Add 修改侧边栏可伸缩按钮位置 ([12cc61d](https://github.com/antdv-pro/antdv-pro/commit/12cc61d)) +- Add 修改侧边伸缩默认显示 ([4aebe57](https://github.com/antdv-pro/antdv-pro/commit/4aebe57)) +- Add 控制伸缩功能只在侧边布局生效 ([df0738c](https://github.com/antdv-pro/antdv-pro/commit/df0738c)) +- Complete number-info and top-search demo ([b0ceb48](https://github.com/antdv-pro/antdv-pro/commit/b0ceb48)) +- Complete proportion-sales demo ([be3b597](https://github.com/antdv-pro/antdv-pro/commit/be3b597)) +- Complete offline-data demo ([97cf972](https://github.com/antdv-pro/antdv-pro/commit/97cf972)) +- Reconstruct file location ([181e9ba](https://github.com/antdv-pro/antdv-pro/commit/181e9ba)) +- Add part of monitor demo ([0f3ca9d](https://github.com/antdv-pro/antdv-pro/commit/0f3ca9d)) +- Complete part of monitor demo ([f671f56](https://github.com/antdv-pro/antdv-pro/commit/f671f56)) +- Add part of workplace demo ([32958ac](https://github.com/antdv-pro/antdv-pro/commit/32958ac)) +- Complete workplace demo ([257c6b5](https://github.com/antdv-pro/antdv-pro/commit/257c6b5)) +- Complete monitor demo ([7b84c28](https://github.com/antdv-pro/antdv-pro/commit/7b84c28)) +- Change filename ([57a9bb0](https://github.com/antdv-pro/antdv-pro/commit/57a9bb0)) +- Add storage locale ([bf52bbb](https://github.com/antdv-pro/antdv-pro/commit/bf52bbb)) +- Support dynamic router close #93 ([#93](https://github.com/antdv-pro/antdv-pro/issues/93)) +- Add virtual list ([069f27f](https://github.com/antdv-pro/antdv-pro/commit/069f27f)) +- Change text ([4dccc14](https://github.com/antdv-pro/antdv-pro/commit/4dccc14)) +- Add `unplugin-config` ([c6107cf](https://github.com/antdv-pro/antdv-pro/commit/c6107cf)) + +### 🔥 Performance + +- 优化单独监听路由浪费渲染性能 ([05a3d79](https://github.com/antdv-pro/antdv-pro/commit/05a3d79)) + +### 🩹 Fixes + +- Fix iframe transition error ([57311cc](https://github.com/antdv-pro/antdv-pro/commit/57311cc)) +- Delete scroll ([a373517](https://github.com/antdv-pro/antdv-pro/commit/a373517)) +- Add script toJS ([1601334](https://github.com/antdv-pro/antdv-pro/commit/1601334)) +- Result page i18n step2-operator ([c900087](https://github.com/antdv-pro/antdv-pro/commit/c900087)) +- Success result i18n ([412dfeb](https://github.com/antdv-pro/antdv-pro/commit/412dfeb)) +- Router i18n ([d00cf4e](https://github.com/antdv-pro/antdv-pro/commit/d00cf4e)) +- Success page type error ([71aa9ec](https://github.com/antdv-pro/antdv-pro/commit/71aa9ec)) +- Success page type error ([451afd0](https://github.com/antdv-pro/antdv-pro/commit/451afd0)) +- Remove console log ([8c8a2db](https://github.com/antdv-pro/antdv-pro/commit/8c8a2db)) +- 修改路由错误 ([0d5e75c](https://github.com/antdv-pro/antdv-pro/commit/0d5e75c)) +- Dark theme error ([2c08422](https://github.com/antdv-pro/antdv-pro/commit/2c08422)) +- Commit-msg-lint ([2a91560](https://github.com/antdv-pro/antdv-pro/commit/2a91560)) +- Commit-msg-lint ([8e47aae](https://github.com/antdv-pro/antdv-pro/commit/8e47aae)) +- Commit-msg-lint, remove trailing comma ([e578774](https://github.com/antdv-pro/antdv-pro/commit/e578774)) +- 修改错误配置 ([0dc9048](https://github.com/antdv-pro/antdv-pro/commit/0dc9048)) +- Change dir name ([288e11c](https://github.com/antdv-pro/antdv-pro/commit/288e11c)) +- Fix qrcode ([1086a8d](https://github.com/antdv-pro/antdv-pro/commit/1086a8d)) +- Dark mode change error ([67ad773](https://github.com/antdv-pro/antdv-pro/commit/67ad773)) +- Lint error ([f064f70](https://github.com/antdv-pro/antdv-pro/commit/f064f70)) +- Build error ([1c13da1](https://github.com/antdv-pro/antdv-pro/commit/1c13da1)) +- Fix top mode header appear scroll && iframe is not fullscreen ([d07e846](https://github.com/antdv-pro/antdv-pro/commit/d07e846)) +- Change ([6e07288](https://github.com/antdv-pro/antdv-pro/commit/6e07288)) +- Build error ([8563a69](https://github.com/antdv-pro/antdv-pro/commit/8563a69)) +- Menu icon #53 ([#53](https://github.com/antdv-pro/antdv-pro/issues/53)) +- Login theme layout ([63e26a7](https://github.com/antdv-pro/antdv-pro/commit/63e26a7)) +- Rename enum file ([49edbc0](https://github.com/antdv-pro/antdv-pro/commit/49edbc0)) +- Login view change ([e861e47](https://github.com/antdv-pro/antdv-pro/commit/e861e47)) +- Fix page not full ([0caac29](https://github.com/antdv-pro/antdv-pro/commit/0caac29)) +- Router component ([a6e0fcf](https://github.com/antdv-pro/antdv-pro/commit/a6e0fcf)) +- Optimization level ([219646c](https://github.com/antdv-pro/antdv-pro/commit/219646c)) +- I18n symbol #60 ([#60](https://github.com/antdv-pro/antdv-pro/issues/60)) +- Login panel ([34cf8ae](https://github.com/antdv-pro/antdv-pro/commit/34cf8ae)) +- Validate not take effect ([baae131](https://github.com/antdv-pro/antdv-pro/commit/baae131)) +- Validate not take effect ([d132d04](https://github.com/antdv-pro/antdv-pro/commit/d132d04)) +- Add page container ([706087c](https://github.com/antdv-pro/antdv-pro/commit/706087c)) +- Type ([7d8ccde](https://github.com/antdv-pro/antdv-pro/commit/7d8ccde)) +- 将新消息通知中的三个切换按钮的checked状态单独定义 ([c7a44b7](https://github.com/antdv-pro/antdv-pro/commit/c7a44b7)) +- Footer tool bar support dark mode ([aae8cb3](https://github.com/antdv-pro/antdv-pro/commit/aae8cb3)) +- Fix radio-group ([e1a75b1](https://github.com/antdv-pro/antdv-pro/commit/e1a75b1)) +- Fix generate route ([b033198](https://github.com/antdv-pro/antdv-pro/commit/b033198)) +- Fix generate route ([41b50a1](https://github.com/antdv-pro/antdv-pro/commit/41b50a1)) +- Menu hidden header is not full close #71 ([#71](https://github.com/antdv-pro/antdv-pro/issues/71)) +- Build error close #75 ([#75](https://github.com/antdv-pro/antdv-pro/issues/75)) +- Collapsed trigger ([ff8ae6c](https://github.com/antdv-pro/antdv-pro/commit/ff8ae6c)) +- Account-setting avatar size ([069ad16](https://github.com/antdv-pro/antdv-pro/commit/069ad16)) +- Base-loading ui ([dfed9a9](https://github.com/antdv-pro/antdv-pro/commit/dfed9a9)) +- Modify route name to keep unique and basic form path ([69be62f](https://github.com/antdv-pro/antdv-pro/commit/69be62f)) +- Issues#68 ([#68](https://github.com/antdv-pro/antdv-pro/issues/68)) +- Add 删除打印和修正伸缩图标大小 ([22e74a8](https://github.com/antdv-pro/antdv-pro/commit/22e74a8)) +- Add pagination ([a04e223](https://github.com/antdv-pro/antdv-pro/commit/a04e223)) +- Issue#81 ([#81](https://github.com/antdv-pro/antdv-pro/issues/81)) +- Mock server error close #86 ([#86](https://github.com/antdv-pro/antdv-pro/issues/86)) +- Fix win and macos server env ([91bc884](https://github.com/antdv-pro/antdv-pro/commit/91bc884)) +- Dark mode ([1e31431](https://github.com/antdv-pro/antdv-pro/commit/1e31431)) +- Build error ([65bda0e](https://github.com/antdv-pro/antdv-pro/commit/65bda0e)) +- Build error ([3c5bc4b](https://github.com/antdv-pro/antdv-pro/commit/3c5bc4b)) +- Locale storage optimize ([a49d090](https://github.com/antdv-pro/antdv-pro/commit/a49d090)) +- Chart support destroy ([65bdfc7](https://github.com/antdv-pro/antdv-pro/commit/65bdfc7)) +- Change i18n ([8c3f517](https://github.com/antdv-pro/antdv-pro/commit/8c3f517)) +- Build error ([50b5773](https://github.com/antdv-pro/antdv-pro/commit/50b5773)) +- Chart auto fit ([f03bb48](https://github.com/antdv-pro/antdv-pro/commit/f03bb48)) +- Login form logo container layout ([a87df0d](https://github.com/antdv-pro/antdv-pro/commit/a87df0d)) +- Set autocomplete to off ([8ae0024](https://github.com/antdv-pro/antdv-pro/commit/8ae0024)) +- Switch menu stuck & stopped ([8173341](https://github.com/antdv-pro/antdv-pro/commit/8173341)) +- Add router key ([91256e3](https://github.com/antdv-pro/antdv-pro/commit/91256e3)) +- Change route view ([411a4b5](https://github.com/antdv-pro/antdv-pro/commit/411a4b5)) +- Change ([e2d046e](https://github.com/antdv-pro/antdv-pro/commit/e2d046e)) +- Add `defineOptions` to index file ([52e4053](https://github.com/antdv-pro/antdv-pro/commit/52e4053)) + +### 💅 Refactors + +- Change files name ([16f7940](https://github.com/antdv-pro/antdv-pro/commit/16f7940)) + +### 🏡 Chore + +- Add wx group jpg ([fc6481c](https://github.com/antdv-pro/antdv-pro/commit/fc6481c)) +- Update wx group ([2b32fa5](https://github.com/antdv-pro/antdv-pro/commit/2b32fa5)) +- Update dependencies for Nitro as devDependencies ([8480b27](https://github.com/antdv-pro/antdv-pro/commit/8480b27)) +- Update dependencies for Nitro as devDependencies ([6fbafac](https://github.com/antdv-pro/antdv-pro/commit/6fbafac)) +- Remove docs script ([18cf8f5](https://github.com/antdv-pro/antdv-pro/commit/18cf8f5)) +- Add deps ([a014040](https://github.com/antdv-pro/antdv-pro/commit/a014040)) +- Add commit check ([ad43dc1](https://github.com/antdv-pro/antdv-pro/commit/ad43dc1)) +- Add .gitattributes ([cc821f4](https://github.com/antdv-pro/antdv-pro/commit/cc821f4)) +- 删减路径多余空格 ([1617c99](https://github.com/antdv-pro/antdv-pro/commit/1617c99)) +- Change ci ([e4638d8](https://github.com/antdv-pro/antdv-pro/commit/e4638d8)) +- Add start date ([3de8ae4](https://github.com/antdv-pro/antdv-pro/commit/3de8ae4)) +- Types ([fd2f05f](https://github.com/antdv-pro/antdv-pro/commit/fd2f05f)) +- Chore ([6838cab](https://github.com/antdv-pro/antdv-pro/commit/6838cab)) +- Change ([d26935d](https://github.com/antdv-pro/antdv-pro/commit/d26935d)) +- Add current route ([1322f42](https://github.com/antdv-pro/antdv-pro/commit/1322f42)) +- Change components ([29d86c2](https://github.com/antdv-pro/antdv-pro/commit/29d86c2)) +- Change name ([85cabdb](https://github.com/antdv-pro/antdv-pro/commit/85cabdb)) +- **composables/loading:** Loading param note ([e81849a](https://github.com/antdv-pro/antdv-pro/commit/e81849a)) +- Add gitee ([371e5ea](https://github.com/antdv-pro/antdv-pro/commit/371e5ea)) +- BubbleCanvas ts type ([3fdd93b](https://github.com/antdv-pro/antdv-pro/commit/3fdd93b)) +- Change ([49a95a4](https://github.com/antdv-pro/antdv-pro/commit/49a95a4)) +- Change ([70a8034](https://github.com/antdv-pro/antdv-pro/commit/70a8034)) +- Ignore component.d.ts ([4bbd074](https://github.com/antdv-pro/antdv-pro/commit/4bbd074)) +- Ignore component.d.ts ([2ecae5b](https://github.com/antdv-pro/antdv-pro/commit/2ecae5b)) +- Delete excess ([aae0a7f](https://github.com/antdv-pro/antdv-pro/commit/aae0a7f)) +- Del basic table demo ([211e0a4](https://github.com/antdv-pro/antdv-pro/commit/211e0a4)) +- Add account routerlink ([403d3a5](https://github.com/antdv-pro/antdv-pro/commit/403d3a5)) +- Add space to advance form ([80faa7e](https://github.com/antdv-pro/antdv-pro/commit/80faa7e)) +- Change format ([4af5f56](https://github.com/antdv-pro/antdv-pro/commit/4af5f56)) +- Change ([ac15c2a](https://github.com/antdv-pro/antdv-pro/commit/ac15c2a)) +- Font optimization ([18a31b7](https://github.com/antdv-pro/antdv-pro/commit/18a31b7)) +- Change version ([692bd7c](https://github.com/antdv-pro/antdv-pro/commit/692bd7c)) +- Change version ([d45e443](https://github.com/antdv-pro/antdv-pro/commit/d45e443)) +- Change version ([bdafa15](https://github.com/antdv-pro/antdv-pro/commit/bdafa15)) +- Change version ([199bf5d](https://github.com/antdv-pro/antdv-pro/commit/199bf5d)) +- Change version ([6eee4de](https://github.com/antdv-pro/antdv-pro/commit/6eee4de)) +- Change version ([c696770](https://github.com/antdv-pro/antdv-pro/commit/c696770)) +- Change pnpm-lock version ([caedc74](https://github.com/antdv-pro/antdv-pro/commit/caedc74)) +- Change ([747b6c2](https://github.com/antdv-pro/antdv-pro/commit/747b6c2)) +- 修改侧边菜单超出显示样式 ([368ffe0](https://github.com/antdv-pro/antdv-pro/commit/368ffe0)) +- Fix console error ([a08f428](https://github.com/antdv-pro/antdv-pro/commit/a08f428)) +- Use auto import ([4be2127](https://github.com/antdv-pro/antdv-pro/commit/4be2127)) +- **release:** V0.1.0 ([f6f3781](https://github.com/antdv-pro/antdv-pro/commit/f6f3781)) +- Change ([290413e](https://github.com/antdv-pro/antdv-pro/commit/290413e)) +- Change ([80b5b74](https://github.com/antdv-pro/antdv-pro/commit/80b5b74)) +- Change version ([c31dea8](https://github.com/antdv-pro/antdv-pro/commit/c31dea8)) + +### 🎨 Styles + +- Fix card-list style ([6b68f8d](https://github.com/antdv-pro/antdv-pro/commit/6b68f8d)) +- Login change ([4e74769](https://github.com/antdv-pro/antdv-pro/commit/4e74769)) +- Fix style ([8d8a96e](https://github.com/antdv-pro/antdv-pro/commit/8d8a96e)) +- Fix style ([05d072e](https://github.com/antdv-pro/antdv-pro/commit/05d072e)) + +### 🤖 CI + +- Add lint ([a6cbed7](https://github.com/antdv-pro/antdv-pro/commit/a6cbed7)) + +### ❤️ Contributors + +- Aibayanyu +- Kirk Lin ([@kirklin](http://github.com/kirklin)) +- Liosummer <2447629916@qq.com> +- Windlil ([@windlil](http://github.com/windlil)) +- Aibayanyu20 +- Konv Suu <2583695112@qq.com> +- AutismSuperman +- 杜天宇 <17862705909@163.com> +- AShu-guo +- Sun1090 ([@Sun1090](http://github.com/Sun1090)) +- Undefined ([@undefined-moe](http://github.com/undefined-moe)) +- LC1 +- Yizhankui <2669587581@qq.com> +- 张浩杰 ([@HavocZhang](http://github.com/HavocZhang)) +- 一个小瘪三 <10948399+menon-qiqi@user.noreply.gitee.com> +- Qi Yuhang +- Qyh +- Zev Zhu +- Adekang + +## v0.1.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v0.0.19...v0.1.0) + +### 🚀 Enhancements + +- Add exception page ([e857135](https://github.com/antdv-pro/antdv-pro/commit/e857135)) +- Add mock server ([2fbecaf](https://github.com/antdv-pro/antdv-pro/commit/2fbecaf)) +- 增加结果页路由 ([14d20f8](https://github.com/antdv-pro/antdv-pro/commit/14d20f8)) +- 增加结果页i18n配置 ([0f51c7d](https://github.com/antdv-pro/antdv-pro/commit/0f51c7d)) +- 同步结果页成功页 #28 ([#28](https://github.com/antdv-pro/antdv-pro/issues/28)) +- 增加结果页路由 #29 ([#29](https://github.com/antdv-pro/antdv-pro/issues/29)) +- Add new result page ([ad6463e](https://github.com/antdv-pro/antdv-pro/commit/ad6463e)) +- Add spinning loader to iframe ([c75a3b8](https://github.com/antdv-pro/antdv-pro/commit/c75a3b8)) +- Add spinning loader to iframe ([888d183](https://github.com/antdv-pro/antdv-pro/commit/888d183)) +- Add login redirect ([70293ed](https://github.com/antdv-pro/antdv-pro/commit/70293ed)) +- 增加路由 ([ef72da5](https://github.com/antdv-pro/antdv-pro/commit/ef72da5)) +- 页面 ([39ff6d5](https://github.com/antdv-pro/antdv-pro/commit/39ff6d5)) +- 路由配置 ([2af830c](https://github.com/antdv-pro/antdv-pro/commit/2af830c)) +- Picocolors custom terminal ([2aca5fd](https://github.com/antdv-pro/antdv-pro/commit/2aca5fd)) +- Add basic profile i18n config ([fb2ac66](https://github.com/antdv-pro/antdv-pro/commit/fb2ac66)) +- Add basic profile router ([1e8b9e4](https://github.com/antdv-pro/antdv-pro/commit/1e8b9e4)) +- Add basic profile i18n config ([cba4ba1](https://github.com/antdv-pro/antdv-pro/commit/cba4ba1)) +- 新增列表数据接口 ([11b7c89](https://github.com/antdv-pro/antdv-pro/commit/11b7c89)) +- 新增列表数据请求方法 ([47bbd73](https://github.com/antdv-pro/antdv-pro/commit/47bbd73)) +- Add a tsconfig rule ([ebaee8d](https://github.com/antdv-pro/antdv-pro/commit/ebaee8d)) +- Basic-list page ([dea1394](https://github.com/antdv-pro/antdv-pro/commit/dea1394)) +- Add search list ([c95c6aa](https://github.com/antdv-pro/antdv-pro/commit/c95c6aa)) +- Add dynamic routes ([766b04e](https://github.com/antdv-pro/antdv-pro/commit/766b04e)) +- Init route config ([e9eb147](https://github.com/antdv-pro/antdv-pro/commit/e9eb147)) +- New page ([ea00f70](https://github.com/antdv-pro/antdv-pro/commit/ea00f70)) +- Login view ([b270521](https://github.com/antdv-pro/antdv-pro/commit/b270521)) +- I18n config ([f292469](https://github.com/antdv-pro/antdv-pro/commit/f292469)) +- Page ([89fca03](https://github.com/antdv-pro/antdv-pro/commit/89fca03)) +- Axios loading ([f60c4d7](https://github.com/antdv-pro/antdv-pro/commit/f60c4d7)) +- Loading text prop ([26d96b4](https://github.com/antdv-pro/antdv-pro/commit/26d96b4)) +- Route config ([51cba5d](https://github.com/antdv-pro/antdv-pro/commit/51cba5d)) +- Update version ([5222e8c](https://github.com/antdv-pro/antdv-pro/commit/5222e8c)) +- Account center page ([dfeaf09](https://github.com/antdv-pro/antdv-pro/commit/dfeaf09)) +- Account-center i18n config ([0c38c00](https://github.com/antdv-pro/antdv-pro/commit/0c38c00)) +- Add basic table routes ([d445c08](https://github.com/antdv-pro/antdv-pro/commit/d445c08)) +- Add basic table i18n config ([d0e3385](https://github.com/antdv-pro/antdv-pro/commit/d0e3385)) +- Add basic table demo ([ddb7c13](https://github.com/antdv-pro/antdv-pro/commit/ddb7c13)) +- Add static routes ([9f42e28](https://github.com/antdv-pro/antdv-pro/commit/9f42e28)) +- Account-settings page ([b5f1360](https://github.com/antdv-pro/antdv-pro/commit/b5f1360)) +- I18n config ([c50b840](https://github.com/antdv-pro/antdv-pro/commit/c50b840)) +- Add step-form router ([23603f2](https://github.com/antdv-pro/antdv-pro/commit/23603f2)) +- Add step-form pages ([40baabe](https://github.com/antdv-pro/antdv-pro/commit/40baabe)) +- Add footer-tool-bar components ([7552a18](https://github.com/antdv-pro/antdv-pro/commit/7552a18)) +- Add advanced form router ([3bf0624](https://github.com/antdv-pro/antdv-pro/commit/3bf0624)) +- Add task form ([a4c1c51](https://github.com/antdv-pro/antdv-pro/commit/a4c1c51)) +- Add advanced form ([2fc8cc2](https://github.com/antdv-pro/antdv-pro/commit/2fc8cc2)) +- Add components parent ([fc47099](https://github.com/antdv-pro/antdv-pro/commit/fc47099)) +- Add parent layout ([75f4fd7](https://github.com/antdv-pro/antdv-pro/commit/75f4fd7)) +- Feat list ([412da2d](https://github.com/antdv-pro/antdv-pro/commit/412da2d)) +- Add `unocss-preset-chinese`, `unocss-preset-ease` ([7e5b706](https://github.com/antdv-pro/antdv-pro/commit/7e5b706)) +- Add some files ([431b1eb](https://github.com/antdv-pro/antdv-pro/commit/431b1eb)) +- Add consult-table page ([41ef497](https://github.com/antdv-pro/antdv-pro/commit/41ef497)) +- Add field trend components ([a2ecae7](https://github.com/antdv-pro/antdv-pro/commit/a2ecae7)) +- Add introduce-row first demo ([7a7e540](https://github.com/antdv-pro/antdv-pro/commit/7a7e540)) +- Complete introduce-row demo ([659bcaf](https://github.com/antdv-pro/antdv-pro/commit/659bcaf)) +- Add antv/g2plot package ([41c742e](https://github.com/antdv-pro/antdv-pro/commit/41c742e)) +- Add part of sales-card demo ([ac18ff6](https://github.com/antdv-pro/antdv-pro/commit/ac18ff6)) +- Delete useless code ([acbf99b](https://github.com/antdv-pro/antdv-pro/commit/acbf99b)) +- Complete sales-card demo ([ea9d0cd](https://github.com/antdv-pro/antdv-pro/commit/ea9d0cd)) +- Add 修改侧边栏可伸缩按钮位置 ([12cc61d](https://github.com/antdv-pro/antdv-pro/commit/12cc61d)) +- Add 修改侧边伸缩默认显示 ([4aebe57](https://github.com/antdv-pro/antdv-pro/commit/4aebe57)) +- Add 控制伸缩功能只在侧边布局生效 ([df0738c](https://github.com/antdv-pro/antdv-pro/commit/df0738c)) +- Complete number-info and top-search demo ([b0ceb48](https://github.com/antdv-pro/antdv-pro/commit/b0ceb48)) +- Complete proportion-sales demo ([be3b597](https://github.com/antdv-pro/antdv-pro/commit/be3b597)) +- Complete offline-data demo ([97cf972](https://github.com/antdv-pro/antdv-pro/commit/97cf972)) +- Reconstruct file location ([181e9ba](https://github.com/antdv-pro/antdv-pro/commit/181e9ba)) +- Add part of monitor demo ([0f3ca9d](https://github.com/antdv-pro/antdv-pro/commit/0f3ca9d)) +- Complete part of monitor demo ([f671f56](https://github.com/antdv-pro/antdv-pro/commit/f671f56)) +- Add part of workplace demo ([32958ac](https://github.com/antdv-pro/antdv-pro/commit/32958ac)) +- Complete workplace demo ([257c6b5](https://github.com/antdv-pro/antdv-pro/commit/257c6b5)) +- Complete monitor demo ([7b84c28](https://github.com/antdv-pro/antdv-pro/commit/7b84c28)) +- Change filename ([57a9bb0](https://github.com/antdv-pro/antdv-pro/commit/57a9bb0)) +- Add storage locale ([bf52bbb](https://github.com/antdv-pro/antdv-pro/commit/bf52bbb)) +- Support dynamic router close #93 ([#93](https://github.com/antdv-pro/antdv-pro/issues/93)) +- Add virtual list ([069f27f](https://github.com/antdv-pro/antdv-pro/commit/069f27f)) +- Change text ([4dccc14](https://github.com/antdv-pro/antdv-pro/commit/4dccc14)) + +### 🔥 Performance + +- 优化单独监听路由浪费渲染性能 ([05a3d79](https://github.com/antdv-pro/antdv-pro/commit/05a3d79)) + +### 🩹 Fixes + +- Fix iframe transition error ([57311cc](https://github.com/antdv-pro/antdv-pro/commit/57311cc)) +- Delete scroll ([a373517](https://github.com/antdv-pro/antdv-pro/commit/a373517)) +- Add script toJS ([1601334](https://github.com/antdv-pro/antdv-pro/commit/1601334)) +- Result page i18n step2-operator ([c900087](https://github.com/antdv-pro/antdv-pro/commit/c900087)) +- Success result i18n ([412dfeb](https://github.com/antdv-pro/antdv-pro/commit/412dfeb)) +- Router i18n ([d00cf4e](https://github.com/antdv-pro/antdv-pro/commit/d00cf4e)) +- Success page type error ([71aa9ec](https://github.com/antdv-pro/antdv-pro/commit/71aa9ec)) +- Success page type error ([451afd0](https://github.com/antdv-pro/antdv-pro/commit/451afd0)) +- Remove console log ([8c8a2db](https://github.com/antdv-pro/antdv-pro/commit/8c8a2db)) +- 修改路由错误 ([0d5e75c](https://github.com/antdv-pro/antdv-pro/commit/0d5e75c)) +- Dark theme error ([2c08422](https://github.com/antdv-pro/antdv-pro/commit/2c08422)) +- Commit-msg-lint ([2a91560](https://github.com/antdv-pro/antdv-pro/commit/2a91560)) +- Commit-msg-lint ([8e47aae](https://github.com/antdv-pro/antdv-pro/commit/8e47aae)) +- Commit-msg-lint, remove trailing comma ([e578774](https://github.com/antdv-pro/antdv-pro/commit/e578774)) +- 修改错误配置 ([0dc9048](https://github.com/antdv-pro/antdv-pro/commit/0dc9048)) +- Change dir name ([288e11c](https://github.com/antdv-pro/antdv-pro/commit/288e11c)) +- Fix qrcode ([1086a8d](https://github.com/antdv-pro/antdv-pro/commit/1086a8d)) +- Dark mode change error ([67ad773](https://github.com/antdv-pro/antdv-pro/commit/67ad773)) +- Lint error ([f064f70](https://github.com/antdv-pro/antdv-pro/commit/f064f70)) +- Build error ([1c13da1](https://github.com/antdv-pro/antdv-pro/commit/1c13da1)) +- Fix top mode header appear scroll && iframe is not fullscreen ([d07e846](https://github.com/antdv-pro/antdv-pro/commit/d07e846)) +- Change ([6e07288](https://github.com/antdv-pro/antdv-pro/commit/6e07288)) +- Build error ([8563a69](https://github.com/antdv-pro/antdv-pro/commit/8563a69)) +- Menu icon #53 ([#53](https://github.com/antdv-pro/antdv-pro/issues/53)) +- Login theme layout ([63e26a7](https://github.com/antdv-pro/antdv-pro/commit/63e26a7)) +- Rename enum file ([49edbc0](https://github.com/antdv-pro/antdv-pro/commit/49edbc0)) +- Login view change ([e861e47](https://github.com/antdv-pro/antdv-pro/commit/e861e47)) +- Fix page not full ([0caac29](https://github.com/antdv-pro/antdv-pro/commit/0caac29)) +- Router component ([a6e0fcf](https://github.com/antdv-pro/antdv-pro/commit/a6e0fcf)) +- Optimization level ([219646c](https://github.com/antdv-pro/antdv-pro/commit/219646c)) +- I18n symbol #60 ([#60](https://github.com/antdv-pro/antdv-pro/issues/60)) +- Login panel ([34cf8ae](https://github.com/antdv-pro/antdv-pro/commit/34cf8ae)) +- Validate not take effect ([baae131](https://github.com/antdv-pro/antdv-pro/commit/baae131)) +- Validate not take effect ([d132d04](https://github.com/antdv-pro/antdv-pro/commit/d132d04)) +- Add page container ([706087c](https://github.com/antdv-pro/antdv-pro/commit/706087c)) +- Type ([7d8ccde](https://github.com/antdv-pro/antdv-pro/commit/7d8ccde)) +- 将新消息通知中的三个切换按钮的checked状态单独定义 ([c7a44b7](https://github.com/antdv-pro/antdv-pro/commit/c7a44b7)) +- Footer tool bar support dark mode ([aae8cb3](https://github.com/antdv-pro/antdv-pro/commit/aae8cb3)) +- Fix radio-group ([e1a75b1](https://github.com/antdv-pro/antdv-pro/commit/e1a75b1)) +- Fix generate route ([b033198](https://github.com/antdv-pro/antdv-pro/commit/b033198)) +- Fix generate route ([41b50a1](https://github.com/antdv-pro/antdv-pro/commit/41b50a1)) +- Menu hidden header is not full close #71 ([#71](https://github.com/antdv-pro/antdv-pro/issues/71)) +- Build error close #75 ([#75](https://github.com/antdv-pro/antdv-pro/issues/75)) +- Collapsed trigger ([ff8ae6c](https://github.com/antdv-pro/antdv-pro/commit/ff8ae6c)) +- Account-setting avatar size ([069ad16](https://github.com/antdv-pro/antdv-pro/commit/069ad16)) +- Base-loading ui ([dfed9a9](https://github.com/antdv-pro/antdv-pro/commit/dfed9a9)) +- Modify route name to keep unique and basic form path ([69be62f](https://github.com/antdv-pro/antdv-pro/commit/69be62f)) +- Issues#68 ([#68](https://github.com/antdv-pro/antdv-pro/issues/68)) +- Add 删除打印和修正伸缩图标大小 ([22e74a8](https://github.com/antdv-pro/antdv-pro/commit/22e74a8)) +- Add pagination ([a04e223](https://github.com/antdv-pro/antdv-pro/commit/a04e223)) +- Issue#81 ([#81](https://github.com/antdv-pro/antdv-pro/issues/81)) +- Mock server error close #86 ([#86](https://github.com/antdv-pro/antdv-pro/issues/86)) +- Fix win and macos server env ([91bc884](https://github.com/antdv-pro/antdv-pro/commit/91bc884)) +- Dark mode ([1e31431](https://github.com/antdv-pro/antdv-pro/commit/1e31431)) +- Build error ([65bda0e](https://github.com/antdv-pro/antdv-pro/commit/65bda0e)) +- Build error ([3c5bc4b](https://github.com/antdv-pro/antdv-pro/commit/3c5bc4b)) +- Locale storage optimize ([a49d090](https://github.com/antdv-pro/antdv-pro/commit/a49d090)) +- Chart support destroy ([65bdfc7](https://github.com/antdv-pro/antdv-pro/commit/65bdfc7)) +- Change i18n ([8c3f517](https://github.com/antdv-pro/antdv-pro/commit/8c3f517)) +- Build error ([50b5773](https://github.com/antdv-pro/antdv-pro/commit/50b5773)) +- Chart auto fit ([f03bb48](https://github.com/antdv-pro/antdv-pro/commit/f03bb48)) +- Login form logo container layout ([a87df0d](https://github.com/antdv-pro/antdv-pro/commit/a87df0d)) +- Set autocomplete to off ([8ae0024](https://github.com/antdv-pro/antdv-pro/commit/8ae0024)) +- Switch menu stuck & stopped ([8173341](https://github.com/antdv-pro/antdv-pro/commit/8173341)) +- Add router key ([91256e3](https://github.com/antdv-pro/antdv-pro/commit/91256e3)) +- Change route view ([411a4b5](https://github.com/antdv-pro/antdv-pro/commit/411a4b5)) +- Change ([e2d046e](https://github.com/antdv-pro/antdv-pro/commit/e2d046e)) + +### 💅 Refactors + +- Change files name ([16f7940](https://github.com/antdv-pro/antdv-pro/commit/16f7940)) + +### 🏡 Chore + +- Add wx group jpg ([fc6481c](https://github.com/antdv-pro/antdv-pro/commit/fc6481c)) +- Update wx group ([2b32fa5](https://github.com/antdv-pro/antdv-pro/commit/2b32fa5)) +- Update dependencies for Nitro as devDependencies ([8480b27](https://github.com/antdv-pro/antdv-pro/commit/8480b27)) +- Update dependencies for Nitro as devDependencies ([6fbafac](https://github.com/antdv-pro/antdv-pro/commit/6fbafac)) +- Remove docs script ([18cf8f5](https://github.com/antdv-pro/antdv-pro/commit/18cf8f5)) +- Add deps ([a014040](https://github.com/antdv-pro/antdv-pro/commit/a014040)) +- Add commit check ([ad43dc1](https://github.com/antdv-pro/antdv-pro/commit/ad43dc1)) +- Add .gitattributes ([cc821f4](https://github.com/antdv-pro/antdv-pro/commit/cc821f4)) +- 删减路径多余空格 ([1617c99](https://github.com/antdv-pro/antdv-pro/commit/1617c99)) +- Change ci ([e4638d8](https://github.com/antdv-pro/antdv-pro/commit/e4638d8)) +- Add start date ([3de8ae4](https://github.com/antdv-pro/antdv-pro/commit/3de8ae4)) +- Types ([fd2f05f](https://github.com/antdv-pro/antdv-pro/commit/fd2f05f)) +- Chore ([6838cab](https://github.com/antdv-pro/antdv-pro/commit/6838cab)) +- Change ([d26935d](https://github.com/antdv-pro/antdv-pro/commit/d26935d)) +- Add current route ([1322f42](https://github.com/antdv-pro/antdv-pro/commit/1322f42)) +- Change components ([29d86c2](https://github.com/antdv-pro/antdv-pro/commit/29d86c2)) +- Change name ([85cabdb](https://github.com/antdv-pro/antdv-pro/commit/85cabdb)) +- **composables/loading:** Loading param note ([e81849a](https://github.com/antdv-pro/antdv-pro/commit/e81849a)) +- Add gitee ([371e5ea](https://github.com/antdv-pro/antdv-pro/commit/371e5ea)) +- BubbleCanvas ts type ([3fdd93b](https://github.com/antdv-pro/antdv-pro/commit/3fdd93b)) +- Change ([49a95a4](https://github.com/antdv-pro/antdv-pro/commit/49a95a4)) +- Change ([70a8034](https://github.com/antdv-pro/antdv-pro/commit/70a8034)) +- Ignore component.d.ts ([4bbd074](https://github.com/antdv-pro/antdv-pro/commit/4bbd074)) +- Ignore component.d.ts ([2ecae5b](https://github.com/antdv-pro/antdv-pro/commit/2ecae5b)) +- Delete excess ([aae0a7f](https://github.com/antdv-pro/antdv-pro/commit/aae0a7f)) +- Del basic table demo ([211e0a4](https://github.com/antdv-pro/antdv-pro/commit/211e0a4)) +- Add account routerlink ([403d3a5](https://github.com/antdv-pro/antdv-pro/commit/403d3a5)) +- Add space to advance form ([80faa7e](https://github.com/antdv-pro/antdv-pro/commit/80faa7e)) +- Change format ([4af5f56](https://github.com/antdv-pro/antdv-pro/commit/4af5f56)) +- Change ([ac15c2a](https://github.com/antdv-pro/antdv-pro/commit/ac15c2a)) +- Font optimization ([18a31b7](https://github.com/antdv-pro/antdv-pro/commit/18a31b7)) +- Change version ([692bd7c](https://github.com/antdv-pro/antdv-pro/commit/692bd7c)) +- Change version ([d45e443](https://github.com/antdv-pro/antdv-pro/commit/d45e443)) +- Change version ([bdafa15](https://github.com/antdv-pro/antdv-pro/commit/bdafa15)) +- Change version ([199bf5d](https://github.com/antdv-pro/antdv-pro/commit/199bf5d)) +- Change version ([6eee4de](https://github.com/antdv-pro/antdv-pro/commit/6eee4de)) +- Change version ([c696770](https://github.com/antdv-pro/antdv-pro/commit/c696770)) +- Change pnpm-lock version ([caedc74](https://github.com/antdv-pro/antdv-pro/commit/caedc74)) +- Change ([747b6c2](https://github.com/antdv-pro/antdv-pro/commit/747b6c2)) +- 修改侧边菜单超出显示样式 ([368ffe0](https://github.com/antdv-pro/antdv-pro/commit/368ffe0)) +- Fix console error ([a08f428](https://github.com/antdv-pro/antdv-pro/commit/a08f428)) +- Use auto import ([4be2127](https://github.com/antdv-pro/antdv-pro/commit/4be2127)) + +### 🎨 Styles + +- Fix card-list style ([6b68f8d](https://github.com/antdv-pro/antdv-pro/commit/6b68f8d)) +- Login change ([4e74769](https://github.com/antdv-pro/antdv-pro/commit/4e74769)) +- Fix style ([8d8a96e](https://github.com/antdv-pro/antdv-pro/commit/8d8a96e)) +- Fix style ([05d072e](https://github.com/antdv-pro/antdv-pro/commit/05d072e)) + +### 🤖 CI + +- Add lint ([a6cbed7](https://github.com/antdv-pro/antdv-pro/commit/a6cbed7)) + +### ❤️ Contributors + +- Liosummer <2447629916@qq.com> +- Windlil ([@windlil](http://github.com/windlil)) +- Aibayanyu20 +- Aibayanyu +- Konv Suu <2583695112@qq.com> +- AutismSuperman +- 杜天宇 <17862705909@163.com> +- AShu-guo +- Sun1090 ([@Sun1090](http://github.com/Sun1090)) +- Undefined ([@undefined-moe](http://github.com/undefined-moe)) +- LC1 +- Kirk Lin ([@kirklin](http://github.com/kirklin)) +- Yizhankui <2669587581@qq.com> +- 张浩杰 ([@HavocZhang](http://github.com/HavocZhang)) +- 一个小瘪三 <10948399+menon-qiqi@user.noreply.gitee.com> +- Qi Yuhang +- Qyh +- Zev Zhu +- Adekang + +## v0.0.19 + +[compare changes](https://undefined/undefined/compare/v0.0.18...v0.0.19) + +### 🚀 Enhancements + +- Add copy setting config (7677dbf) +- Add LICENSE (97dadb0) +- Support does not depend on name to keep alive (82394bb) +- Add github and doc link (d80f78a) + +### 🩹 Fixes + +- Eslint warning close #13 (#13) + +### 🏡 Chore + +- Change version (215b0a0) +- Change version (37b121c) +- Fix conflict (5b6463b) +- Change eslint ignore (38cad2c) + +### ❤️ Contributors + +- Aibayanyu20 +- Aibayanyu + +## v0.0.18 + +[compare changes](https://undefined/undefined/compare/v0.0.17...v0.0.18) + +### 🚀 Enhancements + +- Global config (e314b34) +- Support customDev mode (11c6c06) +- Add dynamic animation list close #10 (#10) +- Add Dockerfile (0619785) + +### 🩹 Fixes + +- Loading error (94efff8) +- Delete modal typo (0c3f7c3) +- Header content overflow issue (e7dd087) +- Change dockerfile (4ba22e5) +- Change api (059549e) + +### 🏡 Chore + +- Change version (46b422b) +- Change version (af2549e) +- Change readme (4d9221c) + +### ❤️ Contributors + +- Aibayanyu20 +- Kai + +## v0.0.17 + +[compare changes](https://undefined/undefined/compare/v0.0.16...v0.0.17) + +### 🚀 Enhancements + +- Add useMessage && useModal && useNotifaction replace message && modal && notifaction (d0c031a) +- Replace request config (4be8824) + +### 🩹 Fixes + +- Typo (14c93ef) +- Typo (ca14d96) + +### ❤️ Contributors + +- Aibayanyu20 + +## v0.0.16 + +[compare changes](https://undefined/undefined/compare/v0.0.15...v0.0.16) + +### 🚀 Enhancements + +- Update version (2d7162d) + +### 🩹 Fixes + +- Remove tab more (4b4b092) +- Style warning (f6a863c) +- Fix split error (ad77483) + +### 🏡 Chore + +- Update version (e231627) +- Change version (4223747) + +### ❤️ Contributors + +- Aibayanyu +- Aibayanyu20 + +## v0.0.15 + +[compare changes](https://undefined/undefined/compare/v0.0.14...v0.0.15) + + +### 🚀 Enhancements + + - Add locale (7adbce1) + - Menu support i18n (74baf00) + - Title support title (aea9fd9) + +### 🩹 Fixes + + - Fix split menu change error (da34522) + - Menu title error (a13462e) + - Menu title error (5a70263) + +### 🏡 Chore + + - Change version (f327491) + +### ❤️ Contributors + +- Aibayanyu20 + +## v0.0.14 + +[compare changes](https://undefined/undefined/compare/v0.0.13...v0.0.14) + + +### 🚀 Enhancements + + - Support split menu mode (86a9273) + +### 🩹 Fixes + + - Context menu refresh current (2d8dca4) + - Optimize the animation effect (f0ed9a3) + - HeaderHeight is not take effect (73ca87b) + - Fix css error (6fe1276) + +### ❤️ Contributors + +- Aibayanyu20 +- Aibayanyu + +## v0.0.13 + +[compare changes](https://undefined/undefined/compare/v0.0.12...v0.0.13) + + +### 🚀 Enhancements + + - Support dynamic routes (2164119) + - Support dynamic load way in env (5dd538d) + +### 🏡 Chore + + - Add readme (5d048e3) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.12 + +[compare changes](https://undefined/undefined/compare/v0.0.11...v0.0.12) + + +### 🚀 Enhancements + + - Add access mode (e89acfe) + +### 🩹 Fixes + + - Loading experience optimization (136aa7b) + - Change loading in router guard (8479d60) + - Typo (29430fa) + - Typo (6358062) + - Loading delay (c842062) + - Query dom (46cfb14) + - Logout cache (1e18c85) + +### 🏡 Chore + + - Bump version (b20d4b1) + - Change version (afe7e7f) + - Fix auto import components ts types (a68d41c) + - Change plugin version (32edfae) + +### ❤️ Contributors + +- Aibayanyu +- Aibayanyu20 +- Kai + +## v0.0.11 + +[compare changes](https://undefined/undefined/compare/v0.0.10...v0.0.11) + + +### 🚀 Enhancements + + - Add request control token (43bc593) + - Add request control token (f71c2e4) + - Support accordion mode (6d9c8df) + +### 🩹 Fixes + + - Typo (96f8220) + - Store state error (aa6c605) + +### 🏡 Chore + + - Migrate package version (6486f57) + - Change (a1ee980) + - Update version (6863493) + - Update version (69e8b1f) + - Change vue-i18n (7923e2b) + - Update version (5d74cd6) + +### 🤖 CI + + - Add issue close workflow (5278a99) + +### ❤️ Contributors + +- Zev Zhu +- Aibayanyu +- 杜天宇 <17862705909@163.com> +- Aibayanyu20 + +## v0.0.10 + +[compare changes](https://undefined/undefined/compare/v0.0.9...v0.0.10) + + +### 🩹 Fixes + + - Fix close left and right error (eea8854) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.9 + +[compare changes](https://undefined/undefined/compare/v0.0.8...v0.0.9) + + +### 🚀 Enhancements + + - Add context right menu (390022d) + - Use size small (ac962b0) + - Add contenxt menu (f720551) + +### 🩹 Fixes + + - Height error (ae945b9) + +### 🏡 Chore + + - Change author (3faac73) + +### 🤖 CI + + - Rename package.json (4bd1cde) + +### ❤️ Contributors + +- Aibayanyu +- Zhuzhengjian +- Zev Zhu + +## v0.0.8 + +[compare changes](https://undefined/undefined/compare/v0.0.7...v0.0.8) + + +### 🚀 Enhancements + + - Add pagecontainer (f3ecd48) + +### 🩹 Fixes + + - Color primary (661f7b3) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.7 + +[compare changes](https://undefined/undefined/compare/v0.0.6...v0.0.7) + + +### 🩹 Fixes + + - Import error (1ba59d5) + - Rename (9362480) + +### 🏡 Chore + + - Migrate version (1eebf00) + +### 🤖 CI + + - Change (5a12b81) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.6 + +[compare changes](https://undefined/undefined/compare/v0.0.5...v0.0.6) + + +### 🏡 Chore + + - Migrate ant-design-vue (0d02def) + - Migrate version (946b304) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.5 + +[compare changes](https://undefined/undefined/compare/v0.0.4...v0.0.5) + + +### 🚀 Enhancements + + - Add select lang (0bc02ae) + +### 🏡 Chore + + - Change (68464cb) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.4 + +[compare changes](https://undefined/undefined/compare/v0.0.3...v0.0.4) + + +### 🏡 Chore + + - Change pkg (65d4d49) + - Change (45b44fb) + - Change (7608a96) + +### ❤️ Contributors + +- Aibayanyu ([@mist-design](http://github.com/mist-design)) + +## v0.0.3 + +[compare changes](https://undefined/undefined/compare/v0.0.2...v0.0.3) + + +### 🚀 Enhancements + + - Add keepalive config (0021ed4) + +### 🩹 Fixes + + - Remove transition (6e1b836) + - Transition error (25bed59) + - Analysis is not take effect (ef0e5ec) + +### 🏡 Chore + + - Change version (03787ae) + - Change version (5e161ce) + +### 🤖 CI + + - Add workflow (438b594) + +### ❤️ Contributors + +- Aibayanyu ([@mist-design](http://github.com/mist-design)) + +## vtrue + +[compare changes](https://undefined/undefined/compare/v0.0.2...vtrue) + + +### 🚀 Enhancements + + - Add keepalive config (0021ed4) + +### 🩹 Fixes + + - Remove transition (6e1b836) + - Transition error (25bed59) + - Analysis is not take effect (ef0e5ec) + +### 🤖 CI + + - Add workflow (438b594) + +### ❤️ Contributors + +- Aibayanyu ([@mist-design](http://github.com/mist-design)) + diff --git a/frontend/Dockerfile b/frontend/Dockerfile new file mode 100644 index 0000000..8009d44 --- /dev/null +++ b/frontend/Dockerfile @@ -0,0 +1,8 @@ +FROM nginx + +RUN rm /etc/nginx/conf.d/default.conf + +ADD default.conf /etc/nginx/conf.d/default.conf +COPY dist/ /usr/share/nginx/html/ +RUN chmod 775 -R /usr/share/nginx/html +EXPOSE 80/tcp \ No newline at end of file diff --git a/frontend/LICENSE b/frontend/LICENSE new file mode 100644 index 0000000..06cef5f --- /dev/null +++ b/frontend/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [2023] [Antdv Pro] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..ab42a5c --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,98 @@ +
VbenAdmin Logo

+ +

Antdv Pro

+ +
+ +![gitee](https://gitee.com/antdv-pro/antdv-pro/badge/star.svg) +![github](https://img.shields.io/github/stars/antdv-pro/antdv-pro?style=social) + +**English** | [简体中文](./README.zh-CN.md) + +## Introduction + +AntdvPro is a complete set of enterprise-level mid-backend front-end/design solutions based on Vue3, Vite4, ant-design-vue4, Pinia, UnoCSS and Typescript. It refers to the design pattern of Ali react version antd-pro, using the latest and most popular The front-end technology stack has built-in dynamic routing, multi-theme, multi-layout and other functions, which can help you quickly build enterprise-level mid-background product prototypes. + +## Features + +* pnpm: Using the latest pnpm as a package management tool, it can greatly reduce the size of node_modules, speed up the installation speed of packages, and can also share dependencies to reduce disk usage. +* vite: vite as a front-end development tool, it can greatly speed up the start-up speed of the project, and also supports hot updates, which can greatly improve development efficiency. +* vue3: vue3.3.x as the front-end framework, the basic code is written in script-setup, with less code and low maintenance cost. +* nitro mock: Use nitro as the server's mock data, decoupled from the project, and more flexible and easy to use. +* ant-design-vue4: ant-design-vue4 as the UI framework, the author of admin-pro is also a core member of ant-design-vue, which can provide long-term maintenance support. +* pinia: pinia as a state management tool, it can greatly improve the readability and maintainability of the code, and also supports Typescript. +* UnoCSS: Atomic CSS framework, reduce the troubles caused by thinking about some common class names, and improve our development efficiency. +* Code specification: We have encapsulated a set of eslint-based code specification configuration files, which can be used out of the box to unify the problems brought by different teams. +* Theme: The design specifications of antd-pro of the react version are used, and a set of theme modes based on vue are developed. On this basis, some new functions are added to meet various different needs as much as possible. +* Request function: Based on axios, a set of request functions with complete types and some basic interceptor encapsulations are encapsulated. You only need to make corresponding implementation adjustments according to the requirements to meet the different needs of various projects. +* Mobile compatibility: We have tried our best to make the basic framework compatible with the mobile terminal mode, but because our main goal is the enterprise-level mid-background product, we have not made too much adaptation to the mobile terminal. If your project needs to adapt to the mobile terminal, you can refer to our code for corresponding adjustments. + +## Preview + +[antdv-pro](https://antdv-pro.com) - Test Account: admin/admin + +[antdv-pro-js](https://github.com/antdv-pro/antdv-pro/tree/feat-js) - Javascript version + +[antdv-pro-js-gitee](https://gitee.com/antdv-pro/antdv-pro/tree/feat-js/) - Gitee Javascript version + +[antdv-pro-docs](https://docs.antdv-pro.com) - Documentation + +## Community + +QQ Group: apply wechat group + +Wechat: aibayanyu2022 + +Wechat Group: Add author WeChat + +Discord: [discord](https://discord.gg/tPb4G6gXmm) + +## Useage + +```bash + +# Install degit +npm i -g degit + +# Pull the code +degit antdv-pro/antdv-pro [your project name] + +# Switch to the project directory +cd [your project name] + +# Install +pnpm install + +# Development +pnpm dev +``` + +## Contribute + +We are very welcome to have you participate in our open source project. + +**Pull Request:** + +1. Fork code! +2. Create your own branch: `git checkout -b feat-xxxx` +3. Submit your changes: `git commit -am 'feat(function): add xxxxx'` +4. Push your branch: `git push origin feat-xxxx` +5. submit`pull request` + +Thank you to all the people who already contributed to antdv-pro! + + + + + +## Support + +If you like our project, you can support us by clicking the "Star" button in the upper right corner. Your support is my motivation. Thank you ~ + +Thanks to the open source project license provided by [Jetbrains](https://www.jetbrains.com/?from=antdv-pro). + +## Sponsor + +If you like our project, you can sponsor us to help us maintain the project better. + +[Alipay/Wechat](https://docs.antdv-pro.com/other/sponsor.html) diff --git a/frontend/README.zh-CN.md b/frontend/README.zh-CN.md new file mode 100644 index 0000000..2348464 --- /dev/null +++ b/frontend/README.zh-CN.md @@ -0,0 +1,97 @@ +
VbenAdmin Logo

+ +

Antdv Pro

+ +
+ +![gitee](https://gitee.com/antdv-pro/antdv-pro/badge/star.svg) +![github](https://img.shields.io/github/stars/antdv-pro/antdv-pro?style=social) + +[English](./README.md) | **简体中文** + +## 介绍 + +AntdvPro是一个基于Vue3、Vite4、ant-design-vue4、Pinia、UnoCSS和Typescript的一整套企业级中后台前端/设计解决方案,它参考了阿里react版本antd-pro的设计模式,使用了最新最流行的前端技术栈,内置了动态路由、多主题、多布局等功能,可以帮助你快速搭建企业级中后台产品原型。 + +## 特性 + +* pnpm:使用了最新的pnpm作为包管理工具,它可以大大减少node_modules的体积,加快包的安装速度,同时还可以共享依赖,减少磁盘占用。 +* vite:vite作为前端开发工具,它可以大大加快项目的启动速度,同时还支持热更新,可以大大提高开发效率。 +* vue3:vue3.3.x作为前端框架,基础代码全部使用script-setup的写法,代码量少维护成本低。 +* nitro mock:采用nitro作为服务端的mock数据,从工程中解耦处理,更加灵活易用。 +* ant-design-vue4:ant-design-vue4作为UI框架,admin-pro的作者也是ant-design-vue的核心成员,可提供长期的维护支持。 +* pinia:pinia作为状态管理工具,它可以大大提高代码的可读性和可维护性,同时还支持Typescript。 +* UnoCSS:原子化的CSS框架,减少我们去想一些通用类名带来的烦恼,提升我们的开发效率。 +* 代码规范:我们封装了一套基于eslint的代码规范配置文件,开箱即用,统一不同团队所带来的问题。 +* 主题:延用了react版本的antd-pro的设计规范,开发了一套基于vue的主题模式,在此基础上增加了一些新的功能,尽可能的满足各种不同的需求。 +* 请求函数:基于axios封装了一套具有完善类型的请求函数,以及一些基础的拦截器的封装,只需要按照需求做对应的实现调整就能满足各种项目带来的不一样的需求。 +* 移动端兼容:基础框架部分我们尽可能的对移动端的模式进行了兼容处理,但是由于我们的主要目标是企业级中后台产品,所以我们并没有对移动端做过多的适配,如果你的项目需要移动端的适配,可以参考我们的代码进行相应的调整。 + +## 演示 + +[antdv-pro](https://antdv-pro.com) - 测试账号:admin/admin + +[antdv-pro-js](https://github.com/antdv-pro/antdv-pro/tree/feat-js) - JS版本 + +[antdv-pro-js-gitee](https://gitee.com/antdv-pro/antdv-pro/tree/feat-js/) - Gitee JS 版本 + +[antdv-pro-docs](https://docs.antdv-pro.com) - 在线文档地址 + +## 社区 + +QQ群: 申请微信群 + +微信: 已经被广告闹麻了自己控制台 Console解密 atob("YWliYXlhbnl1MjAyMg==") 再有广告就对不起大家了,gitee删库不做gitee仓库了 + +Discord: [discord](https://discord.gg/tPb4G6gXmm) + +## 使用 + +```bash + +# 安装degit +npm i -g degit + +# 拉取代码 +degit antdv-pro/antdv-pro [your project name] + +# 切换到项目目录 +cd [your project name] + +# 安装依赖 + +pnpm install + +# 启动项目 +pnpm dev +``` + +## 贡献 + +非常欢迎您参与到我们的开源项目中来~ + +**PR流程:** + +1. Fork 代码! +2. 创建自己的分支: `git checkout -b feat-xxxx` +3. 提交你的修改: `git commit -am 'feat(function): add xxxxx'` +4. 推送您的分支: `git push origin feat-xxxx` +5. 提交`pull request` + +感谢所有为`antdv-pro`做出贡献的小伙伴儿们! + + + + + +## 支持 + +如果你觉得这个项目对你有帮助,你可以点右上角 "Star" 支持一下,你的支持就是我的动力,谢谢~ + +感谢[Jetbrains](https://www.jetbrains.com/?from=antdv-pro).提供的开源项目许可证支持 + +## 赞助 + +如果你觉得这个项目对你有帮助,你可以点击下方链接对我进行赞助,谢谢~ + +[赞助](https://docs.antdv-pro.com/other/sponsor.html) diff --git a/frontend/default.conf b/frontend/default.conf new file mode 100644 index 0000000..905cc3f --- /dev/null +++ b/frontend/default.conf @@ -0,0 +1,45 @@ +server { + listen 80; + server_name 150.158.236.152; # 替换为你的服务器 IP/域名 + client_max_body_size 100M; # 全局生效的文件上传大小限制 + + # 日志配置 + access_log /var/log/nginx/front-access.log main; + error_log /var/log/nginx/front-error.log warn; + + # gzip 压缩(保留原有配置) + gzip on; + gzip_min_length 1k; + gzip_comp_level 9; + gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml; + gzip_vary on; + gzip_disable "MSIE [1-6]\."; + + # 前端静态文件根目录(适配 Docker 挂载) + root /usr/share/nginx/html; + include /etc/nginx/mime.types; + + # 静态资源缓存优化 + location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ { + expires 7d; + add_header Cache-Control "public, max-age=604800"; + access_log off; + } + + # SPA 路由兜底 + location / { + try_files $uri $uri/ /index.html; + } + + # 错误页适配 SPA + error_page 404 500 502 503 504 /index.html; + + # 后端 API 代理(替换为实际地址) + location /api { + rewrite ^/api(.*)$ $1 break; + proxy_pass http://150.158.236.152:5221; # 你的 Flask 后端地址 + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + } +} \ No newline at end of file diff --git a/frontend/eslint.config.ts b/frontend/eslint.config.ts new file mode 100644 index 0000000..29c2f9c --- /dev/null +++ b/frontend/eslint.config.ts @@ -0,0 +1,21 @@ +import antfu from '@antfu/eslint-config' + +export default antfu({ + formatters: { + css: true, + }, + ignores: [ + 'types/auto-imports.d.ts', + 'types/components.d.ts', + 'public', + 'tsconfig.*.json', + 'tsconfig.json', + ], +}, { + rules: { + 'no-console': 0, + 'style/quote-props': 0, + 'unused-imports/no-unused-vars': 0, + 'ts/no-unused-expressions': 0, + }, +}) diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..fab28bb --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,22 @@ + + + + + + + + + + +
+ + + + diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..b9d2d7f --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,101 @@ +{ + "name": "antdv-pro", + "type": "module", + "version": "1.4.0", + "packageManager": "pnpm@10.17.1", + "author": "aibayanyu ", + "repository": "antdv-pro/antdv-pro", + "engines": { + "node": ">=20.15.0" + }, + "scripts": { + "dev": "vite --host", + "build": "vite build", + "clear:vercel": "rm -rf ./vercel.json", + "build:vercel": "run-s clear:vercel", + "start": "node dist/servers/app.mjs", + "preview": "vite preview", + "lint": "eslint src --fix", + "typecheck": "vue-tsc --noEmit", + "bump:patch": "changelogen --bump --output CHANGELOG.md --release", + "bump:minor": "changelogen --bump --output CHANGELOG.md --release --minor", + "bump:major": "changelogen --bump --output CHANGELOG.md --release --major", + "prepare": "husky", + "dir-tree": "esno ./scripts/dir-tree", + "gen:uno": "esno ./scripts/gen-unocss", + "toJS": "esno scripts/to-js" + }, + "dependencies": { + "@amap/amap-jsapi-loader": "^1.0.1", + "@ant-design/icons-vue": "^7.0.1", + "@antv/g2plot": "^2.4.35", + "@antv/l7": "^2.23.0", + "@ctrl/tinycolor": "^4.2.0", + "@v-c/utils": "^0.0.26", + "@vueuse/core": "^10.11.1", + "ant-design-vue": "^4.2.6", + "axios": "^1.12.2", + "crypto-js": "^4.2.0", + "dayjs": "^1.11.18", + "echarts": "^6.0.0", + "lodash-es": "^4.17.21", + "mitt": "^3.0.1", + "pinia": "^2.3.1", + "sjcl": "^1.0.9", + "sm-crypto": "^0.4.0", + "vue": "^3.5.22", + "vue-i18n": "^9.14.5", + "vue-router": "^4.5.1" + }, + "devDependencies": { + "@antfu/eslint-config": "^5.4.1", + "@commitlint/cli": "^18.6.1", + "@commitlint/config-conventional": "^18.6.3", + "@mistjs/vite-plugin-preload": "^0.0.1", + "@types/crypto-js": "^4.2.2", + "@types/fs-extra": "^11.0.4", + "@types/lodash": "^4.17.20", + "@types/lodash-es": "^4.17.12", + "@types/node": "^20.19.17", + "@types/treeify": "^1.0.3", + "@vitejs/plugin-vue": "^6.0.1", + "@vitejs/plugin-vue-jsx": "^5.1.1", + "@vue/test-utils": "^2.4.6", + "antdv-component-resolver": "^1.0.8", + "antdv-style": "0.0.1-beta.4", + "changelogen": "^0.5.7", + "cross-env": "^7.0.3", + "directory-tree": "^3.5.2", + "esbuild": "^0.25.10", + "eslint": "^9.36.0", + "eslint-plugin-format": "^1.0.2", + "esno": "^0.17.0", + "execa": "^8.0.1", + "fs-extra": "^11.3.2", + "h3": "2.0.0-beta.4", + "husky": "^9.1.7", + "jiti": "^2.6.0", + "jsdom": "^22.1.0", + "less": "^4.4.1", + "lint-staged": "^14.0.1", + "lodash": "^4.17.21", + "mock-h3": "0.0.1-beta.12", + "npm-run-all": "^4.1.5", + "picocolors": "^1.1.1", + "treeify": "^1.1.0", + "ts-node": "^10.9.2", + "typescript": "~5.8.3", + "unocss": "^66.5.2", + "unocss-preset-chinese": "^0.3.3", + "unocss-preset-ease": "^0.0.3", + "unplugin-auto-import": "^19.3.0", + "unplugin-config": "^0.1.5", + "unplugin-vue-components": "^29.1.0", + "vite": "npm:rolldown-vite@7.1.13", + "vitest": "^3.2.4", + "vue-tsc": "^3.0.8" + }, + "lint-staged": { + "**/*.{vue,ts,js,jsx,tsx}": "eslint src --fix" + } +} diff --git a/frontend/plugins/constants.ts b/frontend/plugins/constants.ts new file mode 100644 index 0000000..220cb6b --- /dev/null +++ b/frontend/plugins/constants.ts @@ -0,0 +1,5 @@ +// This constant defines the name of the configuration file that will be used in the production environment +export const GLOB_CONFIG_FILE_NAME = '_app.config.js' + +// This constant sets the output directory for the Vite package +export const OUTPUT_DIR = 'dist' diff --git a/frontend/plugins/index.ts b/frontend/plugins/index.ts new file mode 100644 index 0000000..543ffe7 --- /dev/null +++ b/frontend/plugins/index.ts @@ -0,0 +1,52 @@ +import type { PluginOption } from 'vite' +import VitePluginPreloadAll from '@mistjs/vite-plugin-preload' +import vue from '@vitejs/plugin-vue' +import vueJsx from '@vitejs/plugin-vue-jsx' +import AntdvResolver from 'antdv-component-resolver' +import { mockH3 } from 'mock-h3/vite' +import Unocss from 'unocss/vite' +import AutoImport from 'unplugin-auto-import/vite' +import GenerateConfig from 'unplugin-config/vite' +import Components from 'unplugin-vue-components/vite' +import { GLOB_CONFIG_FILE_NAME, OUTPUT_DIR } from './constants' +import { viteBuildInfo } from './vite-build-info' + +export function createVitePlugins(env: Record) { + const vitePluginList: (PluginOption | PluginOption[])[] = [ + vue(), + vueJsx(), + // mockH3({}), + VitePluginPreloadAll(), + AutoImport({ + imports: [ + 'vue', + 'vue-router', + 'vue-i18n', + '@vueuse/core', + 'pinia', + ], + dts: 'types/auto-imports.d.ts', + dirs: ['src/stores', 'src/composables'], + }), + Components({ + resolvers: [AntdvResolver()], + dts: 'types/components.d.ts', + dirs: ['src/components'], + }), + // https://github.com/kirklin/unplugin-config + GenerateConfig({ + appName: env.VITE_GLOB_APP_TITLE, + configFile: { + generate: true, + fileName: GLOB_CONFIG_FILE_NAME, + outputDir: OUTPUT_DIR, + }, + envVariables: { + prefix: 'VITE_GLOB_', + }, + }), + Unocss(), + viteBuildInfo(env.VITE_APP_NAME), + ] + return vitePluginList +} diff --git a/frontend/plugins/vite-build-info.ts b/frontend/plugins/vite-build-info.ts new file mode 100644 index 0000000..0578b1d --- /dev/null +++ b/frontend/plugins/vite-build-info.ts @@ -0,0 +1,207 @@ +import type { Dayjs } from 'dayjs' +import type { Plugin, ResolvedConfig } from 'vite' +import { readdir, stat } from 'node:fs' +import dayjs from 'dayjs' +import duration from 'dayjs/plugin/duration' +import pkg from 'picocolors' + +const { green, blue, bold } = pkg +dayjs.extend(duration) + +const fileListTotal: number[] = [] + +// eslint-disable-next-line ts/no-unsafe-function-type +function recursiveDirectory(folder: string, callback: Function): void { + readdir(folder, (err, files: string[]) => { + if (err) + throw err + let count = 0 + const checkEnd = () => { + ++count === files.length && callback() + } + files.forEach((item: string) => { + stat(`${folder}/${item}`, async (err, stats) => { + if (err) + throw err + if (stats.isFile()) { + fileListTotal.push(stats.size) + checkEnd() + } + else if (stats.isDirectory()) { + recursiveDirectory(`${folder}/${item}/`, checkEnd) + } + }) + }) + files.length === 0 && callback() + }) +} + +function sum(arr: number[]) { + return arr.reduce((t: number, c: number) => { + return t + c + }, 0) +} +function formatBytes(a: number, b?: number): string { + if (a === 0) + return '0 Bytes' + const c = 1024 + const d = b || 2 + const e = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'] + const f = Math.floor(Math.log(a) / Math.log(c)) + return `${Number.parseFloat((a / c ** f).toFixed(d))} ${e[f]}` +} + +export function viteBuildInfo(name: string): Plugin { + let config: ResolvedConfig + let startTime: Dayjs + let endTime: Dayjs + return { + name: 'vite:buildInfo', + configResolved(resolvedConfig) { + config = resolvedConfig + }, + buildStart() { + console.log( + bold( + green( + `👏欢迎使用${blue(`[${name}]`)},现在正全力为您${config.command === 'build' ? '打包' : '编译' + }`, + ), + ), + ) + if (config.command === 'build') + startTime = dayjs(new Date()) + }, + closeBundle() { + if (config.command === 'build') { + endTime = dayjs(new Date()) + recursiveDirectory(config.build.outDir, () => { + console.log( + bold( + green( + `恭喜打包完成🎉(总用时${dayjs + .duration(endTime.diff(startTime)) + .format('mm分ss秒')},打包后的大小为${formatBytes( + sum(fileListTotal), + )})`, + ), + ), + ) + }) + } + }, + } +} + + +// import type { Dayjs } from 'dayjs' +// import type { Plugin, ResolvedConfig } from 'vite' +// import { readdir, stat, existsSync } from 'node:fs' // 👈 新增 existsSync +// import { resolve } from 'node:path' // 👈 新增 resolve +// import dayjs from 'dayjs' +// import duration from 'dayjs/plugin/duration' +// import pkg from 'picocolors' + +// const { green, blue, bold } = pkg +// dayjs.extend(duration) + +// const fileListTotal: number[] = [] + +// function recursiveDirectory(folder: string, callback: () => void): void { +// // 👇 先检查目录是否存在 +// if (!existsSync(folder)) { +// console.warn(`[vite:buildInfo] 目录不存在: ${folder}`) +// callback() +// return +// } + +// readdir(folder, (err, files: string[]) => { +// if (err) { +// console.error('[vite:buildInfo] 读取目录失败:', err) +// callback() +// return +// } + +// let count = 0 +// const checkEnd = () => { +// if (++count === files.length) callback() +// } + +// if (files.length === 0) { +// callback() +// return +// } + +// files.forEach((item: string) => { +// const fullPath = resolve(folder, item) // 👈 使用 resolve 拼接路径 +// stat(fullPath, (err, stats) => { +// if (err) { +// checkEnd() +// return +// } +// if (stats.isFile()) { +// fileListTotal.push(stats.size) +// checkEnd() +// } else if (stats.isDirectory()) { +// recursiveDirectory(fullPath, checkEnd) +// } +// }) +// }) +// }) +// } + +// function sum(arr: number[]) { +// return arr.reduce((t, c) => t + c, 0) +// } + +// function formatBytes(a: number, b = 2): string { +// if (a === 0) return '0 Bytes' +// const c = 1024 +// const e = ['Bytes', 'KB', 'MB', 'GB', 'TB'] +// const f = Math.floor(Math.log(a) / Math.log(c)) +// return `${parseFloat((a / c ** f).toFixed(b))} ${e[f]}` +// } + +// export function viteBuildInfo(name: string): Plugin { +// let config: ResolvedConfig +// let startTime: Dayjs +// let endTime: Dayjs + +// return { +// name: 'vite:buildInfo', +// configResolved(resolvedConfig) { +// config = resolvedConfig +// }, +// buildStart() { +// console.log( +// bold( +// green( +// `👏欢迎使用${blue(`[${name}]`)},现在正全力为您${config.command === 'build' ? '打包' : '编译'}`, +// ), +// ), +// ) +// if (config.command === 'build') { +// startTime = dayjs() +// } +// }, +// closeBundle() { +// if (config.command === 'build') { +// endTime = dayjs() +// // 👇 关键:将 outDir 转为绝对路径! +// const outDir = resolve(config.root || process.cwd(), config.build.outDir) + +// recursiveDirectory(outDir, () => { +// console.log( +// bold( +// green( +// `恭喜打包完成🎉(总用时${dayjs +// .duration(endTime.diff(startTime)) +// .format('mm分ss秒')},打包后的大小为${formatBytes(sum(fileListTotal))})`, +// ), +// ), +// ) +// }) +// } +// }, +// } +// } \ No newline at end of file diff --git a/frontend/pnpm-lock.yaml b/frontend/pnpm-lock.yaml new file mode 100644 index 0000000..79465ee --- /dev/null +++ b/frontend/pnpm-lock.yaml @@ -0,0 +1,12774 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@amap/amap-jsapi-loader': + specifier: ^1.0.1 + version: 1.0.1 + '@ant-design/icons-vue': + specifier: ^7.0.1 + version: 7.0.1(vue@3.5.22(typescript@5.8.3)) + '@antv/g2plot': + specifier: ^2.4.35 + version: 2.4.35 + '@antv/l7': + specifier: ^2.23.0 + version: 2.23.0 + '@ctrl/tinycolor': + specifier: ^4.2.0 + version: 4.2.0 + '@v-c/utils': + specifier: ^0.0.26 + version: 0.0.26(typescript@5.8.3) + '@vueuse/core': + specifier: ^10.11.1 + version: 10.11.1(vue@3.5.22(typescript@5.8.3)) + ant-design-vue: + specifier: ^4.2.6 + version: 4.2.6(vue@3.5.22(typescript@5.8.3)) + axios: + specifier: ^1.12.2 + version: 1.12.2 + crypto-js: + specifier: ^4.2.0 + version: 4.2.0 + dayjs: + specifier: ^1.11.18 + version: 1.11.18 + echarts: + specifier: ^6.0.0 + version: 6.0.0 + lodash-es: + specifier: ^4.17.21 + version: 4.17.21 + mitt: + specifier: ^3.0.1 + version: 3.0.1 + pinia: + specifier: ^2.3.1 + version: 2.3.1(typescript@5.8.3)(vue@3.5.22(typescript@5.8.3)) + sjcl: + specifier: ^1.0.9 + version: 1.0.9 + sm-crypto: + specifier: ^0.4.0 + version: 0.4.0 + vue: + specifier: ^3.5.22 + version: 3.5.22(typescript@5.8.3) + vue-i18n: + specifier: ^9.14.5 + version: 9.14.5(vue@3.5.22(typescript@5.8.3)) + vue-router: + specifier: ^4.5.1 + version: 4.5.1(vue@3.5.22(typescript@5.8.3)) + devDependencies: + '@antfu/eslint-config': + specifier: ^5.4.1 + version: 5.4.1(@vue/compiler-sfc@3.5.22)(eslint-plugin-format@1.0.2(eslint@9.36.0(jiti@2.6.0)))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1)) + '@commitlint/cli': + specifier: ^18.6.1 + version: 18.6.1(@types/node@20.19.17)(typescript@5.8.3) + '@commitlint/config-conventional': + specifier: ^18.6.3 + version: 18.6.3 + '@mistjs/vite-plugin-preload': + specifier: ^0.0.1 + version: 0.0.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + '@types/crypto-js': + specifier: ^4.2.2 + version: 4.2.2 + '@types/fs-extra': + specifier: ^11.0.4 + version: 11.0.4 + '@types/lodash': + specifier: ^4.17.20 + version: 4.17.20 + '@types/lodash-es': + specifier: ^4.17.12 + version: 4.17.12 + '@types/node': + specifier: ^20.19.17 + version: 20.19.17 + '@types/treeify': + specifier: ^1.0.3 + version: 1.0.3 + '@vitejs/plugin-vue': + specifier: ^6.0.1 + version: 6.0.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3)) + '@vitejs/plugin-vue-jsx': + specifier: ^5.1.1 + version: 5.1.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3)) + '@vue/test-utils': + specifier: ^2.4.6 + version: 2.4.6 + antdv-component-resolver: + specifier: ^1.0.8 + version: 1.0.8(unplugin-vue-components@29.1.0(@babel/parser@7.28.4)(vue@3.5.22(typescript@5.8.3))) + antdv-style: + specifier: 0.0.1-beta.4 + version: 0.0.1-beta.4(ant-design-vue@4.2.6(vue@3.5.22(typescript@5.8.3)))(vue@3.5.22(typescript@5.8.3)) + changelogen: + specifier: ^0.5.7 + version: 0.5.7(magicast@0.3.5) + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + directory-tree: + specifier: ^3.5.2 + version: 3.5.2 + esbuild: + specifier: ^0.25.10 + version: 0.25.10 + eslint: + specifier: ^9.36.0 + version: 9.36.0(jiti@2.6.0) + eslint-plugin-format: + specifier: ^1.0.2 + version: 1.0.2(eslint@9.36.0(jiti@2.6.0)) + esno: + specifier: ^0.17.0 + version: 0.17.0 + execa: + specifier: ^8.0.1 + version: 8.0.1 + fs-extra: + specifier: ^11.3.2 + version: 11.3.2 + h3: + specifier: 2.0.0-beta.4 + version: 2.0.0-beta.4 + husky: + specifier: ^9.1.7 + version: 9.1.7 + jiti: + specifier: ^2.6.0 + version: 2.6.0 + jsdom: + specifier: ^22.1.0 + version: 22.1.0 + less: + specifier: ^4.4.1 + version: 4.4.1 + lint-staged: + specifier: ^14.0.1 + version: 14.0.1 + lodash: + specifier: ^4.17.21 + version: 4.17.21 + mock-h3: + specifier: 0.0.1-beta.12 + version: 0.0.1-beta.12(h3@2.0.0-beta.4)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + picocolors: + specifier: ^1.1.1 + version: 1.1.1 + treeify: + specifier: ^1.1.0 + version: 1.1.0 + ts-node: + specifier: ^10.9.2 + version: 10.9.2(@types/node@20.19.17)(typescript@5.8.3) + typescript: + specifier: ~5.8.3 + version: 5.8.3 + unocss: + specifier: ^66.5.2 + version: 66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + unocss-preset-chinese: + specifier: ^0.3.3 + version: 0.3.3(unocss@66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))) + unocss-preset-ease: + specifier: ^0.0.3 + version: 0.0.3(unocss@66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))) + unplugin-auto-import: + specifier: ^19.3.0 + version: 19.3.0(@vueuse/core@10.11.1(vue@3.5.22(typescript@5.8.3))) + unplugin-config: + specifier: ^0.1.5 + version: 0.1.5(esbuild@0.25.10)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + unplugin-vue-components: + specifier: ^29.1.0 + version: 29.1.0(@babel/parser@7.28.4)(vue@3.5.22(typescript@5.8.3)) + vite: + specifier: npm:rolldown-vite@7.1.13 + version: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + vitest: + specifier: ^3.2.4 + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + vue-tsc: + specifier: ^3.0.8 + version: 3.0.8(typescript@5.8.3) + +packages: + + '@amap/amap-jsapi-loader@1.0.1': + resolution: {integrity: sha512-nPyLKt7Ow/ThHLkSvn2etQlUzqxmTVgK7bIgwdBRTg2HK5668oN7xVxkaiRe3YZEzGzfV2XgH5Jmu2T73ljejw==} + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@ant-design/colors@6.0.0': + resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==} + + '@ant-design/icons-svg@4.4.2': + resolution: {integrity: sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==} + + '@ant-design/icons-vue@7.0.1': + resolution: {integrity: sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==} + peerDependencies: + vue: '>=3.0.3' + + '@antfu/eslint-config@5.4.1': + resolution: {integrity: sha512-x7BiNkxJRlXXs8tIvg0CgMuNo5IZVWkGLMJotCtCtzWUHW78Pmm8PvtXhvLBbTc8683GGBK616MMztWLh4RNjA==} + hasBin: true + peerDependencies: + '@eslint-react/eslint-plugin': ^1.38.4 + '@next/eslint-plugin-next': ^15.4.0-canary.115 + '@prettier/plugin-xml': ^3.4.1 + '@unocss/eslint-plugin': '>=0.50.0' + astro-eslint-parser: ^1.0.2 + eslint: ^9.10.0 + eslint-plugin-astro: ^1.2.0 + eslint-plugin-format: '>=0.1.0' + eslint-plugin-jsx-a11y: '>=6.10.2' + eslint-plugin-react-hooks: ^5.2.0 + eslint-plugin-react-refresh: ^0.4.19 + eslint-plugin-solid: ^0.14.3 + eslint-plugin-svelte: '>=2.35.1' + eslint-plugin-vuejs-accessibility: ^2.4.1 + prettier-plugin-astro: ^0.14.0 + prettier-plugin-slidev: ^1.0.5 + svelte-eslint-parser: '>=0.37.0' + peerDependenciesMeta: + '@eslint-react/eslint-plugin': + optional: true + '@next/eslint-plugin-next': + optional: true + '@prettier/plugin-xml': + optional: true + '@unocss/eslint-plugin': + optional: true + astro-eslint-parser: + optional: true + eslint-plugin-astro: + optional: true + eslint-plugin-format: + optional: true + eslint-plugin-jsx-a11y: + optional: true + eslint-plugin-react-hooks: + optional: true + eslint-plugin-react-refresh: + optional: true + eslint-plugin-solid: + optional: true + eslint-plugin-svelte: + optional: true + eslint-plugin-vuejs-accessibility: + optional: true + prettier-plugin-astro: + optional: true + prettier-plugin-slidev: + optional: true + svelte-eslint-parser: + optional: true + + '@antfu/install-pkg@1.1.0': + resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==} + + '@antfu/utils@9.2.0': + resolution: {integrity: sha512-Oq1d9BGZakE/FyoEtcNeSwM7MpDO2vUBi11RWBZXf75zPsbUVWmUs03EqkRFrcgbXyKTas0BdZWC1wcuSoqSAw==} + + '@antv/adjust@0.2.5': + resolution: {integrity: sha512-MfWZOkD9CqXRES6MBGRNe27Q577a72EIwyMnE29wIlPliFvJfWwsrONddpGU7lilMpVKecS3WAzOoip3RfPTRQ==} + + '@antv/async-hook@2.2.9': + resolution: {integrity: sha512-4BUp2ZUaTi2fYL67Ltkf6eV912rYJeSBokGhd5fhhnpUkMA1LEI1mg97Pqmx3yC50VEQ+LKXZxj9ePZs80ECfw==} + + '@antv/attr@0.3.5': + resolution: {integrity: sha512-wuj2gUo6C8Q2ASSMrVBuTcb5LcV+Tc0Egiy6bC42D0vxcQ+ta13CLxgMmHz8mjD0FxTPJDXSciyszRSC5TdLsg==} + + '@antv/color-util@2.0.6': + resolution: {integrity: sha512-KnPEaAH+XNJMjax9U35W67nzPI+QQ2x27pYlzmSIWrbj4/k8PGrARXfzDTjwoozHJY8qG62Z+Ww6Alhu2FctXQ==} + + '@antv/component@0.8.35': + resolution: {integrity: sha512-VnRa5X77nBPI952o2xePEEMSNZ6g2mcUDrQY8mVL2kino/8TFhqDq5fTRmDXZyWyIYd4ulJTz5zgeSwAnX/INQ==} + + '@antv/coord@0.3.1': + resolution: {integrity: sha512-rFE94C8Xzbx4xmZnHh2AnlB3Qm1n5x0VT3OROy257IH6Rm4cuzv1+tZaUBATviwZd99S+rOY9telw/+6C9GbRw==} + + '@antv/dom-util@2.0.4': + resolution: {integrity: sha512-2shXUl504fKwt82T3GkuT4Uoc6p9qjCKnJ8gXGLSW4T1W37dqf9AV28aCfoVPHp2BUXpSsB+PAJX2rG/jLHsLQ==} + + '@antv/event-emitter@0.1.3': + resolution: {integrity: sha512-4ddpsiHN9Pd4UIlWuKVK1C4IiZIdbwQvy9i7DUSI3xNJ89FPUFt8lxDYj8GzzfdllV0NkJTRxnG+FvLk0llidg==} + + '@antv/g-base@0.5.16': + resolution: {integrity: sha512-jP06wggTubDPHXoKwFg3/f1lyxBX9ywwN3E/HG74Nd7DXqOXQis8tsIWW+O6dS/h9vyuXLd1/wDWkMMm3ZzXdg==} + + '@antv/g-canvas@0.5.17': + resolution: {integrity: sha512-sXYJMWTOlb/Ycb6sTKu00LcJqInXJY4t99+kSM40u2OfqrXYmaXDjHR7D2V0roMkbK/QWiWS9UnEidCR1VtMOA==} + + '@antv/g-device-api@1.6.13': + resolution: {integrity: sha512-lTvlSHYDZyWJnAR1W8DOQLwUo32VpRopbS/BPQqStcOV6FqaC+u5YjT50KbJ+oBWcorpzfknhICRwEA3Xm8t9Q==} + + '@antv/g-math@0.1.9': + resolution: {integrity: sha512-KHMSfPfZ5XHM1PZnG42Q2gxXfOitYveNTA7L61lR6mhZ8Y/aExsYmHqaKBsSarU0z+6WLrl9C07PQJZaw0uljQ==} + + '@antv/g-svg@0.5.7': + resolution: {integrity: sha512-jUbWoPgr4YNsOat2Y/rGAouNQYGpw4R0cvlN0YafwOyacFFYy2zC8RslNd6KkPhhR3XHNSqJOuCYZj/YmLUwYw==} + + '@antv/g2@4.2.12': + resolution: {integrity: sha512-kTg6ftJol+0hYRM2eMwJKq3JThdq4UAKgCoQalUPjwyF6SSKkWz2QdrIAxfLE7LSTwcIE+L8So1jMaOVVbEi6w==} + + '@antv/g2plot@2.4.35': + resolution: {integrity: sha512-jpfgUqC2ch1kkrSSiY8qsFZ5/cYGcwMA9MAgqZXHdNBDcClrLzdakHyc5RN2na9LwZTY3qoj6AawZzAQSiJ58w==} + + '@antv/l7-component@2.23.0': + resolution: {integrity: sha512-3d96/h1nVzFnq4kLqIm2j/AYjTVszgT7C1VGBATws/NPxvtQSmxGxWHqSPtFFY3u7wvF3ad8MLBz4fV6BjoNnA==} + + '@antv/l7-core@2.23.0': + resolution: {integrity: sha512-OlDx0QA1am5Lg4WxTSEe83ziNSBmggdghl5V1fixnH+osfkgVfL85qFtnNVYKatueeJp87ui8bRFFktlbQDDYg==} + + '@antv/l7-layers@2.23.0': + resolution: {integrity: sha512-M4edKEyPsDZSF9H0nXl/CqKB3uudefOZ32j47aaXKnrFzoKNPiJ8vbHLAZIpi49OhkHV81MpoYndrGU7OzE5pg==} + + '@antv/l7-map@2.23.0': + resolution: {integrity: sha512-UfklvmzFxJWQCEZxYHAhliES9+NRGxWVJfKXYZfg1WDJKkNs3Ldz78UUFbskVrFmAChBUhxe+9z78L/DNKqq+w==} + + '@antv/l7-maps@2.23.0': + resolution: {integrity: sha512-SVwP8QbKawq3VRdZR/R8D87R762A69dFKefg/l3goxWTT1JXq4+sLUvovGdpgy1OlVQfFfu60tN61WAAjnNpug==} + + '@antv/l7-renderer@2.23.0': + resolution: {integrity: sha512-72K2LMjYnSRml/sFqD8yxIO8SXk50e5h4uZEF6zjyKu9A9B/HO+msJQzkpDBNCBt5ssdDglGvGytgKL1fIoxcw==} + + '@antv/l7-scene@2.23.0': + resolution: {integrity: sha512-4P7Z/CiPe29DO4B6xzGUVzhI/tAh1Y2Ia9OTm077Cpd+uJDF2xgZGCi5hUEDuG4iRJGHKp10hR6Hm5PBA25Xlw==} + + '@antv/l7-source@2.23.0': + resolution: {integrity: sha512-BdBVnIuToornoUoRRlNB1UXRykUlcpvIww0oSMq/zC0/k/0zCdd6GjMCx8DgTmJGNTVQk/0pO8FGQqRC6eam0Q==} + + '@antv/l7-utils@2.23.0': + resolution: {integrity: sha512-5T7S2w9fW05CEV7djuBoRbyjBmTOpYU0nW+Mnb4yszA5ZB9xlEWOFTuLaDc58Nj0XNLH/9IIX9rW2ad6VnQjHg==} + + '@antv/l7@2.23.0': + resolution: {integrity: sha512-REEUvybuPgDqXVt/ddLuKzQ2eYILqCB9uNLEWdiDOSRK0SuSCGCPykR46pjGMWo2D8TPHl7S2QUtcscqXs8AQA==} + + '@antv/matrix-util@3.0.4': + resolution: {integrity: sha512-BAPyu6dUliHcQ7fm9hZSGKqkwcjEDVLVAstlHULLvcMZvANHeLXgHEgV7JqcAV/GIhIz8aZChIlzM1ZboiXpYQ==} + + '@antv/matrix-util@3.1.0-beta.3': + resolution: {integrity: sha512-W2R6Za3A6CmG51Y/4jZUM/tFgYSq7vTqJL1VD9dKrvwxS4sE0ZcXINtkp55CdyBwJ6Cwm8pfoRpnD4FnHahN0A==} + + '@antv/path-util@2.0.15': + resolution: {integrity: sha512-R2VLZ5C8PLPtr3VciNyxtjKqJ0XlANzpFb5sE9GE61UQqSRuSVSzIakMxjEPrpqbgc+s+y8i+fmc89Snu7qbNw==} + + '@antv/path-util@3.0.1': + resolution: {integrity: sha512-tpvAzMpF9Qm6ik2YSMqICNU5tco5POOW7S4XoxZAI/B0L26adU+Md/SmO0BBo2SpuywKvzPH3hPT3xmoyhr04Q==} + + '@antv/scale@0.3.18': + resolution: {integrity: sha512-GHwE6Lo7S/Q5fgaLPaCsW+CH+3zl4aXpnN1skOiEY0Ue9/u+s2EySv6aDXYkAqs//i0uilMDD/0/4n8caX9U9w==} + + '@antv/util@2.0.17': + resolution: {integrity: sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==} + + '@antv/util@3.3.10': + resolution: {integrity: sha512-basGML3DFA3O87INnzvDStjzS+n0JLEhRnRsDzP9keiXz8gT1z/fTdmJAZFOzMMWxy+HKbi7NbSt0+8vz/OsBQ==} + + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} + engines: {node: '>=6.9.0'} + + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.28.0': + resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.28.3': + resolution: {integrity: sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.26.3': + resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.28.3': + resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.27.3': + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-create-class-features-plugin@7.28.3': + resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-globals@7.28.0': + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-member-expression-to-functions@7.27.1': + resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.25.9': + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.28.3': + resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-optimise-call-expression@7.27.1': + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-plugin-utils@7.27.1': + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-replace-supers@7.27.1': + resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.25.9': + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.25.9': + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.28.3': + resolution: {integrity: sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.26.3': + resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/parser@7.27.7': + resolution: {integrity: sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/parser@7.28.3': + resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/parser@7.28.4': + resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-syntax-jsx@7.27.1': + resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-typescript@7.27.1': + resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typescript@7.28.0': + resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/runtime@7.26.0': + resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.25.9': + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.26.4': + resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.27.7': + resolution: {integrity: sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.28.3': + resolution: {integrity: sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.26.3': + resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.28.2': + resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.28.4': + resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} + engines: {node: '>=6.9.0'} + + '@clack/core@0.5.0': + resolution: {integrity: sha512-p3y0FIOwaYRUPRcMO7+dlmLh8PSRcrjuTndsiA0WAFbWES0mLZlrjVoBRZ9DzkPFJZG6KGkJmoEAY0ZcVWTkow==} + + '@clack/prompts@0.11.0': + resolution: {integrity: sha512-pMN5FcrEw9hUkZA4f+zLlzivQSeQf5dRGJjSUbvVYDLvpKCdQx5OaknvKzgbtXOizhP+SJJJjqEbOe55uKKfAw==} + + '@commitlint/cli@18.6.1': + resolution: {integrity: sha512-5IDE0a+lWGdkOvKH892HHAZgbAjcj1mT5QrfA/SVbLJV/BbBMGyKN0W5mhgjekPJJwEQdVNvhl9PwUacY58Usw==} + engines: {node: '>=v18'} + hasBin: true + + '@commitlint/config-conventional@18.6.3': + resolution: {integrity: sha512-8ZrRHqF6je+TRaFoJVwszwnOXb/VeYrPmTwPhf0WxpzpGTcYy1p0SPyZ2eRn/sRi/obnWAcobtDAq6+gJQQNhQ==} + engines: {node: '>=v18'} + + '@commitlint/config-validator@18.6.1': + resolution: {integrity: sha512-05uiToBVfPhepcQWE1ZQBR/Io3+tb3gEotZjnI4tTzzPk16NffN6YABgwFQCLmzZefbDcmwWqJWc2XT47q7Znw==} + engines: {node: '>=v18'} + + '@commitlint/ensure@18.6.1': + resolution: {integrity: sha512-BPm6+SspyxQ7ZTsZwXc7TRQL5kh5YWt3euKmEIBZnocMFkJevqs3fbLRb8+8I/cfbVcAo4mxRlpTPfz8zX7SnQ==} + engines: {node: '>=v18'} + + '@commitlint/execute-rule@18.6.1': + resolution: {integrity: sha512-7s37a+iWyJiGUeMFF6qBlyZciUkF8odSAnHijbD36YDctLhGKoYltdvuJ/AFfRm6cBLRtRk9cCVPdsEFtt/2rg==} + engines: {node: '>=v18'} + + '@commitlint/format@18.6.1': + resolution: {integrity: sha512-K8mNcfU/JEFCharj2xVjxGSF+My+FbUHoqR+4GqPGrHNqXOGNio47ziiR4HQUPKtiNs05o8/WyLBoIpMVOP7wg==} + engines: {node: '>=v18'} + + '@commitlint/is-ignored@18.6.1': + resolution: {integrity: sha512-MOfJjkEJj/wOaPBw5jFjTtfnx72RGwqYIROABudOtJKW7isVjFe9j0t8xhceA02QebtYf4P/zea4HIwnXg8rvA==} + engines: {node: '>=v18'} + + '@commitlint/lint@18.6.1': + resolution: {integrity: sha512-8WwIFo3jAuU+h1PkYe5SfnIOzp+TtBHpFr4S8oJWhu44IWKuVx6GOPux3+9H1iHOan/rGBaiacicZkMZuluhfQ==} + engines: {node: '>=v18'} + + '@commitlint/load@18.6.1': + resolution: {integrity: sha512-p26x8734tSXUHoAw0ERIiHyW4RaI4Bj99D8YgUlVV9SedLf8hlWAfyIFhHRIhfPngLlCe0QYOdRKYFt8gy56TA==} + engines: {node: '>=v18'} + + '@commitlint/message@18.6.1': + resolution: {integrity: sha512-VKC10UTMLcpVjMIaHHsY1KwhuTQtdIKPkIdVEwWV+YuzKkzhlI3aNy6oo1eAN6b/D2LTtZkJe2enHmX0corYRw==} + engines: {node: '>=v18'} + + '@commitlint/parse@18.6.1': + resolution: {integrity: sha512-eS/3GREtvVJqGZrwAGRwR9Gdno3YcZ6Xvuaa+vUF8j++wsmxrA2En3n0ccfVO2qVOLJC41ni7jSZhQiJpMPGOQ==} + engines: {node: '>=v18'} + + '@commitlint/read@18.6.1': + resolution: {integrity: sha512-ia6ODaQFzXrVul07ffSgbZGFajpe8xhnDeLIprLeyfz3ivQU1dIoHp7yz0QIorZ6yuf4nlzg4ZUkluDrGN/J/w==} + engines: {node: '>=v18'} + + '@commitlint/resolve-extends@18.6.1': + resolution: {integrity: sha512-ifRAQtHwK+Gj3Bxj/5chhc4L2LIc3s30lpsyW67yyjsETR6ctHAHRu1FSpt0KqahK5xESqoJ92v6XxoDRtjwEQ==} + engines: {node: '>=v18'} + + '@commitlint/rules@18.6.1': + resolution: {integrity: sha512-kguM6HxZDtz60v/zQYOe0voAtTdGybWXefA1iidjWYmyUUspO1zBPQEmJZ05/plIAqCVyNUTAiRPWIBKLCrGew==} + engines: {node: '>=v18'} + + '@commitlint/to-lines@18.6.1': + resolution: {integrity: sha512-Gl+orGBxYSNphx1+83GYeNy5N0dQsHBQ9PJMriaLQDB51UQHCVLBT/HBdOx5VaYksivSf5Os55TLePbRLlW50Q==} + engines: {node: '>=v18'} + + '@commitlint/top-level@18.6.1': + resolution: {integrity: sha512-HyiHQZUTf0+r0goTCDs/bbVv/LiiQ7AVtz6KIar+8ZrseB9+YJAIo8HQ2IC2QT1y3N1lbW6OqVEsTHjbT6hGSw==} + engines: {node: '>=v18'} + + '@commitlint/types@18.6.1': + resolution: {integrity: sha512-gwRLBLra/Dozj2OywopeuHj2ac26gjGkz2cZ+86cTJOdtWfiRRr4+e77ZDAGc6MDWxaWheI+mAV5TLWWRwqrFg==} + engines: {node: '>=v18'} + + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + + '@ctrl/tinycolor@3.6.1': + resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} + engines: {node: '>=10'} + + '@ctrl/tinycolor@4.2.0': + resolution: {integrity: sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==} + engines: {node: '>=14'} + + '@dprint/formatter@0.3.0': + resolution: {integrity: sha512-N9fxCxbaBOrDkteSOzaCqwWjso5iAe+WJPsHC021JfHNj2ThInPNEF13ORDKta3llq5D1TlclODCvOvipH7bWQ==} + + '@dprint/markdown@0.17.8': + resolution: {integrity: sha512-ukHFOg+RpG284aPdIg7iPrCYmMs3Dqy43S1ejybnwlJoFiW02b+6Bbr5cfZKFRYNP3dKGM86BqHEnMzBOyLvvA==} + + '@dprint/toml@0.6.4': + resolution: {integrity: sha512-bZXIUjxr0LIuHWshZr/5mtUkOrnh0NKVZEF6ACojW5z7zkJu7s9sV2mMXm8XQDqN4cJzdHYUYzUyEGdfciaLJA==} + + '@emnapi/core@1.11.1': + resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==} + + '@emnapi/core@1.5.0': + resolution: {integrity: sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==} + + '@emnapi/runtime@1.11.1': + resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==} + + '@emnapi/runtime@1.5.0': + resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==} + + '@emnapi/wasi-threads@1.1.0': + resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} + + '@emnapi/wasi-threads@1.2.2': + resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==} + + '@emotion/babel-plugin@11.13.5': + resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==} + + '@emotion/cache@11.14.0': + resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==} + + '@emotion/css@11.13.5': + resolution: {integrity: sha512-wQdD0Xhkn3Qy2VNcIzbLP9MR8TafI0MJb7BEAXKp+w4+XqErksWR4OXomuDzPsN4InLdGhVe6EYcn2ZIUCpB8w==} + + '@emotion/hash@0.9.2': + resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} + + '@emotion/memoize@0.9.0': + resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==} + + '@emotion/serialize@1.3.3': + resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==} + + '@emotion/server@11.11.0': + resolution: {integrity: sha512-6q89fj2z8VBTx9w93kJ5n51hsmtYuFPtZgnc1L8VzRx9ti4EU6EyvF6Nn1H1x3vcCQCF7u2dB2lY4AYJwUW4PA==} + peerDependencies: + '@emotion/css': ^11.0.0-rc.0 + peerDependenciesMeta: + '@emotion/css': + optional: true + + '@emotion/sheet@1.4.0': + resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==} + + '@emotion/unitless@0.10.0': + resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==} + + '@emotion/unitless@0.8.1': + resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + + '@emotion/utils@1.4.2': + resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==} + + '@emotion/weak-memoize@0.4.0': + resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==} + + '@es-joy/jsdoccomment@0.50.2': + resolution: {integrity: sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA==} + engines: {node: '>=18'} + + '@es-joy/jsdoccomment@0.58.0': + resolution: {integrity: sha512-smMc5pDht/UVsCD3hhw/a/e/p8m0RdRYiluXToVfd+d4yaQQh7nn9bACjkk6nXJvat7EWPAxuFkMEFfrxeGa3Q==} + engines: {node: '>=20.11.0'} + + '@esbuild/aix-ppc64@0.25.10': + resolution: {integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.18.20': + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.25.10': + resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.18.20': + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.25.10': + resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.18.20': + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.25.10': + resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.18.20': + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.25.10': + resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.18.20': + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.10': + resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.18.20': + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.25.10': + resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.18.20': + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.10': + resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.18.20': + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.25.10': + resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.18.20': + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.25.10': + resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.18.20': + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.25.10': + resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.18.20': + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.25.10': + resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.18.20': + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.25.10': + resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.18.20': + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.25.10': + resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.18.20': + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.10': + resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.18.20': + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.25.10': + resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.18.20': + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.25.10': + resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.10': + resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.18.20': + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.10': + resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.10': + resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.18.20': + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.10': + resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.10': + resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.18.20': + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.25.10': + resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.18.20': + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.25.10': + resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.18.20': + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.25.10': + resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.18.20': + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.25.10': + resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-plugin-eslint-comments@4.5.0': + resolution: {integrity: sha512-MAhuTKlr4y/CE3WYX26raZjy+I/kS2PLKSzvfmDCGrBLTFHOYwqROZdr4XwPgXwX3K9rjzMr4pSmUWGnzsUyMg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 + + '@eslint-community/eslint-utils@4.9.0': + resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/compat@1.4.0': + resolution: {integrity: sha512-DEzm5dKeDBPm3r08Ixli/0cmxr8LkRdwxMRUIJBlSCpAwSrvFEJpVBzV+66JhDxiaqKxnRzCXhtiMiczF7Hglg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.40 || 9 + peerDependenciesMeta: + eslint: + optional: true + + '@eslint/config-array@0.21.0': + resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.3.1': + resolution: {integrity: sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.15.2': + resolution: {integrity: sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.16.0': + resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.36.0': + resolution: {integrity: sha512-uhCbYtYynH30iZErszX78U+nR3pJU3RHGQ57NXy5QupD4SBVwDeU8TNBy+MjMngc1UyIW9noKqsRqfjQTBU2dw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/markdown@7.3.0': + resolution: {integrity: sha512-v9Cpl9IvzGmWMUwDAwSbf1b2GMwjQJiD0TSHegFrIu23mjqGQOvaCwnetzbG3/fjk8x7baKaIbSTBlpCktZRRg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.6': + resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.3.5': + resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.6': + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} + + '@iconify/types@2.0.0': + resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} + + '@iconify/utils@3.0.1': + resolution: {integrity: sha512-A78CUEnFGX8I/WlILxJCuIJXloL0j/OJ9PSchPAfCargEIKmUBWvvEMmKWB5oONwiUqlNt+5eRufdkLxeHIWYw==} + + '@intlify/core-base@9.14.5': + resolution: {integrity: sha512-5ah5FqZG4pOoHjkvs8mjtv+gPKYU0zCISaYNjBNNqYiaITxW8ZtVih3GS/oTOqN8d9/mDLyrjD46GBApNxmlsA==} + engines: {node: '>= 16'} + + '@intlify/message-compiler@9.14.5': + resolution: {integrity: sha512-IHzgEu61/YIpQV5Pc3aRWScDcnFKWvQA9kigcINcCBXN8mbW+vk9SK+lDxA6STzKQsVJxUPg9ACC52pKKo3SVQ==} + engines: {node: '>= 16'} + + '@intlify/shared@9.14.5': + resolution: {integrity: sha512-9gB+E53BYuAEMhbCAxVgG38EZrk59sxBtv3jSizNL2hEWlgjBjAw1AwpLHtNaeda12pe6W20OGEa0TwuMSRbyQ==} + engines: {node: '>= 16'} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + + '@jridgewell/gen-mapping@0.3.8': + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} + engines: {node: '>=6.0.0'} + + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@jridgewell/trace-mapping@0.3.30': + resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==} + + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + + '@kirklin/logger@0.0.2': + resolution: {integrity: sha512-CGZ9HGmHGTcGnU8CDQm7RR7hZgxLyRHTIFpS1FDCQkVaipdL/poq72ibpKqqQflomgKRCYV6GReP7ZXEZeDx1w==} + + '@ljharb/resumer@0.0.1': + resolution: {integrity: sha512-skQiAOrCfO7vRTq53cxznMpks7wS1va95UCidALlOVWqvBAzwPVErwizDwoMqNVMEn1mDq0utxZd02eIrvF1lw==} + engines: {node: '>= 0.4'} + + '@ljharb/through@2.3.13': + resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==} + engines: {node: '>= 0.4'} + + '@mapbox/geojson-rewind@0.5.2': + resolution: {integrity: sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==} + hasBin: true + + '@mapbox/geojson-types@1.0.2': + resolution: {integrity: sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==} + + '@mapbox/jsonlint-lines-primitives@2.0.2': + resolution: {integrity: sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==} + engines: {node: '>= 0.6'} + + '@mapbox/mapbox-gl-supported@1.5.0': + resolution: {integrity: sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==} + peerDependencies: + mapbox-gl: '>=0.32.1 <2.0.0' + + '@mapbox/martini@0.2.0': + resolution: {integrity: sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ==} + + '@mapbox/point-geometry@0.1.0': + resolution: {integrity: sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==} + + '@mapbox/tiny-sdf@1.2.5': + resolution: {integrity: sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw==} + + '@mapbox/tiny-sdf@2.0.6': + resolution: {integrity: sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==} + + '@mapbox/unitbezier@0.0.0': + resolution: {integrity: sha512-HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA==} + + '@mapbox/unitbezier@0.0.1': + resolution: {integrity: sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==} + + '@mapbox/vector-tile@1.3.1': + resolution: {integrity: sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==} + + '@mapbox/whoots-js@3.1.0': + resolution: {integrity: sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==} + engines: {node: '>=6.0.0'} + + '@maplibre/maplibre-gl-style-spec@19.3.3': + resolution: {integrity: sha512-cOZZOVhDSulgK0meTsTkmNXb1ahVvmTmWmfx9gRBwc6hq98wS9JP35ESIoNq3xqEan+UN+gn8187Z6E4NKhLsw==} + hasBin: true + + '@mistjs/vite-plugin-preload@0.0.1': + resolution: {integrity: sha512-ou/IYGIWL4EbQ8n/6vrbRLzDx/shCzw2M5Ll3YXcBtHiasYKPMr7cGO24fYi+o6K9ILZUfFtglKaZF18qUan8w==} + peerDependencies: + vite: '>=4.0.0' + + '@napi-rs/wasm-runtime@1.0.7': + resolution: {integrity: sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==} + + '@napi-rs/wasm-runtime@1.1.5': + resolution: {integrity: sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==} + peerDependencies: + '@emnapi/core': ^1.7.1 + '@emnapi/runtime': ^1.7.1 + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@one-ini/wasm@0.1.1': + resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} + + '@oxc-project/runtime@0.92.0': + resolution: {integrity: sha512-Z7x2dZOmznihvdvCvLKMl+nswtOSVxS2H2ocar+U9xx6iMfTp0VGIrX6a4xB1v80IwOPC7dT1LXIJrY70Xu3Jw==} + engines: {node: ^20.19.0 || >=22.12.0} + + '@oxc-project/types@0.137.0': + resolution: {integrity: sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==} + + '@oxc-project/types@0.92.0': + resolution: {integrity: sha512-PDLfCbwgXjGdTBxzcuDOUxJYNBl6P8dOp3eDKWw54dYvqONan9rwGDRQU0zrkdEMiItfXQQUOI17uOcMX5Zm7A==} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pkgr/core@0.1.2': + resolution: {integrity: sha512-fdDH1LSGfZdTH2sxdpVMw31BanV28K/Gry0cVFxaNP77neJSkd82mM8ErPNYs9e+0O7SdHBLTDzDgwUuy18RnQ==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + + '@polka/url@1.0.0-next.28': + resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==} + + '@quansync/fs@0.1.5': + resolution: {integrity: sha512-lNS9hL2aS2NZgNW7BBj+6EBl4rOf8l+tQ0eRY6JWCI8jI2kc53gSoqbjojU0OnAWhzoXiOjFyGsHcDGePB3lhA==} + + '@rolldown/binding-android-arm64@1.0.0-beta.40': + resolution: {integrity: sha512-9Ii9phC7QU6Lb+ncMfG1Xlosq0NBB1N/4sw+EGZ3y0BBWGy02TOb5ghWZalphAKv9rn1goqo5WkBjyd2YvsLmA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@rolldown/binding-android-arm64@1.1.2': + resolution: {integrity: sha512-2cZ+7xRS+DBcuJBJKnfzsbleumJhBqSlJVpuzHC0nTqfd3QQ7Vx2/x5YR/D7cBamKSeWplwo82Fn9lqYUDEMfA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@rolldown/binding-darwin-arm64@1.0.0-beta.40': + resolution: {integrity: sha512-5O6d0y2tBQTL+ecQY3qXIwSnF1/Zik8q7LZMKeyF+VJ9l194d0IdMhl2zUF0cqWbYHuF4Pnxplk4OhurPQ/Z9Q==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-arm64@1.1.2': + resolution: {integrity: sha512-RkPMJnygxsgOYdkfqgpwY0/Fzm8d0VQe6HGU2/B00Xa9eqdLbrII+DOKAodbJAn3ZL1AJxGHkZRPYazgGY6Ljw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.0.0-beta.40': + resolution: {integrity: sha512-izB9jygt3miPQbOTZfSu5K51isUplqa8ysByOKQqcJHgrBWmbTU8TM9eouv6tRmBR0kjcEcID9xhmA1CeZ1VIg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.1.2': + resolution: {integrity: sha512-Uiczh6vFhwyfd7WNe7Q7mCA4KxAiLdz7jPE/WGizfRpIieoyFuNVMmM8HqZ9HwudTkY6/AeMQwlNJ9NJijguWw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-freebsd-x64@1.0.0-beta.40': + resolution: {integrity: sha512-2fdpEpKT+wwP0vig9dqxu+toTeWmVSjo3psJQVDeLJ51rO+GXcCJ1IkCXjhMKVEevNtZS7B8T8Z2vvmRV9MAdA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-freebsd-x64@1.1.2': + resolution: {integrity: sha512-+TpdtTRgHiJFjCVFbw311SuLk3KfytPOQQn+VlAEv+gBxYPtL7E6JS9e/tk+8CwxhIZvemJKo4rTKgfWNsKkkA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.40': + resolution: {integrity: sha512-HP2lo78OWULN+8TewpLbS9PS00jh0CaF04tA2u8z2I+6QgVgrYOYKvX+T0hlO5smgso4+qb3YchzumWJl3yCPQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm-gnueabihf@1.1.2': + resolution: {integrity: sha512-4lv1/tkmi7ueIVHnyreaOeUpiZP26BH9rRy6hoYfR9310A2B9nUEVRDvBx69vx64Nr3eTPPRkyciqJJs+j9Jmw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.40': + resolution: {integrity: sha512-ng00gfr9BhA2NPAOU5RWAlTiL+JcwAD+L+4yUD1sbBy6tgHdLiNBOvKtHISIF9RM9/eQeS0tAiWOYZGIH9JMew==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-arm64-gnu@1.1.2': + resolution: {integrity: sha512-gBSUVO0eaWgw1JMjK3gB8BMlX2Mk148s2lTiVT3e9vjVxbl7UDfMWWY8CfIaaqiXuM9fVTMxIpUz6CAo/B6Vlw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.40': + resolution: {integrity: sha512-mF0R1l9kLcaag/9cLEiYYdNZ4v1uuX4jklSDZ1s6vJE4RB3LirUney0FavdVRwCJ5sDvfvsPgXgtBXWYr2M2tQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-arm64-musl@1.1.2': + resolution: {integrity: sha512-LjQP/iZLBu8o8PjIfk4x3At0/mT6h282pvz8Z5LAyhGbu/kDezyO7ea62rF5uoqmgnIYqbN/MqJ3Si3Aymi7xQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-ppc64-gnu@1.1.2': + resolution: {integrity: sha512-X/7bVLWelEsbyWDUSXt7zVsTniLLPIY2n1rH58qr78l9i7MNbbxBWD8gI2vRfBWf4NUXJCUuQnfZDsp32LqsfQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-s390x-gnu@1.1.2': + resolution: {integrity: sha512-gb6dYKW/1KDorGXyy48glEBJs/sxVSC5pcVrox/pFGV4mvwSFeg2sK5L2tRkVsVlh7kueqOgg4GEcuipJcGuKg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.40': + resolution: {integrity: sha512-+wi08S7wT5iLPHRZb0USrS6n+T6m+yY++dePYedE5uvKIpWCJJioFTaRtWjpm0V6dVNLcq2OukrvfdlGtH9Wgg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-gnu@1.1.2': + resolution: {integrity: sha512-JY4w85pU3iAiJVMh5nuk4/Mh9GjMsupe8MrIN53rwxAZW64GKrWeJBuN6SxQg9QTU5uB1cxyhDzW8jqRn1EABw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.40': + resolution: {integrity: sha512-W5qBGAemUocIBKCcOsDjlV9GUt28qhl/+M6etWBeLS5gQK0J6XDg0YVzfOQdvq57ZGjYNP0NvhYzqhOOnEx+4g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-musl@1.1.2': + resolution: {integrity: sha512-xvpA7o5KCYLB0Rwscmuylb1/zHHSUx4g4xilm4prC5jP76pEUlzBmMbgpbh7bVDbId4NcfT96gN5i6mE6UDaiw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-openharmony-arm64@1.0.0-beta.40': + resolution: {integrity: sha512-vJwoDehtt+yqj2zacq1AqNc2uE/oh7mnRGqAUbuldV6pgvU01OSQUJ7Zu+35hTopnjFoDNN6mIezkYlGAv5RFA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@rolldown/binding-openharmony-arm64@1.1.2': + resolution: {integrity: sha512-p/ts6KBLjuk49Bp21XH77poQGt02iNz7ChgHep7tudPOaLinR/De/RHdxF8w8Yj4r/bF/bqXwH6PZrB2sA+Nvw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.40': + resolution: {integrity: sha512-Oj3YyqVUPurr1FlMpEE/bJmMC+VWAWPM/SGUfklO5KUX97bk5Q/733nPg4RykK8q8/TluJoQYvRc05vL/B74dw==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@rolldown/binding-wasm32-wasi@1.1.2': + resolution: {integrity: sha512-VMu/wmrZ9hJzYlRhbw7jK5PODlugyKZ5mOdX78+lS8OvuFkWNQdz1pFLrI2p3P0pjXOmUZ7B48o5VnMH9QOGtg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [wasm32] + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.40': + resolution: {integrity: sha512-0ZtO6yN8XjVoFfN4HDWQj4nDu3ndMybr7jIM00DJqOmc+yFhly7rdOy7fNR9Sky3leCpBtsXfepVqRmVpYKPVA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-arm64-msvc@1.1.2': + resolution: {integrity: sha512-xtUJqs8qEkuSviS0n1tsohaPuz3a1SPhZywOji4Oo+sgrJs8daEDMZ0QtqL0OS7dx8PoVpg2J/ZZycPY5I2+Zg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.40': + resolution: {integrity: sha512-BPl1inoJXPpIe38Ja46E4y11vXlJyuleo+9Rmu//pYL5fIDYJkXUj/oAXqjSuwLcssrcwnuPgzvzvlz9++cr3w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ia32] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.40': + resolution: {integrity: sha512-UguA4ltbAk+nbwHRxqaUP/etpTbR0HjyNlsu4Zjbh/ytNbFsbw8CA4tEBkwDyjgI5NIPea6xY11zpl7R2/ddVA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.1.2': + resolution: {integrity: sha512-85YiLQqjUKgSO/Zjnf9e0XIn5Ymrh1fLDWBeAkZqpuBR/3R8TpfoHXuyblqyQrftSSgWO9qpcHN8mkyKsLraoA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@rolldown/pluginutils@1.0.0-beta.29': + resolution: {integrity: sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==} + + '@rolldown/pluginutils@1.0.0-beta.40': + resolution: {integrity: sha512-s3GeJKSQOwBlzdUrj4ISjJj5SfSh+aqn0wjOar4Bx95iV1ETI7F6S/5hLcfAxZ9kXDcyrAkxPlqmd1ZITttf+w==} + + '@rolldown/pluginutils@1.0.1': + resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==} + + '@rollup/pluginutils@5.1.4': + resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.46.3': + resolution: {integrity: sha512-UmTdvXnLlqQNOCJnyksjPs1G4GqXNGW1LrzCe8+8QoaLhhDeTXYBgJ3k6x61WIhlHX2U+VzEJ55TtIjR/HTySA==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.46.3': + resolution: {integrity: sha512-8NoxqLpXm7VyeI0ocidh335D6OKT0UJ6fHdnIxf3+6oOerZZc+O7r+UhvROji6OspyPm+rrIdb1gTXtVIqn+Sg==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.46.3': + resolution: {integrity: sha512-csnNavqZVs1+7/hUKtgjMECsNG2cdB8F7XBHP6FfQjqhjF8rzMzb3SLyy/1BG7YSfQ+bG75Ph7DyedbUqwq1rA==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.46.3': + resolution: {integrity: sha512-r2MXNjbuYabSIX5yQqnT8SGSQ26XQc8fmp6UhlYJd95PZJkQD1u82fWP7HqvGUf33IsOC6qsiV+vcuD4SDP6iw==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.46.3': + resolution: {integrity: sha512-uluObTmgPJDuJh9xqxyr7MV61Imq+0IvVsAlWyvxAaBSNzCcmZlhfYcRhCdMaCsy46ccZa7vtDDripgs9Jkqsw==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.46.3': + resolution: {integrity: sha512-AVJXEq9RVHQnejdbFvh1eWEoobohUYN3nqJIPI4mNTMpsyYN01VvcAClxflyk2HIxvLpRcRggpX1m9hkXkpC/A==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.46.3': + resolution: {integrity: sha512-byyflM+huiwHlKi7VHLAYTKr67X199+V+mt1iRgJenAI594vcmGGddWlu6eHujmcdl6TqSNnvqaXJqZdnEWRGA==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.46.3': + resolution: {integrity: sha512-aLm3NMIjr4Y9LklrH5cu7yybBqoVCdr4Nvnm8WB7PKCn34fMCGypVNpGK0JQWdPAzR/FnoEoFtlRqZbBBLhVoQ==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.46.3': + resolution: {integrity: sha512-VtilE6eznJRDIoFOzaagQodUksTEfLIsvXymS+UdJiSXrPW7Ai+WG4uapAc3F7Hgs791TwdGh4xyOzbuzIZrnw==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.46.3': + resolution: {integrity: sha512-dG3JuS6+cRAL0GQ925Vppafi0qwZnkHdPeuZIxIPXqkCLP02l7ka+OCyBoDEv8S+nKHxfjvjW4OZ7hTdHkx8/w==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loongarch64-gnu@4.46.3': + resolution: {integrity: sha512-iU8DxnxEKJptf8Vcx4XvAUdpkZfaz0KWfRrnIRrOndL0SvzEte+MTM7nDH4A2Now4FvTZ01yFAgj6TX/mZl8hQ==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-ppc64-gnu@4.46.3': + resolution: {integrity: sha512-VrQZp9tkk0yozJoQvQcqlWiqaPnLM6uY1qPYXvukKePb0fqaiQtOdMJSxNFUZFsGw5oA5vvVokjHrx8a9Qsz2A==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.46.3': + resolution: {integrity: sha512-uf2eucWSUb+M7b0poZ/08LsbcRgaDYL8NCGjUeFMwCWFwOuFcZ8D9ayPl25P3pl+D2FH45EbHdfyUesQ2Lt9wA==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.46.3': + resolution: {integrity: sha512-7tnUcDvN8DHm/9ra+/nF7lLzYHDeODKKKrh6JmZejbh1FnCNZS8zMkZY5J4sEipy2OW1d1Ncc4gNHUd0DLqkSg==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.46.3': + resolution: {integrity: sha512-MUpAOallJim8CsJK+4Lc9tQzlfPbHxWDrGXZm2z6biaadNpvh3a5ewcdat478W+tXDoUiHwErX/dOql7ETcLqg==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.46.3': + resolution: {integrity: sha512-F42IgZI4JicE2vM2PWCe0N5mR5vR0gIdORPqhGQ32/u1S1v3kLtbZ0C/mi9FFk7C5T0PgdeyWEPajPjaUpyoKg==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.46.3': + resolution: {integrity: sha512-oLc+JrwwvbimJUInzx56Q3ujL3Kkhxehg7O1gWAYzm8hImCd5ld1F2Gry5YDjR21MNb5WCKhC9hXgU7rRlyegQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.46.3': + resolution: {integrity: sha512-lOrQ+BVRstruD1fkWg9yjmumhowR0oLAAzavB7yFSaGltY8klttmZtCLvOXCmGE9mLIn8IBV/IFrQOWz5xbFPg==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.46.3': + resolution: {integrity: sha512-vvrVKPRS4GduGR7VMH8EylCBqsDcw6U+/0nPDuIjXQRbHJc6xOBj+frx8ksfZAh6+Fptw5wHrN7etlMmQnPQVg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.46.3': + resolution: {integrity: sha512-fi3cPxCnu3ZeM3EwKZPgXbWoGzm2XHgB/WShKI81uj8wG0+laobmqy5wbgEwzstlbLu4MyO8C19FyhhWseYKNQ==} + cpu: [x64] + os: [win32] + + '@simonwep/pickr@1.8.2': + resolution: {integrity: sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==} + + '@stylistic/eslint-plugin@5.4.0': + resolution: {integrity: sha512-UG8hdElzuBDzIbjG1QDwnYH0MQ73YLXDFHgZzB4Zh/YJfnw8XNsloVtytqzx0I2Qky9THSdpTmi8Vjn/pf/Lew==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: '>=9.0.0' + + '@tootallnate/once@2.0.0': + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + + '@tsconfig/node10@1.0.11': + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + + '@turf/bbox-polygon@6.5.0': + resolution: {integrity: sha512-+/r0NyL1lOG3zKZmmf6L8ommU07HliP4dgYToMoTxqzsWzyLjaj/OzgQ8rBmv703WJX+aS6yCmLuIhYqyufyuw==} + + '@turf/bbox@6.5.0': + resolution: {integrity: sha512-RBbLaao5hXTYyyg577iuMtDB8ehxMlUqHEJiMs8jT1GHkFhr6sYre3lmLsPeYEi/ZKj5TP5tt7fkzNdJ4GIVyw==} + + '@turf/clone@6.5.0': + resolution: {integrity: sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==} + + '@turf/helpers@6.5.0': + resolution: {integrity: sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==} + + '@turf/invariant@6.5.0': + resolution: {integrity: sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==} + + '@turf/meta@6.5.0': + resolution: {integrity: sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==} + + '@turf/polygon-to-line@6.5.0': + resolution: {integrity: sha512-5p4n/ij97EIttAq+ewSnKt0ruvuM+LIDzuczSzuHTpq4oS7Oq8yqg5TQ4nzMVuK41r/tALCk7nAoBuw3Su4Gcw==} + + '@turf/union@6.5.0': + resolution: {integrity: sha512-igYWCwP/f0RFHIlC2c0SKDuM/ObBaqSljI3IdV/x71805QbIvY/BYGcJdyNcgEA6cylIGl/0VSlIbpJHZ9ldhw==} + + '@tybys/wasm-util@0.10.1': + resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} + + '@tybys/wasm-util@0.10.2': + resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==} + + '@types/chai@5.2.2': + resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==} + + '@types/crypto-js@4.2.2': + resolution: {integrity: sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==} + + '@types/d3-timer@2.0.3': + resolution: {integrity: sha512-jhAJzaanK5LqyLQ50jJNIrB8fjL9gwWZTgYjevPvkDLMU+kTAZkYsobI59nYoeSrH1PucuyJEi247Pb90t6XUg==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} + + '@types/estree@1.0.6': + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/fs-extra@11.0.4': + resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} + + '@types/geojson@7946.0.15': + resolution: {integrity: sha512-9oSxFzDCT2Rj6DfcHF8G++jxBKS7mBqXl5xrRW+Kbvjry6Uduya2iiwqHPhVXpasAVMBYKkEPGgKhd3+/HZ6xA==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/jsonfile@6.1.4': + resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==} + + '@types/lodash-es@4.17.12': + resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} + + '@types/lodash@4.17.20': + resolution: {integrity: sha512-H3MHACvFUEiujabxhaI/ImO6gUrd8oOurg7LQtS7mbwIXA/cUqWrvBsaeJ23aZEPk1TAYkurjfMbSELfoCXlGA==} + + '@types/mapbox__point-geometry@0.1.4': + resolution: {integrity: sha512-mUWlSxAmYLfwnRBmgYV86tgYmMIICX4kza8YnE/eIlywGe2XoOxlpVnXWwir92xRLjwyarqwpu2EJKD2pk0IUA==} + + '@types/mapbox__vector-tile@1.3.4': + resolution: {integrity: sha512-bpd8dRn9pr6xKvuEBQup8pwQfD4VUyqO/2deGjfpe6AwC8YRlyEipvefyRJUSiCJTZuCb8Pl1ciVV5ekqJ96Bg==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/minimist@1.2.5': + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + + '@types/node@20.19.17': + resolution: {integrity: sha512-gfehUI8N1z92kygssiuWvLiwcbOB3IRktR6hTDgJlXMYh5OvkPSRmgfoBUmfZt+vhwJtX7v1Yw4KvvAf7c5QKQ==} + + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/pbf@3.0.5': + resolution: {integrity: sha512-j3pOPiEcWZ34R6a6mN07mUkM4o4Lwf6hPNt8eilOeZhTFbxFXmKhvXl9Y28jotFPaI1bpPDJsbCprUoNke6OrA==} + + '@types/supercluster@7.1.3': + resolution: {integrity: sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA==} + + '@types/treeify@1.0.3': + resolution: {integrity: sha512-hx0o7zWEUU4R2Amn+pjCBQQt23Khy/Dk56gQU5xi5jtPL1h83ACJCeFaB2M/+WO1AntvWrSoVnnCAfI1AQH4Cg==} + + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} + + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + + '@types/web-bluetooth@0.0.20': + resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} + + '@typescript-eslint/eslint-plugin@8.44.1': + resolution: {integrity: sha512-molgphGqOBT7t4YKCSkbasmu1tb1MgrZ2szGzHbclF7PNmOkSTQVHy+2jXOSnxvR3+Xe1yySHFZoqMpz3TfQsw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.44.1 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/parser@8.44.1': + resolution: {integrity: sha512-EHrrEsyhOhxYt8MTg4zTF+DJMuNBzWwgvvOYNj/zm1vnaD/IC5zCXFehZv94Piqa2cRFfXrTFxIvO95L7Qc/cw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/project-service@8.44.1': + resolution: {integrity: sha512-ycSa60eGg8GWAkVsKV4E6Nz33h+HjTXbsDT4FILyL8Obk5/mx4tbvCNsLf9zret3ipSumAOG89UcCs/KRaKYrA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/scope-manager@8.44.1': + resolution: {integrity: sha512-NdhWHgmynpSvyhchGLXh+w12OMT308Gm25JoRIyTZqEbApiBiQHD/8xgb6LqCWCFcxFtWwaVdFsLPQI3jvhywg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.44.1': + resolution: {integrity: sha512-B5OyACouEjuIvof3o86lRMvyDsFwZm+4fBOqFHccIctYgBjqR3qT39FBYGN87khcgf0ExpdCBeGKpKRhSFTjKQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/type-utils@8.44.1': + resolution: {integrity: sha512-KdEerZqHWXsRNKjF9NYswNISnFzXfXNDfPxoTh7tqohU/PRIbwTmsjGK6V9/RTYWau7NZvfo52lgVk+sJh0K3g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/types@8.18.2': + resolution: {integrity: sha512-Z/zblEPp8cIvmEn6+tPDIHUbRu/0z5lqZ+NvolL5SvXWT5rQy7+Nch83M0++XzO0XrWRFWECgOAyE8bsJTl1GQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/types@8.44.1': + resolution: {integrity: sha512-Lk7uj7y9uQUOEguiDIDLYLJOrYHQa7oBiURYVFqIpGxclAFQ78f6VUOM8lI2XEuNOKNB7XuvM2+2cMXAoq4ALQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.44.1': + resolution: {integrity: sha512-qnQJ+mVa7szevdEyvfItbO5Vo+GfZ4/GZWWDRRLjrxYPkhM+6zYB2vRYwCsoJLzqFCdZT4mEqyJoyzkunsZ96A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/utils@8.44.1': + resolution: {integrity: sha512-DpX5Fp6edTlocMCwA+mHY8Mra+pPjRZ0TfHkXI8QFelIKcbADQz1LUPNtzOFUriBB2UYqw4Pi9+xV4w9ZczHFg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/visitor-keys@8.44.1': + resolution: {integrity: sha512-576+u0QD+Jp3tZzvfRfxon0EA2lzcDt3lhUbsC6Lgzy9x2VR4E+JUiNyGHi5T8vk0TV+fpJ5GLG1JsJuWCaKhw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@unocss/astro@66.5.2': + resolution: {integrity: sha512-JUiJL4wkDTCFgReQ+c1Nqb47EfryJvGiSp9MxXclCUbp5hegqq7yMg3BMpJ4QzHmf5EeDFO38eRBKV57hd0Iew==} + peerDependencies: + vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 + peerDependenciesMeta: + vite: + optional: true + + '@unocss/cli@66.5.2': + resolution: {integrity: sha512-WFj3fd5LqPX2/NvG/kX4vxML14F5yU6e0yPezO+7fjrJ9V31m1AFQWfiT2p8HbNUcQd9jZ9lcoWLm3Q1FsdPDA==} + engines: {node: '>=14'} + hasBin: true + + '@unocss/config@66.5.2': + resolution: {integrity: sha512-rREBBt2a6aZJ21TCeKG3/wjHfTNPbIwdrJtIVrN7hLcljW2vnWuyYabZ1yASK8+lnNsMoBoU5mbakgrPF0MItA==} + engines: {node: '>=14'} + + '@unocss/core@0.62.4': + resolution: {integrity: sha512-Cc+Vo6XlaQpyVejkJrrzzWtiK9pgMWzVVBpm9VCVtwZPUjD4GSc+g7VQCPXSsr7m03tmSuRySJx72QcASmauNQ==} + + '@unocss/core@66.5.2': + resolution: {integrity: sha512-POSEpwj2FJtrDgzSq6nVhAJbnGIYPqtEMTpzQXfeFqPDMidAXjaH/xZUeTdHDbI9Jg700smrRXJtFJrJFXkmiQ==} + + '@unocss/extractor-arbitrary-variants@0.62.4': + resolution: {integrity: sha512-e4hJfBMyFr6T6dYSTTjNv9CQwaU1CVEKxDlYP0GpfSgxsV58pguID9j1mt0/XZD6LvEDzwxj9RTRWKpUSWqp+Q==} + + '@unocss/extractor-arbitrary-variants@66.5.2': + resolution: {integrity: sha512-MNHzhA4RKJJVo6D5Uc+SkPfeugO1KXDt0GFg0FkOUKTTnahxyXNvd9BG9HHYlKSiaYCgUhFmysNhv04Gza+CNg==} + + '@unocss/inspector@66.5.2': + resolution: {integrity: sha512-8PuM01lrsOuyas3K+5LqeoeiujIGk72ivvJsP4/T8h03XQWzpS7NPJU6JVJQUcYZAE+WtqFcPJ8wcg0ERKNPdA==} + + '@unocss/postcss@66.5.2': + resolution: {integrity: sha512-tZrWVcGm1cJghYqRFgiCb/HCnWehdJ3/6lUlXN5Ogfu4agCa3f8QES43+6TMpuTKdqkjXvMI3jZFKNMgN+/wlg==} + engines: {node: '>=14'} + peerDependencies: + postcss: ^8.4.21 + + '@unocss/preset-attributify@66.5.2': + resolution: {integrity: sha512-/FigYbT1uA5DLy5dVV2QuTizvSge8jZZZu3uGAu25p59m/h/6ZjvkCoiKcTkvmNUuZfj/ZPZmAE8GoSn1uR++A==} + + '@unocss/preset-icons@66.5.2': + resolution: {integrity: sha512-vjSwttkZrU8FfIo4TCkSOAIba0xbWE6N3/xEdK3tjq+FSgClzs9SmO06KLJHSntJ/N5JYA0wpkPS5mLYxGMwqw==} + + '@unocss/preset-mini@0.62.4': + resolution: {integrity: sha512-1O+QpQFx7FT61aheAZEYemW5e4AGib8TFGm+rWLudKq2IBNnXHcS5xsq5QvqdC7rp9Dn3lnW5du6ijow5kCBuw==} + + '@unocss/preset-mini@66.5.2': + resolution: {integrity: sha512-YLOuYq7GNoWNgF3P41AtcvnOodSP49x0RNM4PR/ntGddl0BfsFaKeCGzt8DpbvavhQpBn0+kt4GP3RajKooAIQ==} + + '@unocss/preset-tagify@66.5.2': + resolution: {integrity: sha512-6AusDr1rD+HK22F4kwPLWqOImV3W+0nyPMsUwLVHQeaZktpSFSqaIQCI6aIVWyftvW/paST1Xc4HEHb7rKBF/w==} + + '@unocss/preset-typography@66.5.2': + resolution: {integrity: sha512-Ez3VWrNlJVa9cywsI/IwUdZ4OUeeUvf04pZmf+bwSU3CHqfonRT8K3+ndHQfuTJYbIb1k3few+cc1P1W7NP7Xw==} + + '@unocss/preset-uno@66.5.2': + resolution: {integrity: sha512-+raFp6uRwvQVIS7y8JoQI+5PPodl+uNsHxL9uH/JkelB5++ACrcP/ShN8RrDD97K+wtSP+3kr9SsK6dk0f2Mpg==} + + '@unocss/preset-web-fonts@66.5.2': + resolution: {integrity: sha512-xMFUE8Bhe2X/VlUBtdXTnDrrZL+WE99RaiBNLS1F1Na5r4Fc5Ck0p8a+SnMB7GDx5gtwf1ekKwi0pAP8+vIJnQ==} + + '@unocss/preset-wind3@66.5.2': + resolution: {integrity: sha512-qgzLiPd6CkepLLssBod7ejQ4sKKqAvCOyjqpp0eFmHVUKGBEGPzOI1/WnbrAzvTHDonbSc52kB/XEWlgWmDhhA==} + + '@unocss/preset-wind4@66.5.2': + resolution: {integrity: sha512-493Vb1do+05+3tdE0kU+SUKAPG9Spd+hItKfc09OL276T1DMj7AZzIq5q+rj9e+bOAjWAAutjw94RPNjKlU3fA==} + + '@unocss/preset-wind@66.5.2': + resolution: {integrity: sha512-jJN7kLXNAn/6VpYWTrIJGsXAhziPlPhK7bdnilbVnrlTSOluG6peCE6gdUyjdlLDyYELzz8qZ7ZvOo77IsBkPQ==} + + '@unocss/reset@66.5.2': + resolution: {integrity: sha512-DirXdqrkSp3fThRGOz0s0ehsYBpLb72Vh4QlPfMFuwHHFC9P9IDTLMUj5kD51A9fdy07Wrmhs7T5CQ//DlfOdQ==} + + '@unocss/rule-utils@0.62.4': + resolution: {integrity: sha512-XUwLbLUzL+VSHCJNK5QBHC9RbFehumge1/XJmsRfmh0+oxgJoO1gvEvxi57gYEmdJdMRJHRJZ66se6+cB0Ymvw==} + engines: {node: '>=14'} + + '@unocss/rule-utils@66.5.2': + resolution: {integrity: sha512-2eR5TBTO+cmPY9ahFjyEu8qP/NFPI02dVpI0rgGKdyDMv/PnO9+yS/9rKgrmXsN3nPYHjOrLutRXkF/xxm/t3w==} + engines: {node: '>=14'} + + '@unocss/transformer-attributify-jsx@66.5.2': + resolution: {integrity: sha512-mTa+fMKVz96He21E6FYCJyd0QbL6Xr5JjdqZEEFZiwt9N884g89pHZOlEURmrkQBrWc5NwSfzNB7lCkhuUOIFQ==} + + '@unocss/transformer-compile-class@66.5.2': + resolution: {integrity: sha512-50UTeKH6zycAzF44+6eCW13uPy5bw3W3Z8miEAIj0cNaKHTul0QYQFhLT3R804cnkAdX/Cp6IE/HSivxeP5ueQ==} + + '@unocss/transformer-directives@66.5.2': + resolution: {integrity: sha512-hwbAdV1Vr001ojaXR8rVt4jJvPnrAjl9h2SQWjaqyGkLntnKvFB8JSTS9CT0cyv1GrwiBAwdnVIdioLAQ3GPbg==} + + '@unocss/transformer-variant-group@66.5.2': + resolution: {integrity: sha512-ZgH4hgoIbbh92pszsT2M93e/DcEmN+s9yjYPPCa0qxvTQb6aANM02Z6T7OE0ltQ0NShELfIS4oSGUKY6ezHwug==} + + '@unocss/vite@66.5.2': + resolution: {integrity: sha512-0OcvZHV7ag8ml9z1pG0T92b81CP8nOv21o9vZnQUJN4Uw+8fnVA9xCh1X68IfDNr5Q8nS5zz/Fjr/pC89Cb+og==} + peerDependencies: + vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 + + '@v-c/utils@0.0.26': + resolution: {integrity: sha512-ClcZxr/DMNHe578gExOOzR54gQgniKA0Ltbm7W5lfw5VwSwx5wdsD4qp5530PmAVacDqyPMWWL1zBKx+ZeuATQ==} + + '@vitejs/plugin-vue-jsx@5.1.1': + resolution: {integrity: sha512-uQkfxzlF8SGHJJVH966lFTdjM/lGcwJGzwAHpVqAPDD/QcsqoUGa+q31ox1BrUfi+FLP2ChVp7uLXE3DkHyDdQ==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 + vue: ^3.0.0 + + '@vitejs/plugin-vue@6.0.1': + resolution: {integrity: sha512-+MaE752hU0wfPFJEUAIxqw18+20euHHdxVtMvbFcOEpjEyfqXH/5DCoTHiVJ0J29EhTJdoTkjEv5YBKU9dnoTw==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 + vue: ^3.2.25 + + '@vitest/eslint-plugin@1.3.12': + resolution: {integrity: sha512-cSEyUYGj8j8SLqKrzN7BlfsJ3wG67eRT25819PXuyoSBogLXiyagdKx4MHWHV1zv+EEuyMXsEKkBEKzXpxyBrg==} + peerDependencies: + eslint: '>= 8.57.0' + typescript: '>= 5.0.0' + vitest: '*' + peerDependenciesMeta: + typescript: + optional: true + vitest: + optional: true + + '@vitest/expect@3.2.4': + resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + + '@vitest/mocker@3.2.4': + resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} + peerDependencies: + msw: ^2.4.9 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@3.2.4': + resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} + + '@vitest/runner@3.2.4': + resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} + + '@vitest/snapshot@3.2.4': + resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} + + '@vitest/spy@3.2.4': + resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} + + '@vitest/utils@3.2.4': + resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} + + '@volar/language-core@2.4.23': + resolution: {integrity: sha512-hEEd5ET/oSmBC6pi1j6NaNYRWoAiDhINbT8rmwtINugR39loROSlufGdYMF9TaKGfz+ViGs1Idi3mAhnuPcoGQ==} + + '@volar/source-map@2.4.23': + resolution: {integrity: sha512-Z1Uc8IB57Lm6k7q6KIDu/p+JWtf3xsXJqAX/5r18hYOTpJyBn0KXUR8oTJ4WFYOcDzWC9n3IflGgHowx6U6z9Q==} + + '@volar/typescript@2.4.23': + resolution: {integrity: sha512-lAB5zJghWxVPqfcStmAP1ZqQacMpe90UrP5RJ3arDyrhy4aCUQqmxPPLB2PWDKugvylmO41ljK7vZ+t6INMTag==} + + '@vue/babel-helper-vue-transform-on@1.5.0': + resolution: {integrity: sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==} + + '@vue/babel-plugin-jsx@1.5.0': + resolution: {integrity: sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + peerDependenciesMeta: + '@babel/core': + optional: true + + '@vue/babel-plugin-resolve-type@1.5.0': + resolution: {integrity: sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@vue/compiler-core@3.5.18': + resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==} + + '@vue/compiler-core@3.5.22': + resolution: {integrity: sha512-jQ0pFPmZwTEiRNSb+i9Ow/I/cHv2tXYqsnHKKyCQ08irI2kdF5qmYedmF8si8mA7zepUFmJ2hqzS8CQmNOWOkQ==} + + '@vue/compiler-dom@3.5.18': + resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==} + + '@vue/compiler-dom@3.5.22': + resolution: {integrity: sha512-W8RknzUM1BLkypvdz10OVsGxnMAuSIZs9Wdx1vzA3mL5fNMN15rhrSCLiTm6blWeACwUwizzPVqGJgOGBEN/hA==} + + '@vue/compiler-sfc@3.5.18': + resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==} + + '@vue/compiler-sfc@3.5.22': + resolution: {integrity: sha512-tbTR1zKGce4Lj+JLzFXDq36K4vcSZbJ1RBu8FxcDv1IGRz//Dh2EBqksyGVypz3kXpshIfWKGOCcqpSbyGWRJQ==} + + '@vue/compiler-ssr@3.5.18': + resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==} + + '@vue/compiler-ssr@3.5.22': + resolution: {integrity: sha512-GdgyLvg4R+7T8Nk2Mlighx7XGxq/fJf9jaVofc3IL0EPesTE86cP/8DD1lT3h1JeZr2ySBvyqKQJgbS54IX1Ww==} + + '@vue/compiler-vue2@2.7.16': + resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} + + '@vue/devtools-api@6.6.4': + resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} + + '@vue/language-core@3.0.8': + resolution: {integrity: sha512-eYs6PF7bxoPYvek9qxceo1BCwFbJZYqJll+WaYC8o8ec60exqj+n+QRGGiJHSeUfYp0hDxARbMdxMq/fbPgU5g==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@vue/reactivity@3.5.22': + resolution: {integrity: sha512-f2Wux4v/Z2pqc9+4SmgZC1p73Z53fyD90NFWXiX9AKVnVBEvLFOWCEgJD3GdGnlxPZt01PSlfmLqbLYzY/Fw4A==} + + '@vue/runtime-core@3.5.22': + resolution: {integrity: sha512-EHo4W/eiYeAzRTN5PCextDUZ0dMs9I8mQ2Fy+OkzvRPUYQEyK9yAjbasrMCXbLNhF7P0OUyivLjIy0yc6VrLJQ==} + + '@vue/runtime-dom@3.5.22': + resolution: {integrity: sha512-Av60jsryAkI023PlN7LsqrfPvwfxOd2yAwtReCjeuugTJTkgrksYJJstg1e12qle0NarkfhfFu1ox2D+cQotww==} + + '@vue/server-renderer@3.5.22': + resolution: {integrity: sha512-gXjo+ao0oHYTSswF+a3KRHZ1WszxIqO7u6XwNHqcqb9JfyIL/pbWrrh/xLv7jeDqla9u+LK7yfZKHih1e1RKAQ==} + peerDependencies: + vue: 3.5.22 + + '@vue/shared@3.5.18': + resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==} + + '@vue/shared@3.5.22': + resolution: {integrity: sha512-F4yc6palwq3TT0u+FYf0Ns4Tfl9GRFURDN2gWG7L1ecIaS/4fCIuFOjMTnCyjsu/OK6vaDKLCrGAa+KvvH+h4w==} + + '@vue/test-utils@2.4.6': + resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==} + + '@vueuse/core@10.11.1': + resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==} + + '@vueuse/metadata@10.11.1': + resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==} + + '@vueuse/shared@10.11.1': + resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==} + + '@webgpu/types@0.1.52': + resolution: {integrity: sha512-eI883Nlag2hGIkhXxAnq8s4APpqXWuPL3Gbn2ghiU12UjLvfCbVqHK4XfXl3eLRTatqcMmeK7jws7IwWsGfbzw==} + + JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + + abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + + abbrev@2.0.0: + resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-walk@8.3.4: + resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} + engines: {node: '>=0.4.0'} + + acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} + engines: {node: '>=0.4.0'} + hasBin: true + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + + agent-base@7.1.3: + resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} + engines: {node: '>= 14'} + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + + alien-signals@2.0.6: + resolution: {integrity: sha512-P3TxJSe31bUHBiblg59oU1PpaWPtmxF9GhJ/cB7OkgJ0qN/ifFSKUI25/v8ZhsT+lIG6ac8DpTOplXxORX6F3Q==} + + align-text@0.1.4: + resolution: {integrity: sha512-GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg==} + engines: {node: '>=0.10.0'} + + amdefine@1.0.1: + resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==} + engines: {node: '>=0.4.2'} + + ansi-escapes@5.0.0: + resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==} + engines: {node: '>=12'} + + ansi-regex@2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} + + ansi-styles@2.2.1: + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + ansis@4.1.0: + resolution: {integrity: sha512-BGcItUBWSMRgOCe+SVZJ+S7yTRG0eGt9cXAHev72yuGcY23hnLA7Bky5L/xLyPINoSN95geovfBkqoTlNZYa7w==} + engines: {node: '>=14'} + + ant-design-vue@4.2.6: + resolution: {integrity: sha512-t7eX13Yj3i9+i5g9lqFyYneoIb3OzTvQjq9Tts1i+eiOd3Eva/6GagxBSXM1fOCjqemIu0FYVE1ByZ/38epR3Q==} + engines: {node: '>=12.22.0'} + peerDependencies: + vue: '>=3.2.0' + + antdv-component-resolver@1.0.8: + resolution: {integrity: sha512-bRK/sBwPSetzOJ8mKRXMnZaWCRGgRuusvm10DMZKvYgdSinI/pQ9M9PzHc29Tl06IjqVEvv5U68SUFl9pZPpXg==} + peerDependencies: + unplugin-vue-components: '>=0.26.0 | >=28.0.0' + + antdv-style@0.0.1-beta.4: + resolution: {integrity: sha512-77IpYFjuAeJjXf0wrDF093P2GTdjluleqKuoe3sThrdGiW+owytx/xE+QfZV6NzleoGYCpxJwCXvNwTPa6aEVA==} + peerDependencies: + ant-design-vue: '>=4.0' + vue: ^3.0 + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + are-docs-informative@0.0.2: + resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} + engines: {node: '>=14'} + + arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + arr-union@3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} + + array-back@3.1.0: + resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} + engines: {node: '>=6'} + + array-back@4.0.2: + resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==} + engines: {node: '>=8'} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + + array-tree-filter@2.1.0: + resolution: {integrity: sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + + as-number@1.0.0: + resolution: {integrity: sha512-HkI/zLo2AbSRO4fqVkmyf3hms0bJDs3iboHqTrNuwTiCRvdYXM7HFhfhB6Dk51anV2LM/IMB83mtK9mHw4FlAg==} + + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + + assign-symbols@1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} + + ast-kit@2.1.2: + resolution: {integrity: sha512-cl76xfBQM6pztbrFWRnxbrDm9EOqDr1BF6+qQnnDZG2Co2LjyUktkN9GTJfBAfdae+DbT2nJf2nCGAdDDN7W2g==} + engines: {node: '>=20.18.0'} + + async-validator@4.2.5: + resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==} + + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + axios@1.12.2: + resolution: {integrity: sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==} + + babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + baseline-browser-mapping@2.8.6: + resolution: {integrity: sha512-wrH5NNqren/QMtKUEEJf7z86YjfqW/2uw3IL3/xpqZUC95SSVIFXYQeeGjL6FT/X68IROu6RMehZQS5foy2BXw==} + hasBin: true + + batch-processor@1.0.0: + resolution: {integrity: sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + birpc@2.5.0: + resolution: {integrity: sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.24.3: + resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + browserslist@4.26.2: + resolution: {integrity: sha512-ECFzp6uFOSB+dcZ5BK/IBaGWssbSYBHvuMeMt3MMFyhI0Z8SqGgEkBLARgpRH3hutIgPVsALcMwbDrJqPxQ65A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer-from@0.1.2: + resolution: {integrity: sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + builtin-modules@5.0.0: + resolution: {integrity: sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==} + engines: {node: '>=18.20'} + + bundle-name@4.1.0: + resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} + engines: {node: '>=18'} + + bytewise-core@1.2.3: + resolution: {integrity: sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA==} + + bytewise@1.1.0: + resolution: {integrity: sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ==} + + c12@1.11.2: + resolution: {integrity: sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==} + peerDependencies: + magicast: ^0.3.4 + peerDependenciesMeta: + magicast: + optional: true + + cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + + call-bind-apply-helpers@1.0.1: + resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.3: + resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} + engines: {node: '>= 0.4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + + camelcase@1.2.1: + resolution: {integrity: sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g==} + engines: {node: '>=0.10.0'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + caniuse-lite@1.0.30001690: + resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==} + + caniuse-lite@1.0.30001743: + resolution: {integrity: sha512-e6Ojr7RV14Un7dz6ASD0aZDmQPT/A+eZU+nuTNfjqmRrmkmQlnTNWH0SKmqagx9PeW87UVqapSurtAXifmtdmw==} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + center-align@0.1.3: + resolution: {integrity: sha512-Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ==} + engines: {node: '>=0.10.0'} + + chai@5.3.1: + resolution: {integrity: sha512-48af6xm9gQK8rhIcOxWwdGzIervm8BVTin+yRp9HEvU20BtVZ2lBywlIJBzwaDtvo0FvjeL7QdCADoUoqIbV3A==} + engines: {node: '>=18'} + + chalk@1.1.3: + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + chalk@5.6.0: + resolution: {integrity: sha512-46QrSQFyVSEyYAgQ22hQ+zDa60YHA4fBstHmtSApj1Y5vKtG27fWowW03jCk5KcbXEWPZUIR894aARCA/G1kfQ==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + change-case@5.4.4: + resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} + + changelogen@0.5.7: + resolution: {integrity: sha512-cTZXBcJMl3pudE40WENOakXkcVtrbBpbkmSkM20NdRiUqa4+VYRdXdEsgQ0BNQ6JBE2YymTNWtPKVF7UCTN5+g==} + hasBin: true + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + check-error@2.1.1: + resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} + engines: {node: '>= 16'} + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} + + chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + + ci-info@4.3.0: + resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} + engines: {node: '>=8'} + + citty@0.1.6: + resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} + + clean-regexp@1.0.0: + resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} + engines: {node: '>=4'} + + cli-cursor@4.0.0: + resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + cli-truncate@3.1.0: + resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + cliui@2.1.0: + resolution: {integrity: sha512-GIOYRizG+TGoc7Wgc1LiOTLare95R3mzKgoln+Q/lE4ceiYH19gUpl0l0Ffq4lJDEf3FxujMe6IBfOCs7pfqNA==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + command-line-args@5.2.1: + resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==} + engines: {node: '>=4.0.0'} + + command-line-usage@6.1.3: + resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==} + engines: {node: '>=8.0.0'} + + commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + + commander@11.0.0: + resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==} + engines: {node: '>=16'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + comment-parser@1.4.1: + resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} + engines: {node: '>= 12.0.0'} + + compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + + compute-scroll-into-view@1.0.20: + resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + confbox@0.1.8: + resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} + + confbox@0.2.2: + resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} + + config-chain@1.1.13: + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + + consola@3.3.3: + resolution: {integrity: sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==} + engines: {node: ^14.18.0 || >=16.10.0} + + consola@3.4.2: + resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} + engines: {node: ^14.18.0 || >=16.10.0} + + contour_plot@0.0.1: + resolution: {integrity: sha512-Nil2HI76Xux6sVGORvhSS8v66m+/h5CwFkBJDO+U5vWaMdNC0yXNCsGDPbzPhvqOEU5koebhdEvD372LI+IyLw==} + + conventional-changelog-angular@7.0.0: + resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} + engines: {node: '>=16'} + + conventional-changelog-conventionalcommits@7.0.2: + resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} + engines: {node: '>=16'} + + conventional-commits-parser@5.0.0: + resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} + engines: {node: '>=16'} + hasBin: true + + convert-gitmoji@0.1.5: + resolution: {integrity: sha512-4wqOafJdk2tqZC++cjcbGcaJ13BZ3kwldf06PTiAQRAB76Z1KJwZNL1SaRZMi2w1FM9RYTgZ6QErS8NUl/GBmQ==} + + convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cookie-es@2.0.0: + resolution: {integrity: sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==} + + copy-anything@2.0.6: + resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + + core-js-compat@3.45.1: + resolution: {integrity: sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==} + + core-js@3.39.0: + resolution: {integrity: sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cosmiconfig-typescript-loader@5.1.0: + resolution: {integrity: sha512-7PtBB+6FdsOvZyJtlF3hEPpACq7RQX6BVGsgC7/lfVXnKMvNCu/XY3ykreqG5w/rBNdu2z8LCIKoF3kpHHdHlA==} + engines: {node: '>=v16'} + peerDependencies: + '@types/node': '*' + cosmiconfig: '>=8.2' + typescript: '>=4' + + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + + cosmiconfig@8.3.6: + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + + create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + + cross-env@7.0.3: + resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} + engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} + hasBin: true + + cross-spawn@6.0.6: + resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==} + engines: {node: '>=4.8'} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + crypto-js@4.2.0: + resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} + + css-tree@3.1.0: + resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + csscolorparser@1.0.3: + resolution: {integrity: sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cssstyle@3.0.0: + resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==} + engines: {node: '>=14'} + + cssstyle@4.1.0: + resolution: {integrity: sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==} + engines: {node: '>=18'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + d3-array@1.2.4: + resolution: {integrity: sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==} + + d3-array@2.12.1: + resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==} + + d3-collection@1.0.7: + resolution: {integrity: sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==} + + d3-color@1.4.1: + resolution: {integrity: sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==} + + d3-color@3.1.0: + resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} + engines: {node: '>=12'} + + d3-dsv@1.2.0: + resolution: {integrity: sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==} + hasBin: true + + d3-ease@1.0.7: + resolution: {integrity: sha512-lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ==} + + d3-format@1.4.5: + resolution: {integrity: sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==} + + d3-hexbin@0.2.2: + resolution: {integrity: sha512-KS3fUT2ReD4RlGCjvCEm1RgMtp2NFZumdMu4DBzQK8AZv3fXRM6Xm8I4fSU07UXvH4xxg03NwWKWdvxfS/yc4w==} + + d3-hierarchy@2.0.0: + resolution: {integrity: sha512-SwIdqM3HxQX2214EG9GTjgmCc/mbSx4mQBn+DuEETubhOw6/U3fmnji4uCVrmzOydMHSO1nZle5gh6HB/wdOzw==} + + d3-interpolate@1.4.0: + resolution: {integrity: sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==} + + d3-interpolate@3.0.1: + resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} + engines: {node: '>=12'} + + d3-regression@1.3.10: + resolution: {integrity: sha512-PF8GWEL70cHHWpx2jUQXc68r1pyPHIA+St16muk/XRokETzlegj5LriNKg7o4LR0TySug4nHYPJNNRz/W+/Niw==} + + d3-scale@2.2.2: + resolution: {integrity: sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==} + + d3-time-format@2.3.0: + resolution: {integrity: sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==} + + d3-time@1.1.0: + resolution: {integrity: sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==} + + d3-timer@1.0.10: + resolution: {integrity: sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw==} + + dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + + data-urls@4.0.0: + resolution: {integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==} + engines: {node: '>=14'} + + data-urls@5.0.0: + resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} + engines: {node: '>=18'} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + dayjs@1.11.18: + resolution: {integrity: sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==} + + de-indent@1.0.2: + resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} + + debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.0: + resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + + decode-named-character-reference@1.2.0: + resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} + + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + + deep-equal@1.1.2: + resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} + engines: {node: '>= 0.4'} + + deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + default-browser-id@5.0.0: + resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==} + engines: {node: '>=18'} + + default-browser@5.2.1: + resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==} + engines: {node: '>=18'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-lazy-prop@3.0.0: + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + defined@1.0.1: + resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} + + defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + destr@2.0.3: + resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} + + detect-browser@5.3.0: + resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==} + + detect-libc@2.0.4: + resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} + engines: {node: '>=8'} + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + + diff@8.0.2: + resolution: {integrity: sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==} + engines: {node: '>=0.3.1'} + + directory-tree@3.5.2: + resolution: {integrity: sha512-DsOqeZEHkZnZrVOJG3mE/J9M6J8PulImiC6I1ZpoprVlfno8GvLOPDMkxiJihklLK7B9aVudG463L1+S/kzjiw==} + engines: {node: '>=10.0'} + hasBin: true + + dom-align@1.12.4: + resolution: {integrity: sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw==} + + dom-scroll-into-view@2.0.1: + resolution: {integrity: sha512-bvVTQe1lfaUr1oFzZX80ce9KLDlZ3iU+XGNE/bz9HnGdklTieqsbmsLHe+rT2XWqopvL0PckkYqN7ksmm5pe3w==} + + domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead + + dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + + dotenv@16.4.7: + resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} + engines: {node: '>=12'} + + dotignore@0.1.2: + resolution: {integrity: sha512-UGGGWfSauusaVJC+8fgV+NVvBXkCTmVv7sk6nojDZZvuOUNGUy0Zk4UpHQD6EDjS0jpBwcACvH4eofvyzBcRDw==} + hasBin: true + + dts-resolver@2.1.1: + resolution: {integrity: sha512-3BiGFhB6mj5Kv+W2vdJseQUYW+SKVzAFJL6YNP6ursbrwy1fXHRotfHi3xLNxe4wZl/K8qbAFeCDjZLjzqxxRw==} + engines: {node: '>=20.18.0'} + peerDependencies: + oxc-resolver: '>=11.0.0' + peerDependenciesMeta: + oxc-resolver: + optional: true + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + duplexer2@0.1.4: + resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} + + duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + earcut@2.2.4: + resolution: {integrity: sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + echarts@6.0.0: + resolution: {integrity: sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ==} + + editorconfig@1.0.4: + resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} + engines: {node: '>=14'} + hasBin: true + + electron-to-chromium@1.5.223: + resolution: {integrity: sha512-qKm55ic6nbEmagFlTFczML33rF90aU+WtrJ9MdTCThrcvDNdUHN4p6QfVN78U06ZmguqXIyMPyYhw2TrbDUwPQ==} + + electron-to-chromium@1.5.76: + resolution: {integrity: sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==} + + element-resize-detector@1.2.4: + resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + empathic@2.0.0: + resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==} + engines: {node: '>=14'} + + enhanced-resolve@5.18.0: + resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==} + engines: {node: '>=10.13.0'} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + errno@0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + es-abstract@1.23.8: + resolution: {integrity: sha512-lfab8IzDn6EpI1ibZakcgS6WsfEBiB+43cuJo+wgylx1xKXf+Sp+YR3vFuQwC/u3sxYwV8Cxe3B0DpVUu/WiJQ==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + + es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + esbuild@0.18.20: + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.25.10: + resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==} + engines: {node: '>=18'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + eslint-compat-utils@0.5.1: + resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + + eslint-compat-utils@0.6.4: + resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + + eslint-config-flat-gitignore@2.1.0: + resolution: {integrity: sha512-cJzNJ7L+psWp5mXM7jBX+fjHtBvvh06RBlcweMhKD8jWqQw0G78hOW5tpVALGHGFPsBV+ot2H+pdDGJy6CV8pA==} + peerDependencies: + eslint: ^9.5.0 + + eslint-flat-config-utils@2.1.4: + resolution: {integrity: sha512-bEnmU5gqzS+4O+id9vrbP43vByjF+8KOs+QuuV4OlqAuXmnRW2zfI/Rza1fQvdihQ5h4DUo0NqFAiViD4mSrzQ==} + + eslint-formatting-reporter@0.0.0: + resolution: {integrity: sha512-k9RdyTqxqN/wNYVaTk/ds5B5rA8lgoAmvceYN7bcZMBwU7TuXx5ntewJv81eF3pIL/CiJE+pJZm36llG8yhyyw==} + peerDependencies: + eslint: '>=8.40.0' + + eslint-json-compat-utils@0.2.1: + resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==} + engines: {node: '>=12'} + peerDependencies: + '@eslint/json': '*' + eslint: '*' + jsonc-eslint-parser: ^2.4.0 + peerDependenciesMeta: + '@eslint/json': + optional: true + + eslint-merge-processors@2.0.0: + resolution: {integrity: sha512-sUuhSf3IrJdGooquEUB5TNpGNpBoQccbnaLHsb1XkBLUPPqCNivCpY05ZcpCOiV9uHwO2yxXEWVczVclzMxYlA==} + peerDependencies: + eslint: '*' + + eslint-parser-plain@0.1.1: + resolution: {integrity: sha512-KRgd6wuxH4U8kczqPp+Oyk4irThIhHWxgFgLDtpgjUGVIS3wGrJntvZW/p6hHq1T4FOwnOtCNkvAI4Kr+mQ/Hw==} + + eslint-plugin-antfu@3.1.1: + resolution: {integrity: sha512-7Q+NhwLfHJFvopI2HBZbSxWXngTwBLKxW1AGXLr2lEGxcEIK/AsDs8pn8fvIizl5aZjBbVbVK5ujmMpBe4Tvdg==} + peerDependencies: + eslint: '*' + + eslint-plugin-command@3.3.1: + resolution: {integrity: sha512-fBVTXQ2y48TVLT0+4A6PFINp7GcdIailHAXbvPBixE7x+YpYnNQhFZxTdvnb+aWk+COgNebQKen/7m4dmgyWAw==} + peerDependencies: + eslint: '*' + + eslint-plugin-es-x@7.8.0: + resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + eslint: '>=8' + + eslint-plugin-format@1.0.2: + resolution: {integrity: sha512-ySrDaLQZbreNAr/Betq6ocd5Hxy3+LBIfWNV2621EQQ6yGf/ZSLtN2MiM62WO2YQTX+nSFhv332Tpp51q+AkZQ==} + peerDependencies: + eslint: ^8.40.0 || ^9.0.0 + + eslint-plugin-import-lite@0.3.0: + resolution: {integrity: sha512-dkNBAL6jcoCsXZsQ/Tt2yXmMDoNt5NaBh/U7yvccjiK8cai6Ay+MK77bMykmqQA2bTF6lngaLCDij6MTO3KkvA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: '>=9.0.0' + typescript: '>=4.5' + peerDependenciesMeta: + typescript: + optional: true + + eslint-plugin-jsdoc@59.1.0: + resolution: {integrity: sha512-sg9mzjjzfnMynyY4W8FDiQv3i8eFcKVEHDt4Xh7MLskP3QkMt2z6p7FuzSw7jJSKFues6RaK2GWvmkB1FLPxXg==} + engines: {node: '>=20.11.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 + + eslint-plugin-jsonc@2.20.1: + resolution: {integrity: sha512-gUzIwQHXx7ZPypUoadcyRi4WbHW2TPixDr0kqQ4miuJBU0emJmyGTlnaT3Og9X2a8R1CDayN9BFSq5weGWbTng==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + + eslint-plugin-n@17.23.1: + resolution: {integrity: sha512-68PealUpYoHOBh332JLLD9Sj7OQUDkFpmcfqt8R9sySfFSeuGJjMTJQvCRRB96zO3A/PELRLkPrzsHmzEFQQ5A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: '>=8.23.0' + + eslint-plugin-no-only-tests@3.3.0: + resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==} + engines: {node: '>=5.0.0'} + + eslint-plugin-perfectionist@4.15.0: + resolution: {integrity: sha512-pC7PgoXyDnEXe14xvRUhBII8A3zRgggKqJFx2a82fjrItDs1BSI7zdZnQtM2yQvcyod6/ujmzb7ejKPx8lZTnw==} + engines: {node: ^18.0.0 || >=20.0.0} + peerDependencies: + eslint: '>=8.45.0' + + eslint-plugin-pnpm@1.1.2: + resolution: {integrity: sha512-WHH09rEiRZ3fjQ8y9LMarCp3uWOTGkbTyC8WCGqyjMVFUwSFjzIeays8ysvqyz7G5vyjr/72Mzq93Kgtp52BOQ==} + peerDependencies: + eslint: ^9.0.0 + + eslint-plugin-regexp@2.10.0: + resolution: {integrity: sha512-ovzQT8ESVn5oOe5a7gIDPD5v9bCSjIFJu57sVPDqgPRXicQzOnYfFN21WoQBQF18vrhT5o7UMKFwJQVVjyJ0ng==} + engines: {node: ^18 || >=20} + peerDependencies: + eslint: '>=8.44.0' + + eslint-plugin-toml@0.12.0: + resolution: {integrity: sha512-+/wVObA9DVhwZB1nG83D2OAQRrcQZXy+drqUnFJKymqnmbnbfg/UPmEMCKrJNcEboUGxUjYrJlgy+/Y930mURQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + + eslint-plugin-unicorn@61.0.2: + resolution: {integrity: sha512-zLihukvneYT7f74GNbVJXfWIiNQmkc/a9vYBTE4qPkQZswolWNdu+Wsp9sIXno1JOzdn6OUwLPd19ekXVkahRA==} + engines: {node: ^20.10.0 || >=21.0.0} + peerDependencies: + eslint: '>=9.29.0' + + eslint-plugin-unused-imports@4.2.0: + resolution: {integrity: sha512-hLbJ2/wnjKq4kGA9AUaExVFIbNzyxYdVo49QZmKCnhk5pc9wcYRbfgLHvWJ8tnsdcseGhoUAddm9gn/lt+d74w==} + peerDependencies: + '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0 + eslint: ^9.0.0 || ^8.0.0 + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + + eslint-plugin-vue@10.5.0: + resolution: {integrity: sha512-7BZHsG3kC2vei8F2W8hnfDi9RK+cv5eKPMvzBdrl8Vuc0hR5odGQRli8VVzUkrmUHkxFEm4Iio1r5HOKslO0Aw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@stylistic/eslint-plugin': ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + '@typescript-eslint/parser': ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 + vue-eslint-parser: ^10.0.0 + peerDependenciesMeta: + '@stylistic/eslint-plugin': + optional: true + '@typescript-eslint/parser': + optional: true + + eslint-plugin-yml@1.18.0: + resolution: {integrity: sha512-9NtbhHRN2NJa/s3uHchO3qVVZw0vyOIvWlXWGaKCr/6l3Go62wsvJK5byiI6ZoYztDsow4GnS69BZD3GnqH3hA==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + + eslint-processor-vue-blocks@2.0.0: + resolution: {integrity: sha512-u4W0CJwGoWY3bjXAuFpc/b6eK3NQEI8MoeW7ritKj3G3z/WtHrKjkqf+wk8mPEy5rlMGS+k6AZYOw2XBoN/02Q==} + peerDependencies: + '@vue/compiler-sfc': ^3.3.0 + eslint: '>=9.0.0' + + eslint-scope@8.4.0: + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.1: + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.36.0: + resolution: {integrity: sha512-hB4FIzXovouYzwzECDcUkJ4OcfOEkXTv2zRY6B9bkwjx/cprAq0uvm1nl7zvQ0/TsUk0zQiN4uPfJpB9m+rPMQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + esno@0.17.0: + resolution: {integrity: sha512-w78cQGlptQfsBYfootUCitsKS+MD74uR5L6kNsvwVkJsfzEepIafbvWsx2xK4rcFP4IUftt4F6J8EhagUxX+Bg==} + hasBin: true + + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + execa@7.2.0: + resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} + engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} + + execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + + expect-type@1.2.2: + resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==} + engines: {node: '>=12.0.0'} + + exsolve@1.0.7: + resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} + + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + extend-shallow@3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} + + extrude-polyline@1.0.6: + resolution: {integrity: sha512-fcKIanU/v+tcdgG0+xMbS0C2VZ0/CF3qqxSjHiWfWICh0yFBezPr3SsOhgdzwE5E82plG6p1orEsfSqgldpxVg==} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-diff@1.3.0: + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-uri@3.0.3: + resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==} + + fastq@1.18.0: + resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} + + fault@2.0.1: + resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} + + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fecha@4.2.3: + resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} + + fetchdts@0.1.6: + resolution: {integrity: sha512-yR7rc9v+7KOEnSU5sOJfH9OaxhWRfrrk3am1CUliTCy6Bc+JQtGcxFT9MxvmbU34wA8HYkCk5r9lVRAld8IAcQ==} + + fflate@0.8.2: + resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-replace@3.0.0: + resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==} + engines: {node: '>=4.0.0'} + + find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + + find-up-simple@1.0.1: + resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==} + engines: {node: '>=18'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flatted@3.3.2: + resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} + + fmin@0.0.2: + resolution: {integrity: sha512-sSi6DzInhl9d8yqssDfGZejChO8d2bAGIpysPsvYsxFe898z89XhCZg6CPNV3nhUhFefeC/AXZK2bAJxlBjN6A==} + + follow-redirects@1.15.9: + resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + + foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} + engines: {node: '>=14'} + + form-data@4.0.1: + resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==} + engines: {node: '>= 6'} + + form-data@4.0.4: + resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==} + engines: {node: '>= 6'} + + format@0.2.2: + resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} + engines: {node: '>=0.4.x'} + + fs-extra@11.3.2: + resolution: {integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==} + engines: {node: '>=14.14'} + + fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + geojson-vt@3.2.1: + resolution: {integrity: sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-intrinsic@1.2.6: + resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==} + engines: {node: '>= 0.4'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.10.1: + resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} + + get-tsconfig@4.8.1: + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} + + get-value@2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} + + giget@1.2.3: + resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} + hasBin: true + + git-raw-commits@2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true + + github-slugger@2.0.0: + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + + gl-matrix@3.4.3: + resolution: {integrity: sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==} + + gl-vec2@1.3.0: + resolution: {integrity: sha512-YiqaAuNsheWmUV0Sa8k94kBB0D6RWjwZztyO+trEYS8KzJ6OQB/4686gdrf59wld4hHFIvaxynO3nRxpk1Ij/A==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + global-dirs@0.1.1: + resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} + engines: {node: '>=4'} + + global-prefix@3.0.0: + resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} + engines: {node: '>=6'} + + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@15.15.0: + resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} + engines: {node: '>=18'} + + globals@16.4.0: + resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==} + engines: {node: '>=18'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globrex@0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + grid-index@1.1.0: + resolution: {integrity: sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==} + + gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + + h3@2.0.0-beta.4: + resolution: {integrity: sha512-/JdwHUGuHjbBXAVxQN7T7QeI9cVlhsqMKVNFHebZVs9RoEYH85Ogh9O1DEy/1ZiJkmMwa1gNg6bBcGhc1Itjdg==} + engines: {node: '>=20.11.1'} + peerDependencies: + crossws: ^0.4.1 + peerDependenciesMeta: + crossws: + optional: true + + hammerjs@2.0.8: + resolution: {integrity: sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==} + engines: {node: '>=0.8.0'} + + hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + + has-ansi@2.0.0: + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + hookable@5.5.3: + resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} + + hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + + hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + + html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + + html-encoding-sniffer@4.0.0: + resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} + engines: {node: '>=18'} + + html-entities@2.5.2: + resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} + + html-tokenize@2.0.1: + resolution: {integrity: sha512-QY6S+hZ0f5m1WT8WffYN+Hg+xm/w5I8XeUcAq/ZYP5wVC8xbKi4Whhru3FtrAebD5EhBW8rmFzkDI6eCAuFe2w==} + hasBin: true + + http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + + http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} + + https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + + https-proxy-agent@7.0.6: + resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} + engines: {node: '>= 14'} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + human-signals@4.3.1: + resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} + engines: {node: '>=14.18.0'} + + human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + + husky@9.1.7: + resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==} + engines: {node: '>=18'} + hasBin: true + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + + image-size@0.5.5: + resolution: {integrity: sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=} + engines: {node: '>=0.10.0'} + hasBin: true + + import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + indent-string@5.0.0: + resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} + engines: {node: '>=12'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + internmap@1.0.1: + resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==} + + is-arguments@1.2.0: + resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} + engines: {node: '>= 0.4'} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.2.1: + resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==} + engines: {node: '>= 0.4'} + + is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + + is-builtin-module@5.0.0: + resolution: {integrity: sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==} + engines: {node: '>=18.20'} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + + is-extendable@1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-fullwidth-code-point@4.0.0: + resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} + engines: {node: '>=12'} + + is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-plain-object@3.0.1: + resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} + engines: {node: '>=0.10.0'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-text-path@2.0.0: + resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} + engines: {node: '>=8'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.0: + resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + is-what@3.14.1: + resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + + is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} + + isarray@0.0.1: + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jiti@1.21.7: + resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==} + hasBin: true + + jiti@2.6.0: + resolution: {integrity: sha512-VXe6RjJkBPj0ohtqaO8vSWP3ZhAKo66fKrFNCll4BTcwljPLz03pCbaNKfzGP5MbrCYcbJ7v0nOYYwUzTEIdXQ==} + hasBin: true + + js-beautify@1.15.1: + resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} + engines: {node: '>=14'} + hasBin: true + + js-cookie@3.0.5: + resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} + engines: {node: '>=14'} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-tokens@9.0.1: + resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + + jsdoc-type-pratt-parser@4.1.0: + resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} + engines: {node: '>=12.0.0'} + + jsdoc-type-pratt-parser@5.4.0: + resolution: {integrity: sha512-F9GQ+F1ZU6qvSrZV8fNFpjDNf614YzR2eF6S0+XbDjAcUI28FSoXnYZFjQmb1kFx3rrJb5PnxUH3/Yti6fcM+g==} + engines: {node: '>=12.0.0'} + + jsdom@22.1.0: + resolution: {integrity: sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==} + engines: {node: '>=16'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsdom@24.1.3: + resolution: {integrity: sha512-MyL55p3Ut3cXbeBEG7Hcv0mVM8pp8PBNWxRqchZnSfAiES1v1mRnMeFfaHWIPULpwsYfvO+ZmMZz5tGCnjzDUQ==} + engines: {node: '>=18'} + peerDependencies: + canvas: ^2.11.2 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json-stringify-pretty-compact@3.0.0: + resolution: {integrity: sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==} + + json2module@0.0.3: + resolution: {integrity: sha512-qYGxqrRrt4GbB8IEOy1jJGypkNsjWoIMlZt4bAsmUScCA507Hbc2p1JOhBzqn45u3PWafUgH2OnzyNU7udO/GA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonc-eslint-parser@2.4.0: + resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + jsonc-eslint-parser@2.4.1: + resolution: {integrity: sha512-uuPNLJkKN8NXAlZlQ6kmUF9qO+T6Kyd7oV4+/7yy8Jz6+MZNyhPq8EdLpdfnPVzUC8qSf1b4j1azKaGnFsjmsw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + + kdbush@3.0.0: + resolution: {integrity: sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==} + + kdbush@4.0.2: + resolution: {integrity: sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kolorist@1.8.0: + resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + + lazy-cache@1.0.4: + resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} + engines: {node: '>=0.10.0'} + + less@4.4.1: + resolution: {integrity: sha512-X9HKyiXPi0f/ed0XhgUlBeFfxrlDP3xR4M7768Zl+WXLUViuL9AOPPJP4nCV0tgRWvTYvpNmN0SFhZOQzy16PA==} + engines: {node: '>=14'} + hasBin: true + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + lightningcss-darwin-arm64@1.30.1: + resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + + lightningcss-darwin-x64@1.30.1: + resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + + lightningcss-freebsd-x64@1.30.1: + resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + + lightningcss-linux-arm-gnueabihf@1.30.1: + resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + + lightningcss-linux-arm64-gnu@1.30.1: + resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-arm64-musl@1.30.1: + resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-x64-gnu@1.30.1: + resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-linux-x64-musl@1.30.1: + resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-win32-arm64-msvc@1.30.1: + resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + + lightningcss-win32-x64-msvc@1.30.1: + resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + + lightningcss@1.30.1: + resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==} + engines: {node: '>= 12.0.0'} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + lint-staged@14.0.1: + resolution: {integrity: sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==} + engines: {node: ^16.14.0 || >=18.0.0} + hasBin: true + + listr2@6.6.1: + resolution: {integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==} + engines: {node: '>=16.0.0'} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true + + load-json-file@4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} + + local-pkg@1.1.1: + resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==} + engines: {node: '>=14'} + + local-pkg@1.1.2: + resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==} + engines: {node: '>=14'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + + lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + lodash.clonedeep@4.5.0: + resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} + + lodash.isequal@4.5.0: + resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} + + lodash.isfunction@3.0.9: + resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==} + + lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + + lodash.kebabcase@4.1.1: + resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.mergewith@4.6.2: + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + + lodash.snakecase@4.1.1: + resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + + lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash.upperfirst@4.3.1: + resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-update@5.0.1: + resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + longest@1.0.1: + resolution: {integrity: sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg==} + engines: {node: '>=0.10.0'} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + loupe@3.2.0: + resolution: {integrity: sha512-2NCfZcT5VGVNX9mSZIxLRkEAegDGBpuQZBy13desuHeVORmBDyAET4TkJr4SjqQy3A8JDofMN6LpkK8Xcm/dlw==} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + + magic-string@0.30.19: + resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} + + magicast@0.3.5: + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + + map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + + map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + + mapbox-gl@1.13.3: + resolution: {integrity: sha512-p8lJFEiqmEQlyv+DQxFAOG/XPWN0Wp7j/Psq93Zywz7qt9CcUKFYDBOoOEKzqe6gudHVJY8/Bhqw6VDpX2lSBg==} + engines: {node: '>=6.4.0'} + + maplibre-gl@3.6.2: + resolution: {integrity: sha512-krg2KFIdOpLPngONDhP6ixCoWl5kbdMINP0moMSJFVX7wX1Clm2M9hlNKXS8vBGlVWwR5R3ZfI6IPrYz7c+aCQ==} + engines: {node: '>=16.14.0', npm: '>=8.1.0'} + + markdown-table@3.0.4: + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + mdast-util-find-and-replace@3.0.2: + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} + + mdast-util-from-markdown@2.0.2: + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + + mdast-util-frontmatter@2.0.1: + resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==} + + mdast-util-gfm-autolink-literal@2.0.1: + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + + mdast-util-gfm-footnote@2.1.0: + resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} + + mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + + mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + + mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + + mdast-util-gfm@3.1.0: + resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + + mdast-util-to-markdown@2.1.2: + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + + mdn-data@2.12.2: + resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} + + memorystream@0.3.1: + resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} + engines: {node: '>= 0.10.0'} + + meow@12.1.1: + resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} + engines: {node: '>=16.10'} + + meow@8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromark-core-commonmark@2.0.3: + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} + + micromark-extension-frontmatter@2.0.0: + resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==} + + micromark-extension-gfm-autolink-literal@2.1.0: + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + + micromark-extension-gfm-footnote@2.1.0: + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + + micromark-extension-gfm-strikethrough@2.1.0: + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + + micromark-extension-gfm-table@2.1.1: + resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} + + micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + + micromark-extension-gfm-task-list-item@2.1.0: + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + + micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + + micromark-factory-destination@2.0.1: + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + + micromark-factory-label@2.0.1: + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + + micromark-factory-space@2.0.1: + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + + micromark-factory-title@2.0.1: + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + + micromark-factory-whitespace@2.0.1: + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + + micromark-util-character@2.1.1: + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + + micromark-util-chunked@2.0.1: + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + + micromark-util-classify-character@2.0.1: + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + + micromark-util-combine-extensions@2.0.1: + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + + micromark-util-decode-numeric-character-reference@2.0.2: + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + + micromark-util-decode-string@2.0.1: + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + + micromark-util-encode@2.0.1: + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + + micromark-util-html-tag-name@2.0.1: + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + + micromark-util-normalize-identifier@2.0.1: + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + + micromark-util-resolve-all@2.0.1: + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + + micromark-util-sanitize-uri@2.0.1: + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + + micromark-util-subtokenize@2.1.0: + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} + + micromark-util-symbol@2.0.1: + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + + micromark-util-types@2.0.2: + resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} + + micromark@4.0.2: + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} + + micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@9.0.1: + resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} + engines: {node: '>=16 || 14 >=14.17'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + + minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + + mitt@3.0.1: + resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + mlly@1.7.4: + resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==} + + mlly@1.8.0: + resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} + + mock-h3@0.0.1-beta.12: + resolution: {integrity: sha512-nvr9+FCFaVSjWNprHroDr99041UqTaH+MKNmjE/fLe7z8oEoRRi9gETNVlvGqxy6oW0RSkOBrAfaZ1ggnjUyug==} + peerDependencies: + h3: '>=2.0.0-beta.3' + vite: '>=5.0.0' + + mock-property@1.0.3: + resolution: {integrity: sha512-2emPTb1reeLLYwHxyVx993iYyCHEiRRO+y8NFXFPL5kl5q14sgTK76cXyEKkeKCHeRw35SfdkUJ10Q1KfHuiIQ==} + engines: {node: '>= 0.4'} + + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + + mrmime@2.0.0: + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + engines: {node: '>=10'} + + ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + muggle-string@0.4.1: + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} + + multipipe@1.0.2: + resolution: {integrity: sha512-6uiC9OvY71vzSGX8lZvSqscE7ft9nPupJ8fMjrCNRAUy2LREUW42UL+V/NTrogr6rFgRydUrCX4ZitfpSNkSCQ==} + + murmurhash-js@1.0.0: + resolution: {integrity: sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanopop@2.4.2: + resolution: {integrity: sha512-NzOgmMQ+elxxHeIha+OG/Pv3Oc3p4RU2aBhwWwAqDpXrdTbtRylbRLQztLy8dMMwfl6pclznBdfUhccEn9ZIzw==} + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + natural-orderby@5.0.0: + resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==} + engines: {node: '>=18'} + + needle@3.3.1: + resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} + engines: {node: '>= 4.4.x'} + hasBin: true + + nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + + node-fetch-native@1.6.4: + resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + node-releases@2.0.21: + resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==} + + nopt@7.2.1: + resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + + normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + npm-run-all@4.1.5: + resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} + engines: {node: '>= 4'} + hasBin: true + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + nwsapi@2.2.16: + resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==} + + nypm@0.3.12: + resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==} + engines: {node: ^14.16.0 || >=16.10.0} + hasBin: true + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-deep-merge@1.0.5: + resolution: {integrity: sha512-3DioFgOzetbxbeUq8pB2NunXo8V0n4EvqsWM/cJoI6IA9zghd7cl/2pBOuWRf4dlvA+fcg5ugFMZaN2/RuoaGg==} + + object-inspect@1.12.3: + resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + + object-inspect@1.13.3: + resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} + engines: {node: '>= 0.4'} + + object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} + + object-keys@0.4.0: + resolution: {integrity: sha512-ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw==} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + ofetch@1.4.1: + resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} + + ohash@1.1.4: + resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + + open@10.1.0: + resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==} + engines: {node: '>=18'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + + package-manager-detector@1.3.0: + resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-gitignore@2.0.0: + resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==} + engines: {node: '>=14'} + + parse-imports-exports@0.2.4: + resolution: {integrity: sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==} + + parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parse-node-version@1.0.1: + resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} + engines: {node: '>= 0.10'} + + parse-statements@1.0.11: + resolution: {integrity: sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA==} + + parse5@7.2.1: + resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} + + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + pathval@2.0.1: + resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} + engines: {node: '>= 14.16'} + + pbf@3.3.0: + resolution: {integrity: sha512-XDF38WCH3z5OV/OVa8GKUNtLAyneuzbCisx7QUCF8Q6Nutx0WnJrQe5O+kOtBlLfRNUws98Y58Lblp+NJG5T4Q==} + hasBin: true + + pdfast@0.2.0: + resolution: {integrity: sha512-cq6TTu6qKSFUHwEahi68k/kqN2mfepjkGrG9Un70cgdRRKLKY6Rf8P8uvP2NvZktaQZNF3YE7agEkLj0vGK9bA==} + + perfect-debounce@1.0.0: + resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + + pidtree@0.3.1: + resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} + engines: {node: '>=0.10'} + hasBin: true + + pidtree@0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pinia@2.3.1: + resolution: {integrity: sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==} + peerDependencies: + typescript: '>=4.4.4' + vue: ^2.7.0 || ^3.5.11 + peerDependenciesMeta: + typescript: + optional: true + + pkg-types@1.3.0: + resolution: {integrity: sha512-kS7yWjVFCkIw9hqdJBoMxDdzEngmkr5FXeWZZfQ6GoYacjVnsW6l2CcYW/0ThD0vF4LPJgVYnrg4d0uuhwYQbg==} + + pkg-types@1.3.1: + resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} + + pkg-types@2.2.0: + resolution: {integrity: sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ==} + + pkg-types@2.3.0: + resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} + + pluralize@8.0.0: + resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} + engines: {node: '>=4'} + + pmtiles@2.11.0: + resolution: {integrity: sha512-dU9SzzaqmCGpdEuTnIba6bDHT6j09ZJFIXxwGpvkiEnce3ZnBB1VKt6+EOmJGueriweaZLAMTUmKVElU2CBe0g==} + + pnpm-workspace-yaml@1.1.2: + resolution: {integrity: sha512-XgS7j21a+I0dSmUzDUtKp4TAqPfLwJ0kAg0uQ2dveJxFrY14/9ukaD+Mt+4jt67RH4wgRsvNsjNdKbb/7NrMwQ==} + + polygon-clipping@0.15.7: + resolution: {integrity: sha512-nhfdr83ECBg6xtqOAJab1tbksbBAOMUltN60bU+llHVOL0e5Onm1WpAXXWXVB39L8AJFssoIhEVuy/S90MmotA==} + + polyline-miter-util@1.0.1: + resolution: {integrity: sha512-/3u91zz6mBerBZo6qnOJOTjv7EfPhKtsV028jMyj86YpzLRNmCCFfrX7IO9tCEQ2W4x45yc+vKOezjf7u2Nd6Q==} + + possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} + + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + potpack@1.0.2: + resolution: {integrity: sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==} + + potpack@2.0.0: + resolution: {integrity: sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw==} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + + prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + + prettier@3.6.2: + resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} + engines: {node: '>=14'} + hasBin: true + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + proto-list@1.2.4: + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + + protocol-buffers-schema@3.6.0: + resolution: {integrity: sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + prr@1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + + psl@1.15.0: + resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + quansync@0.2.11: + resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + + quickselect@2.0.0: + resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==} + + rc9@2.1.2: + resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==} + + read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + + read-pkg@3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} + + read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + + readable-stream@1.0.34: + resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + readdirp@4.0.2: + resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} + engines: {node: '>= 14.16.0'} + + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + + reduce-flatten@2.0.0: + resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==} + engines: {node: '>=6'} + + refa@0.12.1: + resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + reflect.getprototypeof@1.0.9: + resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==} + engines: {node: '>= 0.4'} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + regexp-ast-analysis@0.7.1: + resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + regexp-tree@0.1.27: + resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} + hasBin: true + + regexp.prototype.flags@1.5.3: + resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} + engines: {node: '>= 0.4'} + + regjsparser@0.12.0: + resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} + hasBin: true + + regl@1.6.1: + resolution: {integrity: sha512-7Z9rmpEqmLNwC9kCYCyfyu47eWZaQWeNpwZfwz99QueXN8B/Ow40DB0N+OeUeM/yu9pZAB01+JgJ+XghGveVoA==} + + repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + resize-observer-polyfill@1.5.1: + resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-global@1.0.0: + resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} + engines: {node: '>=8'} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + resolve-protobuf-schema@2.1.0: + resolution: {integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + restore-cursor@4.0.0: + resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + right-align@0.1.3: + resolution: {integrity: sha512-yqINtL/G7vs2v+dFIZmFUDbnVyFUJFKd6gK22Kgo6R4jfJGFtisKyncWDDULgjfqf4ASQuIQyjJ7XZ+3aWpsAg==} + engines: {node: '>=0.10.0'} + + robust-predicates@3.0.2: + resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} + + rolldown-plugin-dts@0.15.6: + resolution: {integrity: sha512-AxQlyx3Nszob5QLmVUjz/VnC5BevtUo0h8tliuE0egddss7IbtCBU7GOe7biRU0fJNRQJmQjPKXFcc7K98j3+w==} + engines: {node: '>=20.18.0'} + peerDependencies: + '@typescript/native-preview': '>=7.0.0-dev.20250601.1' + rolldown: ^1.0.0-beta.9 + typescript: ^5.0.0 + vue-tsc: ~3.0.3 + peerDependenciesMeta: + '@typescript/native-preview': + optional: true + typescript: + optional: true + vue-tsc: + optional: true + + rolldown-vite@7.1.13: + resolution: {integrity: sha512-wYRnqlO+nKcvZitHjwXCnGy+xaFW8mBWL6zScZWJK/ZtEs9Be4ngabaDN05l7t+xFgSzZbPYbWdORBVTfWm7uA==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + esbuild: ^0.25.0 + jiti: '>=1.21.0' + less: ^4.0.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + esbuild: + optional: true + jiti: + optional: true + less: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + rolldown@1.0.0-beta.40: + resolution: {integrity: sha512-VqEHbKpOgTPmQrZ4fVn4eshDQS/6g/fRpNE7cFSJY+eQLDZn4B9X61J6L+hnlt1u2uRI+pF7r1USs6S5fuWCvw==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + + rolldown@1.1.2: + resolution: {integrity: sha512-x0CrQQqCXWGeI8dTvFfN/Dnv3yMKT9hv5jFjlOreKAx9wqLq9wz7VvLLHyaAXC90/CpggTu9SisSbsJJTPSjNQ==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + + rollup@0.25.8: + resolution: {integrity: sha512-a2S4Bh3bgrdO4BhKr2E4nZkjTvrJ2m2bWjMTzVYtoqSCn0HnuxosXnaJUHrMEziOWr3CzL9GjilQQKcyCQpJoA==} + hasBin: true + + rollup@4.46.3: + resolution: {integrity: sha512-RZn2XTjXb8t5g13f5YclGoilU/kwT696DIkY3sywjdZidNSi3+vseaQov7D7BZXVJCPv3pDWUN69C78GGbXsKw==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + rou3@0.7.3: + resolution: {integrity: sha512-KKenF/hB2iIhS1ohj226LT+/8uKCBpSMqeS4V1UPN9vad99uLoyIhrULRRB1skaB40LQHcBlSsAi3sT8MaoDDQ==} + + rrweb-cssom@0.6.0: + resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} + + rrweb-cssom@0.7.1: + resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} + + run-applescript@7.0.0: + resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==} + engines: {node: '>=18'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rw@1.3.3: + resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sax@1.4.1: + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} + + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + + scroll-into-view-if-needed@2.2.31: + resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==} + + scslre@0.3.0: + resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} + engines: {node: ^14.0.0 || >=16.0.0} + + scule@1.3.0: + resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.6.0: + resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} + engines: {node: '>=10'} + hasBin: true + + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + engines: {node: '>=10'} + hasBin: true + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-value@2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} + + shallow-equal@1.2.1: + resolution: {integrity: sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.2: + resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==} + engines: {node: '>= 0.4'} + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + siginfo@2.0.0: + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + sirv@3.0.1: + resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==} + engines: {node: '>=18'} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + size-sensor@1.0.2: + resolution: {integrity: sha512-2NCmWxY7A9pYKGXNBfteo4hy14gWu47rg5692peVMst6lQLPKrVjhY+UTEsPI5ceFRJSl3gVgMYaUi/hKuaiKw==} + + sjcl@1.0.9: + resolution: {integrity: sha512-dWM71tkSHxe7zEZj0/COjtJdmErIxp7UMp8a6D4xx8dTTtJLc4lFL+HAX8s6lvASyQQ2iYMHwa7rhhQq7MT5MA==} + + slice-ansi@5.0.0: + resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} + engines: {node: '>=12'} + + sm-crypto@0.4.0: + resolution: {integrity: sha512-OexH2V1EqmhXuOIPGoCl55OjMF0wwPUM/zhUjT0Q6vHBeopSRvTNRy76/1eRoFs3VBKt39hdFnxwpFmooHYa2A==} + + sort-asc@0.2.0: + resolution: {integrity: sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA==} + engines: {node: '>=0.10.0'} + + sort-desc@0.2.0: + resolution: {integrity: sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w==} + engines: {node: '>=0.10.0'} + + sort-object@3.0.3: + resolution: {integrity: sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ==} + engines: {node: '>=0.10.0'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.3.3: + resolution: {integrity: sha512-9O4+y9n64RewmFoKUZ/5Tx9IHIcXM6Q+RTSw6ehnqybUz4a7iwR3Eaw80uLtqqQ5D0C+5H03D4KKGo9PdP33Gg==} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.1.32: + resolution: {integrity: sha512-htQyLrrRLkQ87Zfrir4/yN+vAUd6DNjVayEjTSHXu29AYQJw57I4/xEL/M6p6E/woPNJwvZt6rVlzc7gFEJccQ==} + engines: {node: '>=0.8.0'} + + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-expression-parse@4.0.0: + resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} + + spdx-license-ids@3.0.20: + resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} + + splaytree@3.1.2: + resolution: {integrity: sha512-4OM2BJgC5UzrhVnnJA4BkHKGtjXNzzUfpQjCO8I05xYPsfS/VuQDwjCGGMi8rYQilHEV4j8NBqTFbls/PZEE7A==} + + split-string@3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} + + split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + + split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} + + srvx@0.8.7: + resolution: {integrity: sha512-g3+15LlwVOGL2QpoTPZlvRjg+9a5Tx/69CatXjFP6txvhIaW2FmGyzJfb8yft5wyfGddvJmP/Yx+e/uNDMRSLQ==} + engines: {node: '>=20.16.0'} + hasBin: true + + stackback@0.0.2: + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + + std-env@3.8.0: + resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} + + std-env@3.9.0: + resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} + + string-argv@0.3.2: + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string.prototype.padend@3.1.6: + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} + engines: {node: '>= 0.4'} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@0.10.31: + resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + strip-indent@4.1.0: + resolution: {integrity: sha512-OA95x+JPmL7kc7zCu+e+TeYxEiaIyndRx0OrBcK2QPPH09oAndr2ALvymxWA+Lx1PYYvFUm4O63pRkdJAaW96w==} + engines: {node: '>=12'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + strip-literal@3.0.0: + resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==} + + stylis@4.2.0: + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + + stylis@4.3.4: + resolution: {integrity: sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==} + + supercluster@7.1.5: + resolution: {integrity: sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==} + + supercluster@8.0.1: + resolution: {integrity: sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==} + + supports-color@2.0.0: + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + synckit@0.6.2: + resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} + engines: {node: '>=12.20'} + + synckit@0.9.3: + resolution: {integrity: sha512-JJoOEKTfL1urb1mDoEblhD9NhEbWmq9jHEMEnxoC4ujUaZ4itA8vKgwkFAyNClgxplLi9tsUKX+EduK0p/l7sg==} + engines: {node: ^14.18.0 || >=16.0.0} + + table-layout@1.0.2: + resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==} + engines: {node: '>=8.0.0'} + + tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + + tape@4.17.0: + resolution: {integrity: sha512-KCuXjYxCZ3ru40dmND+oCLsXyuA8hoseu2SS404Px5ouyS0A99v8X/mdiLqsR5MTAyamMBN7PRwt2Dv3+xGIxw==} + hasBin: true + + tar@6.2.1: + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} + + terser@5.37.0: + resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==} + engines: {node: '>=10'} + hasBin: true + + text-extensions@2.4.0: + resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} + engines: {node: '>=8'} + + throttle-debounce@5.0.2: + resolution: {integrity: sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==} + engines: {node: '>=12.22'} + + through2@0.4.2: + resolution: {integrity: sha512-45Llu+EwHKtAZYTPPVn3XZHBgakWMN3rokhEv5hu596XP+cNgplMg+Gj+1nmAvj+L0K7+N49zBKx5rah5u0QIQ==} + + through2@4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + + tinyexec@1.0.1: + resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} + + tinyglobby@0.2.14: + resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + engines: {node: '>=12.0.0'} + + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} + + tinypool@1.1.1: + resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} + engines: {node: ^18.0.0 || >=20.0.0} + + tinyqueue@2.0.3: + resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} + + tinyrainbow@2.0.0: + resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} + engines: {node: '>=14.0.0'} + + tinyspy@4.0.3: + resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==} + engines: {node: '>=14.0.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + toml-eslint-parser@0.10.0: + resolution: {integrity: sha512-khrZo4buq4qVmsGzS5yQjKe/WsFvV8fGfOjDQN0q4iy9FjRfPWRgTFrU8u1R2iu/SfWLhY9WnCi4Jhdrcbtg+g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + + tr46@4.1.1: + resolution: {integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==} + engines: {node: '>=14'} + + tr46@5.0.0: + resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==} + engines: {node: '>=18'} + + tree-kill@1.2.2: + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} + hasBin: true + + treeify@1.1.0: + resolution: {integrity: sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==} + engines: {node: '>=0.6'} + + trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + ts-declaration-location@1.0.7: + resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==} + peerDependencies: + typescript: '>=4.0.0' + + ts-node@10.9.2: + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + + tsdown@0.14.1: + resolution: {integrity: sha512-/nBuFDKZeYln9hAxwWG5Cm55/823sNIVI693iVi0xRFHzf9OVUq4b/lx9PH1TErFr/IQ0kd2hutFbJIPM0XQWA==} + engines: {node: '>=20.19.0'} + hasBin: true + peerDependencies: + '@arethetypeswrong/core': ^0.18.1 + publint: ^0.3.0 + typescript: ^5.0.0 + unplugin-lightningcss: ^0.4.0 + unplugin-unused: ^0.5.0 + peerDependenciesMeta: + '@arethetypeswrong/core': + optional: true + publint: + optional: true + typescript: + optional: true + unplugin-lightningcss: + optional: true + unplugin-unused: + optional: true + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.3.0: + resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tsx@3.14.0: + resolution: {integrity: sha512-xHtFaKtHxM9LOklMmJdI3BEnQq/D5F73Of2E1GDrITi9sgoVkvIsrQUTY1G8FlmGtA+awCI4EBlTRRYxkL2sRg==} + hasBin: true + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + + type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + + type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + + type-fest@1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + + type-fest@4.2.0: + resolution: {integrity: sha512-5zknd7Dss75pMSED270A1RQS3KloqRJA9XbXLe0eCxyw7xXFb3rd+9B0UQ/0E+LQT6lnrLviEolYORlRWamn4w==} + engines: {node: '>=16'} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typescript@5.8.3: + resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + engines: {node: '>=14.17'} + hasBin: true + + typewise-core@1.2.0: + resolution: {integrity: sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg==} + + typewise@1.0.3: + resolution: {integrity: sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ==} + + typical@4.0.0: + resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} + engines: {node: '>=8'} + + typical@5.2.0: + resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==} + engines: {node: '>=8'} + + ufo@1.5.4: + resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} + + ufo@1.6.1: + resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} + + uglify-js@2.8.29: + resolution: {integrity: sha512-qLq/4y2pjcU3vhlhseXGGJ7VbFO4pBANu0kwl8VCa9KEI0V8VfZIx2Fy3w01iSTA/pGwKZSmu/+I4etLNDdt5w==} + engines: {node: '>=0.8.0'} + hasBin: true + + uglify-to-browserify@1.0.2: + resolution: {integrity: sha1-bgkk1r2mta/jSeOabWMoUKD4grc=} + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + unconfig@7.3.2: + resolution: {integrity: sha512-nqG5NNL2wFVGZ0NA/aCFw0oJ2pxSf1lwg4Z5ill8wd7K4KX/rQbHlwbh+bjctXL5Ly1xtzHenHGOK0b+lG6JVg==} + + unconfig@7.3.3: + resolution: {integrity: sha512-QCkQoOnJF8L107gxfHL0uavn7WD9b3dpBcFX6HtfQYmjw2YzWxGuFQ0N0J6tE9oguCBJn9KOvfqYDCMPHIZrBA==} + + undici-types@6.21.0: + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + + unimport@4.2.0: + resolution: {integrity: sha512-mYVtA0nmzrysnYnyb3ALMbByJ+Maosee2+WyE0puXl+Xm2bUwPorPaaeZt0ETfuroPOtG8jj1g/qeFZ6buFnag==} + engines: {node: '>=18.12.0'} + + union-value@1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} + + unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + + unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unocss-preset-chinese@0.3.3: + resolution: {integrity: sha512-t6AZ5HMb2pMwSuBp1ntVViKUwPufLWRELoptkAIQrK53j9CtGU3wGXGcpas8HQXaG5fzSpwmGRJagB+7bz1ZZw==} + peerDependencies: + '@unocss/nuxt': '*' + unocss: '*' + peerDependenciesMeta: + '@unocss/nuxt': + optional: true + unocss: + optional: true + + unocss-preset-ease@0.0.3: + resolution: {integrity: sha512-xSJcLZWeEBmeElddjLgKTY/NHP1ycwxSfSW6ldCG2OWPfa4vNNrRl0eL+kuMWNWzewCKGeQS/XIYI66mmd0R0Q==} + peerDependencies: + '@unocss/nuxt': '*' + unocss: '*' + peerDependenciesMeta: + '@unocss/nuxt': + optional: true + unocss: + optional: true + + unocss@66.5.2: + resolution: {integrity: sha512-GCFq6ilalDE33dbjZKgeBHgKGLL/t87XM5sS0aqhD0RgzHhbT2f6Jtsmmg2Q3GASlk5uvJLxh9ifUvPQ13BdyQ==} + engines: {node: '>=14'} + peerDependencies: + '@unocss/webpack': 66.5.2 + vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 + peerDependenciesMeta: + '@unocss/webpack': + optional: true + vite: + optional: true + + unplugin-auto-import@19.3.0: + resolution: {integrity: sha512-iIi0u4Gq2uGkAOGqlPJOAMI8vocvjh1clGTfSK4SOrJKrt+tirrixo/FjgBwXQNNdS7ofcr7OxzmOb/RjWxeEQ==} + engines: {node: '>=14'} + peerDependencies: + '@nuxt/kit': ^3.2.2 + '@vueuse/core': '*' + peerDependenciesMeta: + '@nuxt/kit': + optional: true + '@vueuse/core': + optional: true + + unplugin-config@0.1.5: + resolution: {integrity: sha512-AT1BHPx7RqrcX8dQ6jQn3W8PnXNyMXPe57wfs9TNH/vZB9vM7Brbi0fhvApAUbkyuIb2Qkamt6jmn32KzEGcTw==} + peerDependencies: + '@nuxt/kit': ^3 + '@nuxt/schema': ^3 + esbuild: '*' + rollup: ^3 + vite: '>=3' + webpack: ^4 || ^5 + peerDependenciesMeta: + '@nuxt/kit': + optional: true + '@nuxt/schema': + optional: true + esbuild: + optional: true + rollup: + optional: true + vite: + optional: true + webpack: + optional: true + + unplugin-utils@0.2.5: + resolution: {integrity: sha512-gwXJnPRewT4rT7sBi/IvxKTjsms7jX7QIDLOClApuZwR49SXbrB1z2NLUZ+vDHyqCj/n58OzRRqaW+B8OZi8vg==} + engines: {node: '>=18.12.0'} + + unplugin-utils@0.3.0: + resolution: {integrity: sha512-JLoggz+PvLVMJo+jZt97hdIIIZ2yTzGgft9e9q8iMrC4ewufl62ekeW7mixBghonn2gVb/ICjyvlmOCUBnJLQg==} + engines: {node: '>=20.19.0'} + + unplugin-vue-components@29.1.0: + resolution: {integrity: sha512-z/9ACPXth199s9aCTCdKZAhe5QGOpvzJYP+Hkd0GN1/PpAmsu+W3UlRY3BJAewPqQxh5xi56+Og6mfiCV1Jzpg==} + engines: {node: '>=14'} + peerDependencies: + '@babel/parser': ^7.15.8 + '@nuxt/kit': ^3.2.2 || ^4.0.0 + vue: 2 || 3 + peerDependenciesMeta: + '@babel/parser': + optional: true + '@nuxt/kit': + optional: true + + unplugin@1.16.0: + resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==} + engines: {node: '>=14.0.0'} + + unplugin@2.3.10: + resolution: {integrity: sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==} + engines: {node: '>=18.12.0'} + + unplugin@2.3.6: + resolution: {integrity: sha512-+/MdXl8bLTXI2lJF22gUBeCFqZruEpL/oM9f8wxCuKh9+Mw9qeul3gTqgbKpMeOFlusCzc0s7x2Kax2xKW+FQg==} + engines: {node: '>=18.12.0'} + + update-browserslist-db@1.1.1: + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + viewport-mercator-project@6.2.3: + resolution: {integrity: sha512-QQb0/qCLlP4DdfbHHSWVYXpghB2wkLIiiZQnoelOB59mXKQSyZVxjreq1S+gaBJFpcGkWEcyVtre0+2y2DTl/Q==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + vite-node@3.2.4: + resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + + vite@7.1.2: + resolution: {integrity: sha512-J0SQBPlQiEXAF7tajiH+rUooJPo0l8KQgyg4/aMunNtrOa7bwuZJsJbDWzeljqQpgftxuq5yNJxQ91O9ts29UQ==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vitest@3.2.4: + resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/debug': ^4.1.12 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + '@vitest/browser': 3.2.4 + '@vitest/ui': 3.2.4 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/debug': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + + vscode-uri@3.0.8: + resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} + + vt-pbf@3.1.3: + resolution: {integrity: sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==} + + vue-component-type-helpers@2.2.0: + resolution: {integrity: sha512-cYrAnv2me7bPDcg9kIcGwjJiSB6Qyi08+jLDo9yuvoFQjzHiPTzML7RnkJB1+3P6KMsX/KbCD4QE3Tv/knEllw==} + + vue-demi@0.14.10: + resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==} + engines: {node: '>=12'} + hasBin: true + peerDependencies: + '@vue/composition-api': ^1.0.0-rc.1 + vue: ^3.0.0-0 || ^2.6.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + + vue-eslint-parser@10.2.0: + resolution: {integrity: sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + + vue-flow-layout@0.2.0: + resolution: {integrity: sha512-zKgsWWkXq0xrus7H4Mc+uFs1ESrmdTXlO0YNbR6wMdPaFvosL3fMB8N7uTV308UhGy9UvTrGhIY7mVz9eN+L0Q==} + + vue-i18n@9.14.5: + resolution: {integrity: sha512-0jQ9Em3ymWngyiIkj0+c/k7WgaPO+TNzjKSNq9BvBQaKJECqn9cd9fL4tkDhB5G1QBskGl9YxxbDAhgbFtpe2g==} + engines: {node: '>= 16'} + peerDependencies: + vue: ^3.0.0 + + vue-router@4.5.1: + resolution: {integrity: sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==} + peerDependencies: + vue: ^3.2.0 + + vue-tsc@3.0.8: + resolution: {integrity: sha512-H9yg/m6ywykmWS+pIAEs65v2FrVm5uOA0a0dHkX6Sx8dNg1a1m4iudt/6eGa9fAenmNHGlLFN9XpWQb8i5sU1w==} + hasBin: true + peerDependencies: + typescript: '>=5.0.0' + + vue-types@3.0.2: + resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==} + engines: {node: '>=10.15.0'} + peerDependencies: + vue: ^3.0.0 + + vue@3.5.22: + resolution: {integrity: sha512-toaZjQ3a/G/mYaLSbV+QsQhIdMo9x5rrqIpYRObsJ6T/J+RyCSFwN2LHNVH9v8uIcljDNa3QzPVdv3Y6b9hAJQ==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} + + w3c-xmlserializer@5.0.0: + resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} + engines: {node: '>=18'} + + warning@4.0.3: + resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} + + web-worker-helper@0.0.3: + resolution: {integrity: sha512-/TllNPjGenDwjE67M16TD9ALwuY847/zIoH7r+e5rSeG4kEa3HiMTAsUDj80yzIzhtshkv215KfsnQ/RXR3nVA==} + + webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + + webpack-virtual-modules@0.6.2: + resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} + + whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + + whatwg-encoding@3.1.1: + resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + engines: {node: '>=18'} + + whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + + whatwg-mimetype@4.0.0: + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} + + whatwg-url@12.0.1: + resolution: {integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==} + engines: {node: '>=14'} + + whatwg-url@14.1.0: + resolution: {integrity: sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==} + engines: {node: '>=18'} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-typed-array@1.1.18: + resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} + engines: {node: '>= 0.4'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + why-is-node-running@2.3.0: + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} + hasBin: true + + window-size@0.1.0: + resolution: {integrity: sha512-1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg==} + engines: {node: '>= 0.8.0'} + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wordwrap@0.0.2: + resolution: {integrity: sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==} + engines: {node: '>=0.4.0'} + + wordwrapjs@4.0.1: + resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==} + engines: {node: '>=8.0.0'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + ws@8.18.0: + resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + + xml-name-validator@5.0.0: + resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} + engines: {node: '>=18'} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xtend@2.1.2: + resolution: {integrity: sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ==} + engines: {node: '>=0.4'} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yaml-eslint-parser@1.3.0: + resolution: {integrity: sha512-E/+VitOorXSLiAqtTd7Yqax0/pAS3xaYMP+AUUJGOK1OZG3rhcj9fcJOM5HJ2VrP1FrStVCWr1muTfQCdj4tAA==} + engines: {node: ^14.17.0 || >=16.0.0} + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yaml@2.3.1: + resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} + engines: {node: '>= 14'} + + yaml@2.6.1: + resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} + engines: {node: '>= 14'} + hasBin: true + + yaml@2.8.1: + resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} + engines: {node: '>= 14.6'} + hasBin: true + + yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yargs@3.10.0: + resolution: {integrity: sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A==} + + yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zrender@6.0.0: + resolution: {integrity: sha512-41dFXEEXuJpNecuUQq6JlbybmnHaqqpGlbH1yxnA5V9MMP4SbohSVZsJIwz+zdjQXSSlR1Vc34EgH1zxyTDvhg==} + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + +snapshots: + + '@amap/amap-jsapi-loader@1.0.1': {} + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.30 + + '@ant-design/colors@6.0.0': + dependencies: + '@ctrl/tinycolor': 3.6.1 + + '@ant-design/icons-svg@4.4.2': {} + + '@ant-design/icons-vue@7.0.1(vue@3.5.22(typescript@5.8.3))': + dependencies: + '@ant-design/colors': 6.0.0 + '@ant-design/icons-svg': 4.4.2 + vue: 3.5.22(typescript@5.8.3) + + '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.22)(eslint-plugin-format@1.0.2(eslint@9.36.0(jiti@2.6.0)))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@antfu/install-pkg': 1.1.0 + '@clack/prompts': 0.11.0 + '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.36.0(jiti@2.6.0)) + '@eslint/markdown': 7.3.0 + '@stylistic/eslint-plugin': 5.4.0(eslint@9.36.0(jiti@2.6.0)) + '@typescript-eslint/eslint-plugin': 8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + '@typescript-eslint/parser': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + '@vitest/eslint-plugin': 1.3.12(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1)) + ansis: 4.1.0 + cac: 6.7.14 + eslint: 9.36.0(jiti@2.6.0) + eslint-config-flat-gitignore: 2.1.0(eslint@9.36.0(jiti@2.6.0)) + eslint-flat-config-utils: 2.1.4 + eslint-merge-processors: 2.0.0(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-antfu: 3.1.1(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-command: 3.3.1(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-import-lite: 0.3.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + eslint-plugin-jsdoc: 59.1.0(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-jsonc: 2.20.1(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-n: 17.23.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + eslint-plugin-no-only-tests: 3.3.0 + eslint-plugin-perfectionist: 4.15.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + eslint-plugin-pnpm: 1.1.2(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-regexp: 2.10.0(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-toml: 0.12.0(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-unicorn: 61.0.2(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-vue: 10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.36.0(jiti@2.6.0)))(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.6.0))) + eslint-plugin-yml: 1.18.0(eslint@9.36.0(jiti@2.6.0)) + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.22)(eslint@9.36.0(jiti@2.6.0)) + globals: 16.4.0 + jsonc-eslint-parser: 2.4.0 + local-pkg: 1.1.2 + parse-gitignore: 2.0.0 + toml-eslint-parser: 0.10.0 + vue-eslint-parser: 10.2.0(eslint@9.36.0(jiti@2.6.0)) + yaml-eslint-parser: 1.3.0 + optionalDependencies: + eslint-plugin-format: 1.0.2(eslint@9.36.0(jiti@2.6.0)) + transitivePeerDependencies: + - '@eslint/json' + - '@vue/compiler-sfc' + - supports-color + - typescript + - vitest + + '@antfu/install-pkg@1.1.0': + dependencies: + package-manager-detector: 1.3.0 + tinyexec: 1.0.1 + + '@antfu/utils@9.2.0': {} + + '@antv/adjust@0.2.5': + dependencies: + '@antv/util': 2.0.17 + tslib: 1.14.1 + + '@antv/async-hook@2.2.9': + dependencies: + async: 3.2.6 + + '@antv/attr@0.3.5': + dependencies: + '@antv/color-util': 2.0.6 + '@antv/scale': 0.3.18 + '@antv/util': 2.0.17 + tslib: 2.8.1 + + '@antv/color-util@2.0.6': + dependencies: + '@antv/util': 2.0.17 + tslib: 2.8.1 + + '@antv/component@0.8.35': + dependencies: + '@antv/color-util': 2.0.6 + '@antv/dom-util': 2.0.4 + '@antv/g-base': 0.5.16 + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/path-util': 2.0.15 + '@antv/scale': 0.3.18 + '@antv/util': 2.0.17 + fecha: 4.2.3 + tslib: 2.8.1 + + '@antv/coord@0.3.1': + dependencies: + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/util': 2.0.17 + tslib: 2.8.1 + + '@antv/dom-util@2.0.4': + dependencies: + tslib: 2.8.1 + + '@antv/event-emitter@0.1.3': {} + + '@antv/g-base@0.5.16': + dependencies: + '@antv/event-emitter': 0.1.3 + '@antv/g-math': 0.1.9 + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/path-util': 2.0.15 + '@antv/util': 2.0.17 + '@types/d3-timer': 2.0.3 + d3-ease: 1.0.7 + d3-interpolate: 3.0.1 + d3-timer: 1.0.10 + detect-browser: 5.3.0 + tslib: 2.8.1 + + '@antv/g-canvas@0.5.17': + dependencies: + '@antv/g-base': 0.5.16 + '@antv/g-math': 0.1.9 + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/path-util': 2.0.15 + '@antv/util': 2.0.17 + gl-matrix: 3.4.3 + tslib: 2.8.1 + + '@antv/g-device-api@1.6.13': + dependencies: + '@antv/util': 3.3.10 + '@webgpu/types': 0.1.52 + eventemitter3: 5.0.1 + gl-matrix: 3.4.3 + tslib: 2.8.1 + + '@antv/g-math@0.1.9': + dependencies: + '@antv/util': 2.0.17 + gl-matrix: 3.4.3 + + '@antv/g-svg@0.5.7': + dependencies: + '@antv/g-base': 0.5.16 + '@antv/g-math': 0.1.9 + '@antv/util': 2.0.17 + detect-browser: 5.3.0 + tslib: 2.8.1 + + '@antv/g2@4.2.12': + dependencies: + '@antv/adjust': 0.2.5 + '@antv/attr': 0.3.5 + '@antv/color-util': 2.0.6 + '@antv/component': 0.8.35 + '@antv/coord': 0.3.1 + '@antv/dom-util': 2.0.4 + '@antv/event-emitter': 0.1.3 + '@antv/g-base': 0.5.16 + '@antv/g-canvas': 0.5.17 + '@antv/g-svg': 0.5.7 + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/path-util': 2.0.15 + '@antv/scale': 0.3.18 + '@antv/util': 2.0.17 + tslib: 2.8.1 + + '@antv/g2plot@2.4.35': + dependencies: + '@antv/color-util': 2.0.6 + '@antv/event-emitter': 0.1.3 + '@antv/g-base': 0.5.16 + '@antv/g2': 4.2.12 + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/path-util': 3.0.1 + '@antv/scale': 0.3.18 + '@antv/util': 2.0.17 + d3-hierarchy: 2.0.0 + d3-regression: 1.3.10 + fmin: 0.0.2 + pdfast: 0.2.0 + size-sensor: 1.0.2 + tslib: 2.8.1 + + '@antv/l7-component@2.23.0': + dependencies: + '@antv/l7-core': 2.23.0 + '@antv/l7-layers': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + eventemitter3: 4.0.7 + supercluster: 7.1.5 + + '@antv/l7-core@2.23.0': + dependencies: + '@antv/async-hook': 2.2.9 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + '@mapbox/tiny-sdf': 1.2.5 + '@turf/helpers': 6.5.0 + ajv: 6.12.6 + element-resize-detector: 1.2.4 + eventemitter3: 4.0.7 + gl-matrix: 3.4.3 + hammerjs: 2.0.8 + viewport-mercator-project: 6.2.3 + + '@antv/l7-layers@2.23.0': + dependencies: + '@antv/async-hook': 2.2.9 + '@antv/l7-core': 2.23.0 + '@antv/l7-maps': 2.23.0 + '@antv/l7-source': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + '@mapbox/martini': 0.2.0 + '@turf/clone': 6.5.0 + '@turf/helpers': 6.5.0 + '@turf/meta': 6.5.0 + '@turf/polygon-to-line': 6.5.0 + '@turf/union': 6.5.0 + d3-array: 2.12.1 + d3-color: 1.4.1 + d3-interpolate: 1.4.0 + d3-scale: 2.2.2 + earcut: 2.2.4 + eventemitter3: 4.0.7 + extrude-polyline: 1.0.6 + gl-matrix: 3.4.3 + gl-vec2: 1.3.0 + polyline-miter-util: 1.0.1 + + '@antv/l7-map@2.23.0': + dependencies: + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + '@mapbox/point-geometry': 0.1.0 + '@mapbox/unitbezier': 0.0.1 + eventemitter3: 4.0.7 + gl-matrix: 3.4.3 + + '@antv/l7-maps@2.23.0': + dependencies: + '@amap/amap-jsapi-loader': 1.0.1 + '@antv/l7-core': 2.23.0 + '@antv/l7-map': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + eventemitter3: 4.0.7 + gl-matrix: 3.4.3 + mapbox-gl: 1.13.3 + maplibre-gl: 3.6.2 + pmtiles: 2.11.0 + viewport-mercator-project: 6.2.3 + + '@antv/l7-renderer@2.23.0': + dependencies: + '@antv/g-device-api': 1.6.13 + '@antv/l7-core': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + regl: 1.6.1 + + '@antv/l7-scene@2.23.0': + dependencies: + '@antv/l7-component': 2.23.0 + '@antv/l7-core': 2.23.0 + '@antv/l7-layers': 2.23.0 + '@antv/l7-maps': 2.23.0 + '@antv/l7-renderer': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + eventemitter3: 4.0.7 + + '@antv/l7-source@2.23.0': + dependencies: + '@antv/async-hook': 2.2.9 + '@antv/l7-core': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + '@mapbox/geojson-rewind': 0.5.2 + '@mapbox/vector-tile': 1.3.1 + '@turf/helpers': 6.5.0 + '@turf/invariant': 6.5.0 + '@turf/meta': 6.5.0 + d3-dsv: 1.2.0 + d3-hexbin: 0.2.2 + eventemitter3: 4.0.7 + geojson-vt: 3.2.1 + pbf: 3.3.0 + supercluster: 7.1.5 + + '@antv/l7-utils@2.23.0': + dependencies: + '@babel/runtime': 7.26.0 + '@turf/bbox': 6.5.0 + '@turf/bbox-polygon': 6.5.0 + '@turf/helpers': 6.5.0 + d3-color: 1.4.1 + earcut: 2.2.4 + eventemitter3: 4.0.7 + gl-matrix: 3.4.3 + lodash: 4.17.21 + web-worker-helper: 0.0.3 + + '@antv/l7@2.23.0': + dependencies: + '@antv/l7-component': 2.23.0 + '@antv/l7-core': 2.23.0 + '@antv/l7-layers': 2.23.0 + '@antv/l7-maps': 2.23.0 + '@antv/l7-scene': 2.23.0 + '@antv/l7-source': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + + '@antv/matrix-util@3.0.4': + dependencies: + '@antv/util': 2.0.17 + gl-matrix: 3.4.3 + tslib: 2.8.1 + + '@antv/matrix-util@3.1.0-beta.3': + dependencies: + '@antv/util': 2.0.17 + gl-matrix: 3.4.3 + tslib: 2.8.1 + + '@antv/path-util@2.0.15': + dependencies: + '@antv/matrix-util': 3.0.4 + '@antv/util': 2.0.17 + tslib: 2.8.1 + + '@antv/path-util@3.0.1': + dependencies: + gl-matrix: 3.4.3 + lodash-es: 4.17.21 + tslib: 2.8.1 + + '@antv/scale@0.3.18': + dependencies: + '@antv/util': 2.0.17 + fecha: 4.2.3 + tslib: 2.8.1 + + '@antv/util@2.0.17': + dependencies: + csstype: 3.1.3 + tslib: 2.8.1 + + '@antv/util@3.3.10': + dependencies: + fast-deep-equal: 3.1.3 + gl-matrix: 3.4.3 + tslib: 2.8.1 + + '@babel/code-frame@7.26.2': + dependencies: + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.28.0': {} + + '@babel/core@7.28.3': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3) + '@babel/helpers': 7.28.3 + '@babel/parser': 7.28.3 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + convert-source-map: 2.0.0 + debug: 4.4.1 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.26.3': + dependencies: + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.1.0 + + '@babel/generator@7.28.3': + dependencies: + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.30 + jsesc: 3.1.0 + + '@babel/helper-annotate-as-pure@7.27.3': + dependencies: + '@babel/types': 7.28.2 + + '@babel/helper-compilation-targets@7.27.2': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.24.3 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.28.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-globals@7.28.0': {} + + '@babel/helper-member-expression-to-functions@7.27.1': + dependencies: + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.25.9': + dependencies: + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.27.1': + dependencies: + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-optimise-call-expression@7.27.1': + dependencies: + '@babel/types': 7.28.2 + + '@babel/helper-plugin-utils@7.27.1': {} + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.28.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + dependencies: + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-string-parser@7.25.9': {} + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.25.9': {} + + '@babel/helper-validator-identifier@7.27.1': {} + + '@babel/helper-validator-option@7.27.1': {} + + '@babel/helpers@7.28.3': + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + + '@babel/parser@7.26.3': + dependencies: + '@babel/types': 7.26.3 + + '@babel/parser@7.27.7': + dependencies: + '@babel/types': 7.28.2 + + '@babel/parser@7.28.3': + dependencies: + '@babel/types': 7.28.2 + + '@babel/parser@7.28.4': + dependencies: + '@babel/types': 7.28.4 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.3) + transitivePeerDependencies: + - supports-color + + '@babel/runtime@7.26.0': + dependencies: + regenerator-runtime: 0.14.1 + + '@babel/template@7.25.9': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 + + '@babel/template@7.27.2': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 + + '@babel/traverse@7.26.4': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.3 + '@babel/parser': 7.26.3 + '@babel/template': 7.25.9 + '@babel/types': 7.26.3 + debug: 4.4.0 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/traverse@7.27.7': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.3 + '@babel/parser': 7.28.3 + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + debug: 4.4.1 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/traverse@7.28.3': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.3 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.28.3 + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.26.3': + dependencies: + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + + '@babel/types@7.28.2': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@babel/types@7.28.4': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@clack/core@0.5.0': + dependencies: + picocolors: 1.1.1 + sisteransi: 1.0.5 + + '@clack/prompts@0.11.0': + dependencies: + '@clack/core': 0.5.0 + picocolors: 1.1.1 + sisteransi: 1.0.5 + + '@commitlint/cli@18.6.1(@types/node@20.19.17)(typescript@5.8.3)': + dependencies: + '@commitlint/format': 18.6.1 + '@commitlint/lint': 18.6.1 + '@commitlint/load': 18.6.1(@types/node@20.19.17)(typescript@5.8.3) + '@commitlint/read': 18.6.1 + '@commitlint/types': 18.6.1 + execa: 5.1.1 + lodash.isfunction: 3.0.9 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - typescript + + '@commitlint/config-conventional@18.6.3': + dependencies: + '@commitlint/types': 18.6.1 + conventional-changelog-conventionalcommits: 7.0.2 + + '@commitlint/config-validator@18.6.1': + dependencies: + '@commitlint/types': 18.6.1 + ajv: 8.17.1 + + '@commitlint/ensure@18.6.1': + dependencies: + '@commitlint/types': 18.6.1 + lodash.camelcase: 4.3.0 + lodash.kebabcase: 4.1.1 + lodash.snakecase: 4.1.1 + lodash.startcase: 4.4.0 + lodash.upperfirst: 4.3.1 + + '@commitlint/execute-rule@18.6.1': {} + + '@commitlint/format@18.6.1': + dependencies: + '@commitlint/types': 18.6.1 + chalk: 4.1.2 + + '@commitlint/is-ignored@18.6.1': + dependencies: + '@commitlint/types': 18.6.1 + semver: 7.6.0 + + '@commitlint/lint@18.6.1': + dependencies: + '@commitlint/is-ignored': 18.6.1 + '@commitlint/parse': 18.6.1 + '@commitlint/rules': 18.6.1 + '@commitlint/types': 18.6.1 + + '@commitlint/load@18.6.1(@types/node@20.19.17)(typescript@5.8.3)': + dependencies: + '@commitlint/config-validator': 18.6.1 + '@commitlint/execute-rule': 18.6.1 + '@commitlint/resolve-extends': 18.6.1 + '@commitlint/types': 18.6.1 + chalk: 4.1.2 + cosmiconfig: 8.3.6(typescript@5.8.3) + cosmiconfig-typescript-loader: 5.1.0(@types/node@20.19.17)(cosmiconfig@8.3.6(typescript@5.8.3))(typescript@5.8.3) + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + lodash.uniq: 4.5.0 + resolve-from: 5.0.0 + transitivePeerDependencies: + - '@types/node' + - typescript + + '@commitlint/message@18.6.1': {} + + '@commitlint/parse@18.6.1': + dependencies: + '@commitlint/types': 18.6.1 + conventional-changelog-angular: 7.0.0 + conventional-commits-parser: 5.0.0 + + '@commitlint/read@18.6.1': + dependencies: + '@commitlint/top-level': 18.6.1 + '@commitlint/types': 18.6.1 + git-raw-commits: 2.0.11 + minimist: 1.2.8 + + '@commitlint/resolve-extends@18.6.1': + dependencies: + '@commitlint/config-validator': 18.6.1 + '@commitlint/types': 18.6.1 + import-fresh: 3.3.0 + lodash.mergewith: 4.6.2 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + + '@commitlint/rules@18.6.1': + dependencies: + '@commitlint/ensure': 18.6.1 + '@commitlint/message': 18.6.1 + '@commitlint/to-lines': 18.6.1 + '@commitlint/types': 18.6.1 + execa: 5.1.1 + + '@commitlint/to-lines@18.6.1': {} + + '@commitlint/top-level@18.6.1': + dependencies: + find-up: 5.0.0 + + '@commitlint/types@18.6.1': + dependencies: + chalk: 4.1.2 + + '@cspotcode/source-map-support@0.8.1': + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + + '@ctrl/tinycolor@3.6.1': {} + + '@ctrl/tinycolor@4.2.0': {} + + '@dprint/formatter@0.3.0': {} + + '@dprint/markdown@0.17.8': {} + + '@dprint/toml@0.6.4': {} + + '@emnapi/core@1.11.1': + dependencies: + '@emnapi/wasi-threads': 1.2.2 + tslib: 2.8.1 + optional: true + + '@emnapi/core@1.5.0': + dependencies: + '@emnapi/wasi-threads': 1.1.0 + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.11.1': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.5.0': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/wasi-threads@1.1.0': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/wasi-threads@1.2.2': + dependencies: + tslib: 2.8.1 + optional: true + + '@emotion/babel-plugin@11.13.5': + dependencies: + '@babel/helper-module-imports': 7.25.9 + '@babel/runtime': 7.26.0 + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/serialize': 1.3.3 + babel-plugin-macros: 3.1.0 + convert-source-map: 1.9.0 + escape-string-regexp: 4.0.0 + find-root: 1.1.0 + source-map: 0.5.7 + stylis: 4.2.0 + transitivePeerDependencies: + - supports-color + + '@emotion/cache@11.14.0': + dependencies: + '@emotion/memoize': 0.9.0 + '@emotion/sheet': 1.4.0 + '@emotion/utils': 1.4.2 + '@emotion/weak-memoize': 0.4.0 + stylis: 4.2.0 + + '@emotion/css@11.13.5': + dependencies: + '@emotion/babel-plugin': 11.13.5 + '@emotion/cache': 11.14.0 + '@emotion/serialize': 1.3.3 + '@emotion/sheet': 1.4.0 + '@emotion/utils': 1.4.2 + transitivePeerDependencies: + - supports-color + + '@emotion/hash@0.9.2': {} + + '@emotion/memoize@0.9.0': {} + + '@emotion/serialize@1.3.3': + dependencies: + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/unitless': 0.10.0 + '@emotion/utils': 1.4.2 + csstype: 3.1.3 + + '@emotion/server@11.11.0(@emotion/css@11.13.5)': + dependencies: + '@emotion/utils': 1.4.2 + html-tokenize: 2.0.1 + multipipe: 1.0.2 + through: 2.3.8 + optionalDependencies: + '@emotion/css': 11.13.5 + + '@emotion/sheet@1.4.0': {} + + '@emotion/unitless@0.10.0': {} + + '@emotion/unitless@0.8.1': {} + + '@emotion/utils@1.4.2': {} + + '@emotion/weak-memoize@0.4.0': {} + + '@es-joy/jsdoccomment@0.50.2': + dependencies: + '@types/estree': 1.0.8 + '@typescript-eslint/types': 8.18.2 + comment-parser: 1.4.1 + esquery: 1.6.0 + jsdoc-type-pratt-parser: 4.1.0 + + '@es-joy/jsdoccomment@0.58.0': + dependencies: + '@types/estree': 1.0.8 + '@typescript-eslint/types': 8.44.1 + comment-parser: 1.4.1 + esquery: 1.6.0 + jsdoc-type-pratt-parser: 5.4.0 + + '@esbuild/aix-ppc64@0.25.10': + optional: true + + '@esbuild/android-arm64@0.18.20': + optional: true + + '@esbuild/android-arm64@0.25.10': + optional: true + + '@esbuild/android-arm@0.18.20': + optional: true + + '@esbuild/android-arm@0.25.10': + optional: true + + '@esbuild/android-x64@0.18.20': + optional: true + + '@esbuild/android-x64@0.25.10': + optional: true + + '@esbuild/darwin-arm64@0.18.20': + optional: true + + '@esbuild/darwin-arm64@0.25.10': + optional: true + + '@esbuild/darwin-x64@0.18.20': + optional: true + + '@esbuild/darwin-x64@0.25.10': + optional: true + + '@esbuild/freebsd-arm64@0.18.20': + optional: true + + '@esbuild/freebsd-arm64@0.25.10': + optional: true + + '@esbuild/freebsd-x64@0.18.20': + optional: true + + '@esbuild/freebsd-x64@0.25.10': + optional: true + + '@esbuild/linux-arm64@0.18.20': + optional: true + + '@esbuild/linux-arm64@0.25.10': + optional: true + + '@esbuild/linux-arm@0.18.20': + optional: true + + '@esbuild/linux-arm@0.25.10': + optional: true + + '@esbuild/linux-ia32@0.18.20': + optional: true + + '@esbuild/linux-ia32@0.25.10': + optional: true + + '@esbuild/linux-loong64@0.18.20': + optional: true + + '@esbuild/linux-loong64@0.25.10': + optional: true + + '@esbuild/linux-mips64el@0.18.20': + optional: true + + '@esbuild/linux-mips64el@0.25.10': + optional: true + + '@esbuild/linux-ppc64@0.18.20': + optional: true + + '@esbuild/linux-ppc64@0.25.10': + optional: true + + '@esbuild/linux-riscv64@0.18.20': + optional: true + + '@esbuild/linux-riscv64@0.25.10': + optional: true + + '@esbuild/linux-s390x@0.18.20': + optional: true + + '@esbuild/linux-s390x@0.25.10': + optional: true + + '@esbuild/linux-x64@0.18.20': + optional: true + + '@esbuild/linux-x64@0.25.10': + optional: true + + '@esbuild/netbsd-arm64@0.25.10': + optional: true + + '@esbuild/netbsd-x64@0.18.20': + optional: true + + '@esbuild/netbsd-x64@0.25.10': + optional: true + + '@esbuild/openbsd-arm64@0.25.10': + optional: true + + '@esbuild/openbsd-x64@0.18.20': + optional: true + + '@esbuild/openbsd-x64@0.25.10': + optional: true + + '@esbuild/openharmony-arm64@0.25.10': + optional: true + + '@esbuild/sunos-x64@0.18.20': + optional: true + + '@esbuild/sunos-x64@0.25.10': + optional: true + + '@esbuild/win32-arm64@0.18.20': + optional: true + + '@esbuild/win32-arm64@0.25.10': + optional: true + + '@esbuild/win32-ia32@0.18.20': + optional: true + + '@esbuild/win32-ia32@0.25.10': + optional: true + + '@esbuild/win32-x64@0.18.20': + optional: true + + '@esbuild/win32-x64@0.25.10': + optional: true + + '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.36.0(jiti@2.6.0))': + dependencies: + escape-string-regexp: 4.0.0 + eslint: 9.36.0(jiti@2.6.0) + ignore: 5.3.2 + + '@eslint-community/eslint-utils@4.9.0(eslint@9.36.0(jiti@2.6.0))': + dependencies: + eslint: 9.36.0(jiti@2.6.0) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/compat@1.4.0(eslint@9.36.0(jiti@2.6.0))': + dependencies: + '@eslint/core': 0.16.0 + optionalDependencies: + eslint: 9.36.0(jiti@2.6.0) + + '@eslint/config-array@0.21.0': + dependencies: + '@eslint/object-schema': 2.1.6 + debug: 4.4.1 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.3.1': {} + + '@eslint/core@0.15.2': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/core@0.16.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.1': + dependencies: + ajv: 6.12.6 + debug: 4.4.1 + espree: 10.4.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/js@9.36.0': {} + + '@eslint/markdown@7.3.0': + dependencies: + '@eslint/core': 0.15.2 + '@eslint/plugin-kit': 0.3.5 + github-slugger: 2.0.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-frontmatter: 2.0.1 + mdast-util-gfm: 3.1.0 + micromark-extension-frontmatter: 2.0.0 + micromark-extension-gfm: 3.0.0 + micromark-util-normalize-identifier: 2.0.1 + transitivePeerDependencies: + - supports-color + + '@eslint/object-schema@2.1.6': {} + + '@eslint/plugin-kit@0.3.5': + dependencies: + '@eslint/core': 0.15.2 + levn: 0.4.1 + + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.6': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.3.1': {} + + '@humanwhocodes/retry@0.4.3': {} + + '@iconify/types@2.0.0': {} + + '@iconify/utils@3.0.1': + dependencies: + '@antfu/install-pkg': 1.1.0 + '@antfu/utils': 9.2.0 + '@iconify/types': 2.0.0 + debug: 4.4.1 + globals: 15.15.0 + kolorist: 1.8.0 + local-pkg: 1.1.1 + mlly: 1.7.4 + transitivePeerDependencies: + - supports-color + + '@intlify/core-base@9.14.5': + dependencies: + '@intlify/message-compiler': 9.14.5 + '@intlify/shared': 9.14.5 + + '@intlify/message-compiler@9.14.5': + dependencies: + '@intlify/shared': 9.14.5 + source-map-js: 1.2.1 + + '@intlify/shared@9.14.5': {} + + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + '@jridgewell/gen-mapping@0.3.13': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.30 + + '@jridgewell/gen-mapping@0.3.8': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/remapping@2.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.30 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/set-array@1.2.1': {} + + '@jridgewell/source-map@0.3.6': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.30 + optional: true + + '@jridgewell/sourcemap-codec@1.5.0': {} + + '@jridgewell/sourcemap-codec@1.5.5': {} + + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@jridgewell/trace-mapping@0.3.30': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@jridgewell/trace-mapping@0.3.9': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@kirklin/logger@0.0.2': {} + + '@ljharb/resumer@0.0.1': + dependencies: + '@ljharb/through': 2.3.13 + + '@ljharb/through@2.3.13': + dependencies: + call-bind: 1.0.8 + + '@mapbox/geojson-rewind@0.5.2': + dependencies: + get-stream: 6.0.1 + minimist: 1.2.8 + + '@mapbox/geojson-types@1.0.2': {} + + '@mapbox/jsonlint-lines-primitives@2.0.2': {} + + '@mapbox/mapbox-gl-supported@1.5.0(mapbox-gl@1.13.3)': + dependencies: + mapbox-gl: 1.13.3 + + '@mapbox/martini@0.2.0': {} + + '@mapbox/point-geometry@0.1.0': {} + + '@mapbox/tiny-sdf@1.2.5': {} + + '@mapbox/tiny-sdf@2.0.6': {} + + '@mapbox/unitbezier@0.0.0': {} + + '@mapbox/unitbezier@0.0.1': {} + + '@mapbox/vector-tile@1.3.1': + dependencies: + '@mapbox/point-geometry': 0.1.0 + + '@mapbox/whoots-js@3.1.0': {} + + '@maplibre/maplibre-gl-style-spec@19.3.3': + dependencies: + '@mapbox/jsonlint-lines-primitives': 2.0.2 + '@mapbox/unitbezier': 0.0.1 + json-stringify-pretty-compact: 3.0.0 + minimist: 1.2.8 + rw: 1.3.3 + sort-object: 3.0.3 + + '@mistjs/vite-plugin-preload@0.0.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@rollup/pluginutils': 5.1.4 + jsdom: 22.1.0 + prettier: 2.8.8 + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - bufferutil + - canvas + - rollup + - supports-color + - utf-8-validate + + '@napi-rs/wasm-runtime@1.0.7': + dependencies: + '@emnapi/core': 1.5.0 + '@emnapi/runtime': 1.5.0 + '@tybys/wasm-util': 0.10.1 + optional: true + + '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)': + dependencies: + '@emnapi/core': 1.11.1 + '@emnapi/runtime': 1.11.1 + '@tybys/wasm-util': 0.10.2 + optional: true + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.18.0 + + '@one-ini/wasm@0.1.1': {} + + '@oxc-project/runtime@0.92.0': {} + + '@oxc-project/types@0.137.0': {} + + '@oxc-project/types@0.92.0': {} + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@pkgr/core@0.1.2': {} + + '@polka/url@1.0.0-next.28': {} + + '@quansync/fs@0.1.5': + dependencies: + quansync: 0.2.11 + + '@rolldown/binding-android-arm64@1.0.0-beta.40': + optional: true + + '@rolldown/binding-android-arm64@1.1.2': + optional: true + + '@rolldown/binding-darwin-arm64@1.0.0-beta.40': + optional: true + + '@rolldown/binding-darwin-arm64@1.1.2': + optional: true + + '@rolldown/binding-darwin-x64@1.0.0-beta.40': + optional: true + + '@rolldown/binding-darwin-x64@1.1.2': + optional: true + + '@rolldown/binding-freebsd-x64@1.0.0-beta.40': + optional: true + + '@rolldown/binding-freebsd-x64@1.1.2': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.40': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.1.2': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.40': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.1.2': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.40': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.1.2': + optional: true + + '@rolldown/binding-linux-ppc64-gnu@1.1.2': + optional: true + + '@rolldown/binding-linux-s390x-gnu@1.1.2': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.40': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.1.2': + optional: true + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.40': + optional: true + + '@rolldown/binding-linux-x64-musl@1.1.2': + optional: true + + '@rolldown/binding-openharmony-arm64@1.0.0-beta.40': + optional: true + + '@rolldown/binding-openharmony-arm64@1.1.2': + optional: true + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.40': + dependencies: + '@napi-rs/wasm-runtime': 1.0.7 + optional: true + + '@rolldown/binding-wasm32-wasi@1.1.2': + dependencies: + '@emnapi/core': 1.11.1 + '@emnapi/runtime': 1.11.1 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1) + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.40': + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.1.2': + optional: true + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.40': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.40': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.1.2': + optional: true + + '@rolldown/pluginutils@1.0.0-beta.29': {} + + '@rolldown/pluginutils@1.0.0-beta.40': {} + + '@rolldown/pluginutils@1.0.1': {} + + '@rollup/pluginutils@5.1.4': + dependencies: + '@types/estree': 1.0.6 + estree-walker: 2.0.2 + picomatch: 4.0.2 + + '@rollup/rollup-android-arm-eabi@4.46.3': + optional: true + + '@rollup/rollup-android-arm64@4.46.3': + optional: true + + '@rollup/rollup-darwin-arm64@4.46.3': + optional: true + + '@rollup/rollup-darwin-x64@4.46.3': + optional: true + + '@rollup/rollup-freebsd-arm64@4.46.3': + optional: true + + '@rollup/rollup-freebsd-x64@4.46.3': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.46.3': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.46.3': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.46.3': + optional: true + + '@rollup/rollup-linux-loongarch64-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-ppc64-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.46.3': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-x64-musl@4.46.3': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.46.3': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.46.3': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.46.3': + optional: true + + '@simonwep/pickr@1.8.2': + dependencies: + core-js: 3.39.0 + nanopop: 2.4.2 + + '@stylistic/eslint-plugin@5.4.0(eslint@9.36.0(jiti@2.6.0))': + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@typescript-eslint/types': 8.44.1 + eslint: 9.36.0(jiti@2.6.0) + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + estraverse: 5.3.0 + picomatch: 4.0.3 + + '@tootallnate/once@2.0.0': {} + + '@tsconfig/node10@1.0.11': {} + + '@tsconfig/node12@1.0.11': {} + + '@tsconfig/node14@1.0.3': {} + + '@tsconfig/node16@1.0.4': {} + + '@turf/bbox-polygon@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + + '@turf/bbox@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + '@turf/meta': 6.5.0 + + '@turf/clone@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + + '@turf/helpers@6.5.0': {} + + '@turf/invariant@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + + '@turf/meta@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + + '@turf/polygon-to-line@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + '@turf/invariant': 6.5.0 + + '@turf/union@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + '@turf/invariant': 6.5.0 + polygon-clipping: 0.15.7 + + '@tybys/wasm-util@0.10.1': + dependencies: + tslib: 2.8.1 + optional: true + + '@tybys/wasm-util@0.10.2': + dependencies: + tslib: 2.8.1 + optional: true + + '@types/chai@5.2.2': + dependencies: + '@types/deep-eql': 4.0.2 + + '@types/crypto-js@4.2.2': {} + + '@types/d3-timer@2.0.3': {} + + '@types/debug@4.1.12': + dependencies: + '@types/ms': 2.1.0 + + '@types/deep-eql@4.0.2': {} + + '@types/estree@1.0.6': {} + + '@types/estree@1.0.8': {} + + '@types/fs-extra@11.0.4': + dependencies: + '@types/jsonfile': 6.1.4 + '@types/node': 20.19.17 + + '@types/geojson@7946.0.15': {} + + '@types/json-schema@7.0.15': {} + + '@types/jsonfile@6.1.4': + dependencies: + '@types/node': 20.19.17 + + '@types/lodash-es@4.17.12': + dependencies: + '@types/lodash': 4.17.20 + + '@types/lodash@4.17.20': {} + + '@types/mapbox__point-geometry@0.1.4': {} + + '@types/mapbox__vector-tile@1.3.4': + dependencies: + '@types/geojson': 7946.0.15 + '@types/mapbox__point-geometry': 0.1.4 + '@types/pbf': 3.0.5 + + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 2.0.11 + + '@types/minimist@1.2.5': {} + + '@types/ms@2.1.0': {} + + '@types/node@20.19.17': + dependencies: + undici-types: 6.21.0 + + '@types/normalize-package-data@2.4.4': {} + + '@types/parse-json@4.0.2': {} + + '@types/pbf@3.0.5': {} + + '@types/supercluster@7.1.3': + dependencies: + '@types/geojson': 7946.0.15 + + '@types/treeify@1.0.3': {} + + '@types/unist@2.0.11': {} + + '@types/unist@3.0.3': {} + + '@types/web-bluetooth@0.0.20': {} + + '@typescript-eslint/eslint-plugin@8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.44.1 + '@typescript-eslint/type-utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.44.1 + eslint: 9.36.0(jiti@2.6.0) + graphemer: 1.4.0 + ignore: 7.0.5 + natural-compare: 1.4.0 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)': + dependencies: + '@typescript-eslint/scope-manager': 8.44.1 + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/typescript-estree': 8.44.1(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.44.1 + debug: 4.4.3 + eslint: 9.36.0(jiti@2.6.0) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.44.1(typescript@5.8.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.44.1(typescript@5.8.3) + '@typescript-eslint/types': 8.44.1 + debug: 4.4.3 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@8.44.1': + dependencies: + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/visitor-keys': 8.44.1 + + '@typescript-eslint/tsconfig-utils@8.44.1(typescript@5.8.3)': + dependencies: + typescript: 5.8.3 + + '@typescript-eslint/type-utils@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)': + dependencies: + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/typescript-estree': 8.44.1(typescript@5.8.3) + '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + debug: 4.4.3 + eslint: 9.36.0(jiti@2.6.0) + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/types@8.18.2': {} + + '@typescript-eslint/types@8.44.1': {} + + '@typescript-eslint/typescript-estree@8.44.1(typescript@5.8.3)': + dependencies: + '@typescript-eslint/project-service': 8.44.1(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.44.1(typescript@5.8.3) + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/visitor-keys': 8.44.1 + debug: 4.4.3 + fast-glob: 3.3.2 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)': + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@typescript-eslint/scope-manager': 8.44.1 + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/typescript-estree': 8.44.1(typescript@5.8.3) + eslint: 9.36.0(jiti@2.6.0) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/visitor-keys@8.44.1': + dependencies: + '@typescript-eslint/types': 8.44.1 + eslint-visitor-keys: 4.2.1 + + '@unocss/astro@66.5.2(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/reset': 66.5.2 + '@unocss/vite': 66.5.2(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + optionalDependencies: + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + + '@unocss/cli@66.5.2': + dependencies: + '@jridgewell/remapping': 2.3.5 + '@unocss/config': 66.5.2 + '@unocss/core': 66.5.2 + '@unocss/preset-uno': 66.5.2 + cac: 6.7.14 + chokidar: 3.6.0 + colorette: 2.0.20 + consola: 3.4.2 + magic-string: 0.30.19 + pathe: 2.0.3 + perfect-debounce: 1.0.0 + tinyglobby: 0.2.14 + unplugin-utils: 0.3.0 + + '@unocss/config@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + unconfig: 7.3.3 + + '@unocss/core@0.62.4': {} + + '@unocss/core@66.5.2': {} + + '@unocss/extractor-arbitrary-variants@0.62.4': + dependencies: + '@unocss/core': 0.62.4 + + '@unocss/extractor-arbitrary-variants@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + + '@unocss/inspector@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/rule-utils': 66.5.2 + colorette: 2.0.20 + gzip-size: 6.0.0 + sirv: 3.0.1 + vue-flow-layout: 0.2.0 + + '@unocss/postcss@66.5.2(postcss@8.5.6)': + dependencies: + '@unocss/config': 66.5.2 + '@unocss/core': 66.5.2 + '@unocss/rule-utils': 66.5.2 + css-tree: 3.1.0 + postcss: 8.5.6 + tinyglobby: 0.2.14 + + '@unocss/preset-attributify@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + + '@unocss/preset-icons@66.5.2': + dependencies: + '@iconify/utils': 3.0.1 + '@unocss/core': 66.5.2 + ofetch: 1.4.1 + transitivePeerDependencies: + - supports-color + + '@unocss/preset-mini@0.62.4': + dependencies: + '@unocss/core': 0.62.4 + '@unocss/extractor-arbitrary-variants': 0.62.4 + '@unocss/rule-utils': 0.62.4 + + '@unocss/preset-mini@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/extractor-arbitrary-variants': 66.5.2 + '@unocss/rule-utils': 66.5.2 + + '@unocss/preset-tagify@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + + '@unocss/preset-typography@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/rule-utils': 66.5.2 + + '@unocss/preset-uno@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/preset-wind3': 66.5.2 + + '@unocss/preset-web-fonts@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + ofetch: 1.4.1 + + '@unocss/preset-wind3@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/preset-mini': 66.5.2 + '@unocss/rule-utils': 66.5.2 + + '@unocss/preset-wind4@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/extractor-arbitrary-variants': 66.5.2 + '@unocss/rule-utils': 66.5.2 + + '@unocss/preset-wind@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/preset-wind3': 66.5.2 + + '@unocss/reset@66.5.2': {} + + '@unocss/rule-utils@0.62.4': + dependencies: + '@unocss/core': 0.62.4 + magic-string: 0.30.17 + + '@unocss/rule-utils@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + magic-string: 0.30.19 + + '@unocss/transformer-attributify-jsx@66.5.2': + dependencies: + '@babel/parser': 7.27.7 + '@babel/traverse': 7.27.7 + '@unocss/core': 66.5.2 + transitivePeerDependencies: + - supports-color + + '@unocss/transformer-compile-class@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + + '@unocss/transformer-directives@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/rule-utils': 66.5.2 + css-tree: 3.1.0 + + '@unocss/transformer-variant-group@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + + '@unocss/vite@66.5.2(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@jridgewell/remapping': 2.3.5 + '@unocss/config': 66.5.2 + '@unocss/core': 66.5.2 + '@unocss/inspector': 66.5.2 + chokidar: 3.6.0 + magic-string: 0.30.19 + pathe: 2.0.3 + tinyglobby: 0.2.14 + unplugin-utils: 0.3.0 + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + + '@v-c/utils@0.0.26(typescript@5.8.3)': + dependencies: + lodash.clonedeep: 4.5.0 + lodash.isequal: 4.5.0 + lodash.merge: 4.6.2 + vue: 3.5.22(typescript@5.8.3) + transitivePeerDependencies: + - typescript + + '@vitejs/plugin-vue-jsx@5.1.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3))': + dependencies: + '@babel/core': 7.28.3 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.3) + '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.3) + '@rolldown/pluginutils': 1.0.0-beta.40 + '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.3) + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + vue: 3.5.22(typescript@5.8.3) + transitivePeerDependencies: + - supports-color + + '@vitejs/plugin-vue@6.0.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3))': + dependencies: + '@rolldown/pluginutils': 1.0.0-beta.29 + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + vue: 3.5.22(typescript@5.8.3) + + '@vitest/eslint-plugin@1.3.12(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@typescript-eslint/scope-manager': 8.44.1 + '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + eslint: 9.36.0(jiti@2.6.0) + optionalDependencies: + typescript: 5.8.3 + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - supports-color + + '@vitest/expect@3.2.4': + dependencies: + '@types/chai': 5.2.2 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.1 + tinyrainbow: 2.0.0 + + '@vitest/mocker@3.2.4(vite@7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@vitest/spy': 3.2.4 + estree-walker: 3.0.3 + magic-string: 0.30.17 + optionalDependencies: + vite: 7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + + '@vitest/pretty-format@3.2.4': + dependencies: + tinyrainbow: 2.0.0 + + '@vitest/runner@3.2.4': + dependencies: + '@vitest/utils': 3.2.4 + pathe: 2.0.3 + strip-literal: 3.0.0 + + '@vitest/snapshot@3.2.4': + dependencies: + '@vitest/pretty-format': 3.2.4 + magic-string: 0.30.17 + pathe: 2.0.3 + + '@vitest/spy@3.2.4': + dependencies: + tinyspy: 4.0.3 + + '@vitest/utils@3.2.4': + dependencies: + '@vitest/pretty-format': 3.2.4 + loupe: 3.2.0 + tinyrainbow: 2.0.0 + + '@volar/language-core@2.4.23': + dependencies: + '@volar/source-map': 2.4.23 + + '@volar/source-map@2.4.23': {} + + '@volar/typescript@2.4.23': + dependencies: + '@volar/language-core': 2.4.23 + path-browserify: 1.0.1 + vscode-uri: 3.0.8 + + '@vue/babel-helper-vue-transform-on@1.5.0': {} + + '@vue/babel-plugin-jsx@1.5.0(@babel/core@7.28.3)': + dependencies: + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3) + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + '@vue/babel-helper-vue-transform-on': 1.5.0 + '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.3) + '@vue/shared': 3.5.18 + optionalDependencies: + '@babel/core': 7.28.3 + transitivePeerDependencies: + - supports-color + + '@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.28.3)': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/core': 7.28.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/parser': 7.28.3 + '@vue/compiler-sfc': 3.5.18 + transitivePeerDependencies: + - supports-color + + '@vue/compiler-core@3.5.18': + dependencies: + '@babel/parser': 7.28.3 + '@vue/shared': 3.5.18 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + + '@vue/compiler-core@3.5.22': + dependencies: + '@babel/parser': 7.28.4 + '@vue/shared': 3.5.22 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + + '@vue/compiler-dom@3.5.18': + dependencies: + '@vue/compiler-core': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/compiler-dom@3.5.22': + dependencies: + '@vue/compiler-core': 3.5.22 + '@vue/shared': 3.5.22 + + '@vue/compiler-sfc@3.5.18': + dependencies: + '@babel/parser': 7.28.3 + '@vue/compiler-core': 3.5.18 + '@vue/compiler-dom': 3.5.18 + '@vue/compiler-ssr': 3.5.18 + '@vue/shared': 3.5.18 + estree-walker: 2.0.2 + magic-string: 0.30.17 + postcss: 8.5.6 + source-map-js: 1.2.1 + + '@vue/compiler-sfc@3.5.22': + dependencies: + '@babel/parser': 7.28.4 + '@vue/compiler-core': 3.5.22 + '@vue/compiler-dom': 3.5.22 + '@vue/compiler-ssr': 3.5.22 + '@vue/shared': 3.5.22 + estree-walker: 2.0.2 + magic-string: 0.30.19 + postcss: 8.5.6 + source-map-js: 1.2.1 + + '@vue/compiler-ssr@3.5.18': + dependencies: + '@vue/compiler-dom': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/compiler-ssr@3.5.22': + dependencies: + '@vue/compiler-dom': 3.5.22 + '@vue/shared': 3.5.22 + + '@vue/compiler-vue2@2.7.16': + dependencies: + de-indent: 1.0.2 + he: 1.2.0 + + '@vue/devtools-api@6.6.4': {} + + '@vue/language-core@3.0.8(typescript@5.8.3)': + dependencies: + '@volar/language-core': 2.4.23 + '@vue/compiler-dom': 3.5.18 + '@vue/compiler-vue2': 2.7.16 + '@vue/shared': 3.5.18 + alien-signals: 2.0.6 + muggle-string: 0.4.1 + path-browserify: 1.0.1 + picomatch: 4.0.3 + optionalDependencies: + typescript: 5.8.3 + + '@vue/reactivity@3.5.22': + dependencies: + '@vue/shared': 3.5.22 + + '@vue/runtime-core@3.5.22': + dependencies: + '@vue/reactivity': 3.5.22 + '@vue/shared': 3.5.22 + + '@vue/runtime-dom@3.5.22': + dependencies: + '@vue/reactivity': 3.5.22 + '@vue/runtime-core': 3.5.22 + '@vue/shared': 3.5.22 + csstype: 3.1.3 + + '@vue/server-renderer@3.5.22(vue@3.5.22(typescript@5.8.3))': + dependencies: + '@vue/compiler-ssr': 3.5.22 + '@vue/shared': 3.5.22 + vue: 3.5.22(typescript@5.8.3) + + '@vue/shared@3.5.18': {} + + '@vue/shared@3.5.22': {} + + '@vue/test-utils@2.4.6': + dependencies: + js-beautify: 1.15.1 + vue-component-type-helpers: 2.2.0 + + '@vueuse/core@10.11.1(vue@3.5.22(typescript@5.8.3))': + dependencies: + '@types/web-bluetooth': 0.0.20 + '@vueuse/metadata': 10.11.1 + '@vueuse/shared': 10.11.1(vue@3.5.22(typescript@5.8.3)) + vue-demi: 0.14.10(vue@3.5.22(typescript@5.8.3)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + + '@vueuse/metadata@10.11.1': {} + + '@vueuse/shared@10.11.1(vue@3.5.22(typescript@5.8.3))': + dependencies: + vue-demi: 0.14.10(vue@3.5.22(typescript@5.8.3)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + + '@webgpu/types@0.1.52': {} + + JSONStream@1.3.5: + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + + abab@2.0.6: {} + + abbrev@2.0.0: {} + + acorn-jsx@5.3.2(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + + acorn-walk@8.3.4: + dependencies: + acorn: 8.14.0 + + acorn@8.14.0: {} + + acorn@8.15.0: {} + + agent-base@6.0.2: + dependencies: + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + agent-base@7.1.3: {} + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ajv@8.17.1: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.0.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + + alien-signals@2.0.6: {} + + align-text@0.1.4: + dependencies: + kind-of: 3.2.2 + longest: 1.0.1 + repeat-string: 1.6.1 + + amdefine@1.0.1: {} + + ansi-escapes@5.0.0: + dependencies: + type-fest: 1.4.0 + + ansi-regex@2.1.1: {} + + ansi-regex@5.0.1: {} + + ansi-regex@6.1.0: {} + + ansi-styles@2.2.1: {} + + ansi-styles@3.2.1: + dependencies: + color-convert: 1.9.3 + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@6.2.1: {} + + ansis@4.1.0: {} + + ant-design-vue@4.2.6(vue@3.5.22(typescript@5.8.3)): + dependencies: + '@ant-design/colors': 6.0.0 + '@ant-design/icons-vue': 7.0.1(vue@3.5.22(typescript@5.8.3)) + '@babel/runtime': 7.26.0 + '@ctrl/tinycolor': 3.6.1 + '@emotion/hash': 0.9.2 + '@emotion/unitless': 0.8.1 + '@simonwep/pickr': 1.8.2 + array-tree-filter: 2.1.0 + async-validator: 4.2.5 + csstype: 3.1.3 + dayjs: 1.11.18 + dom-align: 1.12.4 + dom-scroll-into-view: 2.0.1 + lodash: 4.17.21 + lodash-es: 4.17.21 + resize-observer-polyfill: 1.5.1 + scroll-into-view-if-needed: 2.2.31 + shallow-equal: 1.2.1 + stylis: 4.3.4 + throttle-debounce: 5.0.2 + vue: 3.5.22(typescript@5.8.3) + vue-types: 3.0.2(vue@3.5.22(typescript@5.8.3)) + warning: 4.0.3 + + antdv-component-resolver@1.0.8(unplugin-vue-components@29.1.0(@babel/parser@7.28.4)(vue@3.5.22(typescript@5.8.3))): + dependencies: + unplugin-vue-components: 29.1.0(@babel/parser@7.28.4)(vue@3.5.22(typescript@5.8.3)) + + antdv-style@0.0.1-beta.4(ant-design-vue@4.2.6(vue@3.5.22(typescript@5.8.3)))(vue@3.5.22(typescript@5.8.3)): + dependencies: + '@babel/runtime': 7.26.0 + '@emotion/cache': 11.14.0 + '@emotion/css': 11.13.5 + '@emotion/serialize': 1.3.3 + '@emotion/server': 11.11.0(@emotion/css@11.13.5) + '@emotion/utils': 1.4.2 + '@vueuse/core': 10.11.1(vue@3.5.22(typescript@5.8.3)) + ant-design-vue: 4.2.6(vue@3.5.22(typescript@5.8.3)) + vue: 3.5.22(typescript@5.8.3) + transitivePeerDependencies: + - '@vue/composition-api' + - supports-color + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + are-docs-informative@0.0.2: {} + + arg@4.1.3: {} + + argparse@2.0.1: {} + + arr-union@3.1.0: {} + + array-back@3.1.0: {} + + array-back@4.0.2: {} + + array-buffer-byte-length@1.0.2: + dependencies: + call-bound: 1.0.3 + is-array-buffer: 3.0.5 + + array-ify@1.0.0: {} + + array-tree-filter@2.1.0: {} + + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.8 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + is-array-buffer: 3.0.5 + + arrify@1.0.1: {} + + as-number@1.0.0: {} + + assertion-error@2.0.1: {} + + assign-symbols@1.0.0: {} + + ast-kit@2.1.2: + dependencies: + '@babel/parser': 7.28.3 + pathe: 2.0.3 + + async-validator@4.2.5: {} + + async@3.2.6: {} + + asynckit@0.4.0: {} + + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.0.0 + + axios@1.12.2: + dependencies: + follow-redirects: 1.15.9 + form-data: 4.0.4 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + + babel-plugin-macros@3.1.0: + dependencies: + '@babel/runtime': 7.26.0 + cosmiconfig: 7.1.0 + resolve: 1.22.10 + + balanced-match@1.0.2: {} + + baseline-browser-mapping@2.8.6: {} + + batch-processor@1.0.0: {} + + binary-extensions@2.3.0: {} + + birpc@2.5.0: {} + + boolbase@1.0.0: {} + + brace-expansion@1.1.11: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browserslist@4.24.3: + dependencies: + caniuse-lite: 1.0.30001690 + electron-to-chromium: 1.5.76 + node-releases: 2.0.19 + update-browserslist-db: 1.1.1(browserslist@4.24.3) + + browserslist@4.26.2: + dependencies: + baseline-browser-mapping: 2.8.6 + caniuse-lite: 1.0.30001743 + electron-to-chromium: 1.5.223 + node-releases: 2.0.21 + update-browserslist-db: 1.1.3(browserslist@4.26.2) + + buffer-from@0.1.2: {} + + buffer-from@1.1.2: {} + + builtin-modules@5.0.0: {} + + bundle-name@4.1.0: + dependencies: + run-applescript: 7.0.0 + + bytewise-core@1.2.3: + dependencies: + typewise-core: 1.2.0 + + bytewise@1.1.0: + dependencies: + bytewise-core: 1.2.3 + typewise: 1.0.3 + + c12@1.11.2(magicast@0.3.5): + dependencies: + chokidar: 3.6.0 + confbox: 0.1.8 + defu: 6.1.4 + dotenv: 16.4.7 + giget: 1.2.3 + jiti: 1.21.7 + mlly: 1.7.4 + ohash: 1.1.4 + pathe: 1.1.2 + perfect-debounce: 1.0.0 + pkg-types: 1.3.0 + rc9: 2.1.2 + optionalDependencies: + magicast: 0.3.5 + + cac@6.7.14: {} + + call-bind-apply-helpers@1.0.1: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bind@1.0.8: + dependencies: + call-bind-apply-helpers: 1.0.1 + es-define-property: 1.0.1 + get-intrinsic: 1.2.6 + set-function-length: 1.2.2 + + call-bound@1.0.3: + dependencies: + call-bind-apply-helpers: 1.0.1 + get-intrinsic: 1.2.6 + + callsites@3.1.0: {} + + camelcase-keys@6.2.2: + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + + camelcase@1.2.1: {} + + camelcase@5.3.1: {} + + caniuse-lite@1.0.30001690: {} + + caniuse-lite@1.0.30001743: {} + + ccount@2.0.1: {} + + center-align@0.1.3: + dependencies: + align-text: 0.1.4 + lazy-cache: 1.0.4 + + chai@5.3.1: + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.1 + deep-eql: 5.0.2 + loupe: 3.2.0 + pathval: 2.0.1 + + chalk@1.1.3: + dependencies: + ansi-styles: 2.2.1 + escape-string-regexp: 1.0.5 + has-ansi: 2.0.0 + strip-ansi: 3.0.1 + supports-color: 2.0.0 + + chalk@2.4.2: + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@5.3.0: {} + + chalk@5.6.0: {} + + change-case@5.4.4: {} + + changelogen@0.5.7(magicast@0.3.5): + dependencies: + c12: 1.11.2(magicast@0.3.5) + colorette: 2.0.20 + consola: 3.3.3 + convert-gitmoji: 0.1.5 + mri: 1.2.0 + node-fetch-native: 1.6.4 + ofetch: 1.4.1 + open: 10.1.0 + pathe: 1.1.2 + pkg-types: 1.3.0 + scule: 1.3.0 + semver: 7.6.3 + std-env: 3.8.0 + yaml: 2.6.1 + transitivePeerDependencies: + - magicast + + character-entities@2.0.2: {} + + check-error@2.1.1: {} + + chokidar@3.6.0: + dependencies: + anymatch: 3.1.3 + braces: 3.0.3 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + + chokidar@4.0.3: + dependencies: + readdirp: 4.0.2 + + chownr@2.0.0: {} + + ci-info@4.3.0: {} + + citty@0.1.6: + dependencies: + consola: 3.4.2 + + clean-regexp@1.0.0: + dependencies: + escape-string-regexp: 1.0.5 + + cli-cursor@4.0.0: + dependencies: + restore-cursor: 4.0.0 + + cli-truncate@3.1.0: + dependencies: + slice-ansi: 5.0.0 + string-width: 5.1.2 + + cliui@2.1.0: + dependencies: + center-align: 0.1.3 + right-align: 0.1.3 + wordwrap: 0.0.2 + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + color-convert@1.9.3: + dependencies: + color-name: 1.1.3 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.3: {} + + color-name@1.1.4: {} + + colorette@2.0.20: {} + + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + + command-line-args@5.2.1: + dependencies: + array-back: 3.1.0 + find-replace: 3.0.0 + lodash.camelcase: 4.3.0 + typical: 4.0.0 + + command-line-usage@6.1.3: + dependencies: + array-back: 4.0.2 + chalk: 2.4.2 + table-layout: 1.0.2 + typical: 5.2.0 + + commander@10.0.1: {} + + commander@11.0.0: {} + + commander@2.20.3: {} + + comment-parser@1.4.1: {} + + compare-func@2.0.0: + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 + + compute-scroll-into-view@1.0.20: {} + + concat-map@0.0.1: {} + + confbox@0.1.8: {} + + confbox@0.2.2: {} + + config-chain@1.1.13: + dependencies: + ini: 1.3.8 + proto-list: 1.2.4 + + consola@3.3.3: {} + + consola@3.4.2: {} + + contour_plot@0.0.1: {} + + conventional-changelog-angular@7.0.0: + dependencies: + compare-func: 2.0.0 + + conventional-changelog-conventionalcommits@7.0.2: + dependencies: + compare-func: 2.0.0 + + conventional-commits-parser@5.0.0: + dependencies: + JSONStream: 1.3.5 + is-text-path: 2.0.0 + meow: 12.1.1 + split2: 4.2.0 + + convert-gitmoji@0.1.5: {} + + convert-source-map@1.9.0: {} + + convert-source-map@2.0.0: {} + + cookie-es@2.0.0: {} + + copy-anything@2.0.6: + dependencies: + is-what: 3.14.1 + + core-js-compat@3.45.1: + dependencies: + browserslist: 4.26.2 + + core-js@3.39.0: {} + + core-util-is@1.0.3: {} + + cosmiconfig-typescript-loader@5.1.0(@types/node@20.19.17)(cosmiconfig@8.3.6(typescript@5.8.3))(typescript@5.8.3): + dependencies: + '@types/node': 20.19.17 + cosmiconfig: 8.3.6(typescript@5.8.3) + jiti: 1.21.7 + typescript: 5.8.3 + + cosmiconfig@7.1.0: + dependencies: + '@types/parse-json': 4.0.2 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + + cosmiconfig@8.3.6(typescript@5.8.3): + dependencies: + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + optionalDependencies: + typescript: 5.8.3 + + create-require@1.1.1: {} + + cross-env@7.0.3: + dependencies: + cross-spawn: 7.0.6 + + cross-spawn@6.0.6: + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.2 + shebang-command: 1.2.0 + which: 1.3.1 + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + crypto-js@4.2.0: {} + + css-tree@3.1.0: + dependencies: + mdn-data: 2.12.2 + source-map-js: 1.2.1 + + csscolorparser@1.0.3: {} + + cssesc@3.0.0: {} + + cssstyle@3.0.0: + dependencies: + rrweb-cssom: 0.6.0 + + cssstyle@4.1.0: + dependencies: + rrweb-cssom: 0.7.1 + + csstype@3.1.3: {} + + d3-array@1.2.4: {} + + d3-array@2.12.1: + dependencies: + internmap: 1.0.1 + + d3-collection@1.0.7: {} + + d3-color@1.4.1: {} + + d3-color@3.1.0: {} + + d3-dsv@1.2.0: + dependencies: + commander: 2.20.3 + iconv-lite: 0.4.24 + rw: 1.3.3 + + d3-ease@1.0.7: {} + + d3-format@1.4.5: {} + + d3-hexbin@0.2.2: {} + + d3-hierarchy@2.0.0: {} + + d3-interpolate@1.4.0: + dependencies: + d3-color: 1.4.1 + + d3-interpolate@3.0.1: + dependencies: + d3-color: 3.1.0 + + d3-regression@1.3.10: {} + + d3-scale@2.2.2: + dependencies: + d3-array: 1.2.4 + d3-collection: 1.0.7 + d3-format: 1.4.5 + d3-interpolate: 1.4.0 + d3-time: 1.1.0 + d3-time-format: 2.3.0 + + d3-time-format@2.3.0: + dependencies: + d3-time: 1.1.0 + + d3-time@1.1.0: {} + + d3-timer@1.0.10: {} + + dargs@7.0.0: {} + + data-urls@4.0.0: + dependencies: + abab: 2.0.6 + whatwg-mimetype: 3.0.0 + whatwg-url: 12.0.1 + + data-urls@5.0.0: + dependencies: + whatwg-mimetype: 4.0.0 + whatwg-url: 14.1.0 + + data-view-buffer@1.0.2: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-length@1.0.2: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-offset@1.0.1: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + dayjs@1.11.18: {} + + de-indent@1.0.2: {} + + debug@4.3.4: + dependencies: + ms: 2.1.2 + + debug@4.4.0: + dependencies: + ms: 2.1.3 + + debug@4.4.1: + dependencies: + ms: 2.1.3 + + debug@4.4.3: + dependencies: + ms: 2.1.3 + + decamelize-keys@1.1.1: + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + + decamelize@1.2.0: {} + + decimal.js@10.4.3: {} + + decode-named-character-reference@1.2.0: + dependencies: + character-entities: 2.0.2 + + deep-eql@5.0.2: {} + + deep-equal@1.1.2: + dependencies: + is-arguments: 1.2.0 + is-date-object: 1.1.0 + is-regex: 1.2.1 + object-is: 1.1.6 + object-keys: 1.1.1 + regexp.prototype.flags: 1.5.3 + + deep-extend@0.6.0: {} + + deep-is@0.1.4: {} + + default-browser-id@5.0.0: {} + + default-browser@5.2.1: + dependencies: + bundle-name: 4.1.0 + default-browser-id: 5.0.0 + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + define-lazy-prop@3.0.0: {} + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + defined@1.0.1: {} + + defu@6.1.4: {} + + delayed-stream@1.0.0: {} + + dequal@2.0.3: {} + + destr@2.0.3: {} + + detect-browser@5.3.0: {} + + detect-libc@2.0.4: {} + + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + diff@4.0.2: {} + + diff@8.0.2: {} + + directory-tree@3.5.2: + dependencies: + command-line-args: 5.2.1 + command-line-usage: 6.1.3 + + dom-align@1.12.4: {} + + dom-scroll-into-view@2.0.1: {} + + domexception@4.0.0: + dependencies: + webidl-conversions: 7.0.0 + + dot-prop@5.3.0: + dependencies: + is-obj: 2.0.0 + + dotenv@16.4.7: {} + + dotignore@0.1.2: + dependencies: + minimatch: 3.1.2 + + dts-resolver@2.1.1: {} + + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + duplexer2@0.1.4: + dependencies: + readable-stream: 2.3.8 + + duplexer@0.1.2: {} + + earcut@2.2.4: {} + + eastasianwidth@0.2.0: {} + + echarts@6.0.0: + dependencies: + tslib: 2.3.0 + zrender: 6.0.0 + + editorconfig@1.0.4: + dependencies: + '@one-ini/wasm': 0.1.1 + commander: 10.0.1 + minimatch: 9.0.1 + semver: 7.6.3 + + electron-to-chromium@1.5.223: {} + + electron-to-chromium@1.5.76: {} + + element-resize-detector@1.2.4: + dependencies: + batch-processor: 1.0.0 + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + empathic@2.0.0: {} + + enhanced-resolve@5.18.0: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + + entities@4.5.0: {} + + errno@0.1.8: + dependencies: + prr: 1.0.1 + optional: true + + error-ex@1.3.2: + dependencies: + is-arrayish: 0.2.1 + + es-abstract@1.23.8: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.3 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-set-tostringtag: 2.0.3 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.2.6 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-regex: 1.2.1 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.0 + math-intrinsics: 1.1.0 + object-inspect: 1.13.3 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.3 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.18 + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-module-lexer@1.7.0: {} + + es-object-atoms@1.0.0: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.0.3: + dependencies: + get-intrinsic: 1.2.6 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-set-tostringtag@2.1.0: + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-to-primitive@1.3.0: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.1.0 + is-symbol: 1.1.1 + + esbuild@0.18.20: + optionalDependencies: + '@esbuild/android-arm': 0.18.20 + '@esbuild/android-arm64': 0.18.20 + '@esbuild/android-x64': 0.18.20 + '@esbuild/darwin-arm64': 0.18.20 + '@esbuild/darwin-x64': 0.18.20 + '@esbuild/freebsd-arm64': 0.18.20 + '@esbuild/freebsd-x64': 0.18.20 + '@esbuild/linux-arm': 0.18.20 + '@esbuild/linux-arm64': 0.18.20 + '@esbuild/linux-ia32': 0.18.20 + '@esbuild/linux-loong64': 0.18.20 + '@esbuild/linux-mips64el': 0.18.20 + '@esbuild/linux-ppc64': 0.18.20 + '@esbuild/linux-riscv64': 0.18.20 + '@esbuild/linux-s390x': 0.18.20 + '@esbuild/linux-x64': 0.18.20 + '@esbuild/netbsd-x64': 0.18.20 + '@esbuild/openbsd-x64': 0.18.20 + '@esbuild/sunos-x64': 0.18.20 + '@esbuild/win32-arm64': 0.18.20 + '@esbuild/win32-ia32': 0.18.20 + '@esbuild/win32-x64': 0.18.20 + + esbuild@0.25.10: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.10 + '@esbuild/android-arm': 0.25.10 + '@esbuild/android-arm64': 0.25.10 + '@esbuild/android-x64': 0.25.10 + '@esbuild/darwin-arm64': 0.25.10 + '@esbuild/darwin-x64': 0.25.10 + '@esbuild/freebsd-arm64': 0.25.10 + '@esbuild/freebsd-x64': 0.25.10 + '@esbuild/linux-arm': 0.25.10 + '@esbuild/linux-arm64': 0.25.10 + '@esbuild/linux-ia32': 0.25.10 + '@esbuild/linux-loong64': 0.25.10 + '@esbuild/linux-mips64el': 0.25.10 + '@esbuild/linux-ppc64': 0.25.10 + '@esbuild/linux-riscv64': 0.25.10 + '@esbuild/linux-s390x': 0.25.10 + '@esbuild/linux-x64': 0.25.10 + '@esbuild/netbsd-arm64': 0.25.10 + '@esbuild/netbsd-x64': 0.25.10 + '@esbuild/openbsd-arm64': 0.25.10 + '@esbuild/openbsd-x64': 0.25.10 + '@esbuild/openharmony-arm64': 0.25.10 + '@esbuild/sunos-x64': 0.25.10 + '@esbuild/win32-arm64': 0.25.10 + '@esbuild/win32-ia32': 0.25.10 + '@esbuild/win32-x64': 0.25.10 + + escalade@3.2.0: {} + + escape-string-regexp@1.0.5: {} + + escape-string-regexp@4.0.0: {} + + escape-string-regexp@5.0.0: {} + + eslint-compat-utils@0.5.1(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + semver: 7.7.2 + + eslint-compat-utils@0.6.4(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + semver: 7.7.2 + + eslint-config-flat-gitignore@2.1.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@eslint/compat': 1.4.0(eslint@9.36.0(jiti@2.6.0)) + eslint: 9.36.0(jiti@2.6.0) + + eslint-flat-config-utils@2.1.4: + dependencies: + pathe: 2.0.3 + + eslint-formatting-reporter@0.0.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + prettier-linter-helpers: 1.0.0 + + eslint-json-compat-utils@0.2.1(eslint@9.36.0(jiti@2.6.0))(jsonc-eslint-parser@2.4.0): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + esquery: 1.6.0 + jsonc-eslint-parser: 2.4.0 + + eslint-merge-processors@2.0.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + + eslint-parser-plain@0.1.1: {} + + eslint-plugin-antfu@3.1.1(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + + eslint-plugin-command@3.3.1(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@es-joy/jsdoccomment': 0.50.2 + eslint: 9.36.0(jiti@2.6.0) + + eslint-plugin-es-x@7.8.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@eslint-community/regexpp': 4.12.1 + eslint: 9.36.0(jiti@2.6.0) + eslint-compat-utils: 0.5.1(eslint@9.36.0(jiti@2.6.0)) + + eslint-plugin-format@1.0.2(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@dprint/formatter': 0.3.0 + '@dprint/markdown': 0.17.8 + '@dprint/toml': 0.6.4 + eslint: 9.36.0(jiti@2.6.0) + eslint-formatting-reporter: 0.0.0(eslint@9.36.0(jiti@2.6.0)) + eslint-parser-plain: 0.1.1 + prettier: 3.6.2 + synckit: 0.9.3 + + eslint-plugin-import-lite@0.3.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@typescript-eslint/types': 8.44.1 + eslint: 9.36.0(jiti@2.6.0) + optionalDependencies: + typescript: 5.8.3 + + eslint-plugin-jsdoc@59.1.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@es-joy/jsdoccomment': 0.58.0 + are-docs-informative: 0.0.2 + comment-parser: 1.4.1 + debug: 4.4.3 + escape-string-regexp: 4.0.0 + eslint: 9.36.0(jiti@2.6.0) + espree: 10.4.0 + esquery: 1.6.0 + object-deep-merge: 1.0.5 + parse-imports-exports: 0.2.4 + semver: 7.7.2 + spdx-expression-parse: 4.0.0 + transitivePeerDependencies: + - supports-color + + eslint-plugin-jsonc@2.20.1(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + eslint: 9.36.0(jiti@2.6.0) + eslint-compat-utils: 0.6.4(eslint@9.36.0(jiti@2.6.0)) + eslint-json-compat-utils: 0.2.1(eslint@9.36.0(jiti@2.6.0))(jsonc-eslint-parser@2.4.0) + espree: 10.4.0 + graphemer: 1.4.0 + jsonc-eslint-parser: 2.4.0 + natural-compare: 1.4.0 + synckit: 0.6.2 + transitivePeerDependencies: + - '@eslint/json' + + eslint-plugin-n@17.23.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + enhanced-resolve: 5.18.0 + eslint: 9.36.0(jiti@2.6.0) + eslint-plugin-es-x: 7.8.0(eslint@9.36.0(jiti@2.6.0)) + get-tsconfig: 4.10.1 + globals: 15.15.0 + globrex: 0.1.2 + ignore: 5.3.2 + semver: 7.7.2 + ts-declaration-location: 1.0.7(typescript@5.8.3) + transitivePeerDependencies: + - typescript + + eslint-plugin-no-only-tests@3.3.0: {} + + eslint-plugin-perfectionist@4.15.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3): + dependencies: + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + eslint: 9.36.0(jiti@2.6.0) + natural-orderby: 5.0.0 + transitivePeerDependencies: + - supports-color + - typescript + + eslint-plugin-pnpm@1.1.2(eslint@9.36.0(jiti@2.6.0)): + dependencies: + empathic: 2.0.0 + eslint: 9.36.0(jiti@2.6.0) + jsonc-eslint-parser: 2.4.1 + pathe: 2.0.3 + pnpm-workspace-yaml: 1.1.2 + tinyglobby: 0.2.15 + yaml-eslint-parser: 1.3.0 + + eslint-plugin-regexp@2.10.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@eslint-community/regexpp': 4.12.1 + comment-parser: 1.4.1 + eslint: 9.36.0(jiti@2.6.0) + jsdoc-type-pratt-parser: 4.1.0 + refa: 0.12.1 + regexp-ast-analysis: 0.7.1 + scslre: 0.3.0 + + eslint-plugin-toml@0.12.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + debug: 4.4.3 + eslint: 9.36.0(jiti@2.6.0) + eslint-compat-utils: 0.6.4(eslint@9.36.0(jiti@2.6.0)) + lodash: 4.17.21 + toml-eslint-parser: 0.10.0 + transitivePeerDependencies: + - supports-color + + eslint-plugin-unicorn@61.0.2(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@eslint/plugin-kit': 0.3.5 + change-case: 5.4.4 + ci-info: 4.3.0 + clean-regexp: 1.0.0 + core-js-compat: 3.45.1 + eslint: 9.36.0(jiti@2.6.0) + esquery: 1.6.0 + find-up-simple: 1.0.1 + globals: 16.4.0 + indent-string: 5.0.0 + is-builtin-module: 5.0.0 + jsesc: 3.1.0 + pluralize: 8.0.0 + regexp-tree: 0.1.27 + regjsparser: 0.12.0 + semver: 7.7.2 + strip-indent: 4.1.0 + + eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + optionalDependencies: + '@typescript-eslint/eslint-plugin': 8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + + eslint-plugin-vue@10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.36.0(jiti@2.6.0)))(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.6.0))): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + eslint: 9.36.0(jiti@2.6.0) + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 6.1.2 + semver: 7.7.2 + vue-eslint-parser: 10.2.0(eslint@9.36.0(jiti@2.6.0)) + xml-name-validator: 4.0.0 + optionalDependencies: + '@stylistic/eslint-plugin': 5.4.0(eslint@9.36.0(jiti@2.6.0)) + '@typescript-eslint/parser': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + + eslint-plugin-yml@1.18.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + debug: 4.4.3 + escape-string-regexp: 4.0.0 + eslint: 9.36.0(jiti@2.6.0) + eslint-compat-utils: 0.6.4(eslint@9.36.0(jiti@2.6.0)) + natural-compare: 1.4.0 + yaml-eslint-parser: 1.3.0 + transitivePeerDependencies: + - supports-color + + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.22)(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@vue/compiler-sfc': 3.5.22 + eslint: 9.36.0(jiti@2.6.0) + + eslint-scope@8.4.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.1: {} + + eslint@9.36.0(jiti@2.6.0): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.21.0 + '@eslint/config-helpers': 0.3.1 + '@eslint/core': 0.15.2 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.36.0 + '@eslint/plugin-kit': 0.3.5 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.1 + escape-string-regexp: 4.0.0 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + optionalDependencies: + jiti: 2.6.0 + transitivePeerDependencies: + - supports-color + + esno@0.17.0: + dependencies: + tsx: 3.14.0 + + espree@10.4.0: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 4.2.1 + + espree@9.6.1: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 3.4.3 + + esquery@1.6.0: + dependencies: + estraverse: 5.3.0 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@5.3.0: {} + + estree-walker@2.0.2: {} + + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.6 + + esutils@2.0.3: {} + + eventemitter3@4.0.7: {} + + eventemitter3@5.0.1: {} + + execa@5.1.1: + dependencies: + cross-spawn: 7.0.6 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + + execa@7.2.0: + dependencies: + cross-spawn: 7.0.6 + get-stream: 6.0.1 + human-signals: 4.3.1 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.3.0 + onetime: 6.0.0 + signal-exit: 3.0.7 + strip-final-newline: 3.0.0 + + execa@8.0.1: + dependencies: + cross-spawn: 7.0.6 + get-stream: 8.0.1 + human-signals: 5.0.0 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.3.0 + onetime: 6.0.0 + signal-exit: 4.1.0 + strip-final-newline: 3.0.0 + + expect-type@1.2.2: {} + + exsolve@1.0.7: {} + + extend-shallow@2.0.1: + dependencies: + is-extendable: 0.1.1 + + extend-shallow@3.0.2: + dependencies: + assign-symbols: 1.0.0 + is-extendable: 1.0.1 + + extrude-polyline@1.0.6: + dependencies: + as-number: 1.0.0 + gl-vec2: 1.3.0 + polyline-miter-util: 1.0.1 + + fast-deep-equal@3.1.3: {} + + fast-diff@1.3.0: {} + + fast-glob@3.3.2: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fast-uri@3.0.3: {} + + fastq@1.18.0: + dependencies: + reusify: 1.0.4 + + fault@2.0.1: + dependencies: + format: 0.2.2 + + fdir@6.5.0(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + + fecha@4.2.3: {} + + fetchdts@0.1.6: {} + + fflate@0.8.2: {} + + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-replace@3.0.0: + dependencies: + array-back: 3.1.0 + + find-root@1.1.0: {} + + find-up-simple@1.0.1: {} + + find-up@4.1.0: + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + flat-cache@4.0.1: + dependencies: + flatted: 3.3.2 + keyv: 4.5.4 + + flatted@3.3.2: {} + + fmin@0.0.2: + dependencies: + contour_plot: 0.0.1 + json2module: 0.0.3 + rollup: 0.25.8 + tape: 4.17.0 + uglify-js: 2.8.29 + + follow-redirects@1.15.9: {} + + for-each@0.3.3: + dependencies: + is-callable: 1.2.7 + + foreground-child@3.3.0: + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + + form-data@4.0.1: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + + form-data@4.0.4: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + hasown: 2.0.2 + mime-types: 2.1.35 + + format@0.2.2: {} + + fs-extra@11.3.2: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + + fs-minipass@2.1.0: + dependencies: + minipass: 3.3.6 + + fs.realpath@1.0.0: {} + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + function.prototype.name@1.1.8: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 + + functions-have-names@1.2.3: {} + + gensync@1.0.0-beta.2: {} + + geojson-vt@3.2.1: {} + + get-caller-file@2.0.5: {} + + get-intrinsic@1.2.6: + dependencies: + call-bind-apply-helpers: 1.0.1 + dunder-proto: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + function-bind: 1.1.2 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + + get-stream@6.0.1: {} + + get-stream@8.0.1: {} + + get-symbol-description@1.1.0: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + + get-tsconfig@4.10.1: + dependencies: + resolve-pkg-maps: 1.0.0 + + get-tsconfig@4.8.1: + dependencies: + resolve-pkg-maps: 1.0.0 + + get-value@2.0.6: {} + + giget@1.2.3: + dependencies: + citty: 0.1.6 + consola: 3.4.2 + defu: 6.1.4 + node-fetch-native: 1.6.4 + nypm: 0.3.12 + ohash: 1.1.4 + pathe: 1.1.2 + tar: 6.2.1 + + git-raw-commits@2.0.11: + dependencies: + dargs: 7.0.0 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + + github-slugger@2.0.0: {} + + gl-matrix@3.4.3: {} + + gl-vec2@1.3.0: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + glob@10.4.5: + dependencies: + foreground-child: 3.3.0 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + global-dirs@0.1.1: + dependencies: + ini: 1.3.8 + + global-prefix@3.0.0: + dependencies: + ini: 1.3.8 + kind-of: 6.0.3 + which: 1.3.1 + + globals@11.12.0: {} + + globals@14.0.0: {} + + globals@15.15.0: {} + + globals@16.4.0: {} + + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.2.0 + + globrex@0.1.2: {} + + gopd@1.2.0: {} + + graceful-fs@4.2.11: {} + + graphemer@1.4.0: {} + + grid-index@1.1.0: {} + + gzip-size@6.0.0: + dependencies: + duplexer: 0.1.2 + + h3@2.0.0-beta.4: + dependencies: + cookie-es: 2.0.0 + fetchdts: 0.1.6 + rou3: 0.7.3 + srvx: 0.8.7 + + hammerjs@2.0.8: {} + + hard-rejection@2.1.0: {} + + has-ansi@2.0.0: + dependencies: + ansi-regex: 2.1.1 + + has-bigints@1.1.0: {} + + has-flag@3.0.0: {} + + has-flag@4.0.0: {} + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.1 + + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 + + has-symbols@1.1.0: {} + + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 + + has@1.0.4: {} + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + he@1.2.0: {} + + hookable@5.5.3: {} + + hosted-git-info@2.8.9: {} + + hosted-git-info@4.1.0: + dependencies: + lru-cache: 6.0.0 + + html-encoding-sniffer@3.0.0: + dependencies: + whatwg-encoding: 2.0.0 + + html-encoding-sniffer@4.0.0: + dependencies: + whatwg-encoding: 3.1.1 + + html-entities@2.5.2: {} + + html-tokenize@2.0.1: + dependencies: + buffer-from: 0.1.2 + inherits: 2.0.4 + minimist: 1.2.8 + readable-stream: 1.0.34 + through2: 0.4.2 + + http-proxy-agent@5.0.0: + dependencies: + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + http-proxy-agent@7.0.2: + dependencies: + agent-base: 7.1.3 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@5.0.1: + dependencies: + agent-base: 6.0.2 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@7.0.6: + dependencies: + agent-base: 7.1.3 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + human-signals@2.1.0: {} + + human-signals@4.3.1: {} + + human-signals@5.0.0: {} + + husky@9.1.7: {} + + iconv-lite@0.4.24: + dependencies: + safer-buffer: 2.1.2 + + iconv-lite@0.6.3: + dependencies: + safer-buffer: 2.1.2 + + ieee754@1.2.1: {} + + ignore@5.3.2: {} + + ignore@7.0.5: {} + + image-size@0.5.5: + optional: true + + import-fresh@3.3.0: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + imurmurhash@0.1.4: {} + + indent-string@4.0.0: {} + + indent-string@5.0.0: {} + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@2.0.4: {} + + ini@1.3.8: {} + + internal-slot@1.1.0: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.1.0 + + internmap@1.0.1: {} + + is-arguments@1.2.0: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-array-buffer@3.0.5: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + + is-arrayish@0.2.1: {} + + is-async-function@2.0.0: + dependencies: + has-tostringtag: 1.0.2 + + is-bigint@1.1.0: + dependencies: + has-bigints: 1.1.0 + + is-binary-path@2.1.0: + dependencies: + binary-extensions: 2.3.0 + + is-boolean-object@1.2.1: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-buffer@1.1.6: {} + + is-builtin-module@5.0.0: + dependencies: + builtin-modules: 5.0.0 + + is-callable@1.2.7: {} + + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 + + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + is-typed-array: 1.1.15 + + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-docker@3.0.0: {} + + is-extendable@0.1.1: {} + + is-extendable@1.0.1: + dependencies: + is-plain-object: 2.0.4 + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.3 + + is-fullwidth-code-point@3.0.0: {} + + is-fullwidth-code-point@4.0.0: {} + + is-generator-function@1.0.10: + dependencies: + has-tostringtag: 1.0.2 + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-inside-container@1.0.0: + dependencies: + is-docker: 3.0.0 + + is-map@2.0.3: {} + + is-number-object@1.1.1: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-number@7.0.0: {} + + is-obj@2.0.0: {} + + is-plain-obj@1.1.0: {} + + is-plain-object@2.0.4: + dependencies: + isobject: 3.0.1 + + is-plain-object@3.0.1: {} + + is-potential-custom-element-name@1.0.1: {} + + is-regex@1.1.4: + dependencies: + call-bind: 1.0.8 + has-tostringtag: 1.0.2 + + is-regex@1.2.1: + dependencies: + call-bound: 1.0.3 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.4: + dependencies: + call-bound: 1.0.3 + + is-stream@2.0.1: {} + + is-stream@3.0.0: {} + + is-string@1.1.1: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-symbol@1.1.1: + dependencies: + call-bound: 1.0.3 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 + + is-text-path@2.0.0: + dependencies: + text-extensions: 2.4.0 + + is-typed-array@1.1.15: + dependencies: + which-typed-array: 1.1.18 + + is-weakmap@2.0.2: {} + + is-weakref@1.1.0: + dependencies: + call-bound: 1.0.3 + + is-weakset@2.0.4: + dependencies: + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + + is-what@3.14.1: {} + + is-wsl@3.1.0: + dependencies: + is-inside-container: 1.0.0 + + isarray@0.0.1: {} + + isarray@1.0.0: {} + + isarray@2.0.5: {} + + isexe@2.0.0: {} + + isobject@3.0.1: {} + + jackspeak@3.4.3: + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + + jiti@1.21.7: {} + + jiti@2.6.0: {} + + js-beautify@1.15.1: + dependencies: + config-chain: 1.1.13 + editorconfig: 1.0.4 + glob: 10.4.5 + js-cookie: 3.0.5 + nopt: 7.2.1 + + js-cookie@3.0.5: {} + + js-tokens@4.0.0: {} + + js-tokens@9.0.1: {} + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + jsbn@1.1.0: {} + + jsdoc-type-pratt-parser@4.1.0: {} + + jsdoc-type-pratt-parser@5.4.0: {} + + jsdom@22.1.0: + dependencies: + abab: 2.0.6 + cssstyle: 3.0.0 + data-urls: 4.0.0 + decimal.js: 10.4.3 + domexception: 4.0.0 + form-data: 4.0.1 + html-encoding-sniffer: 3.0.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.16 + parse5: 7.2.1 + rrweb-cssom: 0.6.0 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.4 + w3c-xmlserializer: 4.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 2.0.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 12.0.1 + ws: 8.18.0 + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + jsdom@24.1.3: + dependencies: + cssstyle: 4.1.0 + data-urls: 5.0.0 + decimal.js: 10.4.3 + form-data: 4.0.1 + html-encoding-sniffer: 4.0.0 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.16 + parse5: 7.2.1 + rrweb-cssom: 0.7.1 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.4 + w3c-xmlserializer: 5.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 3.1.1 + whatwg-mimetype: 4.0.0 + whatwg-url: 14.1.0 + ws: 8.18.0 + xml-name-validator: 5.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + jsesc@3.0.2: {} + + jsesc@3.1.0: {} + + json-buffer@3.0.1: {} + + json-parse-better-errors@1.0.2: {} + + json-parse-even-better-errors@2.3.1: {} + + json-schema-traverse@0.4.1: {} + + json-schema-traverse@1.0.0: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + json-stringify-pretty-compact@3.0.0: {} + + json2module@0.0.3: + dependencies: + rw: 1.3.3 + + json5@2.2.3: {} + + jsonc-eslint-parser@2.4.0: + dependencies: + acorn: 8.15.0 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + semver: 7.7.2 + + jsonc-eslint-parser@2.4.1: + dependencies: + acorn: 8.15.0 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + semver: 7.7.2 + + jsonfile@6.1.0: + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + + jsonparse@1.3.1: {} + + kdbush@3.0.0: {} + + kdbush@4.0.2: {} + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + kind-of@3.2.2: + dependencies: + is-buffer: 1.1.6 + + kind-of@6.0.3: {} + + kolorist@1.8.0: {} + + lazy-cache@1.0.4: {} + + less@4.4.1: + dependencies: + copy-anything: 2.0.6 + parse-node-version: 1.0.1 + tslib: 2.8.1 + optionalDependencies: + errno: 0.1.8 + graceful-fs: 4.2.11 + image-size: 0.5.5 + make-dir: 2.1.0 + mime: 1.6.0 + needle: 3.3.1 + source-map: 0.6.1 + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + lightningcss-darwin-arm64@1.30.1: + optional: true + + lightningcss-darwin-x64@1.30.1: + optional: true + + lightningcss-freebsd-x64@1.30.1: + optional: true + + lightningcss-linux-arm-gnueabihf@1.30.1: + optional: true + + lightningcss-linux-arm64-gnu@1.30.1: + optional: true + + lightningcss-linux-arm64-musl@1.30.1: + optional: true + + lightningcss-linux-x64-gnu@1.30.1: + optional: true + + lightningcss-linux-x64-musl@1.30.1: + optional: true + + lightningcss-win32-arm64-msvc@1.30.1: + optional: true + + lightningcss-win32-x64-msvc@1.30.1: + optional: true + + lightningcss@1.30.1: + dependencies: + detect-libc: 2.0.4 + optionalDependencies: + lightningcss-darwin-arm64: 1.30.1 + lightningcss-darwin-x64: 1.30.1 + lightningcss-freebsd-x64: 1.30.1 + lightningcss-linux-arm-gnueabihf: 1.30.1 + lightningcss-linux-arm64-gnu: 1.30.1 + lightningcss-linux-arm64-musl: 1.30.1 + lightningcss-linux-x64-gnu: 1.30.1 + lightningcss-linux-x64-musl: 1.30.1 + lightningcss-win32-arm64-msvc: 1.30.1 + lightningcss-win32-x64-msvc: 1.30.1 + + lilconfig@2.1.0: {} + + lines-and-columns@1.2.4: {} + + lint-staged@14.0.1: + dependencies: + chalk: 5.3.0 + commander: 11.0.0 + debug: 4.3.4 + execa: 7.2.0 + lilconfig: 2.1.0 + listr2: 6.6.1 + micromatch: 4.0.5 + pidtree: 0.6.0 + string-argv: 0.3.2 + yaml: 2.3.1 + transitivePeerDependencies: + - enquirer + - supports-color + + listr2@6.6.1: + dependencies: + cli-truncate: 3.1.0 + colorette: 2.0.20 + eventemitter3: 5.0.1 + log-update: 5.0.1 + rfdc: 1.4.1 + wrap-ansi: 8.1.0 + + load-json-file@4.0.0: + dependencies: + graceful-fs: 4.2.11 + parse-json: 4.0.0 + pify: 3.0.0 + strip-bom: 3.0.0 + + local-pkg@1.1.1: + dependencies: + mlly: 1.7.4 + pkg-types: 2.2.0 + quansync: 0.2.11 + + local-pkg@1.1.2: + dependencies: + mlly: 1.7.4 + pkg-types: 2.3.0 + quansync: 0.2.11 + + locate-path@5.0.0: + dependencies: + p-locate: 4.1.0 + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lodash-es@4.17.21: {} + + lodash.camelcase@4.3.0: {} + + lodash.clonedeep@4.5.0: {} + + lodash.isequal@4.5.0: {} + + lodash.isfunction@3.0.9: {} + + lodash.isplainobject@4.0.6: {} + + lodash.kebabcase@4.1.1: {} + + lodash.merge@4.6.2: {} + + lodash.mergewith@4.6.2: {} + + lodash.snakecase@4.1.1: {} + + lodash.startcase@4.4.0: {} + + lodash.uniq@4.5.0: {} + + lodash.upperfirst@4.3.1: {} + + lodash@4.17.21: {} + + log-update@5.0.1: + dependencies: + ansi-escapes: 5.0.0 + cli-cursor: 4.0.0 + slice-ansi: 5.0.0 + strip-ansi: 7.1.0 + wrap-ansi: 8.1.0 + + longest-streak@3.1.0: {} + + longest@1.0.1: {} + + loose-envify@1.4.0: + dependencies: + js-tokens: 4.0.0 + + loupe@3.2.0: {} + + lru-cache@10.4.3: {} + + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + + lru-cache@6.0.0: + dependencies: + yallist: 4.0.0 + + magic-string@0.30.17: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + + magic-string@0.30.19: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + magicast@0.3.5: + dependencies: + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 + source-map-js: 1.2.1 + optional: true + + make-dir@2.1.0: + dependencies: + pify: 4.0.1 + semver: 5.7.2 + optional: true + + make-error@1.3.6: {} + + map-obj@1.0.1: {} + + map-obj@4.3.0: {} + + mapbox-gl@1.13.3: + dependencies: + '@mapbox/geojson-rewind': 0.5.2 + '@mapbox/geojson-types': 1.0.2 + '@mapbox/jsonlint-lines-primitives': 2.0.2 + '@mapbox/mapbox-gl-supported': 1.5.0(mapbox-gl@1.13.3) + '@mapbox/point-geometry': 0.1.0 + '@mapbox/tiny-sdf': 1.2.5 + '@mapbox/unitbezier': 0.0.0 + '@mapbox/vector-tile': 1.3.1 + '@mapbox/whoots-js': 3.1.0 + csscolorparser: 1.0.3 + earcut: 2.2.4 + geojson-vt: 3.2.1 + gl-matrix: 3.4.3 + grid-index: 1.1.0 + murmurhash-js: 1.0.0 + pbf: 3.3.0 + potpack: 1.0.2 + quickselect: 2.0.0 + rw: 1.3.3 + supercluster: 7.1.5 + tinyqueue: 2.0.3 + vt-pbf: 3.1.3 + + maplibre-gl@3.6.2: + dependencies: + '@mapbox/geojson-rewind': 0.5.2 + '@mapbox/jsonlint-lines-primitives': 2.0.2 + '@mapbox/point-geometry': 0.1.0 + '@mapbox/tiny-sdf': 2.0.6 + '@mapbox/unitbezier': 0.0.1 + '@mapbox/vector-tile': 1.3.1 + '@mapbox/whoots-js': 3.1.0 + '@maplibre/maplibre-gl-style-spec': 19.3.3 + '@types/geojson': 7946.0.15 + '@types/mapbox__point-geometry': 0.1.4 + '@types/mapbox__vector-tile': 1.3.4 + '@types/pbf': 3.0.5 + '@types/supercluster': 7.1.3 + earcut: 2.2.4 + geojson-vt: 3.2.1 + gl-matrix: 3.4.3 + global-prefix: 3.0.0 + kdbush: 4.0.2 + murmurhash-js: 1.0.0 + pbf: 3.3.0 + potpack: 2.0.0 + quickselect: 2.0.0 + supercluster: 8.0.1 + tinyqueue: 2.0.3 + vt-pbf: 3.1.3 + + markdown-table@3.0.4: {} + + math-intrinsics@1.1.0: {} + + mdast-util-find-and-replace@3.0.2: + dependencies: + '@types/mdast': 4.0.4 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + mdast-util-from-markdown@2.0.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.2 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-decode-string: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-frontmatter@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + escape-string-regexp: 5.0.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-extension-frontmatter: 2.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-autolink-literal@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.2 + micromark-util-character: 2.1.1 + + mdast-util-gfm-footnote@2.1.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-util-normalize-identifier: 2.0.1 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-strikethrough@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-table@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + markdown-table: 3.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-task-list-item@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm@3.1.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm-autolink-literal: 2.0.1 + mdast-util-gfm-footnote: 2.1.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.0 + + mdast-util-to-markdown@2.1.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-classify-character: 2.0.1 + micromark-util-decode-string: 2.0.1 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 + + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + + mdn-data@2.12.2: {} + + memorystream@0.3.1: {} + + meow@12.1.1: {} + + meow@8.1.2: + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + micromark-core-commonmark@2.0.3: + dependencies: + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + micromark-factory-destination: 2.0.1 + micromark-factory-label: 2.0.1 + micromark-factory-space: 2.0.1 + micromark-factory-title: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-html-tag-name: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-frontmatter@2.0.0: + dependencies: + fault: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-autolink-literal@2.1.0: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-footnote@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-strikethrough@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-table@2.1.1: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-tagfilter@2.0.0: + dependencies: + micromark-util-types: 2.0.2 + + micromark-extension-gfm-task-list-item@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm@3.0.0: + dependencies: + micromark-extension-gfm-autolink-literal: 2.1.0 + micromark-extension-gfm-footnote: 2.1.0 + micromark-extension-gfm-strikethrough: 2.1.0 + micromark-extension-gfm-table: 2.1.1 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.1.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-destination@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-label@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-space@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-types: 2.0.2 + + micromark-factory-title@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-whitespace@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-character@2.1.1: + dependencies: + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-chunked@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-classify-character@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-combine-extensions@2.0.1: + dependencies: + micromark-util-chunked: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-decode-numeric-character-reference@2.0.2: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-decode-string@2.0.1: + dependencies: + decode-named-character-reference: 1.2.0 + micromark-util-character: 2.1.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-symbol: 2.0.1 + + micromark-util-encode@2.0.1: {} + + micromark-util-html-tag-name@2.0.1: {} + + micromark-util-normalize-identifier@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-resolve-all@2.0.1: + dependencies: + micromark-util-types: 2.0.2 + + micromark-util-sanitize-uri@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-encode: 2.0.1 + micromark-util-symbol: 2.0.1 + + micromark-util-subtokenize@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-symbol@2.0.1: {} + + micromark-util-types@2.0.2: {} + + micromark@4.0.2: + dependencies: + '@types/debug': 4.1.12 + debug: 4.4.3 + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-combine-extensions: 2.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-encode: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + transitivePeerDependencies: + - supports-color + + micromatch@4.0.5: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + mime@1.6.0: + optional: true + + mimic-fn@2.1.0: {} + + mimic-fn@4.0.0: {} + + min-indent@1.0.1: {} + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.11 + + minimatch@9.0.1: + dependencies: + brace-expansion: 2.0.1 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.1 + + minimist-options@4.1.0: + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + + minimist@1.2.8: {} + + minipass@3.3.6: + dependencies: + yallist: 4.0.0 + + minipass@5.0.0: {} + + minipass@7.1.2: {} + + minizlib@2.1.2: + dependencies: + minipass: 3.3.6 + yallist: 4.0.0 + + mitt@3.0.1: {} + + mkdirp@1.0.4: {} + + mlly@1.7.4: + dependencies: + acorn: 8.14.0 + pathe: 2.0.3 + pkg-types: 1.3.0 + ufo: 1.5.4 + + mlly@1.8.0: + dependencies: + acorn: 8.15.0 + pathe: 2.0.3 + pkg-types: 1.3.1 + ufo: 1.6.1 + + mock-h3@0.0.1-beta.12(h3@2.0.0-beta.4)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)): + dependencies: + chalk: 5.6.0 + h3: 2.0.0-beta.4 + jiti: 2.6.0 + local-pkg: 1.1.2 + pathe: 2.0.3 + tinyglobby: 0.2.14 + tsdown: 0.14.1(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)) + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - '@arethetypeswrong/core' + - '@typescript/native-preview' + - oxc-resolver + - publint + - supports-color + - typescript + - unplugin-lightningcss + - unplugin-unused + - vue-tsc + + mock-property@1.0.3: + dependencies: + define-data-property: 1.1.4 + functions-have-names: 1.2.3 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + hasown: 2.0.2 + isarray: 2.0.5 + + mri@1.2.0: {} + + mrmime@2.0.0: {} + + ms@2.1.2: {} + + ms@2.1.3: {} + + muggle-string@0.4.1: {} + + multipipe@1.0.2: + dependencies: + duplexer2: 0.1.4 + object-assign: 4.1.1 + + murmurhash-js@1.0.0: {} + + nanoid@3.3.11: {} + + nanopop@2.4.2: {} + + natural-compare@1.4.0: {} + + natural-orderby@5.0.0: {} + + needle@3.3.1: + dependencies: + iconv-lite: 0.6.3 + sax: 1.4.1 + optional: true + + nice-try@1.0.5: {} + + node-fetch-native@1.6.4: {} + + node-releases@2.0.19: {} + + node-releases@2.0.21: {} + + nopt@7.2.1: + dependencies: + abbrev: 2.0.0 + + normalize-package-data@2.5.0: + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.10 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + + normalize-package-data@3.0.3: + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.16.1 + semver: 7.6.3 + validate-npm-package-license: 3.0.4 + + normalize-path@3.0.0: {} + + npm-run-all@4.1.5: + dependencies: + ansi-styles: 3.2.1 + chalk: 2.4.2 + cross-spawn: 6.0.6 + memorystream: 0.3.1 + minimatch: 3.1.2 + pidtree: 0.3.1 + read-pkg: 3.0.0 + shell-quote: 1.8.2 + string.prototype.padend: 3.1.6 + + npm-run-path@4.0.1: + dependencies: + path-key: 3.1.1 + + npm-run-path@5.3.0: + dependencies: + path-key: 4.0.0 + + nth-check@2.1.1: + dependencies: + boolbase: 1.0.0 + + nwsapi@2.2.16: {} + + nypm@0.3.12: + dependencies: + citty: 0.1.6 + consola: 3.4.2 + execa: 8.0.1 + pathe: 1.1.2 + pkg-types: 1.3.0 + ufo: 1.5.4 + + object-assign@4.1.1: {} + + object-deep-merge@1.0.5: + dependencies: + type-fest: 4.2.0 + + object-inspect@1.12.3: {} + + object-inspect@1.13.3: {} + + object-is@1.1.6: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + + object-keys@0.4.0: {} + + object-keys@1.1.1: {} + + object.assign@4.1.7: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + has-symbols: 1.1.0 + object-keys: 1.1.1 + + ofetch@1.4.1: + dependencies: + destr: 2.0.3 + node-fetch-native: 1.6.4 + ufo: 1.5.4 + + ohash@1.1.4: {} + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + onetime@5.1.2: + dependencies: + mimic-fn: 2.1.0 + + onetime@6.0.0: + dependencies: + mimic-fn: 4.0.0 + + open@10.1.0: + dependencies: + default-browser: 5.2.1 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + is-wsl: 3.1.0 + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.2.6 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + + p-limit@2.3.0: + dependencies: + p-try: 2.2.0 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@4.1.0: + dependencies: + p-limit: 2.3.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + p-try@2.2.0: {} + + package-json-from-dist@1.0.1: {} + + package-manager-detector@1.3.0: {} + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-gitignore@2.0.0: {} + + parse-imports-exports@0.2.4: + dependencies: + parse-statements: 1.0.11 + + parse-json@4.0.0: + dependencies: + error-ex: 1.3.2 + json-parse-better-errors: 1.0.2 + + parse-json@5.2.0: + dependencies: + '@babel/code-frame': 7.26.2 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + + parse-node-version@1.0.1: {} + + parse-statements@1.0.11: {} + + parse5@7.2.1: + dependencies: + entities: 4.5.0 + + path-browserify@1.0.1: {} + + path-exists@4.0.0: {} + + path-is-absolute@1.0.1: {} + + path-key@2.0.1: {} + + path-key@3.1.1: {} + + path-key@4.0.0: {} + + path-parse@1.0.7: {} + + path-scurry@1.11.1: + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + + path-type@3.0.0: + dependencies: + pify: 3.0.0 + + path-type@4.0.0: {} + + pathe@1.1.2: {} + + pathe@2.0.3: {} + + pathval@2.0.1: {} + + pbf@3.3.0: + dependencies: + ieee754: 1.2.1 + resolve-protobuf-schema: 2.1.0 + + pdfast@0.2.0: {} + + perfect-debounce@1.0.0: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.2: {} + + picomatch@4.0.3: {} + + pidtree@0.3.1: {} + + pidtree@0.6.0: {} + + pify@3.0.0: {} + + pify@4.0.1: + optional: true + + pinia@2.3.1(typescript@5.8.3)(vue@3.5.22(typescript@5.8.3)): + dependencies: + '@vue/devtools-api': 6.6.4 + vue: 3.5.22(typescript@5.8.3) + vue-demi: 0.14.10(vue@3.5.22(typescript@5.8.3)) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - '@vue/composition-api' + + pkg-types@1.3.0: + dependencies: + confbox: 0.1.8 + mlly: 1.7.4 + pathe: 1.1.2 + + pkg-types@1.3.1: + dependencies: + confbox: 0.1.8 + mlly: 1.8.0 + pathe: 2.0.3 + + pkg-types@2.2.0: + dependencies: + confbox: 0.2.2 + exsolve: 1.0.7 + pathe: 2.0.3 + + pkg-types@2.3.0: + dependencies: + confbox: 0.2.2 + exsolve: 1.0.7 + pathe: 2.0.3 + + pluralize@8.0.0: {} + + pmtiles@2.11.0: + dependencies: + fflate: 0.8.2 + + pnpm-workspace-yaml@1.1.2: + dependencies: + yaml: 2.8.1 + + polygon-clipping@0.15.7: + dependencies: + robust-predicates: 3.0.2 + splaytree: 3.1.2 + + polyline-miter-util@1.0.1: + dependencies: + gl-vec2: 1.3.0 + + possible-typed-array-names@1.0.0: {} + + postcss-selector-parser@6.1.2: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + potpack@1.0.2: {} + + potpack@2.0.0: {} + + prelude-ls@1.2.1: {} + + prettier-linter-helpers@1.0.0: + dependencies: + fast-diff: 1.3.0 + + prettier@2.8.8: {} + + prettier@3.6.2: {} + + process-nextick-args@2.0.1: {} + + proto-list@1.2.4: {} + + protocol-buffers-schema@3.6.0: {} + + proxy-from-env@1.1.0: {} + + prr@1.0.1: + optional: true + + psl@1.15.0: + dependencies: + punycode: 2.3.1 + + punycode@2.3.1: {} + + quansync@0.2.11: {} + + querystringify@2.2.0: {} + + queue-microtask@1.2.3: {} + + quick-lru@4.0.1: {} + + quickselect@2.0.0: {} + + rc9@2.1.2: + dependencies: + defu: 6.1.4 + destr: 2.0.3 + + read-pkg-up@7.0.1: + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + + read-pkg@3.0.0: + dependencies: + load-json-file: 4.0.0 + normalize-package-data: 2.5.0 + path-type: 3.0.0 + + read-pkg@5.2.0: + dependencies: + '@types/normalize-package-data': 2.4.4 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + + readable-stream@1.0.34: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 0.0.1 + string_decoder: 0.10.31 + + readable-stream@2.3.8: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + readdirp@3.6.0: + dependencies: + picomatch: 2.3.1 + + readdirp@4.0.2: {} + + redent@3.0.0: + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + + reduce-flatten@2.0.0: {} + + refa@0.12.1: + dependencies: + '@eslint-community/regexpp': 4.12.1 + + reflect.getprototypeof@1.0.9: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + dunder-proto: 1.0.1 + es-abstract: 1.23.8 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + gopd: 1.2.0 + which-builtin-type: 1.2.1 + + regenerator-runtime@0.14.1: {} + + regexp-ast-analysis@0.7.1: + dependencies: + '@eslint-community/regexpp': 4.12.1 + refa: 0.12.1 + + regexp-tree@0.1.27: {} + + regexp.prototype.flags@1.5.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-errors: 1.3.0 + set-function-name: 2.0.2 + + regjsparser@0.12.0: + dependencies: + jsesc: 3.0.2 + + regl@1.6.1: {} + + repeat-string@1.6.1: {} + + require-directory@2.1.1: {} + + require-from-string@2.0.2: {} + + requires-port@1.0.0: {} + + resize-observer-polyfill@1.5.1: {} + + resolve-from@4.0.0: {} + + resolve-from@5.0.0: {} + + resolve-global@1.0.0: + dependencies: + global-dirs: 0.1.1 + + resolve-pkg-maps@1.0.0: {} + + resolve-protobuf-schema@2.1.0: + dependencies: + protocol-buffers-schema: 3.6.0 + + resolve@1.22.10: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + restore-cursor@4.0.0: + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + + reusify@1.0.4: {} + + rfdc@1.4.1: {} + + right-align@0.1.3: + dependencies: + align-text: 0.1.4 + + robust-predicates@3.0.2: {} + + rolldown-plugin-dts@0.15.6(rolldown@1.1.2)(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)): + dependencies: + '@babel/generator': 7.28.3 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 + ast-kit: 2.1.2 + birpc: 2.5.0 + debug: 4.4.1 + dts-resolver: 2.1.1 + get-tsconfig: 4.10.1 + rolldown: 1.1.2 + optionalDependencies: + typescript: 5.8.3 + vue-tsc: 3.0.8(typescript@5.8.3) + transitivePeerDependencies: + - oxc-resolver + - supports-color + + rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1): + dependencies: + '@oxc-project/runtime': 0.92.0 + fdir: 6.5.0(picomatch@4.0.3) + lightningcss: 1.30.1 + picomatch: 4.0.3 + postcss: 8.5.6 + rolldown: 1.0.0-beta.40 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 20.19.17 + esbuild: 0.25.10 + fsevents: 2.3.3 + jiti: 2.6.0 + less: 4.4.1 + terser: 5.37.0 + yaml: 2.8.1 + + rolldown@1.0.0-beta.40: + dependencies: + '@oxc-project/types': 0.92.0 + '@rolldown/pluginutils': 1.0.0-beta.40 + ansis: 4.1.0 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.0.0-beta.40 + '@rolldown/binding-darwin-arm64': 1.0.0-beta.40 + '@rolldown/binding-darwin-x64': 1.0.0-beta.40 + '@rolldown/binding-freebsd-x64': 1.0.0-beta.40 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.40 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.40 + '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.40 + '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.40 + '@rolldown/binding-linux-x64-musl': 1.0.0-beta.40 + '@rolldown/binding-openharmony-arm64': 1.0.0-beta.40 + '@rolldown/binding-wasm32-wasi': 1.0.0-beta.40 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.40 + '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.40 + '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.40 + + rolldown@1.1.2: + dependencies: + '@oxc-project/types': 0.137.0 + '@rolldown/pluginutils': 1.0.1 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.1.2 + '@rolldown/binding-darwin-arm64': 1.1.2 + '@rolldown/binding-darwin-x64': 1.1.2 + '@rolldown/binding-freebsd-x64': 1.1.2 + '@rolldown/binding-linux-arm-gnueabihf': 1.1.2 + '@rolldown/binding-linux-arm64-gnu': 1.1.2 + '@rolldown/binding-linux-arm64-musl': 1.1.2 + '@rolldown/binding-linux-ppc64-gnu': 1.1.2 + '@rolldown/binding-linux-s390x-gnu': 1.1.2 + '@rolldown/binding-linux-x64-gnu': 1.1.2 + '@rolldown/binding-linux-x64-musl': 1.1.2 + '@rolldown/binding-openharmony-arm64': 1.1.2 + '@rolldown/binding-wasm32-wasi': 1.1.2 + '@rolldown/binding-win32-arm64-msvc': 1.1.2 + '@rolldown/binding-win32-x64-msvc': 1.1.2 + + rollup@0.25.8: + dependencies: + chalk: 1.1.3 + minimist: 1.2.8 + source-map-support: 0.3.3 + + rollup@4.46.3: + dependencies: + '@types/estree': 1.0.8 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.46.3 + '@rollup/rollup-android-arm64': 4.46.3 + '@rollup/rollup-darwin-arm64': 4.46.3 + '@rollup/rollup-darwin-x64': 4.46.3 + '@rollup/rollup-freebsd-arm64': 4.46.3 + '@rollup/rollup-freebsd-x64': 4.46.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.46.3 + '@rollup/rollup-linux-arm-musleabihf': 4.46.3 + '@rollup/rollup-linux-arm64-gnu': 4.46.3 + '@rollup/rollup-linux-arm64-musl': 4.46.3 + '@rollup/rollup-linux-loongarch64-gnu': 4.46.3 + '@rollup/rollup-linux-ppc64-gnu': 4.46.3 + '@rollup/rollup-linux-riscv64-gnu': 4.46.3 + '@rollup/rollup-linux-riscv64-musl': 4.46.3 + '@rollup/rollup-linux-s390x-gnu': 4.46.3 + '@rollup/rollup-linux-x64-gnu': 4.46.3 + '@rollup/rollup-linux-x64-musl': 4.46.3 + '@rollup/rollup-win32-arm64-msvc': 4.46.3 + '@rollup/rollup-win32-ia32-msvc': 4.46.3 + '@rollup/rollup-win32-x64-msvc': 4.46.3 + fsevents: 2.3.3 + + rou3@0.7.3: {} + + rrweb-cssom@0.6.0: {} + + rrweb-cssom@0.7.1: {} + + run-applescript@7.0.0: {} + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + rw@1.3.3: {} + + safe-array-concat@1.1.3: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + has-symbols: 1.1.0 + isarray: 2.0.5 + + safe-buffer@5.1.2: {} + + safe-buffer@5.2.1: {} + + safe-push-apply@1.0.0: + dependencies: + es-errors: 1.3.0 + isarray: 2.0.5 + + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-regex: 1.2.1 + + safer-buffer@2.1.2: {} + + sax@1.4.1: + optional: true + + saxes@6.0.0: + dependencies: + xmlchars: 2.2.0 + + scroll-into-view-if-needed@2.2.31: + dependencies: + compute-scroll-into-view: 1.0.20 + + scslre@0.3.0: + dependencies: + '@eslint-community/regexpp': 4.12.1 + refa: 0.12.1 + regexp-ast-analysis: 0.7.1 + + scule@1.3.0: {} + + semver@5.7.2: {} + + semver@6.3.1: {} + + semver@7.6.0: + dependencies: + lru-cache: 6.0.0 + + semver@7.6.3: {} + + semver@7.7.2: {} + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.6 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + + set-function-name@2.0.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + + set-value@2.0.1: + dependencies: + extend-shallow: 2.0.1 + is-extendable: 0.1.1 + is-plain-object: 2.0.4 + split-string: 3.1.0 + + shallow-equal@1.2.1: {} + + shebang-command@1.2.0: + dependencies: + shebang-regex: 1.0.0 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@1.0.0: {} + + shebang-regex@3.0.0: {} + + shell-quote@1.8.2: {} + + side-channel-list@1.0.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.3 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + object-inspect: 1.13.3 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + object-inspect: 1.13.3 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.3 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + + siginfo@2.0.0: {} + + signal-exit@3.0.7: {} + + signal-exit@4.1.0: {} + + sirv@3.0.1: + dependencies: + '@polka/url': 1.0.0-next.28 + mrmime: 2.0.0 + totalist: 3.0.1 + + sisteransi@1.0.5: {} + + size-sensor@1.0.2: {} + + sjcl@1.0.9: {} + + slice-ansi@5.0.0: + dependencies: + ansi-styles: 6.2.1 + is-fullwidth-code-point: 4.0.0 + + sm-crypto@0.4.0: + dependencies: + jsbn: 1.1.0 + + sort-asc@0.2.0: {} + + sort-desc@0.2.0: {} + + sort-object@3.0.3: + dependencies: + bytewise: 1.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + sort-asc: 0.2.0 + sort-desc: 0.2.0 + union-value: 1.0.1 + + source-map-js@1.2.1: {} + + source-map-support@0.3.3: + dependencies: + source-map: 0.1.32 + + source-map-support@0.5.21: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map@0.1.32: + dependencies: + amdefine: 1.0.1 + + source-map@0.5.7: {} + + source-map@0.6.1: {} + + spdx-correct@3.2.0: + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.20 + + spdx-exceptions@2.5.0: {} + + spdx-expression-parse@3.0.1: + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.20 + + spdx-expression-parse@4.0.0: + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.20 + + spdx-license-ids@3.0.20: {} + + splaytree@3.1.2: {} + + split-string@3.1.0: + dependencies: + extend-shallow: 3.0.2 + + split2@3.2.2: + dependencies: + readable-stream: 3.6.2 + + split2@4.2.0: {} + + srvx@0.8.7: + dependencies: + cookie-es: 2.0.0 + + stackback@0.0.2: {} + + std-env@3.8.0: {} + + std-env@3.9.0: {} + + string-argv@0.3.2: {} + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@5.1.2: + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + + string.prototype.padend@3.1.6: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.8 + es-object-atoms: 1.0.0 + + string.prototype.trim@1.2.10: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.23.8 + es-object-atoms: 1.0.0 + has-property-descriptors: 1.0.2 + + string.prototype.trimend@1.0.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + string_decoder@0.10.31: {} + + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + strip-ansi@3.0.1: + dependencies: + ansi-regex: 2.1.1 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.0: + dependencies: + ansi-regex: 6.1.0 + + strip-bom@3.0.0: {} + + strip-final-newline@2.0.0: {} + + strip-final-newline@3.0.0: {} + + strip-indent@3.0.0: + dependencies: + min-indent: 1.0.1 + + strip-indent@4.1.0: {} + + strip-json-comments@3.1.1: {} + + strip-literal@3.0.0: + dependencies: + js-tokens: 9.0.1 + + stylis@4.2.0: {} + + stylis@4.3.4: {} + + supercluster@7.1.5: + dependencies: + kdbush: 3.0.0 + + supercluster@8.0.1: + dependencies: + kdbush: 4.0.2 + + supports-color@2.0.0: {} + + supports-color@5.5.0: + dependencies: + has-flag: 3.0.0 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-preserve-symlinks-flag@1.0.0: {} + + symbol-tree@3.2.4: {} + + synckit@0.6.2: + dependencies: + tslib: 2.8.1 + + synckit@0.9.3: + dependencies: + '@pkgr/core': 0.1.2 + tslib: 2.8.1 + + table-layout@1.0.2: + dependencies: + array-back: 4.0.2 + deep-extend: 0.6.0 + typical: 5.2.0 + wordwrapjs: 4.0.1 + + tapable@2.2.1: {} + + tape@4.17.0: + dependencies: + '@ljharb/resumer': 0.0.1 + '@ljharb/through': 2.3.13 + call-bind: 1.0.8 + deep-equal: 1.1.2 + defined: 1.0.1 + dotignore: 0.1.2 + for-each: 0.3.3 + glob: 7.2.3 + has: 1.0.4 + inherits: 2.0.4 + is-regex: 1.1.4 + minimist: 1.2.8 + mock-property: 1.0.3 + object-inspect: 1.12.3 + resolve: 1.22.10 + string.prototype.trim: 1.2.10 + + tar@6.2.1: + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 5.0.0 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 + + terser@5.37.0: + dependencies: + '@jridgewell/source-map': 0.3.6 + acorn: 8.15.0 + commander: 2.20.3 + source-map-support: 0.5.21 + optional: true + + text-extensions@2.4.0: {} + + throttle-debounce@5.0.2: {} + + through2@0.4.2: + dependencies: + readable-stream: 1.0.34 + xtend: 2.1.2 + + through2@4.0.2: + dependencies: + readable-stream: 3.6.2 + + through@2.3.8: {} + + tinybench@2.9.0: {} + + tinyexec@0.3.2: {} + + tinyexec@1.0.1: {} + + tinyglobby@0.2.14: + dependencies: + fdir: 6.5.0(picomatch@4.0.2) + picomatch: 4.0.2 + + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + + tinypool@1.1.1: {} + + tinyqueue@2.0.3: {} + + tinyrainbow@2.0.0: {} + + tinyspy@4.0.3: {} + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + toml-eslint-parser@0.10.0: + dependencies: + eslint-visitor-keys: 3.4.3 + + totalist@3.0.1: {} + + tough-cookie@4.1.4: + dependencies: + psl: 1.15.0 + punycode: 2.3.1 + universalify: 0.2.0 + url-parse: 1.5.10 + + tr46@4.1.1: + dependencies: + punycode: 2.3.1 + + tr46@5.0.0: + dependencies: + punycode: 2.3.1 + + tree-kill@1.2.2: {} + + treeify@1.1.0: {} + + trim-newlines@3.0.1: {} + + ts-api-utils@2.1.0(typescript@5.8.3): + dependencies: + typescript: 5.8.3 + + ts-declaration-location@1.0.7(typescript@5.8.3): + dependencies: + picomatch: 4.0.3 + typescript: 5.8.3 + + ts-node@10.9.2(@types/node@20.19.17)(typescript@5.8.3): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.19.17 + acorn: 8.14.0 + acorn-walk: 8.3.4 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.8.3 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + + tsdown@0.14.1(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)): + dependencies: + ansis: 4.1.0 + cac: 6.7.14 + chokidar: 4.0.3 + debug: 4.4.1 + diff: 8.0.2 + empathic: 2.0.0 + hookable: 5.5.3 + rolldown: 1.1.2 + rolldown-plugin-dts: 0.15.6(rolldown@1.1.2)(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)) + semver: 7.7.2 + tinyexec: 1.0.1 + tinyglobby: 0.2.14 + tree-kill: 1.2.2 + unconfig: 7.3.2 + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - '@typescript/native-preview' + - oxc-resolver + - supports-color + - vue-tsc + + tslib@1.14.1: {} + + tslib@2.3.0: {} + + tslib@2.8.1: {} + + tsx@3.14.0: + dependencies: + esbuild: 0.18.20 + get-tsconfig: 4.8.1 + source-map-support: 0.5.21 + optionalDependencies: + fsevents: 2.3.3 + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + type-fest@0.18.1: {} + + type-fest@0.6.0: {} + + type-fest@0.8.1: {} + + type-fest@1.4.0: {} + + type-fest@4.2.0: {} + + typed-array-buffer@1.0.3: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-typed-array: 1.1.15 + + typed-array-byte-length@1.0.3: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + + typed-array-byte-offset@1.0.4: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.9 + + typed-array-length@1.0.7: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.0.0 + reflect.getprototypeof: 1.0.9 + + typescript@5.8.3: {} + + typewise-core@1.2.0: {} + + typewise@1.0.3: + dependencies: + typewise-core: 1.2.0 + + typical@4.0.0: {} + + typical@5.2.0: {} + + ufo@1.5.4: {} + + ufo@1.6.1: {} + + uglify-js@2.8.29: + dependencies: + source-map: 0.5.7 + yargs: 3.10.0 + optionalDependencies: + uglify-to-browserify: 1.0.2 + + uglify-to-browserify@1.0.2: + optional: true + + unbox-primitive@1.1.0: + dependencies: + call-bound: 1.0.3 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 + + unconfig@7.3.2: + dependencies: + '@quansync/fs': 0.1.5 + defu: 6.1.4 + jiti: 2.6.0 + quansync: 0.2.11 + + unconfig@7.3.3: + dependencies: + '@quansync/fs': 0.1.5 + defu: 6.1.4 + jiti: 2.6.0 + quansync: 0.2.11 + + undici-types@6.21.0: {} + + unimport@4.2.0: + dependencies: + acorn: 8.15.0 + escape-string-regexp: 5.0.0 + estree-walker: 3.0.3 + local-pkg: 1.1.1 + magic-string: 0.30.17 + mlly: 1.7.4 + pathe: 2.0.3 + picomatch: 4.0.2 + pkg-types: 2.2.0 + scule: 1.3.0 + strip-literal: 3.0.0 + tinyglobby: 0.2.14 + unplugin: 2.3.6 + unplugin-utils: 0.2.5 + + union-value@1.0.1: + dependencies: + arr-union: 3.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + set-value: 2.0.1 + + unist-util-is@6.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-stringify-position@4.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-parents@6.0.1: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + + unist-util-visit@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + universalify@0.2.0: {} + + universalify@2.0.1: {} + + unocss-preset-chinese@0.3.3(unocss@66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))): + dependencies: + '@unocss/core': 0.62.4 + '@unocss/preset-mini': 0.62.4 + optionalDependencies: + unocss: 66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + + unocss-preset-ease@0.0.3(unocss@66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))): + optionalDependencies: + unocss: 66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + + unocss@66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)): + dependencies: + '@unocss/astro': 66.5.2(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + '@unocss/cli': 66.5.2 + '@unocss/core': 66.5.2 + '@unocss/postcss': 66.5.2(postcss@8.5.6) + '@unocss/preset-attributify': 66.5.2 + '@unocss/preset-icons': 66.5.2 + '@unocss/preset-mini': 66.5.2 + '@unocss/preset-tagify': 66.5.2 + '@unocss/preset-typography': 66.5.2 + '@unocss/preset-uno': 66.5.2 + '@unocss/preset-web-fonts': 66.5.2 + '@unocss/preset-wind': 66.5.2 + '@unocss/preset-wind3': 66.5.2 + '@unocss/preset-wind4': 66.5.2 + '@unocss/transformer-attributify-jsx': 66.5.2 + '@unocss/transformer-compile-class': 66.5.2 + '@unocss/transformer-directives': 66.5.2 + '@unocss/transformer-variant-group': 66.5.2 + '@unocss/vite': 66.5.2(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + optionalDependencies: + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - postcss + - supports-color + + unplugin-auto-import@19.3.0(@vueuse/core@10.11.1(vue@3.5.22(typescript@5.8.3))): + dependencies: + local-pkg: 1.1.1 + magic-string: 0.30.17 + picomatch: 4.0.2 + unimport: 4.2.0 + unplugin: 2.3.6 + unplugin-utils: 0.2.5 + optionalDependencies: + '@vueuse/core': 10.11.1(vue@3.5.22(typescript@5.8.3)) + + unplugin-config@0.1.5(esbuild@0.25.10)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)): + dependencies: + '@kirklin/logger': 0.0.2 + html-entities: 2.5.2 + jsdom: 24.1.3 + unplugin: 1.16.0 + optionalDependencies: + esbuild: 0.25.10 + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + + unplugin-utils@0.2.5: + dependencies: + pathe: 2.0.3 + picomatch: 4.0.3 + + unplugin-utils@0.3.0: + dependencies: + pathe: 2.0.3 + picomatch: 4.0.3 + + unplugin-vue-components@29.1.0(@babel/parser@7.28.4)(vue@3.5.22(typescript@5.8.3)): + dependencies: + chokidar: 3.6.0 + debug: 4.4.3 + local-pkg: 1.1.2 + magic-string: 0.30.19 + mlly: 1.8.0 + tinyglobby: 0.2.15 + unplugin: 2.3.10 + unplugin-utils: 0.3.0 + vue: 3.5.22(typescript@5.8.3) + optionalDependencies: + '@babel/parser': 7.28.4 + transitivePeerDependencies: + - supports-color + + unplugin@1.16.0: + dependencies: + acorn: 8.14.0 + webpack-virtual-modules: 0.6.2 + + unplugin@2.3.10: + dependencies: + '@jridgewell/remapping': 2.3.5 + acorn: 8.15.0 + picomatch: 4.0.3 + webpack-virtual-modules: 0.6.2 + + unplugin@2.3.6: + dependencies: + '@jridgewell/remapping': 2.3.5 + acorn: 8.15.0 + picomatch: 4.0.3 + webpack-virtual-modules: 0.6.2 + + update-browserslist-db@1.1.1(browserslist@4.24.3): + dependencies: + browserslist: 4.24.3 + escalade: 3.2.0 + picocolors: 1.1.1 + + update-browserslist-db@1.1.3(browserslist@4.26.2): + dependencies: + browserslist: 4.26.2 + escalade: 3.2.0 + picocolors: 1.1.1 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + url-parse@1.5.10: + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + + util-deprecate@1.0.2: {} + + v8-compile-cache-lib@3.0.1: {} + + validate-npm-package-license@3.0.4: + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + + viewport-mercator-project@6.2.3: + dependencies: + '@babel/runtime': 7.26.0 + gl-matrix: 3.4.3 + + vite-node@3.2.4(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1): + dependencies: + cac: 6.7.14 + debug: 4.4.1 + es-module-lexer: 1.7.0 + pathe: 2.0.3 + vite: 7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - '@types/node' + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + vite@7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1): + dependencies: + esbuild: 0.25.10 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.46.3 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 20.19.17 + fsevents: 2.3.3 + jiti: 2.6.0 + less: 4.4.1 + lightningcss: 1.30.1 + terser: 5.37.0 + yaml: 2.8.1 + + vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1): + dependencies: + '@types/chai': 5.2.2 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.1 + debug: 4.4.1 + expect-type: 1.2.2 + magic-string: 0.30.17 + pathe: 2.0.3 + picomatch: 4.0.2 + std-env: 3.9.0 + tinybench: 2.9.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.14 + tinypool: 1.1.1 + tinyrainbow: 2.0.0 + vite: 7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/debug': 4.1.12 + '@types/node': 20.19.17 + jsdom: 22.1.0 + transitivePeerDependencies: + - jiti + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + vscode-uri@3.0.8: {} + + vt-pbf@3.1.3: + dependencies: + '@mapbox/point-geometry': 0.1.0 + '@mapbox/vector-tile': 1.3.1 + pbf: 3.3.0 + + vue-component-type-helpers@2.2.0: {} + + vue-demi@0.14.10(vue@3.5.22(typescript@5.8.3)): + dependencies: + vue: 3.5.22(typescript@5.8.3) + + vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + debug: 4.4.3 + eslint: 9.36.0(jiti@2.6.0) + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.6.0 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + vue-flow-layout@0.2.0: {} + + vue-i18n@9.14.5(vue@3.5.22(typescript@5.8.3)): + dependencies: + '@intlify/core-base': 9.14.5 + '@intlify/shared': 9.14.5 + '@vue/devtools-api': 6.6.4 + vue: 3.5.22(typescript@5.8.3) + + vue-router@4.5.1(vue@3.5.22(typescript@5.8.3)): + dependencies: + '@vue/devtools-api': 6.6.4 + vue: 3.5.22(typescript@5.8.3) + + vue-tsc@3.0.8(typescript@5.8.3): + dependencies: + '@volar/typescript': 2.4.23 + '@vue/language-core': 3.0.8(typescript@5.8.3) + typescript: 5.8.3 + + vue-types@3.0.2(vue@3.5.22(typescript@5.8.3)): + dependencies: + is-plain-object: 3.0.1 + vue: 3.5.22(typescript@5.8.3) + + vue@3.5.22(typescript@5.8.3): + dependencies: + '@vue/compiler-dom': 3.5.22 + '@vue/compiler-sfc': 3.5.22 + '@vue/runtime-dom': 3.5.22 + '@vue/server-renderer': 3.5.22(vue@3.5.22(typescript@5.8.3)) + '@vue/shared': 3.5.22 + optionalDependencies: + typescript: 5.8.3 + + w3c-xmlserializer@4.0.0: + dependencies: + xml-name-validator: 4.0.0 + + w3c-xmlserializer@5.0.0: + dependencies: + xml-name-validator: 5.0.0 + + warning@4.0.3: + dependencies: + loose-envify: 1.4.0 + + web-worker-helper@0.0.3: {} + + webidl-conversions@7.0.0: {} + + webpack-virtual-modules@0.6.2: {} + + whatwg-encoding@2.0.0: + dependencies: + iconv-lite: 0.6.3 + + whatwg-encoding@3.1.1: + dependencies: + iconv-lite: 0.6.3 + + whatwg-mimetype@3.0.0: {} + + whatwg-mimetype@4.0.0: {} + + whatwg-url@12.0.1: + dependencies: + tr46: 4.1.1 + webidl-conversions: 7.0.0 + + whatwg-url@14.1.0: + dependencies: + tr46: 5.0.0 + webidl-conversions: 7.0.0 + + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.1 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.3 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.0.0 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.0.10 + is-regex: 1.2.1 + is-weakref: 1.1.0 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.18 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 + + which-typed-array@1.1.18: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.3 + for-each: 0.3.3 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + + which@1.3.1: + dependencies: + isexe: 2.0.0 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + why-is-node-running@2.3.0: + dependencies: + siginfo: 2.0.0 + stackback: 0.0.2 + + window-size@0.1.0: {} + + word-wrap@1.2.5: {} + + wordwrap@0.0.2: {} + + wordwrapjs@4.0.1: + dependencies: + reduce-flatten: 2.0.0 + typical: 5.2.0 + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@8.1.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + + wrappy@1.0.2: {} + + ws@8.18.0: {} + + xml-name-validator@4.0.0: {} + + xml-name-validator@5.0.0: {} + + xmlchars@2.2.0: {} + + xtend@2.1.2: + dependencies: + object-keys: 0.4.0 + + y18n@5.0.8: {} + + yallist@3.1.1: {} + + yallist@4.0.0: {} + + yaml-eslint-parser@1.3.0: + dependencies: + eslint-visitor-keys: 3.4.3 + yaml: 2.6.1 + + yaml@1.10.2: {} + + yaml@2.3.1: {} + + yaml@2.6.1: {} + + yaml@2.8.1: {} + + yargs-parser@20.2.9: {} + + yargs-parser@21.1.1: {} + + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + + yargs@3.10.0: + dependencies: + camelcase: 1.2.1 + cliui: 2.1.0 + decamelize: 1.2.0 + window-size: 0.1.0 + + yn@3.1.1: {} + + yocto-queue@0.1.0: {} + + zrender@6.0.0: + dependencies: + tslib: 2.3.0 + + zwitch@2.0.4: {} diff --git a/frontend/pnpm-workspace.yaml b/frontend/pnpm-workspace.yaml new file mode 100644 index 0000000..efc037a --- /dev/null +++ b/frontend/pnpm-workspace.yaml @@ -0,0 +1,2 @@ +onlyBuiltDependencies: + - esbuild diff --git a/frontend/public/_app.config.js b/frontend/public/_app.config.js new file mode 100644 index 0000000..e69de29 diff --git a/frontend/public/loading.js b/frontend/public/loading.js new file mode 100644 index 0000000..56eb290 --- /dev/null +++ b/frontend/public/loading.js @@ -0,0 +1,211 @@ +/** + * loading 占位 + * 解决首次加载时白屏的问题 + */ +(function () { + const div = document.createElement('div') + const body = document.querySelector('body') + body.appendChild(div) + div.setAttribute('id', 'loading-app') + if (div && div.innerHTML === '') { + div.innerHTML = ` + + +
+
+
+ + + + + + +
+
+
+ 正在加载资源 +
+
+ 初次加载资源可能需要较多时间 请耐心等待 +
+
+ ` + } +})() diff --git a/frontend/public/logo.png b/frontend/public/logo.png new file mode 100644 index 0000000..09fad74 Binary files /dev/null and b/frontend/public/logo.png differ diff --git a/frontend/scripts/dir-tree.ts b/frontend/scripts/dir-tree.ts new file mode 100644 index 0000000..989c08d --- /dev/null +++ b/frontend/scripts/dir-tree.ts @@ -0,0 +1,23 @@ +import dirTree from 'directory-tree' +import treeify from 'treeify' + +// eslint-disable-next-line node/prefer-global/process +const filteredTree = dirTree(process.cwd(), { + exclude: [/node_modules/, /\.git/, /\.vscode/, /\.idea/], +}) + +const children = filteredTree.children ?? [] + +function genObj(children: any[]) { + const obj: Record = {} + for (const child of children) + obj[child.name] = (child?.children && child.children.length > 0) ? genObj(child.children) : null + + return obj +} + +const obj = genObj(children) + +const md = treeify.asTree(obj, true, null) + +console.log(md) diff --git a/frontend/scripts/gen-unocss.ts b/frontend/scripts/gen-unocss.ts new file mode 100644 index 0000000..27cf8d1 --- /dev/null +++ b/frontend/scripts/gen-unocss.ts @@ -0,0 +1,35 @@ +import path from 'node:path' +import { theme } from 'ant-design-vue' +import fsExtra from 'fs-extra' +import lodash from 'lodash' + +const { defaultAlgorithm, defaultSeed } = theme + +const mapToken = defaultAlgorithm(defaultSeed) + +function formatKey(key: string, prefixCls: string) { + return `${prefixCls}${lodash.kebabCase(key)}` +} +const prefixCls = '--pro-ant-' + +const variables: { + colors: Record +} = { + colors: {}, +} +let colorTheme = '' +for (const key in mapToken) { + if (key.startsWith('color')) { + const cssVar = formatKey(key, prefixCls) + const colors = variables.colors + const themeKey = lodash.camelCase(key.slice(5)) + colors[themeKey] = `var(${cssVar})` + colorTheme += `${themeKey}\n` + } +} + +// eslint-disable-next-line node/prefer-global/process +fsExtra.outputFile(path.resolve(process.cwd(), './themes/antd-uno-theme.json'), JSON.stringify(variables, null, 2)) + +// eslint-disable-next-line node/prefer-global/process +fsExtra.outputFile(path.resolve(process.cwd(), './themes/color-theme-var.md'), colorTheme) diff --git a/frontend/scripts/to-js.ts b/frontend/scripts/to-js.ts new file mode 100644 index 0000000..7f89214 --- /dev/null +++ b/frontend/scripts/to-js.ts @@ -0,0 +1,17 @@ +import { resolve } from 'node:path' +import * as process from 'node:process' +import { transformSync } from 'esbuild' +import fsExtra from 'fs-extra' + +const themeConfig = resolve(process.cwd(), './src/config/default-setting.ts') +const code = fsExtra.readFileSync(themeConfig, 'utf-8') + +function toJs(code: string) { + const res = transformSync(code, { + target: 'esnext', + loader: 'ts', + }) + console.log(res.code) +} + +toJs(code) diff --git a/frontend/servers/routes/401.ts b/frontend/servers/routes/401.ts new file mode 100644 index 0000000..e871566 --- /dev/null +++ b/frontend/servers/routes/401.ts @@ -0,0 +1,10 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler((event) => { + // setResponseStatus(event, 401) + event.res.status = 401 + return { + code: 401, + msg: '请先登录', + } +}) diff --git a/frontend/servers/routes/403.ts b/frontend/servers/routes/403.ts new file mode 100644 index 0000000..64e774f --- /dev/null +++ b/frontend/servers/routes/403.ts @@ -0,0 +1,9 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler((event) => { + event.res.status = 403 + return { + code: 403, + msg: '请先登录', + } +}) diff --git a/frontend/servers/routes/500.ts b/frontend/servers/routes/500.ts new file mode 100644 index 0000000..960d086 --- /dev/null +++ b/frontend/servers/routes/500.ts @@ -0,0 +1,9 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler((event) => { + event.res.status = 500 + return { + code: 500, + msg: '服务器错误', + } +}) diff --git a/frontend/servers/routes/index.ts b/frontend/servers/routes/index.ts new file mode 100644 index 0000000..e2d7d57 --- /dev/null +++ b/frontend/servers/routes/index.ts @@ -0,0 +1,5 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(() => { + return { nitro: 'Hello Antdv Pro' } +}) diff --git a/frontend/servers/routes/list/[id].delete.ts b/frontend/servers/routes/list/[id].delete.ts new file mode 100644 index 0000000..b9d008b --- /dev/null +++ b/frontend/servers/routes/list/[id].delete.ts @@ -0,0 +1,16 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler((event) => { + const id = event.context.params?.id as any + if (typeof id !== 'number') { + event.res.status = 403 + return { + code: 403, + msg: '删除失败', + } + } + return { + code: 200, + msg: '删除成功', + } +}) diff --git a/frontend/servers/routes/list/basic-list.post.ts b/frontend/servers/routes/list/basic-list.post.ts new file mode 100644 index 0000000..da0ded0 --- /dev/null +++ b/frontend/servers/routes/list/basic-list.post.ts @@ -0,0 +1,80 @@ +import dayjs from 'dayjs' +import { defineEventHandler } from 'h3' +import { cloneDeep } from 'lodash-es' + +export default defineEventHandler(async (_event) => { + const dataList = [ + { + title: 'Aipay', + link: 'https://gw.alipayobjects.com/zos/rmsportal/WdGqmHpayyMjiEhcKoVE.png', + percent: 57, + content: '一生那么短,遗忘又那么漫长', + }, + { + title: 'Ant Design Vue', + link: 'https://www.antdv.com/assets/logo.1ef800a8.svg', + percent: 60, + status: 'active', + content: '只有在梦想中,人才能真正自由', + }, + { + title: 'Vue', + link: 'https://gw.alipayobjects.com/zos/rmsportal/ComBAopevLwENQdKWiIn.png', + percent: 70, + status: 'exception', + content: '生命就像一盒巧克力,结果往往出人意料', + }, + { + title: 'Vite', + link: 'https://cn.vitejs.dev/logo.svg', + percent: 100, + status: 'active', + content: '有时,你必须进入别人的世界去发现自己的世界缺少什么', + }, + { + title: 'React', + link: 'https://gw.alipayobjects.com/zos/rmsportal/kZzEzemZyKLKFsojXItE.png', + percent: 50, + status: 'exception', + content: '希望是件美丽的东西,也许是最好的东西', + }, + { + title: 'Antdv Pro', + link: '/logo.svg', + percent: 80, + status: 'active', + content: '人并非生来就伟大,而是越活越伟大', + }, + { + title: 'Webpack', + link: 'https://gw.alipayobjects.com/zos/rmsportal/nxkuOJlFJuAUhzlMTCEe.png', + percent: 58, + content: '不管何时何地,做你想做的事永远都不嫌晚', + }, + { + title: 'Angular', + link: 'https://gw.alipayobjects.com/zos/rmsportal/zOsKZmFRdUtvpqCImOVY.png', + percent: 70, + status: 'active', + content: '你要一直不停地往前走,不然你不会知道生活还会给你什么', + }, + ] + + const data: any[] = [] + + // 数据复制 + for (let i = 0; i < 1000; i++) { + const arr = cloneDeep(dataList) + data.push(...arr) + } + + // 配置任务时间 + for (let i = 0; i < data.length; i++) + data[i].start = dayjs().subtract(i, 'hour').format('YYYY-MM-DD HH:mm') + + return { + code: 200, + msg: '获取成功', + data, + } +}) diff --git a/frontend/servers/routes/list/consult-list.post.ts b/frontend/servers/routes/list/consult-list.post.ts new file mode 100644 index 0000000..d3f7606 --- /dev/null +++ b/frontend/servers/routes/list/consult-list.post.ts @@ -0,0 +1,82 @@ +import dayjs from 'dayjs' +import { defineEventHandler, readBody } from 'h3' + +enum STATUS { + OFF = '0', + RUNNING = '1', + ONLINE = '2', + ERROR = '3', +} + +export default defineEventHandler(async (_event) => { + const body = (await readBody(_event)) as { name?: string } + + const dataList = [ + { + id: 1, + name: '第一个任务', + callNo: 2000, + desc: '一生那么短,遗忘又那么漫长', + status: STATUS.ONLINE, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 2, + name: 'Ant Design Vue', + callNo: 200, + desc: '有时,你必须进入别人的世界去发现自己的世界缺少什么', + status: STATUS.OFF, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 3, + name: 'Vue', + callNo: 2010, + desc: '一生那么短,遗忘又那么漫长', + status: STATUS.ERROR, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 4, + name: 'Vite', + callNo: 20300, + desc: '希望是件美丽的东西,也许是最好的东西', + status: STATUS.ERROR, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 5, + name: 'React', + callNo: 2000, + desc: '人并非生来就伟大,而是越活越伟大', + status: STATUS.ONLINE, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 6, + name: 'Antdv Pro', + callNo: 2000, + desc: '不管何时何地,做你想做的事永远都不嫌晚', + status: STATUS.OFF, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 7, + name: 'Webpack', + callNo: 2000, + desc: '你要一直不停地往前走,不然你不会知道生活还会给你什么', + status: STATUS.ONLINE, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + ] + const data = dataList.filter((i) => { + if (body.name) + return body.name === i.name + else return true + }) + return { + code: 200, + msg: '获取成功', + data, + } +}) diff --git a/frontend/servers/routes/list/create.post.ts b/frontend/servers/routes/list/create.post.ts new file mode 100644 index 0000000..100eeb4 --- /dev/null +++ b/frontend/servers/routes/list/create.post.ts @@ -0,0 +1,10 @@ +import { defineEventHandler, readBody } from 'h3' + +export default defineEventHandler(async (event) => { + const body = await readBody(event) + console.log(body) + return { + code: 200, + msg: '创建成功', + } +}) diff --git a/frontend/servers/routes/list/crud-table.post.ts b/frontend/servers/routes/list/crud-table.post.ts new file mode 100644 index 0000000..f469e68 --- /dev/null +++ b/frontend/servers/routes/list/crud-table.post.ts @@ -0,0 +1,63 @@ +import { defineEventHandler, readBody } from 'h3' + +export default defineEventHandler(async (_event) => { + const body = await readBody(_event) + + const dataList = [ + { + id: 1, + name: '第一个任务', + value: '2000', + remark: '一生那么短,遗忘又那么漫长', + }, + { + id: 2, + name: 'Ant Design Vue', + value: '200', + remark: '有时,你必须进入别人的世界去发现自己的世界缺少什么', + }, + { + id: 3, + name: 'Vue', + value: '2010', + remark: '一生那么短,遗忘又那么漫长', + }, + { + id: 4, + name: 'Vite', + value: '20300', + remark: '希望是件美丽的东西,也许是最好的东西', + }, + { + id: 5, + name: 'React', + value: '2000', + remark: '人并非生来就伟大,而是越活越伟大', + }, + { + id: 6, + name: 'Antdv Pro', + value: '2000', + remark: '不管何时何地,做你想做的事永远都不嫌晚', + }, + { + id: 7, + name: 'Webpack', + value: '2000', + remark: '你要一直不停地往前走,不然你不会知道生活还会给你什么', + }, + ] + const data = dataList.filter((i) => { + if (body.name) + return body.name === i.name + else return true + }) + return { + code: 200, + msg: '获取成功', + data: { + records: data, + total: data.length, + }, + } +}) diff --git a/frontend/servers/routes/list/index.post.ts b/frontend/servers/routes/list/index.post.ts new file mode 100644 index 0000000..7fb52d2 --- /dev/null +++ b/frontend/servers/routes/list/index.post.ts @@ -0,0 +1,22 @@ +import { defineEventHandler, readBody } from 'h3' + +export default defineEventHandler(async (event) => { + const body = await readBody(event) + + const dataList = [] + for (let i = 0; i < 10; i++) { + const item = { + id: i + 1, + title: `${body.title ?? '测试'}_${i}`, + username: `${body.username ?? 'test'}_${i}`, + password: `${body.username ?? 'test'}_pass_${i}`, + } + dataList.push(item) + } + + return { + code: 200, + msg: '获取成功', + data: dataList, + } +}) diff --git a/frontend/servers/routes/list/index.put.ts b/frontend/servers/routes/list/index.put.ts new file mode 100644 index 0000000..62f63a5 --- /dev/null +++ b/frontend/servers/routes/list/index.put.ts @@ -0,0 +1,8 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(async (_event) => { + return { + code: 200, + msg: '编辑成功', + } +}) diff --git a/frontend/servers/routes/login.post.ts b/frontend/servers/routes/login.post.ts new file mode 100644 index 0000000..3854247 --- /dev/null +++ b/frontend/servers/routes/login.post.ts @@ -0,0 +1,33 @@ +import { defineEventHandler, readBody } from 'h3' + +export default defineEventHandler(async (event) => { + const body: any = await readBody(event) + const { type } = body + const success = { + code: 200, + data: { + token: '1234567890', + }, + msg: '登录成功', + } + if (type !== 'mobile') { + // eslint-disable-next-line node/prefer-global/buffer + success.data.token = Buffer.from(body.username).toString('base64') + // 判断用户名密码是否正确 + if (body.username === 'admin' && body.password === 'admin') + return success + + if (body.username === 'user' && body.password === 'user') + return success + } + else { + return success + } + + // setResponseStatus(event, 403) + event.res.status = 403 + return { + code: 401, + msg: '用户名或密码错误', + } +}) diff --git a/frontend/servers/routes/logout.ts b/frontend/servers/routes/logout.ts new file mode 100644 index 0000000..38802b5 --- /dev/null +++ b/frontend/servers/routes/logout.ts @@ -0,0 +1,8 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(() => { + return { + code: 200, + msg: 'success', + } +}) diff --git a/frontend/servers/routes/menu/index.ts b/frontend/servers/routes/menu/index.ts new file mode 100644 index 0000000..171da7c --- /dev/null +++ b/frontend/servers/routes/menu/index.ts @@ -0,0 +1,474 @@ +import { defineEventHandler } from 'h3' + +const menuData = [ + { + id: 2, + parentId: null, + title: '分析页', + icon: 'DashboardOutlined', + component: '/dashboard/analysis', + path: '/dashboard/analysis', + name: 'DashboardAnalysis', + keepAlive: true, + locale: 'menu.dashboard.analysis', + }, + { + id: 1, + parentId: null, + title: '仪表盘', + icon: 'DashboardOutlined', + component: 'RouteView', + redirect: '/dashboard/analysis', + path: '/dashboard', + name: 'Dashboard', + locale: 'menu.dashboard', + }, + { + id: 3, + parentId: null, + title: '表单页', + icon: 'FormOutlined', + component: 'RouteView', + redirect: '/form/basic', + path: '/form', + name: 'Form', + locale: 'menu.form', + }, + { + id: 5, + parentId: null, + title: '链接', + icon: 'LinkOutlined', + component: 'RouteView', + redirect: '/link/iframe', + path: '/link', + name: 'Link', + locale: 'menu.link', + + }, + { + id: 6, + parentId: 5, + title: 'AntDesign', + url: 'https://ant.design/', + component: 'Iframe', + path: '/link/iframe', + name: 'LinkIframe', + keepAlive: true, + locale: 'menu.link.iframe', + }, + { + id: 7, + parentId: 5, + title: 'AntDesignVue', + url: 'https://antdv.com/', + component: 'Iframe', + path: '/link/antdv', + name: 'LinkAntdv', + keepAlive: true, + locale: 'menu.link.antdv', + }, + { + id: 8, + parentId: 5, + path: 'https://www.baidu.com', + name: 'LinkExternal', + title: '跳转百度', + locale: 'menu.link.external', + }, + { + id: 9, + parentId: null, + title: '菜单', + icon: 'BarsOutlined', + component: 'RouteView', + path: '/menu', + redirect: '/menu/menu1', + name: 'Menu', + locale: 'menu.menu', + }, + { + id: 10, + parentId: 9, + title: '菜单1', + component: '/menu/menu1', + path: '/menu/menu1', + name: 'MenuMenu11', + keepAlive: true, + locale: 'menu.menu.menu1', + }, + { + id: 11, + parentId: 9, + title: '菜单2', + component: '/menu/menu2', + path: '/menu/menu2', + keepAlive: true, + locale: 'menu.menu.menu2', + }, + { + id: 12, + parentId: 9, + path: '/menu/menu3', + redirect: '/menu/menu3/menu1', + title: '菜单1-1', + component: 'RouteView', + locale: 'menu.menu.menu3', + }, + { + id: 13, + parentId: 12, + path: '/menu/menu3/menu1', + component: '/menu/menu-1-1/menu1', + title: '菜单1-1-1', + keepAlive: true, + locale: 'menu.menu3.menu1', + }, + { + id: 14, + parentId: 12, + path: '/menu/menu3/menu2', + component: '/menu/menu-1-1/menu2', + title: '菜单1-1-2', + keepAlive: true, + locale: 'menu.menu3.menu2', + }, + { + id: 15, + path: '/access', + component: 'RouteView', + redirect: '/access/common', + title: '权限模块', + name: 'Access', + parentId: null, + icon: 'ClusterOutlined', + locale: 'menu.access', + }, + { + id: 16, + parentId: 15, + path: '/access/common', + title: '通用权限', + name: 'AccessCommon', + component: '/access/common', + locale: 'menu.access.common', + }, + { + id: 17, + parentId: 15, + path: '/access/user', + title: '普通用户', + name: 'AccessUser', + component: '/access/user', + locale: 'menu.access.user', + }, + { + id: 19, + parentId: null, + title: '异常页', + icon: 'WarningOutlined', + component: 'RouteView', + redirect: '/exception/403', + path: '/exception', + name: 'Exception', + locale: 'menu.exception', + }, + { + id: 20, + parentId: 19, + path: '/exception/403', + title: '403', + name: '403', + component: '/exception/403', + locale: 'menu.exception.not-permission', + }, + { + id: 21, + parentId: 19, + path: '/exception/404', + title: '404', + name: '404', + component: '/exception/404', + locale: 'menu.exception.not-find', + }, + { + id: 22, + parentId: 19, + path: '/exception/500', + title: '500', + name: '500', + component: '/exception/500', + locale: 'menu.exception.server-error', + }, + { + id: 23, + parentId: null, + title: '结果页', + icon: 'CheckCircleOutlined', + component: 'RouteView', + redirect: '/result/success', + path: '/result', + name: 'Result', + locale: 'menu.result', + }, + { + id: 24, + parentId: 23, + path: '/result/success', + title: '成功页', + name: 'ResultSuccess', + component: '/result/success', + locale: 'menu.result.success', + }, + { + id: 25, + parentId: 23, + path: '/result/fail', + title: '失败页', + name: 'ResultFail', + component: '/result/fail', + locale: 'menu.result.fail', + }, + { + id: 26, + parentId: null, + title: '列表页', + icon: 'TableOutlined', + component: 'RouteView', + redirect: '/list/card-list', + path: '/list', + name: 'List', + locale: 'menu.list', + }, + { + id: 27, + parentId: 26, + path: '/list/card-list', + title: '卡片列表', + name: 'ListCard', + component: '/list/card-list', + locale: 'menu.list.card-list', + }, + { + id: 28, + parentId: null, + title: '详情页', + icon: 'ProfileOutlined', + component: 'RouteView', + redirect: '/profile/basic', + path: '/profile', + name: 'Profile', + locale: 'menu.profile', + }, + { + id: 29, + parentId: 28, + path: '/profile/basic', + title: '基础详情页', + name: 'ProfileBasic', + component: '/profile/basic/index', + locale: 'menu.profile.basic', + }, + { + id: 30, + parentId: 26, + path: '/list/search-list', + title: '搜索列表', + name: 'SearchList', + component: '/list/search-list', + locale: 'menu.list.search-list', + }, + { + id: 31, + parentId: 30, + path: '/list/search-list/articles', + title: '搜索列表(文章)', + name: 'SearchListArticles', + component: '/list/search-list/articles', + locale: 'menu.list.search-list.articles', + }, + { + id: 32, + parentId: 30, + path: '/list/search-list/projects', + title: '搜索列表(项目)', + name: 'SearchListProjects', + component: '/list/search-list/projects', + locale: 'menu.list.search-list.projects', + }, + { + id: 33, + parentId: 30, + path: '/list/search-list/applications', + title: '搜索列表(应用)', + name: 'SearchListApplications', + component: '/list/search-list/applications', + locale: 'menu.list.search-list.applications', + }, + { + id: 34, + parentId: 26, + path: '/list/basic-list', + title: '标准列表', + name: 'BasicCard', + component: '/list/basic-list', + locale: 'menu.list.basic-list', + }, + { + id: 35, + parentId: 28, + path: '/profile/advanced', + title: '高级详细页', + name: 'ProfileAdvanced', + component: '/profile/advanced/index', + locale: 'menu.profile.advanced', + }, + { + id: 4, + parentId: 3, + title: '基础表单', + component: '/form/basic-form/index', + path: '/form/basic-form', + name: 'FormBasic', + keepAlive: false, + locale: 'menu.form.basic-form', + }, + { + id: 36, + parentId: null, + title: '个人页', + icon: 'UserOutlined', + component: 'RouteView', + redirect: '/account/center', + path: '/account', + name: 'Account', + locale: 'menu.account', + }, + { + id: 37, + parentId: 36, + path: '/account/center', + title: '个人中心', + name: 'AccountCenter', + component: '/account/center', + locale: 'menu.account.center', + }, + { + id: 38, + parentId: 36, + path: '/account/settings', + title: '个人设置', + name: 'AccountSettings', + component: '/account/settings', + locale: 'menu.account.settings', + }, + { + id: 39, + parentId: 3, + title: '分步表单', + component: '/form/step-form/index', + path: '/form/step-form', + name: 'FormStep', + keepAlive: false, + locale: 'menu.form.step-form', + }, + { + id: 40, + parentId: 3, + title: '高级表单', + component: '/form/advanced-form/index', + path: '/form/advanced-form', + name: 'FormAdvanced', + keepAlive: false, + locale: 'menu.form.advanced-form', + }, + { + id: 41, + parentId: 26, + path: '/list/table-list', + title: '查询表格', + name: 'ConsultTable', + component: '/list/table-list', + locale: 'menu.list.consult-table', + }, + { + id: 42, + parentId: 1, + title: '监控页', + component: '/dashboard/monitor', + path: '/dashboard/monitor', + name: 'DashboardMonitor', + keepAlive: true, + locale: 'menu.dashboard.monitor', + }, + { + id: 43, + parentId: 1, + title: '工作台', + component: '/dashboard/workplace', + path: '/dashboard/workplace', + name: 'DashboardWorkplace', + keepAlive: true, + locale: 'menu.dashboard.workplace', + }, + { + id: 44, + parentId: 26, + path: '/list/crud-table', + title: '增删改查表格', + name: 'CrudTable', + component: '/list/crud-table', + locale: 'menu.list.crud-table', + }, + { + id: 45, + parentId: 9, + path: '/menu/menu4', + redirect: '/menu/menu4/menu1', + title: '菜单2-1', + component: 'RouteView', + locale: 'menu.menu.menu4', + }, + { + id: 46, + parentId: 45, + path: '/menu/menu4/menu1', + component: '/menu/menu-2-1/menu1', + title: '菜单2-1-1', + keepAlive: true, + locale: 'menu.menu4.menu1', + }, + { + id: 47, + parentId: 45, + path: '/menu/menu4/menu2', + component: '/menu/menu-2-1/menu2', + title: '菜单2-1-2', + keepAlive: true, + locale: 'menu.menu4.menu2', + }, +] + +export const accessMenuData = [ + { + id: 18, + parentId: 15, + path: '/access/admin', + title: '管理员', + name: 'AccessAdmin', + component: '/access/admin', + locale: 'menu.access.admin', + }, + +] + +export default defineEventHandler((event) => { + const token = event.req.headers.get('Authorization') + // eslint-disable-next-line node/prefer-global/buffer + const username = Buffer.from(token as any, 'base64').toString('utf-8') + return { + code: 200, + msg: '获取成功', + data: [...menuData, ...(username === 'admin' ? accessMenuData : [])], + } +}) diff --git a/frontend/servers/routes/test.delete.ts b/frontend/servers/routes/test.delete.ts new file mode 100644 index 0000000..0b8b401 --- /dev/null +++ b/frontend/servers/routes/test.delete.ts @@ -0,0 +1,8 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(() => { + return { + code: 200, + msg: 'delete', + } +}) diff --git a/frontend/servers/routes/test.post.ts b/frontend/servers/routes/test.post.ts new file mode 100644 index 0000000..7402bf2 --- /dev/null +++ b/frontend/servers/routes/test.post.ts @@ -0,0 +1,8 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(() => { + return { + code: 200, + msg: 'post', + } +}) diff --git a/frontend/servers/routes/test.put.ts b/frontend/servers/routes/test.put.ts new file mode 100644 index 0000000..6244767 --- /dev/null +++ b/frontend/servers/routes/test.put.ts @@ -0,0 +1,8 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(() => { + return { + code: 200, + msg: 'put', + } +}) diff --git a/frontend/servers/routes/user/info.ts b/frontend/servers/routes/user/info.ts new file mode 100644 index 0000000..0bd1621 --- /dev/null +++ b/frontend/servers/routes/user/info.ts @@ -0,0 +1,24 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler((event) => { + const token = event.req.headers.get('Authorization') + // eslint-disable-next-line node/prefer-global/buffer + const username = Buffer.from(token, 'base64').toString('utf-8') + if (!token) { + return { + code: 401, + msg: '登录失效', + } + } + return { + code: 200, + msg: '获取成功', + data: { + id: 1, + username, + nickname: username === 'admin' ? '超级管理员' : '普通用户', + avatar: 'https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png', + roles: username === 'admin' ? ['ADMIN'] : ['USER'], + }, + } +}) diff --git a/frontend/src/App.vue b/frontend/src/App.vue new file mode 100644 index 0000000..cee6ed8 --- /dev/null +++ b/frontend/src/App.vue @@ -0,0 +1,19 @@ + + + diff --git a/frontend/src/api/accident/dict-list.ts b/frontend/src/api/accident/dict-list.ts new file mode 100644 index 0000000..0bf36a4 --- /dev/null +++ b/frontend/src/api/accident/dict-list.ts @@ -0,0 +1,76 @@ +export interface IncidentListParams { + dict_id?: string; + item_value?: string; + pageSize?: number; + pageNum?: number; +} + +export interface accidentParams { + ticket_id?: string; + vin?: string; + carline?: string; + model?: string; + labels?: string; + accident_level?: string; + bmbs_name?: string; + rdca_reporter?: string; + software_version?: string; + affects_versions?: string; + components?: string; + fix_versions?: string; + case_description?: string; + fo_solution?: string; + assignee_name?: string; + occur_datetime?: string; + subtasks?: string; + linked_work_items?: string; +} + +export async function getDictDataApi(params: IncidentListParams) { + return usePost('/accident/item-list', params) +} + + +export async function getAllDictCodeApi() { + return useGet('/accident/all_dict_code') +} + + +export async function insertDictTypetApi(params: IncidentListParams) { + return usePost('/accident/insert-dict', params) +} + + +export async function insertAccidentApi(params: accidentParams) { + return usePost('/accident/insert-accident', params) +} + + +export async function getAccidentRecordApi(params: any) { + return usePost('/accident/get-accident-record', params) +} + + +export async function getAccidentByIdApi(params: number) { + return usePost('/accident/get-accident-by-id', params) +} + + +export async function updataItemByIdApi(params: any) { + return usePost('/accident/update-item', params) +} + + +export async function bingImageApi(params: any) { + return usePost('/file_uploads/bind-image', params) +} + + +export function getImagesApi(case_id: number) { + return useGet(`/file_uploads/get-images/${case_id}`) +} + + +export async function getSecretKey() { + return useGet('/user/get_record') +} \ No newline at end of file diff --git a/frontend/src/api/common/login.ts b/frontend/src/api/common/login.ts new file mode 100644 index 0000000..5cef86b --- /dev/null +++ b/frontend/src/api/common/login.ts @@ -0,0 +1,37 @@ +export interface LoginParams { + username: string + password: string + type?: 'account' +} + +export interface LoginMobileParams { + mobile: string + code: string + type: 'mobile' +} + +export interface LoginResultModel { + token: string +} + +export function loginApi(params: LoginParams | LoginMobileParams) { + return usePost('/user/login', params, { + // 设置为false的时候不会携带token + token: false, + // 开发模式下使用自定义的接口 + customDev: true, + // 是否开启全局请求loading + loading: true, + }) +} + +// export function loginApi(params: any) { +// return usePost('/user/login', params, { +// token: false, +// loading: true, +// }) +// } + +export function logoutApi() { + return useGet('/logout') +} diff --git a/frontend/src/api/common/menu.ts b/frontend/src/api/common/menu.ts new file mode 100644 index 0000000..d2cf292 --- /dev/null +++ b/frontend/src/api/common/menu.ts @@ -0,0 +1,5 @@ +import type { MenuData } from '~@/layouts/basic-layout/typing' + +export function getRouteMenusApi() { + return useGet('/menu') +} diff --git a/frontend/src/api/common/user.ts b/frontend/src/api/common/user.ts new file mode 100644 index 0000000..616fb10 --- /dev/null +++ b/frontend/src/api/common/user.ts @@ -0,0 +1,11 @@ +export interface UserInfo { + id: number | string + username: string + nickname: string + avatar: string + roles?: (string | number)[] +} + +export function getUserInfoApi() { + return useGet('/user/info') +} diff --git a/frontend/src/api/dashboard/analysis.ts b/frontend/src/api/dashboard/analysis.ts new file mode 100644 index 0000000..13cb2f4 --- /dev/null +++ b/frontend/src/api/dashboard/analysis.ts @@ -0,0 +1,26 @@ +export interface ListResultModel { + id: number + title: string + username: string + password: string +} + +export type ListResultParams = Partial> + +export async function getListApi(params?: ListResultParams) { + return usePost('/list', params) +} + +export type CreateListParams = Partial> + +export async function createListApi(params: CreateListParams) { + return usePost('/list/create', params) +} + +export async function editListApi(params: ListResultModel) { + return usePut('/list', params) +} + +export async function delListApi(id: string | number) { + return useDelete(`/list/${id}`) +} diff --git a/frontend/src/api/list/basic-list.ts b/frontend/src/api/list/basic-list.ts new file mode 100644 index 0000000..433299b --- /dev/null +++ b/frontend/src/api/list/basic-list.ts @@ -0,0 +1,12 @@ +export interface ListResultModel { + id: number + title: string + username: string + password: string +} + +export type ListResultParams = Partial> + +export async function getListApi(params?: ListResultParams) { + return usePost('/list/basic-list', params) +} diff --git a/frontend/src/api/list/crud-table.ts b/frontend/src/api/list/crud-table.ts new file mode 100644 index 0000000..38db5bf --- /dev/null +++ b/frontend/src/api/list/crud-table.ts @@ -0,0 +1,30 @@ +interface CrudTableModel { + id?: number + /** + * 名称 + */ + name: string + /** + * 值 + */ + value: string + /** + * 描述 + */ + remark?: string +} + +type CrudTableParams = Partial> + +export async function getListApi(params?: CrudTableParams) { + return usePost('/list/crud-table', params) +} + +export async function deleteApi(id: string | number) { + return useDelete(`/list/${id}`) +} + +export type { + CrudTableModel, + CrudTableParams, +} diff --git a/frontend/src/api/list/table-list.ts b/frontend/src/api/list/table-list.ts new file mode 100644 index 0000000..dd11a52 --- /dev/null +++ b/frontend/src/api/list/table-list.ts @@ -0,0 +1,46 @@ +import type { STATUS } from '~@/utils/constant' + +interface ConsultTableModel { + id: number + /** + * 服务名称 + */ + name: string + /** + * 服务调用次数 + */ + callNo: 805 + /** + * 描述 + */ + desc: string + /** + * 状态 + */ + status: STATUS + /** + * 上次调用时间 + */ + updatedAt: string + + // 分页 + current?: number + // size + pageSize?: number +} + +type ConsultTableParams = Partial> + +export async function getListApi(params?: ConsultTableParams) { + return usePost('/list/consult-list', params) +} + +export async function deleteApi(id: string | number) { + return useDelete(`/list/${id}`) +} + +export type { + ConsultTableModel, + ConsultTableParams, + STATUS, +} diff --git a/frontend/src/api/oauth/login.ts b/frontend/src/api/oauth/login.ts new file mode 100644 index 0000000..fefe252 --- /dev/null +++ b/frontend/src/api/oauth/login.ts @@ -0,0 +1,3 @@ +export function oauthLoginApi() { + return useGet('/login') +} \ No newline at end of file diff --git a/frontend/src/api/report/incident.ts b/frontend/src/api/report/incident.ts new file mode 100644 index 0000000..bea433d --- /dev/null +++ b/frontend/src/api/report/incident.ts @@ -0,0 +1,23 @@ +export interface IncidentListParams { + startTime?: string; + endTime?: string; + pageSize?: number; + pageNum?: number; + oneid?: string; + incident_time?: object; +} + + +export async function getIncidentListApi(params: IncidentListParams) { + return usePost('/incident/list', params, { timeout: 600000 }) +} + + +export async function getGen6IncidentListApi(params: IncidentListParams,code:string) { + return usePost('/gen6/list', params, { timeout: 600000 ,headers:{'X-Encrypted-Timestamp':code}}) //,headers:{'X-Encrypted-Timestamp':code} +} + + +export async function getGen5IncidentListApi(params: IncidentListParams,code:string) { + return usePost('/gen5/list', params, { timeout: 600000, headers:{'X-Encrypted-Timestamp':code} }) +} \ No newline at end of file diff --git a/frontend/src/api/test.ts b/frontend/src/api/test.ts new file mode 100644 index 0000000..b8e48f5 --- /dev/null +++ b/frontend/src/api/test.ts @@ -0,0 +1,23 @@ +export function test200() { + return useGet('/') +} + +export function test401() { + return useGet('/401') +} + +export function test500() { + return useGet('/500') +} + +export function testPut() { + return usePut('/test') +} + +export function testPost() { + return usePost('/test') +} + +export function testDelete() { + return useDelete('/test') +} diff --git a/frontend/src/assets/images/login-left.png b/frontend/src/assets/images/login-left.png new file mode 100644 index 0000000..e679f77 Binary files /dev/null and b/frontend/src/assets/images/login-left.png differ diff --git a/frontend/src/assets/styles/motion.css b/frontend/src/assets/styles/motion.css new file mode 100644 index 0000000..ffd5fe4 --- /dev/null +++ b/frontend/src/assets/styles/motion.css @@ -0,0 +1,61 @@ +.slide-fadein-up-enter-active, +.slide-fadein-up-leave-active { + transition: + opacity 0.3s, + transform 0.4s; +} + +.slide-fadein-up-enter-from { + transform: translateY(20px); + opacity: 0; +} + +.slide-fadein-up-leave-to { + transform: translateY(-20px); + opacity: 0; +} + +.slide-fadein-right-enter-active, +.slide-fadein-right-leave-active { + transition: + opacity 0.3s, + transform 0.3s, + -webkit-transform 0.3s; +} + +.slide-fadein-right-enter-from { + transform: translateX(-20px); + opacity: 0; +} + +.slide-fadein-right-leave-to { + transform: translateX(20px); + opacity: 0; +} + +.zoom-fadein-enter-active, +.zoom-fadein-leave-active { + transition: + transform 0.3s, + opacity 0.3s ease-in-out; +} + +.zoom-fadein-enter-from { + transform: scale(0.99); + opacity: 0; +} + +.zoom-fadein-leave-to { + transform: scale(1.01); + opacity: 0; +} + +.fadein-enter-active, +.fadein-leave-active { + transition: opacity 0.3s ease-in-out !important; +} + +.fadein-enter-from, +.fadein-leave-to { + opacity: 0 !important; +} diff --git a/frontend/src/assets/styles/reset.css b/frontend/src/assets/styles/reset.css new file mode 100644 index 0000000..d32dcd1 --- /dev/null +++ b/frontend/src/assets/styles/reset.css @@ -0,0 +1,42 @@ +@import './motion.css'; +html { + --text-color: rgba(0, 0, 0, 0.85); + --text-color-1: rgba(0, 0, 0, 0.45); + --text-color-2: rgba(0, 0, 0, 0.2); + --bg-color: #fff; + --hover-color: rgba(0, 0, 0, 0.025); + --bg-color-container: #f0f2f5; + --c-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05); +} + +html.dark { + --text-color: rgba(229, 224, 216, 0.85); + --text-color-1: rgba(229, 224, 216, 0.45); + --text-color-2: rgba(229, 224, 216, 0.45); + --bg-color: rgb(36, 37, 37); + --hover-color: rgb(42, 44, 55); + --bg-color-container: rgb(42, 44, 44); + --c-shadow: rgba(13, 13, 13, 0.65) 0 2px 8px 0; +} + +body { + color: var(--text-color); + background-color: var(--bg-color); + text-rendering: optimizeLegibility; + overflow: hidden; +} + +#app, +body, +html { + height: 100%; +} + +#app { + overflow-x: hidden; +} +*, +:after, +:before { + box-sizing: border-box; +} diff --git a/frontend/src/assets/vue.svg b/frontend/src/assets/vue.svg new file mode 100644 index 0000000..770e9d3 --- /dev/null +++ b/frontend/src/assets/vue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/src/components/access/index.vue b/frontend/src/components/access/index.vue new file mode 100644 index 0000000..326fc81 --- /dev/null +++ b/frontend/src/components/access/index.vue @@ -0,0 +1,12 @@ + + + diff --git a/frontend/src/components/base-loading/index.vue b/frontend/src/components/base-loading/index.vue new file mode 100644 index 0000000..094dda7 --- /dev/null +++ b/frontend/src/components/base-loading/index.vue @@ -0,0 +1,96 @@ + + + diff --git a/frontend/src/components/base-loading/spin/chase-spin.vue b/frontend/src/components/base-loading/spin/chase-spin.vue new file mode 100644 index 0000000..4206cad --- /dev/null +++ b/frontend/src/components/base-loading/spin/chase-spin.vue @@ -0,0 +1,101 @@ + + + + + diff --git a/frontend/src/components/base-loading/spin/cube-spin.vue b/frontend/src/components/base-loading/spin/cube-spin.vue new file mode 100644 index 0000000..aef2781 --- /dev/null +++ b/frontend/src/components/base-loading/spin/cube-spin.vue @@ -0,0 +1,83 @@ + + + + + diff --git a/frontend/src/components/base-loading/spin/dot-spin.vue b/frontend/src/components/base-loading/spin/dot-spin.vue new file mode 100644 index 0000000..61d3e1c --- /dev/null +++ b/frontend/src/components/base-loading/spin/dot-spin.vue @@ -0,0 +1,132 @@ + + + + + diff --git a/frontend/src/components/base-loading/spin/plane-spin.vue b/frontend/src/components/base-loading/spin/plane-spin.vue new file mode 100644 index 0000000..fa56eab --- /dev/null +++ b/frontend/src/components/base-loading/spin/plane-spin.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/frontend/src/components/base-loading/spin/preloader-spin.vue b/frontend/src/components/base-loading/spin/preloader-spin.vue new file mode 100644 index 0000000..e7c33e2 --- /dev/null +++ b/frontend/src/components/base-loading/spin/preloader-spin.vue @@ -0,0 +1,68 @@ + + + + + diff --git a/frontend/src/components/base-loading/spin/pulse-spin.vue b/frontend/src/components/base-loading/spin/pulse-spin.vue new file mode 100644 index 0000000..5884a52 --- /dev/null +++ b/frontend/src/components/base-loading/spin/pulse-spin.vue @@ -0,0 +1,49 @@ + + + + + diff --git a/frontend/src/components/base-loading/spin/rect-spin.vue b/frontend/src/components/base-loading/spin/rect-spin.vue new file mode 100644 index 0000000..c8169e3 --- /dev/null +++ b/frontend/src/components/base-loading/spin/rect-spin.vue @@ -0,0 +1,57 @@ + + + + + diff --git a/frontend/src/components/doc-link/index.vue b/frontend/src/components/doc-link/index.vue new file mode 100644 index 0000000..311e168 --- /dev/null +++ b/frontend/src/components/doc-link/index.vue @@ -0,0 +1,13 @@ + + + + + diff --git a/frontend/src/components/footer-links.vue b/frontend/src/components/footer-links.vue new file mode 100644 index 0000000..2a5f6b4 --- /dev/null +++ b/frontend/src/components/footer-links.vue @@ -0,0 +1,15 @@ + + + diff --git a/frontend/src/components/footer-tool-bar/index.less b/frontend/src/components/footer-tool-bar/index.less new file mode 100644 index 0000000..c0c1dfb --- /dev/null +++ b/frontend/src/components/footer-tool-bar/index.less @@ -0,0 +1,21 @@ +@footer-toolbar-prefix-cls: ~'ant-pro-footer-toolbar'; + +.@{footer-toolbar-prefix-cls} { + position: fixed; + right: 0; + bottom: 0; + z-index: 9; + width: 100%; + height: 56px; + padding: 0 24px; + line-height: 56px; + background: var(--bg-color); + box-shadow: var(--c-shadow); + //border-top: 1px solid #e8e8e8; + + &::after { + display: block; + clear: both; + content: ''; + } +} diff --git a/frontend/src/components/footer-tool-bar/index.md b/frontend/src/components/footer-tool-bar/index.md new file mode 100644 index 0000000..9a854b4 --- /dev/null +++ b/frontend/src/components/footer-tool-bar/index.md @@ -0,0 +1,15 @@ +# FooterToolbar 底部工具栏 + +固定在底部的工具栏。 + +## 何时使用 + +固定在内容区域的底部,不随滚动条移动,常用于长页面的数据搜集和提交工作。 + +## 代码演示 + +```html + + 提交 + +``` diff --git a/frontend/src/components/footer-tool-bar/index.vue b/frontend/src/components/footer-tool-bar/index.vue new file mode 100644 index 0000000..363b386 --- /dev/null +++ b/frontend/src/components/footer-tool-bar/index.vue @@ -0,0 +1,44 @@ + + + + + diff --git a/frontend/src/components/gitee-link/index.vue b/frontend/src/components/gitee-link/index.vue new file mode 100644 index 0000000..7a9cf79 --- /dev/null +++ b/frontend/src/components/gitee-link/index.vue @@ -0,0 +1,12 @@ + + + + + diff --git a/frontend/src/components/github-link/index.vue b/frontend/src/components/github-link/index.vue new file mode 100644 index 0000000..4283bb4 --- /dev/null +++ b/frontend/src/components/github-link/index.vue @@ -0,0 +1,13 @@ + + + + + diff --git a/frontend/src/components/icons/carbon-language.vue b/frontend/src/components/icons/carbon-language.vue new file mode 100644 index 0000000..0088996 --- /dev/null +++ b/frontend/src/components/icons/carbon-language.vue @@ -0,0 +1,9 @@ + + + diff --git a/frontend/src/components/icons/carbon-moon.vue b/frontend/src/components/icons/carbon-moon.vue new file mode 100644 index 0000000..db7a9e4 --- /dev/null +++ b/frontend/src/components/icons/carbon-moon.vue @@ -0,0 +1,9 @@ + + + diff --git a/frontend/src/components/icons/carbon-sun.vue b/frontend/src/components/icons/carbon-sun.vue new file mode 100644 index 0000000..2f6bd82 --- /dev/null +++ b/frontend/src/components/icons/carbon-sun.vue @@ -0,0 +1,9 @@ + + + diff --git a/frontend/src/components/page-container/context.ts b/frontend/src/components/page-container/context.ts new file mode 100644 index 0000000..b9268ab --- /dev/null +++ b/frontend/src/components/page-container/context.ts @@ -0,0 +1,10 @@ +import type { useAppStore } from '~/stores/app.ts' + +export const LayoutMenuKey = Symbol('LayoutMenu') +export function useLayoutMenuProvide(layoutMenu: ReturnType, appStore: ReturnType) { + provide(LayoutMenuKey, { layoutMenu, appStore }) +} + +export function useLayoutMenuInject() { + return inject(LayoutMenuKey, {} as any) +} diff --git a/frontend/src/components/page-container/index.vue b/frontend/src/components/page-container/index.vue new file mode 100644 index 0000000..ad6bc65 --- /dev/null +++ b/frontend/src/components/page-container/index.vue @@ -0,0 +1,125 @@ + + + diff --git a/frontend/src/components/select-lang/index.vue b/frontend/src/components/select-lang/index.vue new file mode 100644 index 0000000..92e7da3 --- /dev/null +++ b/frontend/src/components/select-lang/index.vue @@ -0,0 +1,34 @@ + + + diff --git a/frontend/src/components/token-provider/index.vue b/frontend/src/components/token-provider/index.vue new file mode 100644 index 0000000..04f6792 --- /dev/null +++ b/frontend/src/components/token-provider/index.vue @@ -0,0 +1,25 @@ + + + diff --git a/frontend/src/components/token-provider/token-to-cssvar.ts b/frontend/src/components/token-provider/token-to-cssvar.ts new file mode 100644 index 0000000..8324b2c --- /dev/null +++ b/frontend/src/components/token-provider/token-to-cssvar.ts @@ -0,0 +1,29 @@ +import type { GlobalToken } from 'ant-design-vue/es/theme' +import { canUseDom, updateCSS } from '@v-c/utils' +import { kebabCase } from 'lodash' + +function formatKey(key: string, prefixCls: string) { + return `${prefixCls}${kebabCase(key)}` +} +const prefixCls = '--pro-ant-' + +const dynamicStyleMark = `${prefixCls}${Date.now()}-${Math.random()}` + +export function registerTokenToCSSVar(token: GlobalToken) { + // TODO + const variables: Record = {} + if (!token) + return + + for (const key in token) { + const val = token[key as keyof GlobalToken] + variables[formatKey(key, prefixCls)] = val + } + const cssList = Object.keys(variables).map(key => `${key}: ${variables[key]};`) + if (canUseDom()) { + updateCSS( + `:root {${cssList.join('\n')}}`, + `${dynamicStyleMark}-dynamic-theme`, + ) + } +} diff --git a/frontend/src/components/user-avatar/index.vue b/frontend/src/components/user-avatar/index.vue new file mode 100644 index 0000000..78e0f64 --- /dev/null +++ b/frontend/src/components/user-avatar/index.vue @@ -0,0 +1,98 @@ + + + diff --git a/frontend/src/components/virtual-list/index.vue b/frontend/src/components/virtual-list/index.vue new file mode 100644 index 0000000..f1de55a --- /dev/null +++ b/frontend/src/components/virtual-list/index.vue @@ -0,0 +1,167 @@ + + + + + diff --git a/frontend/src/composables/access.ts b/frontend/src/composables/access.ts new file mode 100644 index 0000000..694119c --- /dev/null +++ b/frontend/src/composables/access.ts @@ -0,0 +1,16 @@ +import type { AccessEnum } from '~@/utils/constant' +import { toArray } from '@v-c/utils' + +export function useAccess() { + const userStore = useUserStore() + const roles = computed(() => userStore.roles) + const hasAccess = (roles: (string | number)[] | string | number | AccessEnum) => { + const accessRoles = userStore.roles + const roleArr = toArray(roles).flat(1) + return roleArr.some(role => accessRoles?.includes(role)) + } + return { + hasAccess, + roles, + } +} diff --git a/frontend/src/composables/antd-token.ts b/frontend/src/composables/antd-token.ts new file mode 100644 index 0000000..9affe9e --- /dev/null +++ b/frontend/src/composables/antd-token.ts @@ -0,0 +1,14 @@ +import type { GlobalToken } from 'ant-design-vue/es/theme' +import { theme } from 'ant-design-vue' + +export const useAntdToken = createSharedComposable(() => { + const { token: antdToken } = theme.useToken() + const token = ref(antdToken.value) + const setToken = (globalToken: GlobalToken) => { + token.value = globalToken + } + return { + token, + setToken, + } +}) diff --git a/frontend/src/composables/api.ts b/frontend/src/composables/api.ts new file mode 100644 index 0000000..c5291c1 --- /dev/null +++ b/frontend/src/composables/api.ts @@ -0,0 +1,8 @@ +import { useDelete, useGet, usePost, usePut } from '~/utils/request' + +export { + useDelete, + useGet, + usePost, + usePut, +} diff --git a/frontend/src/composables/authorization.ts b/frontend/src/composables/authorization.ts new file mode 100644 index 0000000..f413530 --- /dev/null +++ b/frontend/src/composables/authorization.ts @@ -0,0 +1,3 @@ +export const STORAGE_AUTHORIZE_KEY = 'Authorization' + +export const useAuthorization = createGlobalState(() => useStorage(STORAGE_AUTHORIZE_KEY, null)) diff --git a/frontend/src/composables/base-loading.ts b/frontend/src/composables/base-loading.ts new file mode 100644 index 0000000..4f148c1 --- /dev/null +++ b/frontend/src/composables/base-loading.ts @@ -0,0 +1,51 @@ +import type { LoadingEnum } from '~#/loading-enum' +import baseLoading from '@/components/base-loading/index.vue' + +interface LoadingType { + text?: string + textColor?: string + background?: string + spin?: LoadingEnum + minTime?: number + modal?: boolean +} +/** + * 全局loading配置 + * @param config + */ +export function useLoading(config: LoadingType = {}) { + const loadingConstructor = createApp(baseLoading, { ...config }) + let instance: any = null + let startTime = 0 + let endTime = 0 + const minTime = config.minTime || 0 + + const open = (target: HTMLElement = document.body) => { + if (!instance) + instance = loadingConstructor.mount(document.createElement('div')) + + if (!instance || !instance.$el) + return + target?.appendChild?.(instance.$el) + startTime = performance.now() + } + + const close = () => { + if (!instance || !instance.$el) + return + endTime = performance.now() + if (endTime - startTime < minTime) { + setTimeout(() => { + instance.$el.parentNode?.removeChild(instance.$el) + }, Math.floor(minTime - (endTime - startTime))) + } + else { + instance.$el.parentNode?.removeChild(instance.$el) + } + } + + return { + open, + close, + } +} diff --git a/frontend/src/composables/comp-consumer.ts b/frontend/src/composables/comp-consumer.ts new file mode 100644 index 0000000..f3f3d22 --- /dev/null +++ b/frontend/src/composables/comp-consumer.ts @@ -0,0 +1,40 @@ +import type { VNode } from 'vue' +import { createVNode } from 'vue' + +const compMap = new Map() + +export function useCompConsumer() { + const route = useRoute() + const getComp = (component: VNode): VNode => { + // 判断当前是否包含name,如果不包含name,那就直接处理掉name + if (!route.name) + return component + + // 获取当前组件的name + // @ts-expect-error this is obj + const compName = component?.type?.name + const routeName = route.name as string + if (compMap.has(routeName)) + return compMap.get(routeName) as VNode + + // 不存在的情况下,就需要进行组织 + const node = component + if (compName && compName === routeName) { + compMap.set(routeName, node) + return node + } + + const Comp = createVNode(node) + if (!Comp.type) + Comp.type = {} + + // @ts-expect-error this is obj + Comp.type.name = routeName + compMap.set(routeName, Comp) + return Comp + } + + return { + getComp, + } +} diff --git a/frontend/src/composables/current-route.ts b/frontend/src/composables/current-route.ts new file mode 100644 index 0000000..c282fba --- /dev/null +++ b/frontend/src/composables/current-route.ts @@ -0,0 +1,15 @@ +import router from '@/router' + +export function useCurrentRoute() { + const currentRoute = router.currentRoute + const layoutMenuStore = useLayoutMenu() + const { menuDataMap } = storeToRefs(layoutMenuStore) + const pathsKeys = menuDataMap.value?.keys() + const currentPath = currentRoute.value.path + // router. + // 通过校验判断是否在menuItem中 + console.log('currentPath', currentPath, pathsKeys) + return { + currentRoute, + } +} diff --git a/frontend/src/composables/global-config.ts b/frontend/src/composables/global-config.ts new file mode 100644 index 0000000..97b9b9a --- /dev/null +++ b/frontend/src/composables/global-config.ts @@ -0,0 +1,36 @@ +import type { message, notification } from 'ant-design-vue' +import type { ModalFunc } from 'ant-design-vue/es/modal/Modal' + +interface GlobalConfigIntl { + message?: Omit + modal?: { + readonly info: ModalFunc + readonly success: ModalFunc + readonly error: ModalFunc + readonly warning: ModalFunc + readonly confirm: ModalFunc + } + notification?: Omit +} +const globalConfig = reactive({}) + +export function useGlobalConfig() { + return globalConfig +} +export function useSetGlobalConfig(config: GlobalConfigIntl) { + globalConfig.message = config.message + globalConfig.modal = config.modal + globalConfig.notification = config.notification +} + +export function useMessage() { + return globalConfig.message! +} + +export function useModal() { + return globalConfig.modal! +} + +export function useNotification() { + return globalConfig.notification! +} diff --git a/frontend/src/composables/i18n-locale.ts b/frontend/src/composables/i18n-locale.ts new file mode 100644 index 0000000..9e91c8c --- /dev/null +++ b/frontend/src/composables/i18n-locale.ts @@ -0,0 +1,78 @@ +import dayjs from 'dayjs' +import { i18n, loadLanguageAsync } from '~@/locales' +import router from '~@/router' +import { useMetaTitle } from '~/composables/meta-title' +import 'dayjs/locale/zh-cn' + +const LOCALE_KEY = 'locale' + +export const preferredLanguages = usePreferredLanguages() + +export const lsLocaleState = useStorage(LOCALE_KEY, preferredLanguages.value[0]) + +export const useI18nLocale = createSharedComposable(() => { + // 加载多语言的loading状态 + const loading = ref(false) + const localeStore = useAppStore() + // 多语言的信息 + const locale = computed(() => { + if (!i18n) + return 'zh-CN' + + return unref(i18n.global.locale) + }) + + // 获取antd的多语言 + const antd = computed(() => { + return (i18n?.global?.getLocaleMessage?.(unref(locale)) as any)?.antd || undefined + }) + + // 切换多语言 + const setLocale = async (locale: string) => { + if (!i18n) + return + + if (loading.value) + return + loading.value = true + try { + // 加载多语言 + localeStore.toggleLocale(locale) + await loadLanguageAsync(locale) + // 判断是否存在兼容模式 + if (i18n.mode === 'legacy') + i18n.global.locale = locale as any + else + (i18n.global.locale as any).value = locale as any + loading.value = false + } + catch (e) { + loading.value = false + } + } + + watch(locale, () => { + if (antd.value && antd.value.locale) + dayjs.locale(antd.value.locale) + + const route = router.currentRoute.value + useMetaTitle(route) + }, { + immediate: true, + }) + + // 切换多语言功能 + const t = (key: string, defaultMessage?: string) => { + const message = (i18n?.global as any)?.t?.(key) + if (message !== key) + return (i18n?.global as any)?.t?.(key) + else + return defaultMessage ?? key + } + return { + locale, + t, + antd, + setLocale, + } +}) diff --git a/frontend/src/composables/loading.ts b/frontend/src/composables/loading.ts new file mode 100644 index 0000000..85b5e34 --- /dev/null +++ b/frontend/src/composables/loading.ts @@ -0,0 +1,20 @@ +export function useLoadingCheck() { + const loading = document.querySelector('body > #loading-app') + if (loading) { + const body = document.querySelector('body') + setTimeout(() => { + body?.removeChild(loading) + }, 100) + } +} + +export function useScrollToTop() { + const app = document.getElementById('app') + if (app) { + setTimeout(() => { + app.scrollTo({ + top: 0, + }) + }, 300) + } +} diff --git a/frontend/src/composables/meta-title.ts b/frontend/src/composables/meta-title.ts new file mode 100644 index 0000000..526b7d6 --- /dev/null +++ b/frontend/src/composables/meta-title.ts @@ -0,0 +1,12 @@ +import type { RouteLocationNormalizedLoaded, RouteRecordRaw } from 'vue-router' +import { i18n } from '~@/locales' + +export function useMetaTitle(route: RouteRecordRaw | RouteLocationNormalizedLoaded) { + const { title, locale } = route.meta ?? {} + if (title || locale) { + if (locale) + useTitle((i18n?.global as any).t?.(locale) ?? title) + else + useTitle(title) + } +} diff --git a/frontend/src/composables/query-breakpoints.ts b/frontend/src/composables/query-breakpoints.ts new file mode 100644 index 0000000..d6f02c2 --- /dev/null +++ b/frontend/src/composables/query-breakpoints.ts @@ -0,0 +1,25 @@ +export const breakpointsEnum = { + xl: 1600, + lg: 1199, + md: 991, + sm: 767, + xs: 575, +} + +export function useQueryBreakpoints() { + const breakpoints = reactive(useBreakpoints(breakpointsEnum)) + + // 手机端 + const isMobile = breakpoints.smaller('sm') + // pad端 + const isPad = breakpoints.between('sm', 'md') + // pc端 + const isDesktop = breakpoints.greater('md') + + return { + breakpoints, + isMobile, + isPad, + isDesktop, + } +} diff --git a/frontend/src/composables/table-query.ts b/frontend/src/composables/table-query.ts new file mode 100644 index 0000000..1a19524 --- /dev/null +++ b/frontend/src/composables/table-query.ts @@ -0,0 +1,189 @@ +import type { PaginationProps } from 'ant-design-vue' +import type { TableRowSelection } from 'ant-design-vue/es/table/interface' +import { assign } from 'lodash' + +/** + * 表格分页扩展类型 + */ +export interface TablePaginationProps extends PaginationProps { + /** + * 排序字段 + */ + column: string + /** + * 排序方式 + */ + order: string +} + +/** + * 表格选择框扩展类型 + */ +export interface TableRowSelectionsProps extends TableRowSelection { + /** + * 选择行 + */ + selectedRows: any[] + /** + * 选择行key + */ + selectedRowKeys: any[] +} + +interface TableQueryResult { + records: D[] + total: number + [key: string]: any +} + +/** + * 表格查询配置 + */ +export interface TableQueryOptions { + /** + *查询接口 + */ + queryApi: (params?: any) => Promise + /** + * 是否加载中 + */ + loading: boolean + /** + * 数据源 + */ + dataSource: D[] + /** + * 查询参数 + */ + queryParams: Record + /** + * 选择配置 + */ + rowSelections: TableRowSelectionsProps + /** + * 挂载时进行查询 + */ + queryOnMounted: boolean + /** + * 分页配置 + */ + pagination: TablePaginationProps + /** + * 是否展开 + */ + expand: boolean + /** + * 展开变化 + */ + expandChange: () => void + /** + * 查询前回调 + */ + beforeQuery: () => void | Promise + /** + * 查询后回调 + */ + afterQuery: = any>(data: R) => R | Promise +} + +/** + * 表格查询方法 + */ +export function useTableQuery(_options: Partial) { + const state = reactive(assign({ + queryApi: () => Promise.resolve(), + loading: false, + queryParams: {}, + dataSource: [], + rowSelections: { + selectedRowKeys: [], + selectedRows: [], + onChange(selectedRowKeys: any[], selectedRows: any[]) { + state.rowSelections.selectedRowKeys = selectedRowKeys + state.rowSelections.selectedRows = selectedRows + }, + }, + queryOnMounted: true, + pagination: + assign({ + pageSize: 10, + pageSizeOptions: ['10', '20', '30', '40'], + current: 1, + total: 0, + order: 'desc', + column: 'createTime', + showSizeChanger: true, + showQuickJumper: true, + showTotal: total => `总数据位:${total}`, + onChange(current, pageSize) { + state.pagination!.pageSize = pageSize + state.pagination!.current = current + query() + }, + } as TablePaginationProps, _options.pagination), + expand: false, + expandChange() { + state.expand = !state.expand + }, + beforeQuery() { + }, + afterQuery(data: TablePaginationProps) { + return data + }, + }, _options)) + + // 查询方法 + async function query() { + if (state.loading) + return + state.loading = true + + try { + await state.beforeQuery() + const { data } = await state.queryApi({ + current: state.pagination.current, + pageSize: state.pagination.pageSize, + column: state.pagination.column, + order: state.pagination.order, + ...state.queryParams, + }) + if (data) { + const _data = await state.afterQuery(data) + state.dataSource = _data.records ?? [] + state.pagination.total = _data.total ?? 0 + } + } + catch (e) { + throw new Error(`Query Failed: ${e}`) + } + finally { + state.loading = false + } + } + + // 重置方法 + function resetQuery() { + state.pagination.current = 1 + state.queryParams = {} + query() + } + + // 初始化查询 + function initQuery() { + state.pagination.current = 1 + query() + } + + onMounted(() => { + if (!state.queryOnMounted) + return + query() + }) + + return { + query, + resetQuery, + initQuery, + state, + } +} diff --git a/frontend/src/composables/theme.ts b/frontend/src/composables/theme.ts new file mode 100644 index 0000000..a2a21dd --- /dev/null +++ b/frontend/src/composables/theme.ts @@ -0,0 +1,2 @@ +export const isDark = useDark() +export const toggleDark = useToggle(isDark) diff --git a/frontend/src/config/default-setting.ts b/frontend/src/config/default-setting.ts new file mode 100644 index 0000000..31807cd --- /dev/null +++ b/frontend/src/config/default-setting.ts @@ -0,0 +1,55 @@ +import type { LayoutSetting } from '~@/stores/app' + +export default { + "title": "RDCA_Incidents Data Portal", + "theme": "light", + "logo": "/logo.png", + "collapsed": false, + "drawerVisible": true, + "colorPrimary": "#1890ff", + "layout": "side", + "contentWidth": "Fluid", + "fixedHeader": true, + "fixedSider": true, + "splitMenus": false, + "header": true, + "menu": true, + "watermark": false, + "menuHeader": true, + "footer": false, + "colorWeak": false, + "colorGray": false, + "multiTab": true, + "multiTabFixed": false, + "keepAlive": true, + "accordionMode": false, + "leftCollapsed": false, + "compactAlgorithm": false, + "headerHeight": 48, + "copyright": "RDCA Team 2025", + "animationName": "slide-fadein-right" +} as LayoutSetting + +export const animationNameList = [ + { + label: 'None', + value: 'none', + }, + { + label: 'Fadein Up', + value: 'slide-fadein-up', + }, + { + label: 'Fadein Right', + value: 'slide-fadein-right', + }, + { + label: 'Zoom Fadein', + value: 'zoom-fadein', + }, + { + label: 'Fadein', + value: 'fadein', + }, +] +export type AnimationNameValueType = 'none' | 'slide-fadein-up' | 'slide-fadein-right' | 'zoom-fadein' | 'fadein' diff --git a/frontend/src/directive/access.ts b/frontend/src/directive/access.ts new file mode 100644 index 0000000..8ebcc79 --- /dev/null +++ b/frontend/src/directive/access.ts @@ -0,0 +1,10 @@ +import type { App, Directive } from 'vue' + +export const accessDirective: Directive = (el, binding) => { + const { hasAccess } = useAccess() + if (!hasAccess(binding.value)) + el.parentNode?.removeChild(el) +} +export function setupAccessDirective(app: App) { + app.directive('access', accessDirective) +} diff --git a/frontend/src/directive/index.ts b/frontend/src/directive/index.ts new file mode 100644 index 0000000..69a5ac2 --- /dev/null +++ b/frontend/src/directive/index.ts @@ -0,0 +1,2 @@ +export * from './access' +export * from './loading' diff --git a/frontend/src/directive/loading.ts b/frontend/src/directive/loading.ts new file mode 100644 index 0000000..07f3ea5 --- /dev/null +++ b/frontend/src/directive/loading.ts @@ -0,0 +1,49 @@ +import type { App, Directive } from 'vue' +import BaseLoading from '@/components/base-loading/index.vue' +import { useLoading } from '@/composables/base-loading' + +const loadingDirective: Directive = { + mounted(el, bind) { + const { props } = BaseLoading + + const full = el.getAttribute('loading-full') + const text = el.getAttribute('loading-text') || props.text.default + const textColor + = el.getAttribute('loading-text-color') || props.textColor.default + const background + = el.getAttribute('loading-background') || props.background.default + const spin = el.getAttribute('loading-spin') || props.spin.default + + const instance = useLoading({ + text, + textColor, + background, + spin, + }) + el.instance = instance + if (bind.value) + instance.open(full ? document.body : el) + }, + updated(el, bind) { + const instance = el.instance + if (!instance) + return + if (bind.value) { + instance.open( + el.getAttribute('loading-full') === 'true' ? document.body : el, + ) + } + else { + instance.close() + } + }, + unmounted(el) { + el?.instance?.close() + }, +} + +export function setupLoadingDirective(app: App) { + app.directive('loading', loadingDirective) +} + +export default loadingDirective diff --git a/frontend/src/enums/http-enum.ts b/frontend/src/enums/http-enum.ts new file mode 100644 index 0000000..03938d1 --- /dev/null +++ b/frontend/src/enums/http-enum.ts @@ -0,0 +1,21 @@ +/** + * @description: request method + */ +export enum RequestEnum { + GET = 'GET', + POST = 'POST', + PUT = 'PUT', + DELETE = 'DELETE', +} + +/** + * @description: contentType + */ +export enum ContentTypeEnum { + // json + JSON = 'application/json;charset=UTF-8', + // form-data qs + FORM_URLENCODED = 'application/x-www-form-urlencoded;charset=UTF-8', + // form-data upload + FORM_DATA = 'multipart/form-data;charset=UTF-8', +} diff --git a/frontend/src/enums/loading-enum.ts b/frontend/src/enums/loading-enum.ts new file mode 100644 index 0000000..946c9e1 --- /dev/null +++ b/frontend/src/enums/loading-enum.ts @@ -0,0 +1,29 @@ +import chaseSpin from '@/components/base-loading/spin/chase-spin.vue' +import cubeSpin from '@/components/base-loading/spin/cube-spin.vue' +import dotSpin from '@/components/base-loading/spin/dot-spin.vue' +import planeSpin from '@/components/base-loading/spin/plane-spin.vue' +import preloaderSpin from '@/components/base-loading/spin/preloader-spin.vue' +import pulseSpin from '@/components/base-loading/spin/pulse-spin.vue' +import rectSpin from '@/components/base-loading/spin/rect-spin.vue' + +export enum LoadingEnum { + PULSE = 'pulse', + RECT = 'rect', + PLANE = 'plane', + CUBE = 'cube', + PRELOADER = 'preloader', + CHASE = 'chase', + DOT = 'dot', +} + +const loadingMap = new Map() + +loadingMap.set(LoadingEnum.PULSE, pulseSpin) +loadingMap.set(LoadingEnum.RECT, rectSpin) +loadingMap.set(LoadingEnum.PLANE, planeSpin) +loadingMap.set(LoadingEnum.CUBE, cubeSpin) +loadingMap.set(LoadingEnum.PRELOADER, preloaderSpin) +loadingMap.set(LoadingEnum.CHASE, chaseSpin) +loadingMap.set(LoadingEnum.DOT, dotSpin) + +export { loadingMap } diff --git a/frontend/src/layouts/basic-layout/context.ts b/frontend/src/layouts/basic-layout/context.ts new file mode 100644 index 0000000..228cb0d --- /dev/null +++ b/frontend/src/layouts/basic-layout/context.ts @@ -0,0 +1,171 @@ +import type { SelectEventHandler } from 'ant-design-vue/es/menu/src/interface' +import type { Key, MenuData, MenuDataItem, ProLayoutProps } from './typing' +import { runEvent } from '@v-c/utils' + +export interface ProLayoutProviderMethods { + handleCollapsed?: (collapsed: boolean) => void +} + +function layoutStateFunc(props: ProLayoutProps, methods: ProLayoutProviderMethods = {}) { + const hasPageContainer = shallowRef(false) + const logo = computed(() => props.logo) + const title = computed(() => props.title) + const layout = computed(() => props.layout) + const collapsedWidth = computed(() => props.collapsedWidth) + const siderWidth = computed(() => props.siderWidth) + const menuData = computed(() => props.menuData) + const splitMenus = computed(() => props.splitMenus) + const fixedHeader = computed(() => props.fixedHeader) + const fixedSider = computed(() => props.fixedSider) + const collapsed = computed(() => props.collapsed) + const theme = computed(() => props.theme) + const headerHeight = computed(() => props.headerHeight) + const contentWidth = computed(() => props.contentWidth) + const copyright = computed(() => props.copyright) + /** + * 移动端的处理方式 + */ + const isMobile = computed(() => props.isMobile) + const mobileCollapsed = shallowRef(false) + const handleMobileCollapsed = () => { + mobileCollapsed.value = !mobileCollapsed.value + } + + const header = computed(() => props.header) + const menu = computed(() => props.menu) + const footer = computed(() => props.footer) + const menuHeader = computed(() => props.menuHeader) + const leftCollapsed = computed(() => props.leftCollapsed) + + const menuDataMap = reactive(new Map()) + const splitState = reactive<{ + selectedKeys: Key[] + }>({ + selectedKeys: [], + }) + watch( + menuData, + () => { + menuDataMap.clear() + menuData.value?.forEach((item) => { + menuDataMap.set(item.path, item) + }) + }, + { + immediate: true, + }, + ) + const selectedMenus = computed(() => { + if (isMobile.value || layout.value !== 'mix' || !splitMenus.value) + return menuData.value + const key = splitState.selectedKeys?.[0] + if (!key) + return [] + + return menuDataMap.get(key)?.children ?? [] + }) + + const handleSplitSelectedKeys = (val: Key[]) => { + splitState.selectedKeys = val + // runEvent(props['onUpdate:openKeys'], val) + } + /** + * 菜单选中处理 + */ + const openKeys = computed(() => props.openKeys) + const selectedKeys = computed(() => props.selectedKeys) + const handleOpenKeys = (val: Key[]) => { + runEvent(props['onUpdate:openKeys'], val) + } + + const handleSelectedKeys = (val: Key[]) => { + runEvent(props['onUpdate:selectedKeys'], val) + } + + const handleMenuSelect: SelectEventHandler = (data) => { + runEvent(props.onMenuSelect, data) + } + + const findSelected = (key: Key, menuData: MenuData, pItem?: MenuDataItem): MenuDataItem | undefined => { + for (const item of menuData ?? []) { + if (item.path === key) + return pItem ?? item + if (item.children && item.children.length) { + const find = findSelected(key, item.children, pItem ?? item) + if (find) + return find + } + } + } + + watch( + selectedKeys, + () => { + if (splitMenus.value) { + const key = selectedKeys.value?.[0] + + if (key) { + const find = findSelected(key, menuData.value ?? []) + if (find) + splitState.selectedKeys = [find.path] + } + } + }, + { + immediate: true, + }, + ) + watch(splitMenus, () => { + if (!splitMenus.value) { + splitState.selectedKeys = [] + } + else { + const key = selectedKeys.value?.[0] ?? openKeys.value?.[0] ?? '' + const find = findSelected(key, menuData.value ?? []) + if (find) + splitState.selectedKeys = [find?.path] + else splitState.selectedKeys = [] + } + }) + return { + logo, + title, + layout, + collapsed, + leftCollapsed, + collapsedWidth, + menuData, + siderWidth, + fixedHeader, + fixedSider, + headerHeight, + theme, + isMobile, + mobileCollapsed, + contentWidth, + copyright, + hasPageContainer, + splitMenus, + splitState, + menuDataMap, + selectedMenus, + handleMobileCollapsed, + header, + menu, + footer, + openKeys, + handleOpenKeys, + selectedKeys, + handleSelectedKeys, + handleMenuSelect, + handleSplitSelectedKeys, + menuHeader, + ...methods, + } +} + +const [useLayoutProvider, useLayoutInject] = createInjectionState(layoutStateFunc) + +export { useLayoutProvider } + +export const useLayoutState = (): ReturnType => useLayoutInject()! diff --git a/frontend/src/layouts/basic-layout/index.less b/frontend/src/layouts/basic-layout/index.less new file mode 100644 index 0000000..d5bc9ef --- /dev/null +++ b/frontend/src/layouts/basic-layout/index.less @@ -0,0 +1,37 @@ +.ant-pro-basicLayout { + display: flex; + flex-direction: column; + width: 100%; + min-height: 100%; + .ant-layout { + background: #f0f2f5; + } + + &-content { + // position: relative; + margin: 24px; + display: flex; + + &-fluid { + width: 100%; + } + + &-fixed { + width: 1200px; + max-width: 1200px; + margin: 0 auto; + + &:has(.ant-pro-page-container) { + width: 100%; + max-width: unset; + margin: unset; + } + } + } +} + +[data-theme='dark'] { + .ant-layout { + background: rgb(42, 44, 44); + } +} diff --git a/frontend/src/layouts/basic-layout/index.vue b/frontend/src/layouts/basic-layout/index.vue new file mode 100644 index 0000000..ad02d1b --- /dev/null +++ b/frontend/src/layouts/basic-layout/index.vue @@ -0,0 +1,92 @@ + + + + + diff --git a/frontend/src/layouts/basic-layout/parent-comp-consumer.ts b/frontend/src/layouts/basic-layout/parent-comp-consumer.ts new file mode 100644 index 0000000..2a871d3 --- /dev/null +++ b/frontend/src/layouts/basic-layout/parent-comp-consumer.ts @@ -0,0 +1,45 @@ +import { isFunction } from '@v-c/utils' +import { defineComponent } from 'vue' + +export const ParentCompConsumer = defineComponent({ + name: 'ParentCompConsumer', + setup(_, { slots }) { + const route = useRoute() + const parentMap = new Map() + return () => { + const parentName = route.meta?.parentName + const parentComps = route.meta?.parentComps + + if (parentName) { + // 获取组件的信息 + if (parentMap.has(parentName)) { + return parentMap.get(parentName) + } + else { + // 不存在判断是否存在parentComps + if (parentComps?.length) { + // 获取组件的信息 + let comp: any + for (const parentComp of [...parentComps].reverse()) { + // 有内到外 + const comp1: any = isFunction(parentComp) ? defineAsyncComponent(parentComp as any) : parentComp + if (comp) { + comp = h(comp1, null, { + default: () => comp, + }) + } + else { + comp = h(comp1, null, slots) + } + } + if (comp) { + parentMap.set(parentName, comp) + return comp + } + } + } + } + return slots?.default?.() + } + }, +}) diff --git a/frontend/src/layouts/basic-layout/typing.ts b/frontend/src/layouts/basic-layout/typing.ts new file mode 100644 index 0000000..ba3284a --- /dev/null +++ b/frontend/src/layouts/basic-layout/typing.ts @@ -0,0 +1,99 @@ +import type { ExtractPropTypes, VNodeChild } from 'vue' +import { arrayType, booleanType, eventType, numberType, stringType } from '@v-c/utils' + +export type CheckedType = boolean | string | number +export type MenuData = MenuDataItem[] + +export type Key = string | number + +export interface MenuDataItem { + // 唯一id + id?: string | number + // 标题 + title: string | (() => VNodeChild) + // 图标 + icon?: string | (() => VNodeChild) + // 地址 + path: string + // 绑定的哪个组件 + component?: string + // 子集菜单 + children?: MenuDataItem[] + // 重定向地址 + redirect?: string + // 哪些是固定页签 + affix?: boolean + // 父级菜单的id + parentId?: string | number | null + // 同路由中的name,主要是用于保活的左右 + name?: string + // 是否隐藏当前菜单 + hideInMenu?: boolean + // 如果使用了隐藏,那么点击当前菜单的时候,可以使用父级的key + parentKeys?: string[] + // 是否套用iframe + isIframe?: boolean + // 如果当前是iframe的模式,需要有一个跳转的url支撑,其不能和path重复,path还是为路由 + url?: string + // 是否存在面包屑 + hideInBreadcrumb?: boolean + // 是否需要显示所有的子菜单 + hideChildrenInMenu?: boolean + // 是否保活 + keepAlive?: boolean + // 这里包含所有的父级元素 + matched?: MenuDataItem[] + // 全连接跳转模式 + target?: '_blank' | '_self' | '_parent' + // 多语言配置 + locale?: string +} + +export type LayoutType = 'mix' | 'side' | 'top' + +export type ThemeType = 'light' | 'dark' | 'inverted' + +export type ContentWidth = 'Fluid' | 'Fixed' + +export interface MenuSelectEvent { + item: any + key: string + selectedKeys: string[] +} + +const proLayoutEvents = { + 'onUpdate:openKeys': eventType<(val: string[]) => void>(), + 'onUpdate:selectedKeys': eventType<(val: string[]) => void>(), + 'onMenuSelect': eventType<(data: MenuSelectEvent) => void>(), +} + +export const proLayoutProps = { + layout: stringType('mix'), + logo: stringType(), + title: stringType(), + collapsedWidth: numberType(48), + siderWidth: numberType(234), + headerHeight: numberType(48), + menuData: arrayType(), + fixedHeader: booleanType(false), + fixedSider: booleanType(true), + splitMenus: booleanType(), + collapsed: booleanType(false), + leftCollapsed: booleanType(false), + theme: stringType('light'), + onCollapsed: eventType<(collapsed: boolean) => void>(), + isMobile: booleanType(), + contentWidth: stringType(), + header: booleanType(true), + footer: booleanType(true), + menu: booleanType(true), + menuHeader: booleanType(true), + // 展开菜单 + openKeys: arrayType(), + // 选中菜单 + selectedKeys: arrayType(), + copyright: stringType(), + ...proLayoutEvents, +} + +export type ProLayoutProps = Partial> diff --git a/frontend/src/layouts/components/drawer-menu/index.vue b/frontend/src/layouts/components/drawer-menu/index.vue new file mode 100644 index 0000000..9ca30c7 --- /dev/null +++ b/frontend/src/layouts/components/drawer-menu/index.vue @@ -0,0 +1,17 @@ + + + diff --git a/frontend/src/layouts/components/global-footer/index.less b/frontend/src/layouts/components/global-footer/index.less new file mode 100644 index 0000000..68ab2bb --- /dev/null +++ b/frontend/src/layouts/components/global-footer/index.less @@ -0,0 +1,43 @@ +.ant-pro-global-footer { + // margin: 48px 0 24px; + padding: 0 16px; + text-align: center; + + &-links { + margin-bottom: 8px; + + a { + color: rgba(0, 0, 0, 0.45); + transition: all 0.3s; + + &:not(:last-child) { + margin-right: 40px; + } + + &:hover { + color: rgba(0, 0, 0, 0.85); + } + } + } + + &-copyright { + color: rgba(0, 0, 0, 0.45); + font-size: 14px; + } +} + +[data-theme='dark'] .ant-pro-global-footer { + &-links { + a { + color: rgba(229, 224, 216, 0.45); + + &:hover { + color: rgba(229, 224, 216, 0.85); + } + } + } + + &-copyright { + color: rgba(229, 224, 216, 0.45); + } +} diff --git a/frontend/src/layouts/components/global-footer/index.vue b/frontend/src/layouts/components/global-footer/index.vue new file mode 100644 index 0000000..f09eb52 --- /dev/null +++ b/frontend/src/layouts/components/global-footer/index.vue @@ -0,0 +1,29 @@ + + + + + diff --git a/frontend/src/layouts/components/global-header/global-header-logo.vue b/frontend/src/layouts/components/global-header/global-header-logo.vue new file mode 100644 index 0000000..5ac954f --- /dev/null +++ b/frontend/src/layouts/components/global-header/global-header-logo.vue @@ -0,0 +1,18 @@ + + + diff --git a/frontend/src/layouts/components/global-header/index.less b/frontend/src/layouts/components/global-header/index.less new file mode 100644 index 0000000..5d8db42 --- /dev/null +++ b/frontend/src/layouts/components/global-header/index.less @@ -0,0 +1,133 @@ +.ant-pro-global-header { + position: relative; + display: flex; + align-items: center; + height: 100%; + padding: 0 24px; + background: #fff; + box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08); + + > * { + height: 100%; + } + + &-top { + .ant-menu-horizontal > .ant-menu-submenu { + top: unset; + } + } + + &-collapsed-button { + display: flex; + font-size: 20px; + align-items: center; + margin-left: 24px; + } + + &-logo { + position: relative; + overflow: hidden; + + a { + display: flex; + align-items: center; + height: 100%; + + img { + height: 28px; + } + h1 { + height: 32px; + margin: 0 0 0 12px; + font-weight: 600; + font-size: 18px; + line-height: 32px; + } + } + } + + &-layout-mix { + background: #001529; + .anticon { + color: #fff; + } + } + + &-layout-mix &-logo { + h1 { + color: #fff; + } + } + .ant-menu-horizontal { + border-bottom: none !important; + } + + &-inverted { + --hover-color: rgb(42, 44, 55); + color: rgba(229, 224, 216, 0.85); + background: #001529; + box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08); + + .ant-pro-top-nav-header { + &-logo { + h1 { + color: rgb(229, 224, 216); + } + } + } + } +} + +.ant-pro-top-nav-header-logo { + position: relative; + min-width: 165px; + height: 100%; + overflow: hidden; + margin-right: 25px; + + img { + display: inline-block; + height: 32px; + vertical-align: middle; + } + + h1 { + display: inline-block; + margin: 0 0 0 12px; + font-size: 16px; + vertical-align: top; + color: rgba(0, 0, 0, 0.85); + } +} + +[data-theme='dark'] .ant-pro-top-nav-header-logo { + h1 { + color: rgba(229, 224, 216, 0.85); + } +} + +[data-theme='dark'] .ant-pro-global-header { + background: #001529; + box-shadow: rgba(13, 13, 13, 0.65) 0px 2px 8px 0px; + + &-layout-mix { + background: rgb(15, 28, 41); + + .anticon { + color: rgb(229, 224, 216); + } + + .ant-pro-global-header { + &-logo { + h1 { + color: rgb(229, 224, 216); + } + } + } + } + + &-layout-top, + &-layout-side { + background-color: rgb(36, 37, 37); + } +} diff --git a/frontend/src/layouts/components/global-header/index.vue b/frontend/src/layouts/components/global-header/index.vue new file mode 100644 index 0000000..b75c865 --- /dev/null +++ b/frontend/src/layouts/components/global-header/index.vue @@ -0,0 +1,43 @@ + + + + + diff --git a/frontend/src/layouts/components/header/index.less b/frontend/src/layouts/components/header/index.less new file mode 100644 index 0000000..aad8d20 --- /dev/null +++ b/frontend/src/layouts/components/header/index.less @@ -0,0 +1,12 @@ +.ant-pro-fixed-header { + position: fixed; + top: 0; + + &-inverted { + --hover-color: rgb(42, 44, 55); + } + + &-action { + transition: width 0.3s ease; + } +} diff --git a/frontend/src/layouts/components/header/index.vue b/frontend/src/layouts/components/header/index.vue new file mode 100644 index 0000000..4bc8872 --- /dev/null +++ b/frontend/src/layouts/components/header/index.vue @@ -0,0 +1,83 @@ + + + + + diff --git a/frontend/src/layouts/components/menu/async-icon.vue b/frontend/src/layouts/components/menu/async-icon.vue new file mode 100644 index 0000000..39fd006 --- /dev/null +++ b/frontend/src/layouts/components/menu/async-icon.vue @@ -0,0 +1,24 @@ + + + diff --git a/frontend/src/layouts/components/menu/index.vue b/frontend/src/layouts/components/menu/index.vue new file mode 100644 index 0000000..60fab2f --- /dev/null +++ b/frontend/src/layouts/components/menu/index.vue @@ -0,0 +1,31 @@ + + + diff --git a/frontend/src/layouts/components/menu/split-menu.vue b/frontend/src/layouts/components/menu/split-menu.vue new file mode 100644 index 0000000..ffddb2e --- /dev/null +++ b/frontend/src/layouts/components/menu/split-menu.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/frontend/src/layouts/components/menu/sub-menu.vue b/frontend/src/layouts/components/menu/sub-menu.vue new file mode 100644 index 0000000..cda6a48 --- /dev/null +++ b/frontend/src/layouts/components/menu/sub-menu.vue @@ -0,0 +1,76 @@ + + + diff --git a/frontend/src/layouts/components/route-view.vue b/frontend/src/layouts/components/route-view.vue new file mode 100644 index 0000000..0c4b262 --- /dev/null +++ b/frontend/src/layouts/components/route-view.vue @@ -0,0 +1,28 @@ + + + diff --git a/frontend/src/layouts/components/setting-drawer/block-checkbox.vue b/frontend/src/layouts/components/setting-drawer/block-checkbox.vue new file mode 100644 index 0000000..cea8f64 --- /dev/null +++ b/frontend/src/layouts/components/setting-drawer/block-checkbox.vue @@ -0,0 +1,32 @@ + + + diff --git a/frontend/src/layouts/components/setting-drawer/body.vue b/frontend/src/layouts/components/setting-drawer/body.vue new file mode 100644 index 0000000..fd99c25 --- /dev/null +++ b/frontend/src/layouts/components/setting-drawer/body.vue @@ -0,0 +1,14 @@ + + + diff --git a/frontend/src/layouts/components/setting-drawer/color-checkbox.vue b/frontend/src/layouts/components/setting-drawer/color-checkbox.vue new file mode 100644 index 0000000..28894e0 --- /dev/null +++ b/frontend/src/layouts/components/setting-drawer/color-checkbox.vue @@ -0,0 +1,9 @@ + + + diff --git a/frontend/src/layouts/components/setting-drawer/index.less b/frontend/src/layouts/components/setting-drawer/index.less new file mode 100644 index 0000000..dd88468 --- /dev/null +++ b/frontend/src/layouts/components/setting-drawer/index.less @@ -0,0 +1,187 @@ +.ant-pro-drawer-setting-handle { + position: fixed; + inset-block-start: 240px; + inset-inline-end: 0px; + z-index: 0; + display: flex; + align-items: center; + justify-content: center; + width: 48px; + height: 48px; + font-size: 16px; + text-align: center; + -webkit-backdropilter: saturate(180%) blur(20px); + backdrop-filter: saturate(180%) blur(20px); + cursor: pointer; + pointer-events: auto; + + &-icon { + color: #fff; + } + + &-icon-dark { + color: #e5e0d8; + } +} + +.ant-pro-drawer-setting-block-checkbox { + display: flex; + min-height: 42px; + + &-selectIcon { + position: absolute; + right: 6px; + bottom: 4px; + font-weight: 700; + font-size: 14px; + pointer-events: none; + } + + &-item { + position: relative; + width: 44px; + height: 36px; + margin-right: 16px; + overflow: hidden; + background-color: #f0f2f5; + border-radius: 4px; + box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.18); + cursor: pointer; + + &::before { + position: absolute; + top: 0; + left: 0; + width: 33%; + height: 100%; + background-color: #fff; + content: ''; + } + + &::after { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 25%; + background-color: #fff; + content: ''; + } + + &-dark { + background-color: rgba(0, 21, 41, 0.85); + + &::before { + background-color: rgba(0, 21, 41, 0.65); + content: ''; + } + + &::after { + background-color: rgba(0, 21, 41, 0.85); + } + } + + &-light { + &::before { + background-color: #fff; + content: ''; + } + + &::after { + background-color: #fff; + } + } + + &-inverted::before, + &-side::before { + z-index: 1; + background-color: #001529; + content: ''; + } + + &-inverted::after, + &-side::after { + background-color: #fff; + } + + &-top::before { + background-color: transparent; + content: ''; + } + + &-top::after { + background-color: #001529; + } + + &-mix::before { + background-color: #fff; + content: ''; + } + + &-mix::after { + background-color: #001529; + } + } + + &-theme-item { + background: rgb(42, 44, 44); + box-shadow: rgba(13, 13, 13, 0.18) 0px 1px 2.5px 0px; + + &-light { + &::before, + &::after { + background-color: rgb(36, 37, 37); + } + } + + &-dark { + &::before, + &::after { + background-color: rgba(15, 28, 41, 0.65); + } + } + + &-side::before, + &-inverted::before { + background-color: rgb(15, 28, 41); + } + + &-side::after, + &-inverted::after { + background-color: rgb(36, 37, 37); + } + + &-mix::before { + background-color: rgb(36, 37, 37); + } + } +} + +.ant-pro-drawer-setting-theme-color { + margin-top: 16px; + overflow: hidden; + + &-block { + float: left; + width: 20px; + height: 20px; + margin-top: 8px; + margin-right: 8px; + font-weight: 700; + display: flex; + color: #fff; + align-items: center; + justify-content: center; + border-radius: 2px; + cursor: pointer; + } +} + +.ant-pro-drawer-setting-content { + .ant-list { + &-item { + padding-inline: 0; + padding-block: 8px; + } + } +} diff --git a/frontend/src/layouts/components/setting-drawer/index.vue b/frontend/src/layouts/components/setting-drawer/index.vue new file mode 100644 index 0000000..df91480 --- /dev/null +++ b/frontend/src/layouts/components/setting-drawer/index.vue @@ -0,0 +1,252 @@ + + + + + diff --git a/frontend/src/layouts/components/setting-drawer/layout-setting.vue b/frontend/src/layouts/components/setting-drawer/layout-setting.vue new file mode 100644 index 0000000..2ffbaf7 --- /dev/null +++ b/frontend/src/layouts/components/setting-drawer/layout-setting.vue @@ -0,0 +1,159 @@ + + + diff --git a/frontend/src/layouts/components/setting-drawer/other-setting.vue b/frontend/src/layouts/components/setting-drawer/other-setting.vue new file mode 100644 index 0000000..dc9fb60 --- /dev/null +++ b/frontend/src/layouts/components/setting-drawer/other-setting.vue @@ -0,0 +1,50 @@ + + + diff --git a/frontend/src/layouts/components/setting-drawer/regional-setting.vue b/frontend/src/layouts/components/setting-drawer/regional-setting.vue new file mode 100644 index 0000000..ff7b509 --- /dev/null +++ b/frontend/src/layouts/components/setting-drawer/regional-setting.vue @@ -0,0 +1,103 @@ + + + diff --git a/frontend/src/layouts/components/setting-drawer/theme-color.vue b/frontend/src/layouts/components/setting-drawer/theme-color.vue new file mode 100644 index 0000000..0ec6d1c --- /dev/null +++ b/frontend/src/layouts/components/setting-drawer/theme-color.vue @@ -0,0 +1,34 @@ + + + diff --git a/frontend/src/layouts/components/sider-menu/index.less b/frontend/src/layouts/components/sider-menu/index.less new file mode 100644 index 0000000..3e8c108 --- /dev/null +++ b/frontend/src/layouts/components/sider-menu/index.less @@ -0,0 +1,132 @@ +.ant-pro-sider { + .ant-layout-sider-children { + display: flex; + flex-direction: column; + height: 100%; + } + + &-fixed { + position: fixed !important; + top: 0; + left: 0; + height: 100%; + z-index: 100; + box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05); + } + + &-menu { + position: relative; + z-index: 10; + min-height: 100%; + border-inline-end: none !important; + } + + &-collapsed-button { + border-top: 1px solid rgba(0, 0, 0, 0.06); + } + + &-collapsed-button-inverted { + border-top: 1px solid rgba(143, 132, 117, 0.06); + } + + &-light { + .ant-menu-light { + border-right-color: transparent; + } + } + + &-logo { + position: relative; + display: flex; + align-items: center; + padding: 16px 24px; + cursor: pointer; + transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + + > a { + display: flex; + align-items: center; + justify-content: center; + min-height: 32px; + width: 100%; + } + + img { + display: inline-block; + height: 32px; + vertical-align: middle; + } + + h1 { + display: inline-block; + height: 32px; + margin: 0 0 0 12px; + font-weight: 600; + font-size: 18px; + line-height: 32px; + vertical-align: middle; + animation: pro-layout-title-hide 0.3s; + width: calc(100% - 32px); + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + } + } + + &-logo-dark { + background: #001529; + h1 { + color: rgba(255, 255, 255, 0.65); + } + } + + &-collapsed { + padding: 16px 8px; + } +} + +[data-theme='dark'] .ant-pro-sider { + &-collapsed-button { + border-top: 1px solid rgba(143, 132, 117, 0.06); + } + + &-fixed { + box-shadow: rgba(13, 13, 13, 0.65) 0 2px 8px 0; + } +} + +@keyframes pro-layout-title-hide { + 0% { + display: none; + opacity: 0; + } + + 80% { + display: none; + opacity: 0; + } + + to { + display: unset; + opacity: 1; + } +} + +.scrollbar { + &::-webkit-scrollbar { + width: 5px; + height: 10px; + } + + &::-webkit-scrollbar-thumb { + border-radius: 5px; + -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); + background: rgba(190, 190, 190, 0.2); + } + + &::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 5px rgba(227, 227, 227, 0.2); + border-radius: 0; + background: rgba(0, 0, 0, 0.1); + } +} diff --git a/frontend/src/layouts/components/sider-menu/index.vue b/frontend/src/layouts/components/sider-menu/index.vue new file mode 100644 index 0000000..045eec5 --- /dev/null +++ b/frontend/src/layouts/components/sider-menu/index.vue @@ -0,0 +1,115 @@ + + + + + diff --git a/frontend/src/layouts/index.vue b/frontend/src/layouts/index.vue new file mode 100644 index 0000000..f09da87 --- /dev/null +++ b/frontend/src/layouts/index.vue @@ -0,0 +1,101 @@ + + +